/* ============================================================
   JBL PartyBox Speaker Rental Mumbai — Premium Landing Page CSS
   CrewRent Enterprises | crewrent.in
   Version: 2.0 | Full Revamp
   ============================================================ */

/* ─── Google Font Import ─────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ─── CSS Variables ──────────────────────────────────────── */
:root {
  /* Brand Colors */
  --jbl-orange:        #FF5F00;
  --jbl-orange-light:  #FF8C00;
  --jbl-orange-glow:   rgba(255, 95, 0, 0.25);
  --jbl-teal:          #00423C;
  --jbl-teal-mid:      #005555;
  --jbl-teal-dark:     #002926;
  --jbl-teal-glass:    rgba(0, 66, 60, 0.55);

  /* Accent */
  --accent-purple:     #7c3aed;
  --accent-cyan:       #06b6d4;
  --accent-green:      #22c55e;

  /* Neutrals */
  --white:             #ffffff;
  --off-white:         #f8fafc;
  --light-gray:        #f1f5f9;
  --mid-gray:          #64748b;
  --dark:              #0f172a;

  /* Glassmorphism */
  --glass-bg:          rgba(255, 255, 255, 0.08);
  --glass-border:      rgba(255, 255, 255, 0.15);
  --glass-shadow:      0 8px 32px rgba(0, 0, 0, 0.3);

  /* Cards */
  --card-radius:       20px;
  --card-shadow:       0 4px 24px rgba(0, 66, 60, 0.08);
  --card-shadow-hover: 0 20px 60px rgba(0, 66, 60, 0.18);

  /* Typography */
  --font-primary:      'Plus Jakarta Sans', sans-serif;
  --font-secondary:    'Inter', sans-serif;
}

/* ─── Base Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font-primary);
  color: var(--dark);
  overflow-x: hidden;
  background: var(--white);
}

/* ─── Utility Classes ────────────────────────────────────── */
.jbl-highlight      { color: var(--jbl-orange); }
.jbl-text-teal      { color: var(--jbl-teal); }
.jbl-bg-dark        { background: var(--jbl-teal-dark); }
.text-gradient      { background: linear-gradient(135deg, var(--jbl-orange), #ffad00); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 18px;
  background: rgba(255, 95, 0, 0.1);
  border: 1px solid rgba(255, 95, 0, 0.25);
  border-radius: 50px;
  color: var(--jbl-orange);
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--jbl-teal);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-title .highlight { color: var(--jbl-orange); }

/* ─── Scroll Animations ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left  { opacity:0; transform: translateX(-50px); transition: opacity .7s .1s cubic-bezier(.22,1,.36,1), transform .7s .1s cubic-bezier(.22,1,.36,1); }
.reveal-right { opacity:0; transform: translateX(50px);  transition: opacity .7s .1s cubic-bezier(.22,1,.36,1), transform .7s .1s cubic-bezier(.22,1,.36,1); }
.reveal-left.visible, .reveal-right.visible { opacity:1; transform: translateX(0); }

/* Stagger delays */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }

/* ─── Keyframe Animations ────────────────────────────────── */
@keyframes float-y   { 0%,100%{transform:translateY(0)}    50%{transform:translateY(-18px)} }
@keyframes float-x   { 0%,100%{transform:translateX(0)}    50%{transform:translateX(-10px)} }
@keyframes pulse-ring { 0%{box-shadow:0 0 0 0 rgba(255,95,0,.4)} 70%{box-shadow:0 0 0 14px rgba(255,95,0,0)} 100%{box-shadow:0 0 0 0 rgba(255,95,0,0)} }
@keyframes spin-slow  { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
@keyframes wave-move  { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes particle-rise { 0%{opacity:0; transform:translateY(0) scale(0)} 20%{opacity:.8} 100%{opacity:0; transform:translateY(-120px) scale(1)} }
@keyframes glow-pulse { 0%,100%{opacity:.5} 50%{opacity:1} }
@keyframes badge-pop  { 0%{transform:scale(.8) rotate(-5deg); opacity:0} 100%{transform:scale(1) rotate(0deg); opacity:1} }
@keyframes slide-up   { from{opacity:0; transform:translateY(25px)} to{opacity:1; transform:translateY(0)} }
@keyframes shimmer    { 0%{background-position:-200% 0} 100%{background-position:200% 0} }
@keyframes ticker     { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ─── BREADCRUMB ─────────────────────────────────────────── */
.jbl-breadcrumb {
  background: var(--light-gray);
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
}
.jbl-breadcrumb ol { margin: 0; padding: 0; }
.jbl-breadcrumb .breadcrumb-item a {
  color: var(--jbl-teal);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 500;
  transition: color .2s;
}
.jbl-breadcrumb .breadcrumb-item a:hover { color: var(--jbl-orange); }
.jbl-breadcrumb .breadcrumb-item.active { color: var(--mid-gray); font-size: .85rem; }
.jbl-breadcrumb .breadcrumb-item+.breadcrumb-item::before { color: var(--mid-gray); }

/* ─── HERO SECTION ───────────────────────────────────────── */
.jbl-hero {
  background: linear-gradient(145deg, var(--jbl-teal-dark) 0%, var(--jbl-teal) 55%, #003333 100%);
  min-height: auto;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 40px 0 60px;
}

/* Animated background shapes */
.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-bg-shape-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,95,0,.18) 0%, transparent 70%);
  top: -200px; right: -200px;
  animation: glow-pulse 4s ease-in-out infinite;
}
.hero-bg-shape-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(6,182,212,.12) 0%, transparent 70%);
  bottom: -150px; left: -100px;
  animation: glow-pulse 6s ease-in-out infinite 2s;
}
.hero-bg-shape-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(124,58,237,.1) 0%, transparent 70%);
  top: 40%; left: 40%;
  animation: glow-pulse 5s ease-in-out infinite 1s;
}

