@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=DM+Serif+Display:ital@0;1&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --deep-navy:    #ffffff;  /* Main Light BG */
  --mid-navy:     #f4f9ff;  /* Secondary Light BG */
  --bg-dark:      #030d1c;  /* Dark Section BG */
  --bg-dark-sec:  #061628;  /* Dark Secondary BG */
  --card-bg:      #ffffff;
  --primary:      #00AEEF;  /* Brand Sky Blue */
  --primary-dark: #2D3092;  /* Brand Indigo */
  --primary-glow: rgba(0, 174, 239, 0.1);
  --gold:         #2D3092;  /* Dark text color */
  --gold-light:   #00AEEF;  /* Accent color */
  --gold-glow:    rgba(0, 174, 239, 0.1);
  --accent-navy:  #2D3092;  /* Logo Dark Indigo */
  --white:        #ffffff;  /* Pure White */
  --text-dark:    #121826;  /* Main Text (Light Mode) */
  --text-light:   #ffffff;  /* Main Text (Dark Mode) */
  --off-white:    #f8fafd;
  --text-muted:   rgba(18, 24, 38, 0.65);
  --text-muted-light: rgba(255, 255, 255, 0.6);
  --glass:        rgba(0, 174, 239, 0.03);
  --glass-border: rgba(0, 174, 239, 0.2);
  --font-heading: 'Outfit', sans-serif;
  --font-body:    'Outfit', sans-serif;
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-premium: 0 20px 40px rgba(0, 174, 239, 0.08);
}

/* ============================================================
   BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--deep-navy);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.65;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.gradient-text {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--accent-navy);
}
.section-sub {
  font-size: 0.93rem;
  color: var(--text-muted);
  max-width: 520px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}
.btn-primary {
  background: linear-gradient(135deg, #00AEEF, #0083b8);
  color: var(--white);
  box-shadow: none;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 3px rgba(0,174,239,0.25), 0 10px 32px rgba(0,174,239,0.45);
}
.btn-ghost {
  background: transparent;
  color: var(--accent-navy);
  border: 1.5px solid var(--glass-border);
  backdrop-filter: blur(8px);
  box-shadow: none;
}
.btn-ghost:hover {
  background: rgba(0, 174, 239, 0.04);
  border-color: rgba(0, 174, 239, 0.6);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 0 0 3px rgba(0,174,239,0.15), 0 8px 24px rgba(0,174,239,0.2);
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--deep-navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 2.2rem 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
}
.navbar.scrolled {
  position: fixed;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 174, 239, 0.08);
  padding: 1.2rem 6%;
  border-bottom: 1px solid rgba(0, 174, 239, 0.1);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.nav-logo img {
  height: 110px !important;
  transition: transform 0.3s ease;
}
.nav-logo-gems {
  display: flex;
  gap: 3px;
}
.nav-logo-gems span {
  width: 10px; height: 10px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  display: block;
}
.nav-logo-text {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  color: var(--accent-navy);
}
.nav-logo-text span { color: var(--gold-light); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}
.nav-links a {
  text-decoration: none;
  color: rgba(45, 48, 146, 0.85); /* Accent Navy */
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
  border-radius: 2px;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.mobile-only { display: none; }

