/* ============================================
BATAM PREMIUM TRANSPORT — style.css
Mobile-First | Dark Navy + Gold | Premium
============================================ */
/* === CSS CUSTOM PROPERTIES === */
:root {
  --navy-deep:   #0a1628;
  --navy-dark:   #0e1e3a;
  --navy-mid:    #152540;
  --navy-light:  #1e3a6e;
  --gold:        #c9a227;
  --gold-light:  #e8c35a;
  --gold-pale:   #f5e6b0;
  --white:       #ffffff;
  --off-white:   #f4f6fb;
  --text-body:   #c8d4e8;
  --text-muted:  #7a90b5;
  --text-dark:   #1a2340;
  --border-dark: rgba(201,162,39,0.15);
  --border-light:rgba(255,255,255,0.08);
  --shadow-card: 0 8px 32px rgba(10,22,40,0.45);
  --shadow-float:0 4px 20px rgba(10,22,40,0.6);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --header-h:    72px;
  --transition:  0.25s cubic-bezier(0.4,0,0.2,1);
  --font-display:"Playfair Display", Georgia, serif;
  --font-body:   "Inter", system-ui, sans-serif;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { 
  scroll-behavior: smooth; 
  -webkit-text-size-adjust: 100%; 
  overflow-x: hidden; /* STRICT SAFEGUARD: Prevents horizontal scroll */
  width: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  background: var(--navy-deep);
  color: var(--text-body);
  overflow-x: hidden; /* STRICT SAFEGUARD: Prevents horizontal scroll */
  width: 100%;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* === SKIP LINK === */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--gold); color: var(--navy-deep);
  padding: .5rem 1rem; border-radius: var(--radius-sm);
  font-weight: 600; z-index: 9999;
  transition: top var(--transition);
}
.skip-link:focus { top: 1rem; }

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px)  { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

.section-pad { padding: 5rem 0; }
@media (min-width: 768px) { .section-pad { padding: 6.5rem 0; } }

.dark-section { background: var(--navy-dark); }
.desktop-only { display: none; }
@media (min-width: 768px) { .desktop-only { display: inline; } }

/* === TYPOGRAPHY === */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.section-header.light h2 { color: var(--white); }
.section-desc {
  margin-top: .75rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.section-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.gold-text { color: var(--gold); }

/* === BUTTONS === */
.btn-primary, .btn-call, .btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-weight: 700;
  font-size: .92rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius-sm);
  letter-spacing: .03em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: normal; /* FIXED: Allows text to wrap on very small screens */
  word-break: break-word;
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,162,39,0.35);
}