/* Grid overlay */
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Floating particles */
.particles-container { position:absolute; inset:0; pointer-events:none; overflow:hidden; }
.particle {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--jbl-orange);
  animation: particle-rise linear infinite;
  opacity: 0;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,95,0,.15);
  border: 1px solid rgba(255,95,0,.3);
  border-radius: 50px;
  padding: 7px 14px;
  color: var(--jbl-orange-light);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  animation: slide-up .6s ease both;
}

.hero-heading {
  font-size: clamp(1.75rem, 6vw, 4.25rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1rem;
  animation: slide-up .6s .1s ease both;
}
.hero-heading .accent { color: var(--jbl-orange); }

.hero-subtext {
  font-size: clamp(.9rem, 2.5vw, 1.15rem);
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 560px;
  animation: slide-up .6s .2s ease both;
}

/* CTA Buttons */
.btn-jbl-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--jbl-orange) 0%, var(--jbl-orange-light) 100%);
  color: var(--white);
  padding: 15px 32px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all .3s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 8px 30px rgba(255,95,0,.4), 0 2px 8px rgba(0,0,0,.2);
  position: relative;
  overflow: hidden;
}
.btn-jbl-primary::before {
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(255,255,255,.2), transparent);
  opacity:0; transition: opacity .3s;
}
.btn-jbl-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 48px rgba(255,95,0,.5); color:white; }
.btn-jbl-primary:hover::before { opacity:1; }
.btn-jbl-primary:active { transform: translateY(0) scale(.98); }

.btn-jbl-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  padding: 15px 32px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all .3s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 8px 30px rgba(37,211,102,.35);
}
.btn-jbl-wa:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(37,211,102,.5); color:white; }

.btn-jbl-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,.4);
  cursor: pointer;
  text-decoration: none;
  transition: all .3s;
  backdrop-filter: blur(6px);
}
.btn-jbl-outline:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); color:white; transform: translateY(-2px); }

/* Hero floating badges */
.hero-badge-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.5rem;
  animation: slide-up .6s .4s ease both;
}
.hero-float-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: 50px;
  padding: 7px 13px;
  color: rgba(255,255,255,.9);
  font-size: .78rem;
  font-weight: 600;
  transition: all .3s;
  white-space: nowrap;
}
.hero-float-badge .dot {
  width: 7px; height: 7px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
}
.hero-float-badge:hover { background: rgba(255,95,0,.15); border-color: rgba(255,95,0,.4); transform: scale(1.05); }

/* Hero image side */
.hero-img-wrap {
  position: relative;
  animation: slide-up .8s .15s ease both;
  padding: 16px 24px;
}
.hero-speaker-img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: block;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  animation: float-y 6s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.5));
}
.hero-glow-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 110%; height: 110%;
  background: radial-gradient(ellipse at center, rgba(255,95,0,.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  animation: glow-pulse 3s ease-in-out infinite;
}
.hero-card-badge {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
  z-index: 5;
  animation: badge-pop .6s ease both;
}
.hero-card-badge.badge-top-left  { top: 8%;  left: 2%; animation-delay: .5s; }
.hero-card-badge.badge-bot-right { bottom: 8%; right: 2%; animation-delay: .7s; }
.hero-card-badge.badge-top-right { top: 8%; right: 2%; animation-delay: .9s; }

/* Trust bar */
.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 1.75rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  animation: slide-up .6s .5s ease both;
  padding-bottom: 4px;
}
.hero-trust-bar::-webkit-scrollbar { display: none; }
.trust-stat { text-align: center; flex-shrink: 0; }
.trust-stat .num { font-size: 1.5rem; font-weight: 900; color: var(--jbl-orange); line-height:1; }
.trust-stat .lbl { font-size: .7rem; color: rgba(255,255,255,.6); font-weight: 500; margin-top: 2px; white-space: nowrap; }
.trust-divider { width:1px; height:36px; background: rgba(255,255,255,.2); flex-shrink: 0; }