/* DROPDOWN MENU - FIXED */
.navbar .nav-links .nav-item-dropdown {
    position: relative !important;
}
.navbar .nav-links .nav-item-dropdown > a {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
}
.navbar .nav-links .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(15px) !important;
    background: #ffffff !important;
    min-width: 230px !important;
    box-shadow: 0 15px 40px rgba(3, 13, 28, 0.15) !important;
    border-radius: 14px !important;
    padding: 0.8rem 0 !important;
    margin: 0 !important;
    list-style: none !important;
    list-style-type: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    z-index: 1100 !important;
    border: 1px solid rgba(0, 174, 239, 0.12) !important;
    pointer-events: none;
}
.navbar .nav-links .nav-item-dropdown:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) !important;
    pointer-events: auto;
}
.dropdown-menu li {
    width: 100% !important;
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
.dropdown-menu li a {
    padding: 0.8rem 1.5rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    color: var(--accent-navy) !important;
    font-size: 0.92rem !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
    text-align: left !important;
}
.dropdown-menu li a::after {
    display: none !important;
}
.dropdown-menu li a:hover {
    background: var(--primary-glow) !important;
    color: var(--primary) !important;
    padding-left: 1.8rem !important;
}
.dropdown-menu li a i {
    width: 20px !important;
    font-size: 0.9rem !important;
    color: var(--primary) !important;
    opacity: 0.8 !important;
}

/* Menu Toggle Styling */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}
.menu-toggle span {
  width: 28px; height: 3px;
  background: var(--accent-navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  padding: 140px 6% 4rem; /* Increased top padding for logo and 6% side padding for alignment */
}
/* Animated gradient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: float 10s ease-in-out infinite;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #00AEEF 0%, transparent 70%);
  top: -150px; left: -100px;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, #2D3092 0%, transparent 70%);
  top: 20%; right: -50px;
  opacity: 0.4;
  animation-delay: -4s;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #5fd4ff 0%, transparent 70%);
  bottom: 0; left: 35%;
  opacity: 0.2;
  animation-delay: -7s;
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
/* Grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 174, 239, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 174, 239, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 6% 3rem;
  max-width: 680px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.15), rgba(0, 174, 239, 0.05));
  border: 1.5px solid #00AEEF;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #008fcc;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease forwards;
  box-shadow: 0 4px 12px rgba(0, 174, 239, 0.08);
}
.hero-pill-dot {
  width: 7px; height: 7px;
  background: #00AEEF;
  border-radius: 50%;
  animation: blink 1.5s ease infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-desc {
  font-size: 0.95rem;
  color: rgba(18, 24, 38, 0.7);
  max-width: 480px;
  margin-bottom: 1.8rem;
  animation: fadeInUp 0.8s ease 0.2s both;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s both;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 174, 239, 0.15);
  animation: fadeInUp 0.8s ease 0.5s both;
}
.stat-item {
  text-align: left;
}
.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-navy);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}
/* Scroll indicator hidden on overlap fix */
.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 6%;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 10;
}
.scroll-line {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, #00AEEF, transparent);
}

/* ============================================================
   HERO VISUAL COLUMN
   ============================================================ */
.hero-visual {
  position: relative;
  height: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 8rem 5% 4rem 0;
}

/* Base card style */
.hv-card {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 60px rgba(0, 174, 239, 0.1);
  opacity: 0;
  transform: translateX(60px) translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.3s ease;
}
.hv-card:hover {
  box-shadow: 0 30px 80px rgba(0,174,239,0.25);
  border-color: rgba(0,174,239,0.4);
  z-index: 20;
}
.hv-card img, .hv-card video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.hv-card:hover img, .hv-card:hover video { transform: scale(1.04); }

/* Card positions */
.hv-img-main {
  width: 58%;
  aspect-ratio: 4/3;
  top: 12%;
  left: 2%;
}
.hv-video {
  width: 42%;
  aspect-ratio: 4/3;
  top: 12%;
  right: 2%;
}
.hv-img-small {
  width: 46%;
  aspect-ratio: 3/2;
  bottom: 8%;
  left: 28%;
}

/* Staggered scroll-in animations */
.hero-float-1 { animation: hfloatIn 0.9s ease 0.2s forwards; }
.hero-float-2 { animation: hfloatIn 0.9s ease 0.5s forwards; }
.hero-float-3 { animation: hfloatIn 0.9s ease 0.8s forwards; }
.hero-float-4 { animation: hfloatIn 0.9s ease 1.1s forwards; }

@keyframes hfloatIn {
  from { opacity: 0; transform: translateX(60px) translateY(20px); }
  to   { opacity: 1; transform: translateX(0) translateY(0); }
}

/* Subtle independent float per card (after appearing) */
.hv-img-main { animation: hfloatIn 0.9s ease 0.2s forwards, cardFloat1 6s ease-in-out 1.2s infinite; }
.hv-video    { animation: hfloatIn 0.9s ease 0.5s forwards, cardFloat2 7s ease-in-out 1.5s infinite; }
.hv-img-small{ animation: hfloatIn 0.9s ease 0.8s forwards, cardFloat3 5s ease-in-out 1.8s infinite; }