.btn-call {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-call:hover, .btn-call:focus-visible {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn-wa {
  background: #25d366;
  color: var(--white);
}
.btn-wa:hover, .btn-wa:focus-visible {
  background: #20bb58;
  transform: translateY(-2px);
}

/* Restore nowrap on larger screens where there is plenty of room */
@media (min-width: 480px) {
  .btn-primary, .btn-call, .btn-wa {
    white-space: nowrap;
  }
}

.btn-wide { width: 100%; padding: 1rem; }

/* === FOCUS === */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================================
HEADER
============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(10,22,40,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}
.logo-icon {
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
}
.logo-text {
  font-family: var(--font-display);
  font-size: clamp(0.75rem, 4vw, 0.95rem); /* FIXED: Scales down on small screens */
  color: var(--white);
  letter-spacing: .01em;
  line-height: 1.2;
  /* FIXED: Removed white-space: nowrap to prevent header overflow */
}
.logo-text strong { color: var(--gold); font-weight: 700; }

.main-nav { display: none; flex: 1; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: .25rem;
  justify-content: center;
}
.main-nav a {
  font-size: .86rem;
  font-weight: 500;
  color: var(--text-body);
  padding: .45rem .7rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a:focus-visible {
  color: var(--gold);
  background: rgba(201,162,39,0.1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-left: auto;
}
.header-social { display: none; }
.header-social a {
  color: var(--text-muted);
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  transition: color var(--transition);
}
.header-social a svg { width: 16px; height: 16px; }
.header-social a:hover { color: var(--gold); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 34px; height: 34px;
  align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  padding: 4px;
  flex-shrink: 0; /* FIXED: Prevents hamburger from shrinking */
}
.nav-toggle:hover { background: rgba(255,255,255,0.07); }
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav open */
.main-nav.open {
  display: flex;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--navy-deep);
  padding: 1.5rem 1.5rem 2rem;
  border-bottom: 1px solid var(--border-dark);
  z-index: 899;
  box-shadow: var(--shadow-float);
}
.main-nav.open ul {
  flex-direction: column;
  align-items: flex-start;
  gap: .25rem;
  width: 100%;
}
.main-nav.open a {
  font-size: 1rem;
  padding: .65rem .9rem;
  display: block;
  width: 100%;
}

@media (min-width: 1024px) {
  .main-nav { display: flex; }
  .nav-toggle { display: none; }
  .header-social { display: flex; gap: .25rem; }
}

/* ============================================
HERO
============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,40,0.97) 0%,
    rgba(14,30,58,0.92) 40%,
    rgba(21,37,64,0.82) 70%,
    rgba(30,58,110,0.6) 100%
  );
  z-index: 1;
}
.hero-cityscape {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 70% 60%, rgba(201,162,39,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(74,144,217,0.08) 0%, transparent 60%);
  z-index: 0;
}
/* Decorative city silhouette via CSS */
.hero-bg::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  background:
    linear-gradient(to top, rgba(10,22,40,0.7) 0%, transparent 100%),
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 30px,
      rgba(30,58,110,0.15) 30px,
      rgba(30,58,110,0.15) 32px
    );
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 10;
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201,162,39,0.12);
  border: 1px solid rgba(201,162,39,0.3);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: clamp(.95rem, 2.5vw, 1.15rem);
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 580px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}
.stat { text-align: left; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat span {
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-dark);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 10;
}
@media (min-width: 768px) { .hero-scroll-hint { display: flex; } }
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}
.scroll-label {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================
TRUST STRIP
============================================ */
.trust-strip {
  background: var(--navy-mid);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 1rem 0;
  overflow: hidden;
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1rem; /* Reduced gap slightly for mobile */
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center; /* FIXED: Centers text if it wraps */
  /* FIXED: Removed white-space: nowrap to prevent overflow on small screens */
}
.trust-icon { color: var(--gold); font-style: normal; font-weight: 700; flex-shrink: 0; }

/* ============================================
WHY CHOOSE US
============================================ */
.features-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 480px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }

.feature-card {
  background: var(--navy-mid);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  border-color: rgba(201,162,39,0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.feature-icon {
  width: 48px; height: 48px;
  color: var(--gold);
  margin-bottom: 1rem;
}
.feature-icon svg { width: 48px; height: 48px; }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .5rem;
}
.feature-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================
SERVICES
============================================ */
.services-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(5, 1fr); } }

.service-card {
  position: relative;
  background: var(--navy-mid);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem 1.5rem;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  border-color: rgba(201,162,39,0.3);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}
.service-card:hover::before { opacity: 1; }

.service-num {
  position: absolute;
  top: 1rem; right: 1.25rem;
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(201,162,39,0.2);
}
.service-icon {
  width: 36px; height: 36px;
  color: var(--gold);
  margin-bottom: 1rem;
}
.service-icon svg { width: 36px; height: 36px; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .6rem;
  line-height: 1.3;
}
.service-card p { font-size: .83rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.25rem; }
.service-link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .03em;
  transition: letter-spacing var(--transition);
}
.service-link:hover { letter-spacing: .07em; }

/* ============================================
FLEET
============================================ */
.fleet-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .fleet-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .fleet-grid { grid-template-columns: repeat(3, 1fr); } }

