/* =========================================================
  ELITE AV SWFL - MAIN.CSS (FIXED)
========================================================= */

/* =========================================================
  0) ROOT + GLOBAL RESETS
========================================================= */
:root{
  --bg:#060810;
  --text:#ffffff;
  --muted:rgba(255,255,255,0.75);

  --glass:rgba(10,15,30,0.55);
  --accent:#6ea8ff;
  --gold:#d6b25e;

  --headerH:64px;
  --radius:18px;

  --lightSection:#e9edf2;
  --darkSection:#05070c;
  --darkText:#0b1220;

  --rh-1: clamp(8px, 1.1vw, 12px);
  --rh-2: clamp(12px, 1.6vw, 18px);
  --rh-3: clamp(18px, 2.2vw, 26px);

  --badgeGlow:0.82;

  --tickerSpeed: 42s;
  --marqueeDuration: 36s;
}

*{box-sizing:border-box;margin:0;padding:0;}
html,body{height:100%;}
html{
  scroll-behavior:smooth;
  scroll-padding-top:calc(var(--headerH) + 14px);
}
body{
  font-family:"Inter",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
}
img{max-width:100%;display:block;}

.sr-only{
  position:absolute !important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

/* =========================================================
  1) HEADER
========================================================= */
.header{
  position:fixed; inset:0 0 auto 0;
  height:var(--headerH);
  z-index:9999;
  background:rgba(0,0,0,0.68);
  border-bottom:1px solid rgba(255,255,255,0.10);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
}

.header-inner{
  max-width:1200px;height:100%;
  margin:0 auto;
  padding:0 22px;
  display:flex;
  align-items:center;
  gap:16px;
  justify-content:flex-start;
}

/* Brand */
.brand{
  display:flex;align-items:center;gap:12px;
  text-decoration:none;color:var(--text);
  flex:0 0 auto;
}

.brand-logo-imgWrap{
  width:72px;height:72px;
  min-width:72px;min-height:72px;
  border-radius:0;
  background:transparent;
  border:none;
  box-shadow:none;
  overflow:hidden;
  padding:0;
  display:grid;
  place-items:center;
}

.brand-logo-img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
  background:transparent;
}