/* ─── TICKER STRIP ───────────────────────────────────────── */
.jbl-ticker {
  background: var(--jbl-orange);
  color: var(--white);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  font-weight: 600;
  padding: 0 32px;
  white-space: nowrap;
}
.ticker-sep { opacity: .5; }

/* ─── MODEL SLIDER SECTION ───────────────────────────────── */
.models-section {
  background: var(--off-white);
  padding: 100px 0 80px;
  overflow: hidden;
}

.models-slider-wrap {
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--jbl-orange) transparent;
  -webkit-overflow-scrolling: touch;
}
.models-slider-wrap::-webkit-scrollbar { height: 4px; }
.models-slider-wrap::-webkit-scrollbar-thumb { background: var(--jbl-orange); border-radius: 2px; }

.models-slider {
  display: flex;
  gap: 20px;
  padding: 8px 4px 12px;
  width: max-content;
  margin: 0 auto;
}

.model-card {
  width: 280px;
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  border: 2px solid transparent;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition: all .35s cubic-bezier(.22,1,.36,1);
  flex-shrink: 0;
  position: relative;
}
.model-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--jbl-orange);
  box-shadow: 0 24px 64px rgba(255,95,0,.2);
}
.model-card.active {
  border-color: var(--jbl-orange);
  box-shadow: 0 16px 48px rgba(255,95,0,.25);
}
.model-card.active::after {
  content:'';
  position:absolute; bottom:-2px; left:50%; transform:translateX(-50%);
  border-left:12px solid transparent;
  border-right:12px solid transparent;
  border-top:12px solid var(--jbl-orange);
  top: 100%;
}

.model-card-img-wrap {
  background: #f8f9fa;
  border-bottom: 1px solid #f0f0f0;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.model-card-img-wrap::before {
  content:'';
  position:absolute; inset:0;
  background: radial-gradient(circle at center, rgba(0,0,0,.04) 0%, transparent 70%);
}
.model-card-img {
  width: 140px; height: 180px;
  object-fit: contain;
  position: relative; z-index:2;
  transition: transform .4s ease;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.4));
}
.model-card:hover .model-card-img { transform: scale(1.08) translateY(-5px); }

.model-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--jbl-orange);
  color: white;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index:3;
}

.model-card-body { padding: 20px; }
.model-name { font-size: 1.1rem; font-weight: 800; color: var(--jbl-teal); margin-bottom: 4px; }
.model-desc { font-size: .8rem; color: var(--mid-gray); margin-bottom: 12px; line-height: 1.5; }

.model-specs-mini {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.model-spec-chip {
  background: var(--light-gray);
  border-radius: 50px;
  padding: 4px 10px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--jbl-teal);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.model-spec-chip i { color: var(--jbl-orange); }

.model-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}
.model-price .amount { font-size: 1.6rem; font-weight: 900; color: var(--jbl-orange); }
.model-price .period { font-size: .8rem; color: var(--mid-gray); }

.btn-model-book {
  width: 100%;
  padding: 10px;
  background: linear-gradient(135deg, var(--jbl-teal) 0%, var(--jbl-teal-mid) 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all .3s;
}
.btn-model-book:hover { background: linear-gradient(135deg, var(--jbl-orange), var(--jbl-orange-light)); color:white; transform: translateY(-2px); }

/* ─── MODEL DETAIL PANEL ─────────────────────────────────── */
.model-detail-panel {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,66,60,.15);
  margin-top: 40px;
  display: none;
  border: 1px solid rgba(0,66,60,.1);
}
.model-detail-panel.open { display: block; animation: slide-up .4s ease; }

.detail-header {
  background: linear-gradient(135deg, var(--jbl-teal-dark) 0%, var(--jbl-teal) 100%);
  padding: 28px 24px;
  color: white;
  position: relative;
  overflow: hidden;
}
.detail-header::before {
  content:'';
  position:absolute; inset:0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,95,0,.2) 0%, transparent 60%);
}
.detail-header h3 { font-size: clamp(1.2rem,3vw,2rem); font-weight: 900; margin-bottom: .5rem; position:relative; z-index:1; }
.detail-header p  { opacity: .8; margin:0; position:relative; z-index:1; font-size: .875rem; }