@keyframes cardFloat1 {
  0%,100% { transform: translateY(0px); }
  50%     { transform: translateY(-10px); }
}
@keyframes cardFloat2 {
  0%,100% { transform: translateY(0px); }
  50%     { transform: translateY(8px); }
}
@keyframes cardFloat3 {
  0%,100% { transform: translateY(0px); }
  50%     { transform: translateY(-6px); }
}

/* Image label badges */
.hv-img-label {
  position: absolute;
  bottom: 0.8rem; left: 0.8rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 0.35rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Video badge */
.hv-video-badge {
  position: absolute;
  top: 0.8rem; left: 0.8rem;
  background: linear-gradient(135deg, #00AEEF, #2D3092);
  border-radius: 50px;
  padding: 0.3rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.04em;
}

/* Trust bubble */
.hv-trust-bubble {
  position: absolute;
  bottom: 18%;
  left: 2%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0,174,239,0.3);
  border-radius: 16px;
  padding: 0.85rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 15;
  opacity: 0;
  box-shadow: 0 10px 30px rgba(0, 174, 239, 0.1);
}
.htb-icon { font-size: 1.4rem; }
.htb-val  { font-size: 0.88rem; font-weight: 700; color: var(--accent-navy); }
.htb-sub  { font-size: 0.72rem; font-weight: 500; color: var(--text-muted); }

/* Hide visual on small screens */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 7rem 6% 4rem;
  }
  .hero-visual { display: none; }
}

/* ============================================================
   TICKER STRIP
   ============================================================ */
.ticker-strip {
  background: linear-gradient(135deg, #00AEEF, #2D3092);
  padding: 1.2rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-flex;
  gap: 3rem;
  animation: ticker 30s linear infinite;
}
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ticker-item {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.ticker-item::before { content: '◆'; font-size: 0.5rem; }

/* ============================================================
   FEATURES / WHY US
   ============================================================ */
.features-section {
  padding: 9rem 6%;
}
.features-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 5rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-spring);
  cursor: default;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.12), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 174, 239, 0.5);
  box-shadow: 0 25px 50px rgba(0, 174, 239, 0.1), 0 0 0 1px rgba(0, 174, 239, 0.15);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.2), rgba(0, 174, 239, 0.05));
  border: 1px solid rgba(0, 174, 239, 0.35);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  position: relative; z-index: 1;
  color: var(--accent-navy);
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  position: relative; z-index: 1;
}
.feature-num {
  position: absolute;
  bottom: 1rem; right: 1.2rem;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(0, 174, 239, 0.08);
  line-height: 1;
  font-family: var(--font-heading);
}

/* ============================================================
   SCROLLING IMAGE GALLERY
   ============================================================ */
.gallery-section {
  padding: 8rem 0;
  background: var(--deep-navy);
  overflow: hidden;
}
.gallery-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 6%;
  margin-bottom: 3rem;
}
.gallery-header .section-sub {
  margin: 0 auto;
  text-align: center;
}
.marquee-track {
  overflow: hidden;
  width: 100%;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-inner {
  display: flex;
  gap: 1.2rem;
  width: max-content;
}
.marquee-left  { animation: marqueeLeft  35s linear infinite; }
.marquee-right { animation: marqueeRight 35s linear infinite; }

@keyframes marqueeLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marqueeRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
/* Pause on hover */
.marquee-track:hover .marquee-inner { animation-play-state: paused; }

.marquee-card {
  width: 320px;
  height: 210px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--glass-border);
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.marquee-card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(0,174,239,0.2);
  border-color: rgba(0,174,239,0.35);
}
.marquee-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.marquee-card:hover img { transform: scale(1.08); }

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section {
  padding: 9rem 6%;
  background: var(--bg-dark);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 174, 239, 0.1);
  border-bottom: 1px solid rgba(0, 174, 239, 0.1);
}
.video-section .section-title { color: var(--text-light); }
.video-section .section-sub { color: var(--text-muted-light); }
.video-section .section-label { color: var(--primary); }
/* Background decoration */
.video-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,174,239,0.12) 0%, transparent 70%);
  top: -200px; right: -100px;
  pointer-events: none;
}
.video-content {
  text-align: center;
  margin-bottom: 3rem;
}
.video-content .section-sub { margin: 0 auto; }