.brand-logo-fallback{display:none;font-weight:900;color:#fff;}
.brand-logo-imgWrap.logo-fallback .brand-logo-fallback{
  display:flex;align-items:center;justify-content:center;width:100%;height:100%;
}

.brand-text{display:flex;flex-direction:column;}
.brand-title{font-weight:700;font-size:14px;line-height:1.05;}
.brand-subtitle{font-size:12px;color:rgba(255,255,255,0.68);margin-top:2px;}

/* Social Icons */
.brand-social{
  display:inline-flex;
  align-items:center;
  gap:0px;
  margin-left:12px;
  flex:0 0 auto;
}

.brand-social-link{
  width:60px;height:60px;
  border-radius:999px;
  display:grid;place-items:center;
  color: rgba(255,255,255,0.78);
  text-decoration:none;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 10px 26px rgba(0,0,0,0.35),
    0 1px 0 rgba(255,255,255,0.05) inset;
  transition:
    transform .16s ease,
    color .16s ease,
    background .16s ease,
    filter .16s ease;
}

.brand-social-link:hover{
  background: transparent;
  color: var(--gold);
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.brand-social-link svg{
  width:30px;height:30px;
  fill: currentColor;
  display:block;
  opacity:0.95;
}

/* Nav */
.nav{
  margin-left:auto;
  display:flex;align-items:center;gap:8px;
}

.nav a{
  position:relative;display:inline-flex;align-items:center;justify-content:center;
  padding:10px 12px;border-radius:14px;
  text-decoration:none;font-size:13px;font-weight:600;letter-spacing:.01em;
  color:rgba(255,255,255,0.76);
  transition:transform .18s ease, background .18s ease, color .18s ease;
}

.nav a::after{
  content:"";position:absolute;left:14px;right:14px;bottom:7px;height:2px;border-radius:999px;
  background:linear-gradient(90deg, transparent, var(--gold), transparent);
  transform:scaleX(0);opacity:0;transition:transform .22s ease, opacity .22s ease;
}

.nav a:hover{color:var(--gold);background:rgba(255,255,255,0.06);transform:translateY(-1px);}
.nav a:hover::after{transform:scaleX(1);opacity:1;}

.nav-cta{
  color:var(--gold);
  background:transparent;
  border:none;
  box-shadow:none;
  text-shadow:0 0 6px rgba(214,178,94,0.55), 0 0 14px rgba(214,178,94,0.25);
}

/* Mobile toggle */
.nav-toggle{
  display:none;width:46px;height:40px;padding:10px;border-radius:14px;
  border:1px solid rgba(255,255,255,0.14);
  background:rgba(255,255,255,0.06);
  cursor:pointer;
}
.nav-toggle span{display:block;height:2px;background:rgba(255,255,255,0.88);border-radius:2px;}
.nav-toggle span+span{margin-top:6px;}

/* =========================================================
  2) HERO
========================================================= */
.hero{
  position:relative;
  min-height:100svh;
  padding-top:var(--headerH);
  display:flex;align-items:center;
}

.hero-bg{
  position:absolute;inset:0;
  background-size:cover;background-position:center;background-repeat:no-repeat;
  z-index:0;
  filter:brightness(0.80) contrast(1.05);
}

.hero-overlay{
  position:absolute;inset:0;z-index:1;
  background:
    radial-gradient(900px 500px at 70% 40%, rgba(110,168,255,0.20), transparent 55%),
    linear-gradient(to right, rgba(0,0,0,0.78), rgba(0,0,0,0.38) 55%, rgba(0,0,0,0.80));
}

.hero-content{
  position:relative;z-index:2;width:100%;
  max-width:1200px;margin:0 auto;
  padding: clamp(28px, 4vw, 54px) clamp(18px, 5vw, 56px) clamp(44px, 5vw, 70px);
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(0,0.95fr);
  gap:clamp(18px,3vw,34px);
  align-items:center;
}

.hero-type{max-width:62ch;}

.kicker{
  text-transform:uppercase;letter-spacing:.12em;font-size:clamp(11px, 1.1vw, 12px);
  color:rgba(255,255,255,0.78);
  font-weight:600;margin-bottom:var(--rh-1);
  text-shadow:0 1px 0 rgba(0,0,0,0.55), 0 0 10px rgba(110,168,255,0.10);
}

.headline{
  font-size:clamp(40px, 5vw, 64px);
  letter-spacing:-0.02em;line-height:1.02;
  text-shadow:0 2px 0 rgba(0,0,0,0.55), 0 0 12px rgba(255,255,255,0.10), 0 0 22px rgba(214,178,94,0.08);
}

.headline-line{display:block;}

.headline-soft{
  margin-top:var(--rh-1);
  font-weight:600;
  font-size:clamp(14px, 1.4vw, 18px);
  letter-spacing:0.01em;
  color:rgba(255,255,255,0.78);
  text-shadow:0 1px 0 rgba(0,0,0,0.55), 0 0 10px rgba(255,255,255,0.08);
}

.subhead{
  margin-top:var(--rh-2);
  font-size:clamp(16px, 1.7vw, 18px);
  color:var(--muted);
  line-height:1.55;
  max-width:60ch;
  text-shadow:0 1px 0 rgba(0,0,0,0.55), 0 0 14px rgba(0,0,0,0.35);
}

/* Badges */
.badges{
  display:flex;
  gap:clamp(18px,2.5vw,34px);
  flex-wrap:nowrap;
  margin-top:var(--rh-3);
  align-items:center;
}

.badge-wrap{
  position:relative;
  display:grid;
  place-items:center;
  border-radius:999px;
  padding:10px;
  isolation:isolate;
  flex: 0 1 auto;
}

.badge-wrap::after{
  content:"";
  position:absolute;inset:-28%;
  border-radius:999px;z-index:0;pointer-events:none;
  background:
    radial-gradient(circle at 50% 50%,
      rgba(214,178,94,0.30) 0%,
      rgba(214,178,94,0.18) 18%,
      rgba(214,178,94,0.10) 34%,
      rgba(214,178,94,0.00) 60%);
  filter:blur(18px);
  mix-blend-mode:screen;
  opacity:var(--badgeGlow);
}

.hero-badge{
  height:260px;width:auto;position:relative;z-index:2;
  opacity:0.98;
  filter:drop-shadow(0 18px 34px rgba(0,0,0,0.52)) drop-shadow(0 0 22px rgba(214,178,94,0.16));
  max-width: 100%;
}

/* Hero glass card */
.hero-right{perspective:1200px;perspective-origin:20% 50%;}

.glass{
  background:var(--glass);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:var(--radius);
  padding:clamp(18px, 2vw, 22px);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  box-shadow:0 24px 80px rgba(0,0,0,0.55);
  transform-style:preserve-3d;
  transform:rotateY(-14deg) rotateX(2deg);
  transform-origin:left center;
  position:relative;
  overflow:hidden;
}

.glass::before{
  content:"";position:absolute;inset:-10% -20%;
  background:linear-gradient(140deg,rgba(255,255,255,0.14),rgba(255,255,255,0) 60%);
  border-radius:inherit;pointer-events:none;z-index:0;
}

.glass-title{font-size:20px;font-weight:700;letter-spacing:-0.01em;position:relative;z-index:1;}

.glass-desc{margin-top:8px;font-size:14px;color:rgba(255,255,255,0.70);line-height:1.6;position:relative;z-index:1;}

.service-list{margin-top:14px;font-size:15px;line-height:2;color:rgba(255,255,255,0.82);position:relative;z-index:1;}

.service-list li{display:flex;align-items:center;gap:10px;}

.check{
  width:22px;height:22px;flex:0 0 22px;display:grid;place-items:center;border-radius:999px;
  background:linear-gradient(135deg,rgba(110,168,255,0.20),rgba(110,168,255,0.08));
  border:1px solid rgba(110,168,255,0.25);
  font-size:12px;color:#6ea8ff;
}

.glass-footer{margin-top:16px;padding-top:14px;border-top:1px solid rgba(255,255,255,0.08);display:flex;gap:10px;align-items:center;font-size:13px;color:rgba(255,255,255,0.68);position:relative;z-index:1;}


/* =========================================================
  3) WHY CHOOSE - ULTRA MODERN GLASS PANES
========================================================= */
.why{
  position:relative;
  background:
    radial-gradient(ellipse 120% 80% at 50% 50%, 
      rgba(6,8,16,1) 0%,
      rgba(5,7,12,1) 100%);
  padding:clamp(56px,8vw,120px) clamp(16px,3vw,32px);
  overflow:hidden;
}

/* Neon blue/cyan energy glow - electric and dynamic */
.why::before{
  content:"";
  position:absolute;
  inset:-30%;
  pointer-events:none;
  background:
    radial-gradient(circle at 50% 50%, 
      rgba(0,200,255,0.4) 0%, 
      rgba(0,180,255,0.3) 20%,
      rgba(0,160,255,0.2) 35%,
      transparent 55%),
    radial-gradient(ellipse 140% 100% at 30% 40%, 
      rgba(0,220,255,0.3) 0%, 
      rgba(0,190,255,0.2) 30%,
      transparent 50%),
    radial-gradient(ellipse 140% 100% at 70% 60%, 
      rgba(0,200,255,0.3) 0%, 
      rgba(0,180,255,0.2) 30%,
      transparent 50%);
  animation: energyPulse 8s ease-in-out infinite;
  opacity:0.85;
}

@keyframes energyPulse{
  0%, 100%{
    transform: translate(0,0) scale(1);
    opacity:0.85;
  }
  50%{
    transform: translate(0,-2%) scale(1.05);
    opacity:1;
  }
}

/* Subtle grid overlay with neon blue tint */
.why::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(0,200,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity:0.5;
  -webkit-mask-image:radial-gradient(ellipse 100% 100% at 50% 50%, black 30%, transparent 80%);
  mask-image:radial-gradient(ellipse 100% 100% at 50% 50%, black 30%, transparent 80%);
}

.why-wrap{
  position:relative;
  z-index:1;
  max-width:1200px;
  margin:0 auto;
}

.why-head{
  max-width:900px;
  margin:0 auto clamp(48px,6vw,72px);
  text-align:center;
  position:relative;
}

/* Centered logo */
.why-head::before{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  width:clamp(200px,25vw,350px);
  height:clamp(200px,25vw,350px);
  background-image:url('images/logoMain.png');
  background-size:contain;
  background-position:center;
  background-repeat:no-repeat;
  opacity:0.08;
  z-index:-1;
  pointer-events:none;
  filter:brightness(1.3) contrast(1.2) hue-rotate(180deg);
}

.why-title{
  font-size:clamp(36px,4.2vw,58px);
  letter-spacing:-0.03em;
  line-height:1.08;
  font-weight:800;
  background:linear-gradient(135deg, 
    rgba(255,255,255,0.98) 0%,
    rgba(0,220,255,0.95) 50%,
    rgba(255,255,255,0.98) 100%);
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  text-shadow:0 4px 32px rgba(0,200,255,0.5);
  filter:drop-shadow(0 0 40px rgba(0,200,255,0.4));
}

.why-subtitle{
  margin-top:18px;
  font-size:clamp(15px,1.7vw,19px);
  line-height:1.7;
  color:rgba(255,255,255,0.72);
  max-width:68ch;
  margin-inline:auto;
  font-weight:400;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:clamp(24px,3vw,40px);
  perspective:2000px;
}

/* Ultra-modern glass pane card tilted strongly toward each other */
.why-card{
  position:relative;
  padding:0;
  overflow:hidden;
  border-radius:24px;
  
  /* Glass pane background with neon blue radial gradient */
  background:
    radial-gradient(ellipse 140% 100% at 50% 0%, 
      rgba(0,200,255,0.15) 0%,
      rgba(0,180,255,0.1) 30%,
      rgba(0,0,0,0.4) 70%,
      rgba(0,0,0,0.6) 100%);
  
  /* Frosted glass border with neon blue tint */
  border:1px solid rgba(0,220,255,0.2);
  
  /* Multi-layer shadow for depth with neon blue glow */
  box-shadow:
    0 8px 32px rgba(0,0,0,0.4),
    0 0 40px rgba(0,200,255,0.2),
    0 0 0 1px rgba(0,220,255,0.1) inset,
    0 2px 0 rgba(255,255,255,0.05) inset;
  
  backdrop-filter:blur(20px) saturate(180%);
  -webkit-backdrop-filter:blur(20px) saturate(180%);
  
  /* Strong 3D tilt toward each other */
  transform:perspective(1200px) rotateY(0deg);
  transform-style:preserve-3d;
  transition:transform 0.5s cubic-bezier(0.23,1,0.32,1),
             box-shadow 0.5s cubic-bezier(0.23,1,0.32,1),
             border-color 0.5s ease;
}

/* Left cards tilt RIGHT (facing right card) - 8 degrees */
.why-card:nth-child(odd){
  transform:perspective(1200px) rotateY(8deg);
}

/* Right cards tilt LEFT (facing left card) - 8 degrees */
.why-card:nth-child(even){
  transform:perspective(1200px) rotateY(-8deg);
}

/* Hover state - cards straighten and lift */
.why-card:hover{
  transform:perspective(1200px) rotateY(0deg) translateY(-8px);
  border-color:rgba(0,220,255,0.4);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.5),
    0 0 80px rgba(0,200,255,0.4),
    0 0 0 1px rgba(0,220,255,0.35) inset,
    0 2px 0 rgba(255,255,255,0.1) inset;
}

/* Radial gradient glow overlay on card with neon blue */
.why-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:24px;
  background:
    radial-gradient(ellipse 100% 60% at 50% 0%,
      rgba(0,200,255,0.25) 0%,
      transparent 60%);
  pointer-events:none;
  opacity:0.6;
  transition:opacity 0.4s ease;
  z-index:1;
}

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

