/* ============================================================
   ELITE WORLDWIDE ENERGY TRADING — Custom Styles
   Colors: Midnight Blue #101820 | Green #7DB840
   Font: Montserrat
   ============================================================ */

/* ===== CSS Custom Properties ===== */
:root {
  --primary: #101820;
  --accent: #7DB840;
  --accent-light: #9CD05B;
  --accent-dark: #6AA030;
  --dark-bg: #0A0F18;
  --card-bg: #141C28;
  --card-border: rgba(125, 184, 64, 0.1);
  --glow: rgba(125, 184, 64, 0.3);
  --text-muted: #94A3B8;
}

/* ===== Global ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  width: 100%;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--dark-bg);
  color: #fff;
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--dark-bg);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-light);
}

/* ===== Selection ===== */
::selection {
  background: rgba(125, 184, 64, 0.3);
  color: #fff;
}

/* ===== Three.js Canvas ===== */
#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
}

/* ===== Keyframe Animations ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%      { transform: translateY(-15px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(125, 184, 64, 0.15); }
  50%      { box-shadow: 0 0 50px rgba(125, 184, 64, 0.35); }
}

@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0) translateX(-50%); opacity: 1; }
  50%      { transform: translateY(12px) translateX(-50%); opacity: 0.4; }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes width-grow {
  from { width: 0; }
  to   { width: 60px; }
}

@keyframes hero-text-reveal {
  0%   { opacity: 0; transform: translateY(30px); filter: blur(10px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered reveal for children */