.vehicle-card {
  position: relative;
  background: var(--navy-mid);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.vehicle-card:hover {
  border-color: rgba(201,162,39,0.35);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(10,22,40,0.55);
}
.vip-card {
  border-color: rgba(201,162,39,0.35);
  background: linear-gradient(135deg, rgba(201,162,39,0.05) 0%, var(--navy-mid) 100%);
}
.vehicle-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 50px;
  z-index: 5;
}
.group-badge { background: #4a90d9; color: var(--white); }

.vehicle-img-wrap {
  background: linear-gradient(135deg, rgba(10,22,40,0.8) 0%, rgba(21,37,64,0.9) 100%);
  padding: 2rem 1.5rem;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.vehicle-img-placeholder {
  width: 100%;
  max-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vehicle-img-placeholder svg { width: 100%; height: auto; }

.vehicle-info { padding: 1.5rem; }
.vehicle-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .6rem;
}
.vehicle-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1rem;
}
.tag {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
  background: rgba(201,162,39,0.1);
  color: var(--gold);
  border: 1px solid rgba(201,162,39,0.25);
  padding: .2rem .6rem;
  border-radius: 50px;
  text-transform: uppercase;
}
.vehicle-specs { margin-bottom: 1.25rem; display: flex; flex-direction: column; gap: .5rem; }
.vehicle-specs li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .84rem;
  color: var(--text-muted);
}
.vehicle-specs li svg { color: var(--gold); flex-shrink: 0; }

.btn-vehicle {
  display: block;
  width: 100%;
  text-align: center;
  background: transparent;
  border: 1.5px solid rgba(201,162,39,0.4);
  color: var(--gold);
  font-weight: 600;
  font-size: .88rem;
  padding: .7rem 1rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.btn-vehicle:hover, .btn-vehicle:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}

/* ============================================
ABOUT
============================================ */
.about-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1.2fr; }
}
.about-visual { display: flex; justify-content: center; }
.about-graphic {
  position: relative;
  width: 100%;
  max-width: 380px;
}
.about-batam-map {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(201,162,39,0.15));
}
.about-map-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 16px; height: 16px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(201,162,39,0.2), 0 0 0 12px rgba(201,162,39,0.08);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(201,162,39,0.2), 0 0 0 12px rgba(201,162,39,0.08); }
  50% { box-shadow: 0 0 0 10px rgba(201,162,39,0.15), 0 0 0 20px rgba(201,162,39,0.04); }
}
.about-badge-float {
  position: absolute;
  bottom: -1rem; right: 0;
  background: var(--gold);
  color: var(--navy-deep);
  padding: .75rem 1.25rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 8px 24px rgba(201,162,39,0.3);
}
.badge-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}
.badge-label { font-size: .7rem; font-weight: 600; letter-spacing: .05em; }

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.about-content p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-pillars { margin: 1.5rem 0; display: flex; flex-direction: column; gap: .65rem; }
.about-pillars li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .9rem;
  color: var(--text-body);
  line-height: 1.5;
}
.pillar-icon { color: var(--gold); flex-shrink: 0; font-style: normal; font-size: .7rem; margin-top: .35rem; }

/* ============================================
TESTIMONIALS
============================================ */
.testimonials-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testi-card {
  background: var(--navy-mid);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.testi-card:hover {
  border-color: rgba(201,162,39,0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.featured-testi {
  border-color: rgba(201,162,39,0.4);
  background: linear-gradient(135deg, rgba(201,162,39,0.07) 0%, var(--navy-mid) 100%);
}
.testi-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: .1em;
  margin-bottom: .85rem;
}
.testi-card p {
  font-size: .88rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-style: normal;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testi-avatar.sg  { background: rgba(201,162,39,0.2); color: var(--gold); border: 1.5px solid rgba(201,162,39,0.3); }
.testi-avatar.my  { background: rgba(74,144,217,0.2); color: #4a90d9; border: 1.5px solid rgba(74,144,217,0.3); }
.testi-avatar.corp{ background: rgba(255,255,255,0.08); color: var(--white); border: 1.5px solid rgba(255,255,255,0.15); }
.testi-avatar.int { background: rgba(100,180,100,0.15); color: #6ab46a; border: 1.5px solid rgba(100,180,100,0.25); }

.testi-author cite {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--white);
}
.testi-origin { font-size: .78rem; color: var(--text-muted); }

/* ============================================
QUICK QUOTE FORM
============================================ */
.quote-form {
  max-width: 760px;
  margin: 0 auto;
  background: var(--navy-mid);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
}
@media (min-width: 768px) { .quote-form { padding: 2.5rem; } }

.form-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.form-group.full-width { margin-bottom: 1.25rem; }
.form-group label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-body);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: .92rem;
  padding: .75rem 1rem;
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--navy-dark); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201,162,39,0.05);
}
.form-group textarea { resize: vertical; }