/* Subtle animated shimmer effect with electric blue glow */
.why-card::after{
  content:"";
  position:absolute;
  top:-50%;
  left:-50%;
  width:200%;
  height:200%;
  background:linear-gradient(
    120deg,
    transparent 0%,
    rgba(100,220,255,0.08) 45%,
    rgba(0,220,255,0.15) 50%,
    rgba(100,220,255,0.08) 55%,
    transparent 100%);
  transform:translateX(-100%);
  transition:transform 0.8s ease;
  pointer-events:none;
  z-index:2;
}

.why-card:hover::after{
  transform:translateX(100%);
}

/* Image container */
.why-media{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  overflow:hidden;
  border-radius:24px 24px 0 0;
  background:rgba(0,0,0,0.3);
  z-index:3;
}

/* Gradient overlay on image for cohesion with neon blue */
.why-media::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg,
      transparent 0%,
      rgba(0,200,255,0.1) 50%,
      rgba(0,0,0,0.4) 100%);
  z-index:1;
  transition:opacity 0.4s ease;
  pointer-events:none;
}

.why-card:hover .why-media::before{
  opacity:0.6;
}

.why-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform:scale(1);
  filter:brightness(0.95) contrast(1.1) saturate(1.1);
  transition:transform 0.6s cubic-bezier(0.23,1,0.32,1),
             filter 0.6s ease;
}

.why-card:hover .why-media img{
  transform:scale(1.05);
  filter:brightness(1) contrast(1.15) saturate(1.2);
}