.detail-body { padding: 24px; }

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}
.spec-item {
  background: var(--light-gray);
  border-radius: 14px;
  padding: 16px 12px;
  text-align: center;
  transition: all .3s;
}
.spec-item:hover { background: rgba(255,95,0,.08); }
.spec-item .spec-icon { font-size: 1.4rem; color: var(--jbl-orange); margin-bottom: 6px; }
.spec-item .spec-label { font-size: .68rem; color: var(--mid-gray); font-weight: 600; text-transform: uppercase; margin-bottom: 4px; letter-spacing: .5px; }
.spec-item .spec-value { font-size: .875rem; font-weight: 800; color: var(--jbl-teal); }

.connectivity-chips {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px;
}
.conn-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--jbl-teal);
  color: white; padding: 8px 16px; border-radius: 50px; font-size: .8rem; font-weight: 600;
  transition: all .3s;
}
.conn-chip:hover { background: var(--jbl-orange); transform: translateY(-2px); }
.conn-chip.active { background: var(--accent-green); }

.pricing-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  background: linear-gradient(135deg, rgba(255,95,0,.06) 0%, rgba(255,140,0,.06) 100%);
  border: 1px solid rgba(255,95,0,.15);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 20px;
}
.pricing-strip .price-box { text-align: center; }
.pricing-strip .price-box .lbl { font-size: .68rem; text-transform: uppercase; font-weight: 700; color: var(--mid-gray); letter-spacing: .5px; margin-bottom: 4px; }
.pricing-strip .price-box .val { font-size: 1.2rem; font-weight: 900; color: var(--jbl-orange); }
.pricing-strip .price-divider { display: none; }

.detail-cta-row {
  display: flex; flex-wrap: wrap; gap: 10px;
}