.video-player-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 30px 80px rgba(0, 174, 239, 0.1);
}
.video-frame iframe {
  width: 100%; height: 100%;
  border-radius: 20px;
}
.video-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 200px;
}
.video-stat-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}
.video-stat-card:hover {
  border-color: rgba(0,174,239,0.4);
  background: rgba(0,174,239,0.06);
  transform: translateX(-4px);
}
.vscard-icon { font-size: 1.6rem; margin-bottom: 0.5rem; }
.vscard-num  { font-size: 1.8rem; font-weight: 800; color: #5fd4ff; line-height: 1; }
.vscard-label{ font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.3rem; }

/* Responsive video section */
@media (max-width: 900px) {
  .video-player-wrap { grid-template-columns: 1fr; }
  .video-cards { flex-direction: column; align-items: center; }
  .video-stat-card { width: 100%; max-width: 300px; }
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products-section {
  padding: 9rem 6%;
  background: var(--bg-dark-sec);
  color: var(--text-light);
  position: relative;
}
.products-section .section-title { color: var(--text-light); }
.products-section .section-sub { color: var(--text-muted-light); }
.products-section .section-label { color: var(--primary); }
.products-section .tab-btn { color: var(--text-muted-light); border-color: rgba(255,255,255,0.1); }
.products-section .tab-btn.active { color: var(--white); }
.products-section .product-card { background: rgba(255,255,255,0.03); border-color: rgba(0, 174, 239, 0.2); }
.products-section .product-name { color: var(--text-light); }
.products-section .product-desc { color: var(--text-muted-light); }
.products-section .product-overlay { background: linear-gradient(to top, rgba(3, 13, 28, 0.95) 0%, transparent 60%); }
.products-section .spec-list li { border-color: rgba(255,255,255,0.1); }
.products-section .spec-list li span:first-child { color: var(--text-muted-light); }
.products-section .spec-list li span:last-child { color: var(--text-light); }
.products-section .btn-ghost { color: var(--text-light); border-color: rgba(255,255,255,0.2); }
.products-section .btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--primary); color: var(--primary); }
.products-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-glow), transparent);
}
.products-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* ============================================================
   COLORS & FINISHES
   ============================================================ */
.colors-section {
  padding: 9rem 6%;
  background: var(--off-white);
}
.colors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.color-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  transition: all 0.4s var(--ease-spring);
  border: 1px solid rgba(0, 174, 239, 0.05);
  text-align: center;
  padding-bottom: 1.5rem;
}
.color-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 174, 239, 0.15);
  border-color: var(--primary);
}
.color-img-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #f0f4f8;
  position: relative;
}
.color-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.color-card:hover .color-img-wrap img {
  transform: scale(1.1);
}
.color-info {
  padding: 1.5rem 1rem 0.5rem;
}
.color-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-navy);
  margin-bottom: 0.5rem;
}
.color-tag {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: var(--primary-glow);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Responsive Colors */
@media (max-width: 1024px) {
  .colors-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .colors-grid { grid-template-columns: 1fr; }
}

.products-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 0.6rem 1.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.tab-btn.active, .tab-btn:hover {
  background: linear-gradient(135deg, #00AEEF, #2D3092);
  color: var(--white);
  border-color: transparent;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.product-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 174, 239, 0.1);
  border-color: rgba(0, 174, 239, 0.3);
}
.product-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255,255,255,0.9) 0%, transparent 60%);
}
.product-series-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: linear-gradient(135deg, #00AEEF, #2D3092);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
}
.product-body {
  padding: 1.75rem;
}
.product-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--accent-navy);
}
.product-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.spec-tag {
  font-size: 0.75rem;
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(0, 174, 239, 0.25);
  border-radius: 5px;
  color: #5fd4ff;
  background: rgba(0, 174, 239, 0.07);
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
}

.spec-list {
  list-style: none;
  margin-bottom: 1.5rem;
}
.spec-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0, 174, 239, 0.1);
  font-size: 0.9rem;
}
.spec-list li span:first-child {
  color: var(--text-muted);
  font-weight: 500;
}
.spec-list li span:last-child {
  color: var(--accent-navy);
  font-weight: 700;
}
.spec-list li:last-child {
  border-bottom: none;
}