/* Title - integrated into card with neon blue gradient */
.why-card .why-h,
h3.why-h{
  position:relative !important;
  font-size:clamp(20px,2.2vw,26px) !important;
  font-weight:700 !important;
  letter-spacing:-0.02em !important;
  line-height:1.2 !important;
  
  /* Gradient text with neon blue */
  background:linear-gradient(135deg,
    rgba(255,255,255,0.98) 0%,
    rgba(0,220,255,0.90) 100%) !important;
  background-clip:text !important;
  -webkit-background-clip:text !important;
  -webkit-text-fill-color:transparent !important;
  
  padding:clamp(24px,3vw,32px) clamp(24px,3vw,36px) !important;
  margin:0 !important;
  text-align:center !important;
  
  /* Subtle border separator with neon blue tint */
  border-bottom:1px solid rgba(0,220,255,0.15) !important;
  
  z-index:3 !important;
  transition:padding 0.4s ease !important;
  
  /* Remove all existing styles that conflict */
  text-shadow:none !important;
  color:transparent !important;
  display:block !important;
  width:100% !important;
  box-sizing:border-box !important;
  overflow:visible !important;
}

.why-card:hover .why-h{
  padding:clamp(28px,3.5vw,36px) clamp(24px,3vw,36px) !important;
}

/* Remove all pseudo-element decorations */
.why-card .why-h::before,
h3.why-h::before,
.why-card .why-h::after,
h3.why-h::after{
  display:none !important;
  content:none !important;
}

/* Body text - seamlessly integrated with neon blue tones */
.why-card .why-p,
p.why-p{
  position:relative !important;
  font-size:clamp(14px,1.5vw,16px) !important;
  line-height:1.75 !important;
  color:rgba(255,255,255,0.80) !important;
  
  /* Subtle gradient background that flows from title with neon blue */
  background:
    linear-gradient(180deg,
      rgba(0,200,255,0.08) 0%,
      rgba(0,0,0,0.2) 100%) !important;
  
  padding:clamp(24px,3vw,32px) clamp(24px,3vw,36px) clamp(28px,3.5vw,40px) !important;
  margin:0 !important;
  text-align:center !important;
  display:block !important;
  box-sizing:border-box !important;
  width:100% !important;
  
  /* Soft inner shadow for depth */
  box-shadow:
    inset 0 1px 0 rgba(0,220,255,0.05),
    inset 0 4px 12px rgba(0,0,0,0.15) !important;
  
  z-index:3 !important;
  text-shadow:0 1px 2px rgba(0,0,0,0.4) !important;
  
  border:none !important;
  border-top:none !important;
  overflow:visible !important;
}

/* =========================================================
  4) REVIEWS
========================================================= */
.reviews{
  position:relative;
  background:var(--lightSection);
  color:var(--darkText);
  border-top:1px solid rgba(0,0,0,0.08);
}

.review-wrap{
  position:relative;
  padding: clamp(70px, 7vw, 110px) 18px;
  padding-bottom: clamp(110px, 10vw, 140px);
  display:grid;
  place-items:center;
  text-align:center;
}

.review-spotlight{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 50% 45%,
      rgba(0,0,0,0.12) 0%,
      rgba(0,0,0,0.06) 28%,
      rgba(0,0,0,0.00) 62%);
}

.review-slider{
  position:relative;
  width:min(980px, 92vw);
  min-height:220px;
  display:grid;
  align-items:center;
  justify-items:center;
}

.review-slide{
  position:absolute;
  inset:0;
  display:grid;
  align-content:center;
  justify-items:center;
  gap:14px;
  opacity:0;
  transform:translateY(6px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.review-slide.is-active{opacity:1;transform:translateY(0);}

.review-quote{
  font-weight:500;
  font-size: clamp(18px, 2.1vw, 28px);
  line-height:1.55;
  letter-spacing:-0.01em;
  max-width: 70ch;
  color: rgba(20,20,20,0.92);
}

.review-stars{
  font-size: 16px;
  letter-spacing: 0.22em;
  color: rgba(0,0,0,0.82);
  user-select:none;
}

.review-author{
  font-size: 14px;
  letter-spacing: 0.04em;
  color: rgba(0,0,0,0.70);
}

.review-cta{
  position:absolute;
  left:0; right:0;
  bottom: clamp(16px, 3.5vw, 34px);
  display:flex;
  justify-content:center;
  z-index:2;
}

.review-cta-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 18px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  text-decoration:none;
  color: rgba(0,0,0,0.78);
  background: rgba(255,255,255,0.55);
  border:1px solid rgba(0,0,0,0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    transform .18s ease,
    background .18s ease,
    color .18s ease,
    box-shadow .18s ease;
}

.review-cta-link:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.75);
  color:#000;
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}

.review-cta-icon{
  font-size:14px;
  opacity:0.85;
}

/* =========================================================
  5) AREAS TICKER
========================================================= */
.areas{
  background:var(--darkSection);
  border:none;
  padding:clamp(24px,3vw,36px) 0;
}

.areas-ticker{
  position:relative;
  overflow:hidden;
  padding:18px 0;
  width:100%;
  display:flex;
  justify-content:center;
}

.areas-track{
  display:inline-flex;
  align-items:center;
  gap:20px;
  white-space:nowrap;
  will-change:transform;
  animation: areasScroll var(--tickerSpeed) linear infinite;
  padding-left: 24px;
}

.areas-track:hover{animation-play-state: paused;}

.areas-item{
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.90);
  text-shadow:
    0 0 12px rgba(255,255,255,0.15),
    0 0 26px rgba(110,168,255,0.12);
  background: none !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

.areas-sep{
  color: rgba(255,255,255,0.28);
  font-size: 18px;
}

.areas-pad{
  display:inline-block;
  width:40px;
}

@keyframes areasScroll{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}

/* =========================================================
  6) MEDIA / GALLERY
========================================================= */
.media{
  position:relative;
  background:var(--darkSection);
  padding:clamp(46px,7vw,88px) clamp(16px,3vw,28px);
  overflow:hidden;
}