/* ─── WHY CHOOSE US ──────────────────────────────────────── */
.why-section {
  background: white;
  padding: 100px 0;
}
.why-card {
  background: var(--off-white);
  border-radius: var(--card-radius);
  padding: 32px 28px;
  height: 100%;
  border: 2px solid transparent;
  transition: all .35s cubic-bezier(.22,1,.36,1);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content:'';
  position:absolute; top:0; left:0; right:0; height:3px;
  background: linear-gradient(90deg, var(--jbl-orange), var(--jbl-orange-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.why-card:hover { background: white; border-color: rgba(255,95,0,.2); box-shadow: var(--card-shadow-hover); transform: translateY(-8px); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon-wrap {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(255,95,0,.1), rgba(255,140,0,.1));
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: all .3s;
}
.why-card:hover .why-icon-wrap { background: linear-gradient(135deg, var(--jbl-orange), var(--jbl-orange-light)); transform: scale(1.1) rotate(-5deg); }
.why-icon-wrap i { font-size: 1.6rem; color: var(--jbl-orange); transition: color .3s; }
.why-card:hover .why-icon-wrap i { color: white; }
.why-card h5 { font-size: 1rem; font-weight: 800; color: var(--jbl-teal); margin-bottom: 8px; }
.why-card p  { font-size: .85rem; color: var(--mid-gray); margin: 0; line-height: 1.6; }

/* ─── EVENTS SECTION ─────────────────────────────────────── */
.events-section {
  background: linear-gradient(145deg, var(--jbl-teal-dark) 0%, var(--jbl-teal) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.events-section::before {
  content:'';
  position:absolute; inset:0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events:none;
}
.event-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  height: 100%;
  transition: all .35s cubic-bezier(.22,1,.36,1);
  cursor: pointer;
}
.event-card:hover { background: rgba(255,95,0,.15); border-color: rgba(255,95,0,.4); transform: translateY(-10px) scale(1.04); box-shadow: 0 20px 60px rgba(0,0,0,.3); }
.event-emoji { font-size: 2.5rem; margin-bottom: 12px; display: block; transition: transform .3s; }
.event-card:hover .event-emoji { transform: scale(1.2) rotate(10deg); }
.event-card h6 { font-size: .9rem; font-weight: 700; color: rgba(255,255,255,.9); margin: 0; }

/* ─── COMPARISON TABLE ───────────────────────────────────── */
.compare-section {
  background: var(--off-white);
  padding: 100px 0;
}
.compare-wrap {
  overflow-x: auto;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,66,60,.1);
}
.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: white;
  border-radius: 20px;
  overflow: hidden;
}
.compare-table thead th {
  background: linear-gradient(135deg, var(--jbl-teal-dark), var(--jbl-teal));
  color: white;
  padding: 20px 16px;
  font-weight: 700;
  font-size: .875rem;
  text-align: center;
  white-space: nowrap;
}
.compare-table thead th:first-child { text-align: left; padding-left: 24px; }
.compare-table tbody tr { border-bottom: 1px solid #f1f5f9; transition: background .2s; }
.compare-table tbody tr:hover { background: rgba(255,95,0,.04); }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody td {
  padding: 18px 16px;
  font-size: .875rem;
  text-align: center;
  color: var(--mid-gray);
}
.compare-table tbody td:first-child { text-align: left; font-weight: 700; color: var(--jbl-teal); padding-left: 24px; }
.compare-table .price-cell { font-weight: 800; color: var(--jbl-orange); font-size: 1rem; }
.compare-table .check { color: var(--accent-green); font-size: 1.1rem; }
.compare-table .cross { color: #ef4444; font-size: 1.1rem; }
.compare-table .popular-row td { background: rgba(255,95,0,.04); }
.compare-table .popular-row td:first-child { position: relative; }
.popular-tag {
  display: inline-block;
  background: var(--jbl-orange);
  color: white;
  font-size: .65rem;
  padding: 2px 8px;
  border-radius: 50px;
  font-weight: 700;
  vertical-align: middle;
  margin-left: 8px;
}

/* ─── HOW IT WORKS (TIMELINE) ────────────────────────────── */
.how-section {
  background: white;
  padding: 100px 0;
  overflow: hidden;
}
.timeline-wrap {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.timeline-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  top: 0; bottom: 0;
  background: linear-gradient(180deg, var(--jbl-orange) 0%, var(--jbl-teal) 100%);
  opacity: .2;
}
.timeline-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}
.timeline-step:nth-child(even) { flex-direction: row-reverse; }
.step-icon-wrap {
  width: 72px; height: 72px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--jbl-orange), var(--jbl-orange-light));
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(255,95,0,.35);
  position: relative; z-index: 2;
  transition: all .3s;
}
.step-icon-wrap:hover { transform: scale(1.1) rotate(-5deg); }
.step-icon-wrap i { font-size: 1.6rem; color: white; }
.step-content {
  background: var(--off-white);
  border-radius: 16px;
  padding: 24px;
  flex: 1;
  border: 1px solid rgba(0,66,60,.08);
  transition: all .3s;
}
.step-content:hover { box-shadow: var(--card-shadow-hover); background: white; }
.step-num { font-size: .72rem; text-transform: uppercase; color: var(--jbl-orange); font-weight: 700; letter-spacing: 1px; margin-bottom: 4px; }
.step-content h5 { font-size: 1.1rem; font-weight: 800; color: var(--jbl-teal); margin-bottom: 6px; }
.step-content p  { font-size: .875rem; color: var(--mid-gray); margin: 0; line-height: 1.6; }

@media (max-width: 768px) {
  .timeline-line { left: 36px; }
  .timeline-step, .timeline-step:nth-child(even) { flex-direction: row; padding-left: 12px; }
  .step-icon-wrap { width: 56px; height: 56px; }
}

/* ─── GALLERY ────────────────────────────────────────────── */
.gallery-section {
  background: var(--jbl-teal-dark);
  padding: 100px 0;
  overflow: hidden;
}
.masonry-gallery {
  columns: 3;
  gap: 16px;
}
@media (max-width: 992px) { .masonry-gallery { columns: 2; } }
@media (max-width: 576px) { .masonry-gallery { columns: 1; } }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: auto; display: block;
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay-text { color: white; font-size: .875rem; font-weight: 600; }

/* Lightbox */
.jbl-lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 9999;
  align-items: center; justify-content: center;
  flex-direction: column;
}
.jbl-lightbox.open { display: flex; animation: fadeIn .3s ease; }
.jbl-lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 16px; box-shadow: 0 40px 100px rgba(0,0,0,.5); }
.lb-close { position: absolute; top: 24px; right: 24px; width:48px; height:48px; background: rgba(255,255,255,.1); border:none; border-radius:50%; color:white; font-size:1.3rem; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background .2s; }
.lb-close:hover { background: var(--jbl-orange); }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