/* ============================================================
   TRUST BAND
   ============================================================ */
.trust-band {
  padding: 6rem 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--bg-dark);
  color: var(--text-light);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
}
.trust-band .trust-value { color: var(--primary); }
.trust-band .trust-label { color: var(--text-muted-light); }
.trust-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.trust-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.15), rgba(0, 174, 239, 0.03));
  border: 1px solid rgba(0, 174, 239, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.trust-label { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.05em; }
.trust-value { font-size: 1rem; font-weight: 700; color: var(--accent-navy); }
.trust-divider { width: 1px; height: 60px; background: var(--glass-border); }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  padding: 9rem 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { font-family: var(--font-heading); font-size: clamp(1.5rem, 2.5vw, 2.2rem); margin-bottom: 1rem; }
.contact-info p { color: var(--text-muted); margin-bottom: 2.5rem; }
.contact-details { list-style: none; }
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.contact-details li .icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: rgba(0, 174, 239, 0.08);
  border: 1px solid rgba(0, 174, 239, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #00AEEF;
}
.contact-details li strong { display: block; color: var(--accent-navy); font-weight: 600; }
.contact-details li span { color: var(--text-muted); font-size: 0.88rem; }
/* Form */
.contact-form {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 3rem;
  backdrop-filter: blur(20px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: #f4f9ff;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(18, 24, 38, 0.4); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: rgba(0, 174, 239, 0.6);
  box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.12);
}
.form-group select option { background: var(--white); color: var(--text-dark); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-dark);
  padding: 5rem 6% 2rem;
  color: var(--text-light);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer .footer-brand p { color: var(--text-muted-light); }
.footer .footer-col ul li a { color: var(--text-muted-light); }
.footer .footer-col ul li a:hover { color: var(--primary); }
.footer .footer-bottom { color: var(--text-muted-light); border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted-light);
  margin: 1rem 0 2rem;
  max-width: 260px;
}
.social-links { display: flex; gap: 0.7rem; }
.social-link {
  width: 42px; height: 42px;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(0, 174, 239, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-muted-light);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.social-link:hover { color: #00AEEF; border-color: rgba(0,174,239,0.4); background: rgba(0,174,239,0.07); }
.footer-col h5 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #00AEEF;
  margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul li a {
  text-decoration: none;
  color: var(--text-muted-light);
  font-size: 0.88rem;
  transition: color 0.25s;
}
.footer-col ul li a:hover { color: var(--primary); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted-light);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #00AEEF;
}
.footer-trust i { font-size: 0.75rem; }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: white;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  transition: all 0.3s var(--ease-spring);
}
.wa-float:hover { transform: scale(1.15); }
.wa-float-pulse {
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: waPulse 2.5s ease infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2); opacity: 0; }
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Intersection observer animation classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ============================================================
   HAMBURGER MENU TOGGLE
   ============================================================ */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 10005;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s ease;
}
.menu-toggle:hover { background: rgba(0,174,239,0.08); }
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #ffffff; /* Visibility on dark hero */
  border-radius: 3px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.menu-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7); /* Solid dark gray */
  backdrop-filter: blur(5px);
  z-index: 9990 !important; /* Must be below navbar */
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}
.nav-overlay.active { 
  opacity: 1; 
  visibility: visible;
  pointer-events: auto;
}

/* ============================================================
   REVEAL — disable on tiny screens for cleaner load
   ============================================================ */