.reveal-stagger .reveal-child {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger.active .reveal-child {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.active .reveal-child:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.active .reveal-child:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.active .reveal-child:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.active .reveal-child:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.active .reveal-child:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.active .reveal-child:nth-child(6) { transition-delay: 0.55s; }
.reveal-stagger.active .reveal-child:nth-child(7) { transition-delay: 0.65s; }

/* ===== Gradient Text ===== */
.gradient-text {
  background: linear-gradient(135deg, #7DB840, #B5E655, #7DB840);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradient-shift 4s ease infinite;
}

/* ===== Glassmorphism ===== */
.glass {
  background: rgba(10, 15, 24, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(125, 184, 64, 0.08);
}

.glass-card {
  background: rgba(20, 28, 40, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(125, 184, 64, 0.1);
}

/* ===== Navbar ===== */
.navbar {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(10, 15, 24, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar.scrolled {
  background: rgba(10, 15, 24, 0.85) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-pill {
  position: relative;
  color: #94A3B8;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 8px 18px;
  border-radius: 50px;
}

.nav-pill:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-pill.active {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 2px 12px rgba(125, 184, 64, 0.3);
}

/* ===== Buttons ===== */
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  padding: 15px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(125, 184, 64, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.btn-outline:hover {
  background: rgba(125, 184, 64, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(125, 184, 64, 0.15);
  color: var(--accent-light);
  border-color: var(--accent-light);
}

.btn-hero-outline {
  background: transparent;
  color: #fff;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  border: 2px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #fff;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.1);
}


/* ===== Service Cards ===== */
.service-card {
  background: rgba(20, 28, 40, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(125, 184, 64, 0.08);
  border-radius: 24px;
  padding: 2.25rem 2rem;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(125, 184, 64, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(125, 184, 64, 0.35);
  background: rgba(20, 28, 40, 0.75);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(125, 184, 64, 0.12);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  opacity: 1;
}

.icon-box {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(125, 184, 64, 0.12), rgba(125, 184, 64, 0.03));
  border: 1px solid rgba(125, 184, 64, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 1.6rem;
}

.service-card:hover .icon-box {
  background: linear-gradient(135deg, rgba(125, 184, 64, 0.25), rgba(125, 184, 64, 0.06));
  border-color: rgba(125, 184, 64, 0.3);
  transform: scale(1.1) rotate(3deg);
  box-shadow: 0 8px 25px rgba(125, 184, 64, 0.2);
}

/* ===== Product Cards ===== */
.product-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(125, 184, 64, 0.05);
}

.product-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(125, 184, 64, 0.2);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.product-card:hover img {
  transform: scale(1.12);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 15, 24, 0.95) 0%, rgba(10, 15, 24, 0.5) 40%, rgba(10, 15, 24, 0.15) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  transition: all 0.5s;
}

.product-card:hover .product-overlay {
  background: linear-gradient(to top, rgba(10, 15, 24, 0.98) 0%, rgba(125, 184, 64, 0.08) 50%, rgba(10, 15, 24, 0.2) 100%);
}

.product-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  width: fit-content;
}

.badge-hard {
  background: rgba(125, 184, 64, 0.15);
  color: var(--accent);
  border: 1px solid rgba(125, 184, 64, 0.2);
}

.badge-soft {
  background: rgba(59, 130, 246, 0.15);
  color: #60A5FA;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

/* ===== Stats Section ===== */
.stat-item {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(125, 184, 64, 0.25), transparent);
}

.stat-item:last-child::after {
  display: none;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* ===== Feature Boxes (Why Choose Us) ===== */
.feature-box {
  text-align: center;
  padding: 2.5rem 1.75rem;
  border-radius: 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-box:hover {
  border-color: rgba(125, 184, 64, 0.25);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.feature-box:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(125, 184, 64, 0.15), rgba(125, 184, 64, 0.03));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.2rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-box:hover .feature-icon {
  background: linear-gradient(135deg, rgba(125, 184, 64, 0.3), rgba(125, 184, 64, 0.08));
  transform: scale(1.12) rotate(5deg);
  box-shadow: 0 10px 30px rgba(125, 184, 64, 0.15);
}

/* ===== Contact Form ===== */
.form-input {
  width: 100%;
  padding: 16px 22px;
  background: rgba(20, 28, 40, 0.7);
  border: 1px solid rgba(125, 184, 64, 0.12);
  border-radius: 14px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 25px rgba(125, 184, 64, 0.12), inset 0 0 15px rgba(125, 184, 64, 0.03);
  background: rgba(20, 28, 40, 0.9);
}

.form-input::placeholder {
  color: #4B5563;
  font-weight: 500;
}

textarea.form-input {
  resize: vertical;
  min-height: 140px;
}

/* ===== Contact Info Items ===== */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(125, 184, 64, 0.06);
  transition: all 0.3s;
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-item:hover {
  padding-left: 8px;
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(125, 184, 64, 0.12), rgba(125, 184, 64, 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.contact-info-item:hover .contact-icon {
  background: linear-gradient(135deg, rgba(125, 184, 64, 0.25), rgba(125, 184, 64, 0.08));
  transform: scale(1.05);
}

/* ===== Section Divider ===== */
.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 2px;
  animation: width-grow 0.8s ease-out;
}

/* ===== Scroll Down Indicator ===== */
.scroll-indicator {
  animation: scroll-bounce 2s ease-in-out infinite;
}

/* ===== Hero BG Overlay ===== */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 15, 24, 0.88) 0%,
    rgba(10, 15, 24, 0.78) 30%,
    rgba(10, 15, 24, 0.82) 60%,
    rgba(10, 15, 24, 0.97) 100%
  );
  z-index: 1;
}

/* ===== Mobile Menu ===== */
#mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 24, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

#mobile-menu a {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 2rem;
  transition: all 0.3s;
  position: relative;
}

#mobile-menu a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.close-menu {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  background: rgba(125, 184, 64, 0.1);
  border: 1px solid rgba(125, 184, 64, 0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.close-menu:hover {
  background: rgba(125, 184, 64, 0.2);
  transform: rotate(90deg);
}

/* ===== Back to Top ===== */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 998;
  box-shadow: 0 8px 25px rgba(125, 184, 64, 0.25);
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(125, 184, 64, 0.4);
}

/* ===== Loading Shimmer ===== */
.shimmer {
  background: linear-gradient(90deg, transparent, rgba(125, 184, 64, 0.05), transparent);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

/* ===== Map Container ===== */
.map-container {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  height: 250px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.8) contrast(1.1) brightness(0.6) hue-rotate(80deg);
  transition: filter 0.4s;
}

.map-container:hover iframe {
  filter: grayscale(0.3) contrast(1.05) brightness(0.7) hue-rotate(80deg);
}

/* ===== Hero Text Animation ===== */
.hero-title-word {
  display: inline-block;
  animation: hero-text-reveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.hero-title-word:nth-child(1) { animation-delay: 0.3s; }
.hero-title-word:nth-child(2) { animation-delay: 0.45s; }
.hero-title-word:nth-child(3) { animation-delay: 0.6s; }
.hero-title-word:nth-child(4) { animation-delay: 0.75s; }
.hero-title-word:nth-child(5) { animation-delay: 0.9s; }
.hero-title-word:nth-child(6) { animation-delay: 1.05s; }
.hero-title-word:nth-child(7) { animation-delay: 1.2s; }
.hero-title-word:nth-child(8) { animation-delay: 1.35s; }

/* ===== Footer ===== */
.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  font-size: 0.9rem;
}

.footer-link:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(125, 184, 64, 0.08);
  border: 1px solid rgba(125, 184, 64, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: all 0.3s;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(125, 184, 64, 0.25);
}

/* ===== World Map Dots Pattern ===== */
#world-map-dots {
  background-image: radial-gradient(circle, rgba(125, 184, 64, 0.4) 1px, transparent 1px);
  background-size: 14px 14px;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 500'%3E%3Cellipse cx='500' cy='250' rx='480' ry='220' fill='white'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 500'%3E%3Cellipse cx='500' cy='250' rx='480' ry='220' fill='white'/%3E%3C/svg%3E");
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}

/* ============================================================
   RESPONSIVE — Tablet (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .stat-number {
    font-size: 2.5rem;
  }

  .service-card,
  .feature-box {
    padding: 1.75rem;
  }

  .icon-box {
    width: 58px;
    height: 58px;
  }

  .feature-icon {
    width: 72px;
    height: 72px;
  }
}

/* ============================================================
   RESPONSIVE — Small Tablet / Large Phone (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* --- Hero --- */
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(10, 15, 24, 0.88) 0%,
      rgba(10, 15, 24, 0.8) 40%,
      rgba(10, 15, 24, 0.92) 70%,
      rgba(10, 15, 24, 0.98) 100%
    );
  }

  .hero-title-word {
    animation-delay: 0s !important;
    animation-duration: 0.5s !important;
  }

  /* --- Sections Padding --- */
  section {
    padding-left: 0;
    padding-right: 0;
  }

  /* --- Stats --- */
  .stat-item {
    padding: 1.5rem 1rem;
  }

  .stat-item::after {
    display: none;
  }

  .stat-number {
    font-size: 2rem;
  }

  /* --- Buttons --- */
  .btn-primary,
  .btn-outline {
    padding: 12px 24px;
    font-size: 0.875rem;
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* --- Product Cards --- */
  .product-card img {
    height: 220px;
  }

  /* --- Service Cards --- */
  .service-card {
    padding: 1.5rem;
  }

  .icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  /* --- Feature Boxes --- */
  .feature-box {
    padding: 2rem 1.5rem;
  }

  .feature-icon {
    width: 68px;
    height: 68px;
    font-size: 1.8rem;
  }

  /* --- Contact --- */
  .contact-info-item {
    padding: 1rem 0;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .map-container {
    height: 200px;
    border-radius: 16px;
  }

  /* --- Section Divider --- */
  .section-divider {
    margin: 0 auto;
  }

  /* --- Footer --- */
  .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  /* --- Back to Top --- */
  #back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

/* ============================================================
   RESPONSIVE — Mobile Phone (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
  /* --- Stats --- */
  .stat-number {
    font-size: 1.6rem;
  }

  .stat-item {
    padding: 1.25rem 0.75rem;
  }

  /* --- Product Cards --- */
  .product-card img {
    height: 200px;
  }

  .product-overlay {
    padding: 1.25rem;
  }

  /* --- Service Cards --- */
  .service-card {
    padding: 1.25rem;
  }

  /* --- Feature Boxes --- */
  .feature-box {
    padding: 1.5rem 1.25rem;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
  }

  /* --- Glass Card (Contact Form) --- */
  .glass-card {
    padding: 1.25rem !important;
  }

  /* --- Form --- */
  .form-input {
    padding: 12px 16px;
    font-size: 0.875rem;
    border-radius: 10px;
  }

  /* --- Buttons --- */
  .btn-primary,
  .btn-outline {
    padding: 12px 20px;
    font-size: 0.8rem;
  }

  /* --- Contact Info --- */
  .contact-icon {
    width: 40px;
    height: 40px;
  }

  /* --- Map --- */
  .map-container {
    height: 180px;
    border-radius: 12px;
  }
}

/* ============================================================
   RESPONSIVE — Very Small Phones (max-width: 360px)
   ============================================================ */
@media (max-width: 360px) {
  .stat-number {
    font-size: 1.4rem;
  }

  .btn-primary,
  .btn-outline {
    padding: 10px 16px;
    font-size: 0.75rem;
  }

  .product-card img {
    height: 180px;
  }
}