/* ─── REVIEWS SECTION ────────────────────────────────────── */
.reviews-section {
  background: var(--off-white);
  padding: 100px 0;
  overflow: hidden;
}
.reviews-slider {
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--jbl-orange) transparent;
}
.reviews-slider::-webkit-scrollbar { height: 4px; }
.reviews-slider::-webkit-scrollbar-thumb { background: var(--jbl-orange); border-radius: 2px; }
.reviews-track { display: flex; gap: 20px; width: max-content; padding: 4px; }

.review-card {
  width: 340px; flex-shrink: 0;
  background: white;
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0,66,60,.08);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: '"';
  position:absolute; top: -10px; right: 20px;
  font-size: 8rem; color: rgba(255,95,0,.06); font-family: Georgia, serif; line-height:1;
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-hover); }
.review-stars { color: #fbbf24; font-size: .9rem; margin-bottom: 12px; display: flex; gap: 3px; }
.review-text { font-size: .875rem; color: var(--mid-gray); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-profile { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--jbl-teal), var(--jbl-teal-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; color: white; flex-shrink: 0;
}
.review-name { font-size: .9rem; font-weight: 700; color: var(--jbl-teal); margin: 0; }
.review-event { font-size: .75rem; color: var(--mid-gray); margin: 0; }
.verified-badge { display: inline-flex; align-items: center; gap: 4px; background: rgba(34,197,94,.1); color: var(--accent-green); font-size: .7rem; font-weight: 700; padding: 3px 8px; border-radius: 50px; margin-left: auto; }

/* ─── FAQ SECTION ────────────────────────────────────────── */
.faq-section {
  background: white;
  padding: 100px 0;
}
.jbl-accordion-item {
  background: var(--off-white);
  border: 1px solid rgba(0,66,60,.08);
  border-radius: 16px !important;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all .3s;
}
.jbl-accordion-item:hover { box-shadow: var(--card-shadow); }
.jbl-accordion-btn {
  background: none !important;
  font-weight: 700 !important;
  font-size: .95rem !important;
  color: var(--jbl-teal) !important;
  padding: 22px 24px !important;
  border-radius: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}
.jbl-accordion-btn::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--jbl-orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.jbl-accordion-btn:not(.collapsed) { color: var(--jbl-orange) !important; }
.jbl-accordion-btn:not(.collapsed)::before { background: var(--jbl-orange); box-shadow: 0 0 0 4px rgba(255,95,0,.2); }
.jbl-accordion-btn:focus { box-shadow: none !important; }
.jbl-accordion-btn::after { filter: brightness(0) saturate(100%) invert(45%) sepia(93%) saturate(1900%) hue-rotate(8deg) brightness(95%) contrast(106%) !important; }
.jbl-accordion-body { padding: 0 24px 22px !important; color: var(--mid-gray) !important; font-size: .875rem !important; line-height: 1.7 !important; }

/* ─── FINAL CTA SECTION ──────────────────────────────────── */
.cta-section {
  background: linear-gradient(145deg, var(--jbl-teal-dark) 0%, var(--jbl-teal) 55%, #004040 100%);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content:'';
  position:absolute; inset:0;
  background: radial-gradient(ellipse at center, rgba(255,95,0,.2) 0%, transparent 65%);
  pointer-events:none;
}
.cta-glow-ring {
  position:absolute;
  width: 800px; height: 800px;
  border: 1px solid rgba(255,95,0,.1);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-glow-ring:nth-child(2) { width: 600px; height: 600px; border-color: rgba(255,95,0,.15); }
.cta-glow-ring:nth-child(3) { width: 400px; height: 400px; border-color: rgba(255,95,0,.2); }
.cta-section h2 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; color: white; margin-bottom: 1rem; position:relative; z-index:1; }
.cta-section p  { font-size: 1.1rem; color: rgba(255,255,255,.75); margin-bottom: 2.5rem; position:relative; z-index:1; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-btn-group { display:flex; flex-wrap:wrap; gap:16px; justify-content:center; position:relative; z-index:1; }

/* ─── FLOATING ELEMENTS ──────────────────────────────────── */
.floating-whatsapp-jbl {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 999;
  background: #25d366;
  color: white;
  border-radius: 50px;
  padding: 14px 20px;
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  font-weight: 700; font-size: .9rem;
  box-shadow: 0 8px 32px rgba(37,211,102,.5);
  transition: all .3s;
  animation: pulse-ring 2.5s ease infinite;
}
.floating-whatsapp-jbl:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 16px 48px rgba(37,211,102,.6); color:white; }
.floating-whatsapp-jbl .wa-text { display: none; }
@media (min-width: 576px) { .floating-whatsapp-jbl .wa-text { display: inline; } }

.floating-call-jbl {
  position: fixed; bottom: 90px; right: 24px;
  z-index: 999;
  background: var(--jbl-orange);
  color: white; border-radius: 50%;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 1.2rem;
  box-shadow: 0 8px 24px rgba(255,95,0,.4);
  transition: all .3s;
}
.floating-call-jbl:hover { transform: scale(1.1); color:white; box-shadow: 0 16px 40px rgba(255,95,0,.55); }

/* Mobile sticky CTA */
.mobile-sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: white;
  border-top: 1px solid #e2e8f0;
  padding: 12px 16px;
  box-shadow: 0 -8px 32px rgba(0,0,0,.12);
}
@media (max-width: 768px) { .mobile-sticky-cta { display: flex; gap: 10px; padding-bottom: max(12px, env(safe-area-inset-bottom)); } }
.mobile-sticky-cta a { flex: 1; text-align: center; padding: 12px; border-radius: 12px; font-weight: 700; font-size: .85rem; text-decoration: none; display:flex; align-items:center; justify-content:center; gap:6px; }
.mobile-sticky-cta .m-wa  { background: #25d366; color:white; }
.mobile-sticky-cta .m-call { background: var(--jbl-orange); color:white; }
.mobile-sticky-cta .m-book { background: var(--jbl-teal); color:white; }

/* ─── SERVICE AREAS ──────────────────────────────────────── */
.service-section {
  background: linear-gradient(145deg, var(--jbl-teal-dark) 0%, var(--jbl-teal) 100%);
  padding: 100px 0;
}
.area-pill {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 12px 24px;
  color: rgba(255,255,255,.9);
  font-size: .875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .3s;
}
.area-pill:hover { background: rgba(255,95,0,.2); border-color: rgba(255,95,0,.4); transform: translateY(-3px); }
.area-pill i { color: var(--jbl-orange); }

/* ─── RELATED LINKS ──────────────────────────────────────── */
.related-section { background: var(--light-gray); padding: 60px 0; }
.related-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; border: 1px solid #e2e8f0;
  border-radius: 50px; padding: 10px 20px;
  font-size: .85rem; font-weight: 600; color: var(--jbl-teal);
  text-decoration: none; transition: all .3s;
}
.related-pill:hover { border-color: var(--jbl-orange); color: var(--jbl-orange); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(255,95,0,.15); }
.related-pill i { color: var(--jbl-orange); }

/* ─── RESPONSIVE TWEAKS ──────────────────────────────────── */

/* Tablet */
@media (max-width: 992px) {
  .jbl-hero { padding: 40px 0 50px; min-height: auto; }
  .hero-speaker-img { max-width: 360px; }
  .hero-card-badge.badge-top-left  { left: 0; }
  .hero-card-badge.badge-bot-right { right: 0; }
  .hero-card-badge.badge-top-right { right: 0; }
}

/* Mobile landscape / small tablet */
@media (max-width: 768px) {
  .jbl-hero {
    min-height: auto;
    padding: 30px 0 40px;
    align-items: flex-start;
  }
  .hero-heading {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
    margin-bottom: .75rem;
  }
  .hero-subtext {
    font-size: .9rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
  }
  .hero-tagline { margin-bottom: .75rem; }
  .hero-badge-wrap { margin-top: 1.25rem; gap: 6px; }
  .hero-trust-bar { margin-top: 1.25rem; gap: 12px; }
  .trust-stat .num { font-size: 1.25rem; }
  .trust-divider { height: 30px; }
  .section-title { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .why-section, .events-section, .compare-section, .how-section,
  .gallery-section, .reviews-section, .faq-section, .models-section,
  .service-section, .cta-section { padding: 60px 0; }
  .why-card { padding: 24px 20px; }
  .event-card { padding: 20px 14px; }
  .event-emoji { font-size: 2rem; }
  .detail-body { padding: 20px 16px; }
  .detail-header { padding: 24px 16px; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .detail-cta-row { flex-direction: column; }
  .detail-cta-row .btn-jbl-wa,
  .detail-cta-row .btn-jbl-primary { width: 100%; justify-content: center; }
  .timeline-line { left: 28px; }
  .timeline-step,
  .timeline-step:nth-child(even) { flex-direction: row; padding-left: 0; }
  .step-icon-wrap { width: 56px; height: 56px; border-radius: 16px; flex-shrink: 0; }
  .step-icon-wrap i { font-size: 1.3rem; }
  .step-content { padding: 16px; }
  .cta-section h2 { font-size: clamp(1.5rem, 6vw, 2.5rem); }
  .cta-section p  { font-size: .95rem; }
  .cta-btn-group { flex-direction: column; align-items: center; }
  .cta-btn-group .btn-jbl-wa,
  .cta-btn-group .btn-jbl-primary,
  .cta-btn-group .btn-jbl-outline { width: 100%; max-width: 320px; justify-content: center; }
  body { padding-bottom: 76px; }
  .pricing-strip { grid-template-columns: repeat(2, 1fr); }
  /* Hide individual floating buttons on mobile because of the sticky bottom bar */
  .floating-call-jbl { display: none !important; }
  .floating-whatsapp-jbl { display: none !important; }
  .models-section { padding: 60px 0 40px; }
  .model-card { width: 250px; }
  .model-card-img-wrap { height: 170px; }
  .why-icon-wrap { width: 60px; height: 60px; border-radius: 16px; }
  .why-icon-wrap i { font-size: 1.4rem; }
  .area-pill { padding: 9px 16px; font-size: .8rem; }
}

/* Mobile portrait — small phones */
@media (max-width: 480px) {
  .jbl-hero { padding: 24px 0 32px; }
  .hero-heading { font-size: clamp(1.5rem, 8vw, 2rem); line-height: 1.1; }
  .hero-subtext { font-size: .85rem; }
  /* Hide floating image badges on very small screens — avoid overlap */
  .hero-card-badge { display: none; }
  /* Smaller image on mobile portrait */
  .hero-speaker-img { max-width: 280px; border-radius: 16px; }
  .hero-img-wrap { padding: 8px 0; }
  .hero-float-badge { font-size: .72rem; padding: 6px 10px; }
  .hero-badge-wrap { gap: 5px; }
  .trust-stat .num { font-size: 1.1rem; }
  .trust-stat .lbl { font-size: .65rem; }
  .trust-divider { height: 26px; }
  .section-title { font-size: clamp(1.3rem, 6vw, 1.6rem); }
  .section-badge { font-size: .72rem; padding: 5px 14px; }
  .model-card { width: 220px; }
  .model-card-body { padding: 14px; }
  .model-name { font-size: 1rem; }
  .model-price .amount { font-size: 1.35rem; }
  .why-card { padding: 20px 16px; }
  .why-card h5 { font-size: .9rem; }
  .why-card p  { font-size: .8rem; }
  .event-card { padding: 16px 10px; }
  .event-card h6 { font-size: .8rem; }
  .event-emoji { font-size: 1.8rem; margin-bottom: 8px; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .spec-item { padding: 12px 8px; }
  .spec-item .spec-icon { font-size: 1.2rem; }
  .spec-item .spec-value { font-size: .8rem; }
  .connectivity-chips { gap: 6px; }
  .conn-chip { padding: 6px 12px; font-size: .72rem; }
  .review-card { width: 280px; padding: 20px; }
  .jbl-accordion-btn { font-size: .85rem !important; padding: 16px !important; }
  .related-pill { font-size: .78rem; padding: 8px 14px; }
  .area-pill { padding: 7px 12px; font-size: .75rem; }
  .pricing-strip .price-box .val { font-size: 1rem; }
  .btn-jbl-primary, .btn-jbl-wa { padding: 13px 22px; font-size: .9rem; }
  .btn-jbl-outline { padding: 12px 18px; font-size: .9rem; }
  /* CTA section */
  .cta-section { padding: 60px 0; }
  .cta-section h2 { font-size: clamp(1.4rem, 7vw, 2rem); }
  .cta-glow-ring { display: none; }
  /* Mobile sticky safe area */
  .mobile-sticky-cta { padding: 10px 12px; }
  .mobile-sticky-cta a { padding: 10px 4px; font-size: .78rem; gap: 4px; }
  body { padding-bottom: 68px; }
}

/* Extra small — Galaxy Z Fold etc. */
@media (max-width: 360px) {
  .hero-heading { font-size: 1.4rem; }
  .hero-subtext { font-size: .82rem; }
  .hero-float-badge { font-size: .68rem; padding: 5px 8px; }
  .model-card { width: 200px; }
  .hero-speaker-img { max-width: 240px; }
  .section-title { font-size: 1.25rem; }
}

/* ─── Scroll to top indicator ────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 148px; right: 20px;
  width: 40px; height: 40px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  display: none;
  align-items: center; justify-content: center;
  font-size: .9rem; color: var(--jbl-teal);
  cursor: pointer; text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  transition: all .3s;
  z-index: 997;
}
.scroll-top.show { display: flex; }
.scroll-top:hover { background: var(--jbl-orange); color:white; border-color: transparent; transform: translateY(-3px); }
@media (max-width: 768px) { .scroll-top { display: none !important; } }