@media (max-width: 480px) {
  .reveal, .reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Scrolled navbar overrides */
.navbar.scrolled .menu-toggle span {
  background: var(--accent-navy);
}

.navbar:not(.scrolled) .nav-logo img {
  /* Removed white filter so logo is always blue */
  filter: none;
}

/* Transition for logo */
.nav-logo { transition: transform 0.3s ease; }

@media (max-width: 900px) {
  /* Navbar - Light theme for mobile by default for visibility */
  .navbar { 
    padding: 0.8rem 5%; 
    background: rgba(255, 255, 255, 0.98); 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    z-index: 10010 !important; /* Force above overlay */
  }
  .nav-logo img { 
    height: 75px !important; 
    filter: none !important; /* Ensure logo isn't inverted on white bg */
  }
  .menu-toggle { 
    display: flex; 
    padding: 12px; 
    background: rgba(0, 174, 239, 0.05);
    border-radius: 12px;
  }
  .menu-toggle span { 
    background: var(--accent-navy); 
    width: 28px;
    height: 3px;
  }
  .nav-cta { display: none; }

  /* Slide-in side menu */
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 85vw);
    height: 100vh;
    background-color: #ffffff !important;
    background: #ffffff !important;
    opacity: 1 !important;
    flex-direction: column;
    padding: 6rem 1.5rem 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    gap: 0;
    overflow-y: auto;
    z-index: 100000 !important;
  }
  .nav-links.active { right: 0; }
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(0,174,239,0.08);
  }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    display: block;
    font-size: 1rem;
    padding: 0.9rem 0.2rem;
    color: var(--accent-navy);
    font-weight: 600;
  }
  .nav-links a::after { display: none; }
  .mobile-only { display: block; }

  /* Dropdown inside mobile menu */
  .navbar .nav-links .nav-item-dropdown .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    background: rgba(0,174,239,0.04) !important;
    border-radius: 10px !important;
    padding: 0.3rem 0 0.6rem 0.8rem !important;
    min-width: unset !important;
    margin-top: 0.2rem !important;
    pointer-events: auto !important;
  }
  .navbar .nav-links .nav-item-dropdown .dropdown-menu li a {
    font-size: 0.88rem !important;
    padding: 0.6rem 0.8rem !important;
  }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    padding: 9rem 5% 3rem;
    text-align: center;
    min-height: auto;
  }
  .hero-content { padding: 0; max-width: 100%; display: flex; flex-direction: column; align-items: center; }
  .hero-desc { margin: 0 auto 1.8rem; max-width: 520px; }
  .hero-actions { justify-content: center; width: 100%; }
  .hero-stats { 
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center; 
    gap: 1.5rem; 
    width: 100%; 
    margin-top: 1.2rem;
    padding-top: 1rem;
  }
  .stat-item { text-align: center; }
  .stat-num { font-size: 1.4rem; }
  .stat-label { font-size: 0.6rem; }
  
  /* Hide scroll indicator on mobile to prevent overlap */
  .hero-scroll { display: none !important; }
  
  /* Hero Visual on Mobile */
  .hero-visual { 
    display: block !important; 
    min-height: 380px !important;
    margin-top: 2.5rem;
    position: relative;
    width: 100%;
  }
  .hv-img-main {
    width: 80% !important;
    height: 200px !important;
    top: 0 !important;
    left: 10% !important;
    z-index: 2 !important;
  }
  .hv-video {
    display: none !important; /* Hide video on mobile hero to reduce clutter */
  }
  .hv-img-small {
    width: 70% !important;
    height: 160px !important;
    bottom: 20px !important;
    right: 5% !important;
    z-index: 1 !important;
  }
  .hv-trust-bubble {
    bottom: -15px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: max-content !important;
    z-index: 10 !important;
    padding: 0.6rem 1rem !important;
  }

  /* Features */
  .features-header { grid-template-columns: 1fr; text-align: center; }
  .features-grid { grid-template-columns: 1fr 1fr; }

  /* Products */
  .products-grid { grid-template-columns: 1fr 1fr; }

  /* Colors grid */
  .colors-grid { grid-template-columns: 1fr 1fr; }

  /* Boss / CTA sections */
  .boss-section { grid-template-columns: 1fr; }
  .boss-visual { height: 300px; }
  .boss-visual-overlay { background: linear-gradient(to top, var(--deep-navy) 10%, transparent); }

  /* Contact */
  .contact-section { grid-template-columns: 1fr; gap: 3rem; }

  /* Trust band */
  .trust-band { flex-wrap: wrap; justify-content: center; gap: 2rem; }
}

/* ============================================================
   MOBILE  ≤ 650px
   ============================================================ */