.media-wrap{max-width:1200px;margin:0 auto;}

.gallery-head{text-align:center;margin-bottom:clamp(28px,4vw,42px);}

.gallery-title{
  font-size:clamp(32px,4vw,56px);
  letter-spacing:-0.02em;
  line-height:1.08;
  color:rgba(255,255,255,0.95);
}

.gallery-subtitle{
  margin-top:12px;
  font-size:clamp(15px,1.6vw,17px);
  color:rgba(255,255,255,0.72);
  line-height:1.7;
}

.media-marquee{
  position:relative;
  width:100%;
  padding:clamp(18px,2vw,24px) 0;
}

.media-marquee-viewport{
  position:relative;
  width:100%;
  overflow:hidden;
  border-radius:18px;
  background:rgba(0,0,0,0.22);
  border:1px solid rgba(255,255,255,0.06);
  /* Enable smooth scrolling for touch */
  -webkit-overflow-scrolling:touch;
}

/* Hide scrollbar for gallery viewport */
.media-marquee-viewport::-webkit-scrollbar{
  display:none;
}

.media-track{
  display:flex;
  gap:22px;
  padding:22px;
  animation:marqueeScroll var(--marqueeDuration) linear infinite;
  will-change:transform;
}

.media-track.is-paused{
  animation-play-state:paused;
}

@keyframes marqueeScroll{
  0%{transform:translateX(0);}
  100%{transform:translateX(-50%);}
}

.media-btn{
  flex:0 0 auto;
  width:clamp(240px,20vw,300px);
  aspect-ratio:16/9;
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.10);
  background:rgba(0,0,0,0.24);
  cursor:pointer;
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
  box-shadow:0 8px 22px rgba(0,0,0,0.35);
  padding:0;
  -webkit-tap-highlight-color:transparent;
  touch-action:manipulation;
}

/* Only apply hover effect on devices that support hover */
@media (hover: hover) and (pointer: fine) {
  .media-btn:hover{
    transform:scale(1.05);
    border-color:rgba(110,168,255,0.28);
    box-shadow:0 12px 32px rgba(0,0,0,0.45),0 0 0 2px rgba(110,168,255,0.18);
  }
}

/* Active state for touch devices */
.media-btn:active{
  transform:scale(0.98);
}

.media-thumb{
  width:100%;height:100%;object-fit:cover;display:block;
}

/* Gallery Modal */
.gallery-modal{
  position:fixed;inset:0;z-index:99999;
  display:flex;align-items:center;justify-content:center;
  opacity:0;pointer-events:none;
  transition:opacity .28s ease;
}

.gallery-modal.is-open{
  opacity:1;
  pointer-events:auto;
}

.gallery-backdrop{
  position:absolute;inset:0;
  background:rgba(0,0,0,0.92);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}

.gallery-shell{
  position:relative;
  width:90vw;
  max-width:1100px;
  max-height:90vh;
  z-index:2;
}

.gallery-close{
  position:absolute;
  top:-50px;right:0;
  width:44px;height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.18);
  background:rgba(0,0,0,0.50);
  color:rgba(255,255,255,0.92);
  font-size:22px;
  cursor:pointer;
  display:grid;place-items:center;
  transition:transform .18s ease,background .18s ease;
  z-index:10;
}

.gallery-close:hover{
  background:rgba(0,0,0,0.70);
  transform:scale(1.08);
}

.gallery-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:48px;height:48px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.18);
  background:rgba(0,0,0,0.60);
  color:rgba(255,255,255,0.92);
  font-size:32px;
  cursor:pointer;
  display:grid;place-items:center;
  transition:transform .18s ease,background .18s ease;
  z-index:10;
  -webkit-tap-highlight-color:transparent;
  touch-action:manipulation;
  user-select:none;
}

.gallery-prev{left:-60px;}
.gallery-next{right:-60px;}

@media (hover: hover) and (pointer: fine) {
  .gallery-nav:hover{
    background:rgba(0,0,0,0.80);
    transform:translateY(-50%) scale(1.08);
  }
}

.gallery-nav:active{
  transform:translateY(-50%) scale(0.95);
}

.gallery-stage{
  position:relative;
  width:100%;
  max-height:85vh;
  border-radius:18px;
  overflow:hidden;
  background:rgba(0,0,0,0.40);
  border:1px solid rgba(255,255,255,0.12);
  box-shadow:0 24px 80px rgba(0,0,0,0.70);
}

.gallery-image{
  width:100%;
  height:auto;
  max-height:85vh;
  object-fit:contain;
  display:block;
}

.gallery-dots{
  position:absolute;
  bottom:-42px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  z-index:10;
}

.gallery-dot{
  width:10px;height:10px;
  border-radius:999px;
  background:rgba(255,255,255,0.32);
  cursor:pointer;
  transition:background .18s ease,transform .18s ease;
}

.gallery-dot.is-active{
  background:var(--gold);
  transform:scale(1.2);
}

.gallery-dot:hover{
  background:rgba(255,255,255,0.68);
}

/* =========================================================
  7) ABOUT
========================================================= */
.about{
  position:relative;
  background:var(--lightSection);
  padding:clamp(46px,7vw,88px) clamp(16px,3vw,28px);
  color:var(--darkText);
}

.about-wrap{max-width:1000px;margin:0 auto;}