/* ============================================
FAQ
============================================ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
  background: var(--navy-mid);
}
.faq-item:has(.faq-question[aria-expanded="true"]) { border-color: rgba(201,162,39,0.35); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  color: var(--white);
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.4;
  transition: background var(--transition);
  background: transparent;
}
.faq-question:hover { background: rgba(201,162,39,0.05); }
.faq-question[aria-expanded="true"] { color: var(--gold); }

.faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: .8rem;
  transition: transform var(--transition), color var(--transition);
}
.faq-icon::after { content: "+"; font-weight: 700; line-height: 1; }
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  color: var(--gold);
  border-color: var(--gold);
}
.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.75;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}
.faq-answer[hidden] { display: none; }
.faq-answer p { margin: 0; }

/* ============================================
CONTACT
============================================ */
.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1.2fr; } }

.contact-card {
  background: var(--navy-mid);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon-wrap {
  width: 44px; height: 44px;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .2rem;
}
.contact-value {
  font-size: .95rem;
  color: var(--text-body);
  font-weight: 500;
  word-break: break-all;
}
a.contact-value:hover { color: var(--gold); }

.contact-social { padding-top: .5rem; border-top: 1px solid var(--border-light); }
.contact-social-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .85rem;
}
.social-links { display: flex; gap: .5rem; flex-wrap: wrap; }
.social-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover, .social-btn:focus-visible {
  color: var(--gold);
  background: rgba(201,162,39,0.1);
  border-color: rgba(201,162,39,0.35);
}

.contact-form-wrap {
  background: var(--navy-mid);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.contact-form .form-group { margin-bottom: 1rem; }

/* ============================================
FOOTER
============================================ */
.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--border-dark);
  padding: 4rem 0 0;
}
.footer-inner {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  padding-bottom: 3rem;
}
@media (min-width: 768px) { .footer-inner { grid-template-columns: 1.5fr 2fr; } }

.footer-brand .logo { margin-bottom: .75rem; }
.footer-tagline {
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.footer-social { display: flex; gap: .5rem; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
}
.footer-social a svg { width: 15px; height: 15px; }
.footer-social a:hover { color: var(--gold); background: rgba(201,162,39,0.1); }

.footer-nav {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 479px) { .footer-nav { grid-template-columns: 1fr 1fr; } }

.footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a {
  font-size: .86rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  text-align: center;
}
.footer-bottom p { font-size: .78rem; color: var(--text-muted); }
.footer-keywords { font-size: .7rem; opacity: .6; }

/* ============================================
FLOATING BUTTONS
============================================ */
.float-wa {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: .65rem;
  background: #25d366;
  color: var(--white);
  font-weight: 700;
  font-size: .88rem;
  padding: .85rem 1.25rem;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  max-width: calc(100vw - 3rem); /* FIXED: Prevents floating button from exceeding screen width */
}
.float-wa:hover, .float-wa:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}
.float-label { display: none; }
@media (min-width: 480px) { .float-label { display: inline; } }

.float-call {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--navy-light);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-weight: 700;
  font-size: .82rem;
  padding: .75rem 1rem;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(10,22,40,0.5);
  transition: background var(--transition), transform var(--transition);
  max-width: calc(100vw - 3rem); /* FIXED: Prevents floating button from exceeding screen width */
}
.float-call:hover { background: var(--gold); color: var(--navy-deep); transform: translateY(-2px); }
.mobile-only { display: none; }
@media (max-width: 1023px) { .mobile-only { display: flex; } }

/* ============================================
SCROLL REVEAL ANIMATIONS
============================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .55s ease, transform .55s ease;
  }
  .reveal.in-view {
    opacity: 1;
    transform: none;
  }
  .reveal-delay-1 { transition-delay: .1s; }
  .reveal-delay-2 { transition-delay: .2s; }
  .reveal-delay-3 { transition-delay: .3s; }
  .reveal-delay-4 { transition-delay: .4s; }
}

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

/* Notification bar */
.form-notification {
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 500;
  margin-top: .75rem;
  display: none;
}
.form-notification.success {
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.3);
  color: #6ade9e;
  display: block;
}
.form-notification.error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.25);
  color: #f87171;
  display: block;
}

/* Print */
@media print {
  .site-header, .float-wa, .float-call, .hero-scroll-hint, .social-links { display: none !important; }
  body { background: #fff; color: #000; }
}