@media (max-width: 650px) {
  /* Typography */
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.6rem; }

  /* Hero actions */
  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { 
    flex-direction: column; 
    align-items: center; 
    gap: 0.8rem; 
    margin-top: 1.5rem;
    padding-top: 1rem;
  }

  /* Grids */
  .features-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .colors-grid { grid-template-columns: 1fr 1fr; }

  /* Trust band */
  .trust-band { flex-direction: column; text-align: center; padding: 3rem 5%; }
  .trust-item { flex-direction: column; text-align: center; gap: 0.8rem; }
  .trust-divider { display: none; }

  /* Contact form */
  .contact-section { grid-template-columns: 1fr; gap: 3rem; }
  .contact-form { padding: 1.5rem; border-radius: 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-brand p { margin: 1rem auto; }
  .social-links { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.8rem; }

  /* Video section */
  .video-player-wrap { grid-template-columns: 1fr; }
  .video-cards { flex-direction: column; align-items: center; }
  .video-stat-card { width: 100%; max-width: 300px; }

  /* Ticker */
  .ticker-strip { padding: 0.8rem 0; }

  /* Gallery section */
  .gallery-header { padding: 0 5%; }

  /* Floating WA button */
  .wa-float { bottom: 1.2rem; right: 1.2rem; width: 50px; height: 50px; font-size: 1.4rem; }

  /* Product card footer */
  .product-footer { flex-direction: column; gap: 0.8rem; }
  .product-footer .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   SMALL MOBILE  ≤ 480px
   ============================================================ */
@media (max-width: 480px) {
  .hero-title { font-size: 1.85rem; }
  .colors-grid { grid-template-columns: 1fr; }
  .navbar { padding: 0.8rem 4%; }
  .section-title { font-size: 1.45rem; }
  .features-section,
  .products-section,
  .colors-section,
  .video-section,
  .trust-band { padding-left: 4%; padding-right: 4%; }
}

/* ============================================================
   PRODUCT DETAIL PAGES (product-casement / sliding / industrial / auxiliary)
   ============================================================ */
@media (max-width: 900px) {
  .detail-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
  .detail-visual {
    position: relative !important;
    top: 0 !important;
  }
  .detail-content h1 { font-size: 2rem !important; }
  .spec-card-grid { grid-template-columns: 1fr 1fr !important; }
  .design-grid { grid-template-columns: 1fr 1fr !important; }
  .product-detail-section { padding: 7rem 5% 4rem !important; }
}
@media (max-width: 560px) {
  .spec-card-grid { grid-template-columns: 1fr !important; }
  .design-grid { grid-template-columns: 1fr !important; }
  .detail-content h1 { font-size: 1.7rem !important; }
  .product-detail-section { padding: 6rem 4% 3rem !important; }
  .tech-table-wrap { padding: 1.5rem !important; }
}

/* ============================================================
   PAGES.CSS — Page hero mobile
   ============================================================ */
@media (max-width: 768px) {
  .page-hero {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    padding: 9.5rem 5% 3rem !important;
    text-align: center;
  }
  .page-hero-content { max-width: 100% !important; }
  .page-hero-visual { display: none !important; }
  .trust-pill { justify-content: center; margin: 0 auto; }
  .page-hero-content > p { margin: 0 auto; }
  .page-hero-content .hero-actions,
  .page-hero-content .btn { justify-content: center; }

  /* About page */
  .about-mv { grid-template-columns: 1fr !important; padding: 4rem 5% !important; }
  .cert-grid { grid-template-columns: 1fr 1fr !important; }
  .timeline { padding: 0; }
  .tl-item, .tl-right { padding: 0; flex-direction: column; }
  .timeline::before { display: none; }
  .tl-dot { position: static; transform: none; margin-left: 0; margin-bottom: 0.5rem; }

  /* Products page */
  .prod-catalog-grid { grid-template-columns: 1fr !important; }

  /* Gallery */
  .gal-grid { columns: 1 !important; }

  /* Contact page */
  .contact-main-section { grid-template-columns: 1fr !important; gap: 2.5rem !important; padding: 4rem 5% !important; }
  .contact-info-cards { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .cert-grid { grid-template-columns: 1fr !important; }
  .contact-info-cards { grid-template-columns: 1fr !important; }
  .about-mv { grid-template-columns: 1fr !important; }
}