.about-card{
  background:
    linear-gradient(145deg, rgba(255,255,255,0.96), rgba(255,255,255,0.94)),
    linear-gradient(145deg, #fefeff, #f4f7f9);
  border:1px solid rgba(11,18,32,0.06);
  border-radius:22px;
  padding:clamp(24px,3vw,42px);
  box-shadow:0 18px 60px rgba(0,0,0,0.10),0 1px 0 rgba(255,255,255,0.70) inset;
}

.about-grid{
  display:grid;
  grid-template-columns:minmax(0,0.9fr) minmax(0,1.1fr);
  gap:clamp(28px,4vw,52px);
  align-items:start;
}

.about-photo{
  position:relative;
  width:100%;
  aspect-ratio:1;
  border-radius:18px;
  overflow:hidden;
  background:linear-gradient(135deg,rgba(110,168,255,0.12),rgba(110,168,255,0.06));
  border:1px solid rgba(110,168,255,0.14);
  box-shadow:0 14px 38px rgba(0,0,0,0.12);
  display:grid;place-items:center;
}

.about-photo-img{
  width:100%;height:100%;object-fit:cover;display:block;
}

.about-photo-fallback{
  display:none;
  font-size:42px;font-weight:900;color:rgba(110,168,255,0.32);
}

.about-eyebrow{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:rgba(11,18,32,0.68);
  font-weight:700;
  margin-bottom:10px;
}

.about-title{
  font-size:clamp(28px,3.5vw,44px);
  letter-spacing:-0.02em;
  line-height:1.08;
  color:#0b1220;
  margin-bottom:14px;
}

.about-text{
  font-size:16px;
  line-height:1.75;
  color:rgba(11,18,32,0.82);
  margin-bottom:18px;
}

.about-list{
  font-size:15px;
  line-height:1.9;
  color:rgba(11,18,32,0.78);
  margin-bottom:24px;
  padding-left:18px;
}

.about-list li{
  position:relative;
  padding-left:8px;
}

.about-list li::marker{
  color:rgba(110,168,255,0.62);
}

.about-actions{
  display:flex;gap:12px;flex-wrap:wrap;margin-bottom:18px;
}

.about-btn{
  padding:12px 20px;
  border-radius:14px;
  font-size:14px;
  font-weight:700;
  text-decoration:none;
  display:inline-flex;align-items:center;justify-content:center;
  transition:transform .18s ease,filter .18s ease;
}

.about-btn-primary{
  background:linear-gradient(135deg,rgba(110,168,255,0.22),rgba(110,168,255,0.12));
  border:1px solid rgba(110,168,255,0.24);
  color:#0b1220;
  box-shadow:0 6px 18px rgba(110,168,255,0.16);
}

.about-btn-primary:hover{
  transform:translateY(-1px);
  filter:brightness(1.08);
}

.about-btn-ghost{
  background:transparent;
  border:1px solid rgba(11,18,32,0.14);
  color:#0b1220;
}

.about-btn-ghost:hover{
  background:rgba(11,18,32,0.04);
  transform:translateY(-1px);
}

.about-fineprint{
  font-size:13px;
  color:rgba(11,18,32,0.62);
  margin-top:14px;
}

/* =========================================================
  8) SCHEDULE
========================================================= */
.schedule{
  position:relative;
  background:var(--darkSection);
  padding:clamp(46px,7vw,88px) clamp(16px,3vw,28px);
  text-align:center;
}

.schedule-wrap{max-width:800px;margin:0 auto;}

.schedule-title{
  font-size:clamp(32px,4vw,56px);
  letter-spacing:-0.02em;
  line-height:1.08;
  color:rgba(255,255,255,0.95);
}

.schedule-subtitle{
  margin-top:14px;
  font-size:clamp(15px,1.6vw,17px);
  color:rgba(255,255,255,0.72);
  line-height:1.7;
  max-width:70ch;
  margin-left:auto;
  margin-right:auto;
}

.schedule-actions{
  margin-top:28px;
  display:flex;gap:12px;justify-content:center;flex-wrap:wrap;
}

.schedule-btn{
  padding:14px 24px;
  border-radius:14px;
  font-size:15px;
  font-weight:700;
  text-decoration:none;
  display:inline-flex;align-items:center;justify-content:center;
  transition:transform .18s ease,filter .18s ease,box-shadow .18s ease;
}

.schedule-btn-primary{
  background:
    radial-gradient(140% 140% at 20% 10%, rgba(214,178,94,0.32), rgba(214,178,94,0.18) 65%),
    linear-gradient(180deg, rgba(214,178,94,0.24), rgba(214,178,94,0.16));
  border:1px solid rgba(214,178,94,0.32);
  color:rgba(255,255,255,0.95);
  box-shadow:0 10px 28px rgba(214,178,94,0.22);
}

.schedule-btn-primary:hover{
  transform:translateY(-2px);
  filter:brightness(1.12);
  box-shadow:0 14px 36px rgba(214,178,94,0.32);
}

.schedule-btn-ghost{
  background:transparent;
  border:1px solid rgba(255,255,255,0.14);
  color:rgba(255,255,255,0.92);
}

.schedule-btn-ghost:hover{
  background:rgba(255,255,255,0.06);
  transform:translateY(-2px);
}

/* =========================================================
  9) CONTACT
========================================================= */
.contact{
  position:relative;
  background:
    radial-gradient(1100px 900px at 40% 30%, rgba(110,168,255,0.05), transparent 70%),
    linear-gradient(180deg, #04060a, #05070c);
  padding:clamp(46px,7vw,88px) clamp(16px,3vw,28px);
}

.contact-inner{
  max-width:1100px;
  margin:0 auto;
  position:relative;
  z-index:1;
}

.contact-grid{
  display:grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(18px, 3vw, 44px);
  align-items:start;
}

.contact-copy{padding: 14px 0 0 clamp(0px, 1.6vw, 18px);}

.contact-title{
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1.06;
  color: rgba(255,255,255,0.95);
}

.contact-subtitle{
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.74);
  max-width: 60ch;
}

.contact-meta{
  margin-top: 16px;
  display:flex;gap:10px;align-items:center;
  color: rgba(255,255,255,0.62);
  font-size: 13px;
}

.contact-dot{
  width:10px;height:10px;border-radius:999px;
  background: radial-gradient(circle, rgba(214,178,94,0.9), rgba(214,178,94,0.10));
  box-shadow: 0 0 18px rgba(214,178,94,0.18);
}

.contact-form{
  position:relative;
  border-radius: 22px;
  padding: clamp(16px, 2.4vw, 22px);
  background:
    radial-gradient(140% 120% at 20% 10%, rgba(255,255,255,0.10), rgba(255,255,255,0.02) 55%, rgba(255,255,255,0.01)),
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
  box-shadow:
    0 30px 110px rgba(0,0,0,0.55),
    0 1px 0 rgba(255,255,255,0.06) inset;
  overflow:hidden;
}

.field-row{display:grid;grid-template-columns: 1fr 1fr;gap: 12px;}
.field{display:grid;gap: 8px;margin-top: 12px;}

.label{
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.70);
  font-weight: 800;
}

.input, .textarea, select.input{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.22);
  color: rgba(255,255,255,0.92);
  outline:none;
  transition: border-color .18s ease, background .18s ease;
}

.input:focus, .textarea:focus, select.input:focus{
  border-color: rgba(214,178,94,0.38);
  background: rgba(0,0,0,0.28);
}

.textarea{resize: vertical;min-height: 160px;}

.submit{
  margin-top: 14px;
  width:100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(214,178,94,0.20);
  color: rgba(255,255,255,0.92);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor:pointer;
  transition: transform .18s ease, filter .18s ease, background .18s ease;
}

.submit:hover{
  transform: translateY(-1px);
  filter: brightness(1.06);
  background: rgba(214,178,94,0.26);
}

/* =========================================================
  10) FOOTER
========================================================= */
.footer{
  background:#04060a;
  color:rgba(255,255,255,0.86);
  border-top:1px solid rgba(255,255,255,0.10);
}

.footer-inner{max-width:1200px;margin:0 auto;padding:30px 18px;}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  color:rgba(255,255,255,0.62);
  font-size:13px;
}

.footer-note{color:rgba(255,255,255,0.72);}

/* =========================================================
  11) FLOATING ACTION BAR (Mobile) + DESKTOP BUTTON
========================================================= */

/* Desktop floating button (left side, hidden on mobile) */
.fcb-floating.desktop-only {
  position: fixed;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10001;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 14px;
  height: 56px;
  border-radius: 14px;

  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;

  background:
    radial-gradient(120% 120% at 20% 20%, rgba(255,255,255,.18), rgba(255,255,255,0) 55%),
    linear-gradient(135deg, #071a3a 0%, #0b2a6b 55%, #06152f 100%);

  border: 1px solid rgba(255,255,255,.15);
  opacity: .94;

  box-shadow:
    0 14px 30px rgba(0,0,0,.35),
    0 0 0 1px rgba(0, 166, 255, .10) inset;

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.fcb-floating.desktop-only:hover {
  opacity: 1;
  box-shadow:
    0 18px 38px rgba(0,0,0,.45),
    0 0 0 1px rgba(0, 166, 255, .18) inset;
}

.fcb-floating.desktop-only:active {
  transform: translateY(-50%) scale(.97);
}

.fcb-icon {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 8px 16px rgba(0,0,0,.22);
  font-size: 15px;
  line-height: 1;
}

.fcb-text {
  white-space: nowrap;
}

.fcb-shine {
  position: absolute;
  inset: -60% -70%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 35%,
    rgba(255,255,255,.18) 50%,
    rgba(255,255,255,0) 65%
  );
  transform: translateX(-55%) rotate(10deg);
  animation: fcbShine 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes fcbShine {
  0%, 65% { transform: translateX(-60%) rotate(10deg); opacity: 0; }
  70%     { opacity: .85; }
  88%     { opacity: .25; }
  100%    { transform: translateX(60%) rotate(10deg); opacity: 0; }
}

/* Mobile Floating Action Bar (bottom dock) */
.floating-action-bar {
  display: none;
}

@media (max-width: 768px) {
  /* Hide desktop button on mobile */
  .fcb-floating.desktop-only {
    display: none !important;
  }

  /* Show floating action bar */
  .floating-action-bar {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10001;
    
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    
    padding: 10px 16px;
    border-radius: 24px;
    
    background:
      radial-gradient(140% 140% at 30% 20%, rgba(255,255,255,.14), rgba(255,255,255,0) 65%),
      linear-gradient(135deg, rgba(7,26,58,0.95) 0%, rgba(11,42,107,0.95) 55%, rgba(6,21,47,0.95) 100%);
    
    border: 1px solid rgba(255,255,255,.18);
    box-shadow:
      0 12px 40px rgba(0,0,0,.5),
      0 0 0 1px rgba(0,166,255,.12) inset,
      0 -1px 0 rgba(255,255,255,.1) inset;
    
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    
    animation: fabSlideUp 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
  }

  @keyframes fabSlideUp {
    from {
      opacity: 0;
      transform: translateX(-50%) translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
  }

  /* Social icons (smaller, on sides) */
  .fab-link.fab-social {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    
    transition: all .2s ease;
    position: relative;
    overflow: hidden;
  }

  .fab-link.fab-social::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,.15), transparent 70%);
    opacity: 0;
    transition: opacity .2s ease;
  }

  .fab-link.fab-social:active {
    transform: scale(0.92);
    background: rgba(255,255,255,.10);
  }

  .fab-link.fab-social:active::before {
    opacity: 1;
  }

  .fab-link.fab-social svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
  }

  /* Main contact button (center, larger) */
  .fab-link.fab-main {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    
    background:
      radial-gradient(130% 130% at 30% 20%, rgba(214,178,94,0.35), rgba(214,178,94,0.18) 55%),
      linear-gradient(135deg, rgba(214,178,94,0.25), rgba(214,178,94,0.15));
    
    border: 1.5px solid rgba(214,178,94,.4);
    
    box-shadow:
      0 8px 24px rgba(214,178,94,.3),
      0 0 0 1px rgba(214,178,94,.15) inset,
      0 -2px 8px rgba(255,255,255,.1) inset;
    
    color: rgba(255,255,255,0.95);
    text-decoration: none;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    
    transition: all .22s cubic-bezier(0.2, 0.9, 0.3, 1);
    position: relative;
    overflow: hidden;
  }

  .fab-shine {
    position: absolute;
    inset: -80% -90%;
    background: linear-gradient(
      120deg,
      rgba(255,255,255,0) 35%,
      rgba(255,255,255,.25) 50%,
      rgba(255,255,255,0) 65%
    );
    transform: translateX(-60%) rotate(25deg);
    animation: fabShine 4s ease-in-out infinite;
    pointer-events: none;
  }

  @keyframes fabShine {
    0%, 60% { 
      transform: translateX(-70%) rotate(25deg); 
      opacity: 0; 
    }
    70% { opacity: 1; }
    85% { opacity: 0.3; }
    100% { 
      transform: translateX(70%) rotate(25deg); 
      opacity: 0; 
    }
  }

  .fab-main:active {
    transform: scale(0.94);
    box-shadow:
      0 4px 16px rgba(214,178,94,.25),
      0 0 0 1px rgba(214,178,94,.2) inset;
  }

  .fab-icon {
    width: 22px;
    height: 22px;
    margin-bottom: -2px;
  }

  .fab-label {
    line-height: 1;
    text-shadow: 0 1px 2px rgba(0,0,0,.3);
  }
}

/* =========================================================
  12) RESPONSIVE
========================================================= */
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr;gap:18px;}
  .hero-right{perspective:900px;}
  .glass{transform: rotateY(-8deg) rotateX(1deg);}
  .about-grid{grid-template-columns:1fr;}
  .contact-grid{grid-template-columns:1fr;}
  .field-row{grid-template-columns:1fr;}
  .why-card{grid-column:span 12;}
}

@media (max-width: 860px){
  .nav-toggle{display:block;}

  .nav{
    display:none;
    position:absolute;
    top: calc(var(--headerH) - 6px);
    left:14px;right:14px;
    padding:12px;
    flex-direction:column;
    gap:6px;
    background:rgba(0,0,0,0.82);
    border:1px solid rgba(255,255,255,0.10);
    border-radius:18px;
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    z-index:200;
  }

  .nav a{width:100%;justify-content:flex-start;}
  .brand-social{margin-left:8px;}
}

/* Mobile: FORCE button to bottom center */
@media (max-width: 768px) {
  .fcb-floating,
  a.fcb-floating,
  #floatingContactBtn.fcb-floating,
  a#floatingContactBtn {
    position: fixed !important;
    top: auto !important;
    bottom: 14px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    padding: 14px 18px !important;
    height: 58px !important;
    border-radius: 16px !important;
  }

  .fcb-floating:active,
  a.fcb-floating:active,
  #floatingContactBtn:active {
    transform: translateX(-50%) scale(.97) !important;
  }

  .fcb-floating.fcb-pop,
  #floatingContactBtn.fcb-pop {
    animation: fcbPopMobile .42s cubic-bezier(.2,.9,.2,1) !important;
  }

  @keyframes fcbPopMobile {
    0%   { transform: translateX(-50%) scale(1) !important; }
    45%  { transform: translateX(-50%) scale(1.14) !important; }
    100% { transform: translateX(-50%) scale(1) !important; }
  }

  /* Gallery modal mobile improvements */
  .gallery-shell{
    width:95vw;
    max-height:85vh;
  }

  .gallery-close{
    top:10px;
    right:10px;
    width:40px;
    height:40px;
    font-size:20px;
  }

  .gallery-nav{
    width:44px;
    height:44px;
    font-size:28px;
  }

  .gallery-prev{
    left:10px;
  }

  .gallery-next{
    right:10px;
  }

  .gallery-dots{
    bottom:-38px;
    gap:8px;
  }

  .gallery-dot{
    width:8px;
    height:8px;
  }

  .gallery-stage{
    max-height:75vh;
    border-radius:12px;
  }

  .gallery-image{
    max-height:75vh;
  }

  /* Make gallery track smaller on mobile */
  .media-btn{
    width:clamp(200px,45vw,280px);
  }

  .media-track{
    gap:16px;
    padding:16px;
  }
}

/* Mobile: keep hero badges side-by-side */
@media (max-width: 640px){
  /* Header adjustments */
  .header-inner{
    padding:0 14px;
    gap:10px;
  }

  .brand{
    gap:8px;
  }

  .brand-logo-imgWrap{
    width:56px;height:56px;
    min-width:56px;min-height:56px;
  }

  .brand-title{
    font-size:13px;
  }

  .brand-subtitle{
    font-size:11px;
  }

  /* Hide header social icons on mobile */
  .brand-social{
    display:none !important;
  }

  .nav-toggle{
    width:42px;
    height:38px;
  }

  /* Hero badges */
  .badges{
    display:flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }

  .badge-wrap{
    flex: 0 0 calc(50% - 6px);
    padding: 6px;
  }

  .hero-badge{
    width: 100%;
    height: auto;
    max-height: 140px;
    object-fit: contain;
  }

  /* Why section mobile adjustments */
  .why-grid{
    grid-template-columns:1fr;
    gap:clamp(20px,5vw,28px);
  }

  .why-card{
    /* Remove 3D tilt on mobile */
    transform:perspective(1200px) rotateY(0deg) !important;
  }

  .why-card:hover{
    transform:perspective(1200px) rotateY(0deg) translateY(-4px) !important;
  }

  .why-title{
    font-size:clamp(28px,7vw,42px);
  }

  .why-subtitle{
    font-size:clamp(14px,4vw,17px);
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  .review-slide{transition:none;transform:none;}
  .areas-track{animation:none;}
  .media-track{animation:none;}
  .fcb-floating,
  .fcb-shine{
    animation: none !important;
    transition: none !important;
  }
}
