/* ── Shani Travels Premium CSS ── */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: #f8f7f4; color: #1a1a2e; overflow-x: hidden; }

/* CSS Variables */
:root {
  --primary:      #0d1b2a;
  --primary-mid:  #162033;
  --gold:         #c9a84c;
  --gold-light:   #e8c97a;
  --gold-dark:    #a8872a;
  --cream:        #f8f7f4;
  --white:        #ffffff;
  --text-dark:    #0d1b2a;
  --text-mid:     #3d4a5c;
  --text-light:   #6b7a8d;
  --border:       rgba(201,168,76,0.2);
  --shadow-lg:    0 25px 60px rgba(13,27,42,0.18);
  --shadow-md:    0 10px 30px rgba(13,27,42,0.10);
  --header-h:     88px;
}

/* ── Typography ── */
.font-display { font-family: 'Playfair Display', serif; }
.font-body    { font-family: 'Inter', sans-serif; }

/* ── Header ── */
#main-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--primary);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: all 0.3s ease;
}
#main-header.header-scrolled {
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.header-inner {
  max-width: 1360px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: var(--header-h);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img { height: 48px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: #fff; line-height: 1.1; letter-spacing: 0.01em; }
.nav-logo-tagline { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; }

.nav-right { display: flex; align-items: center; gap: 32px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link {
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); text-decoration: none;
  padding: 6px 12px; border-radius: 4px;
  position: relative; transition: color 0.2s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 12px; right: 12px;
  height: 1px; background: var(--gold); transform: scaleX(0); transition: transform 0.2s;
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--gold); }
.nav-link.active::after { transform: scaleX(1); }

.nav-phone { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.8); text-decoration: none; font-size: 13px; font-weight: 500; transition: color 0.2s; }
.nav-phone:hover { color: var(--gold); }
.nav-phone svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-book {
  background: var(--gold); color: var(--primary); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
  padding: 12px 24px; border-radius: 2px; transition: all 0.2s;
  border: 1px solid var(--gold);
}
.btn-book:hover { background: var(--gold-light); box-shadow: 0 4px 20px rgba(201,168,76,0.4); transform: translateY(-1px); }

.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; color: #fff; padding: 4px; }

/* ── Mobile Menu ── */
#mobileMenu {
  position: fixed; inset: 0; background: var(--primary); z-index: 200;
  display: none; flex-direction: column; align-items: center; justify-content: center; gap: 0;
}
#mobileMenu.flex { display: flex; }
.mobile-nav-link {
  font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700;
  color: rgba(255,255,255,0.85); text-decoration: none; padding: 14px 0; transition: color 0.2s;
}
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--gold); }
.mobile-close {
  position: absolute; top: 28px; right: 32px; background: none; border: none;
  cursor: pointer; color: #fff; padding: 8px;
}
.mobile-book-btn {
  margin-top: 24px; background: var(--gold); color: var(--primary);
  font-weight: 700; padding: 14px 36px; text-decoration: none; font-size: 14px;
  letter-spacing: 0.1em; text-transform: uppercase; border-radius: 2px;
}

/* ── Hero Slider ── */
.hero-section {
  position: relative; height: 100vh; min-height: 600px;
  overflow: hidden; margin-top: 0;
}
.hero-slide {
  position: absolute; inset: 0; transition: opacity 1s ease, transform 1.2s ease;
}
.hero-slide.opacity-0 { opacity: 0; pointer-events: none; }
.hero-slide.opacity-100 { opacity: 1; }
.hero-slide.scale-105 { transform: scale(1.05); }
.hero-slide.scale-100 { transform: scale(1); }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,27,42,0.82) 0%, rgba(13,27,42,0.55) 50%, rgba(13,27,42,0.65) 100%); }
.hero-content {
  position: relative; z-index: 10; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 24px;
  padding-top: var(--header-h);
}
.hero-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before, .hero-eyebrow::after { content: ''; width: 40px; height: 1px; background: var(--gold); }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(42px,6vw,80px); font-weight: 800; color: #fff; line-height: 1.08; letter-spacing: -0.01em; margin-bottom: 24px; max-width: 900px; }
.hero-title .gold { color: var(--gold); }
.hero-subtitle { font-size: 18px; color: rgba(255,255,255,0.78); max-width: 540px; line-height: 1.6; margin-bottom: 44px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.btn-primary-hero {
  background: var(--gold); color: var(--primary); font-weight: 700; font-size: 12px;
  letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none;
  padding: 18px 40px; border-radius: 2px; transition: all 0.25s;
  box-shadow: 0 8px 30px rgba(201,168,76,0.35);
}
.btn-primary-hero:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 14px 40px rgba(201,168,76,0.45); }
.btn-outline-hero {
  border: 1.5px solid rgba(255,255,255,0.6); color: #fff; font-weight: 600; font-size: 12px;
  letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none;
  padding: 18px 40px; border-radius: 2px; transition: all 0.25s;
  display: flex; align-items: center; gap: 10px;
}
.btn-outline-hero:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }

/* Slider controls */
.hero-controls {
  position: absolute; bottom: 48px; left: 0; right: 0; z-index: 20;
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.hero-dot {
  height: 3px; border-radius: 2px; transition: all 0.4s ease; cursor: pointer;
  background: rgba(255,255,255,0.4);
}
.hero-dot.bg-secondary { background: var(--gold) !important; }
.hero-dot.w-8 { width: 32px; }
.hero-dot.w-3 { width: 12px; }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 20;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
  color: #fff; width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
  backdrop-filter: blur(8px);
}
.hero-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--primary); }
#hero-prev { left: 32px; }
#hero-next { right: 32px; }

/* ── Section Styles ── */
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 64px 0; }
.container { max-width: 1360px; margin: 0 auto; padding: 0 32px; }

.section-label { font-size: 10px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 14px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(30px,3.5vw,46px); font-weight: 700; color: var(--primary); line-height: 1.15; }
.section-title.light { color: #fff; }
.section-divider { width: 48px; height: 2px; background: var(--gold); margin: 20px 0 0; }
.section-divider.center { margin: 20px auto 0; }

/* ── Quick Search ── */
.qs-bar {
  background: #fff; border-radius: 4px;
  box-shadow: 0 30px 80px rgba(13,27,42,0.18);
  padding: 36px 40px;
  border: 1px solid var(--border);
  position: relative; z-index: 20;
  margin-top: -60px;
}
.qs-bar label { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-light); display: block; margin-bottom: 8px; }
.qs-bar select, .qs-bar input {
  width: 100%; border: 1px solid #dde1e8; border-radius: 3px;
  padding: 13px 16px; font-size: 14px; color: var(--text-dark); background: #fafafa;
  transition: border-color 0.2s; appearance: none;
}
.qs-bar select:focus, .qs-bar input:focus { outline: none; border-color: var(--gold); background: #fff; }
.btn-search {
  width: 100%; background: var(--primary); color: #fff; font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  border: none; cursor: pointer; padding: 14px; border-radius: 3px;
  transition: all 0.2s;
}
.btn-search:hover { background: var(--gold); color: var(--primary); }

/* ── Vehicle Cards ── */
.vehicle-card {
  background: #fff; border-radius: 4px; overflow: hidden;
  transition: all 0.35s ease;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 12px rgba(13,27,42,0.06);
}
.vehicle-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(13,27,42,0.14); }
.vehicle-img-wrap {
  position: relative; height: 220px; background: #f0ece4;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.vehicle-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.vehicle-card:hover .vehicle-img-wrap img { transform: scale(1.06); }
.vehicle-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--gold); color: var(--primary);
  font-size: 9px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 1px;
}
.vehicle-body { padding: 24px 24px 20px; }
.vehicle-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.vehicle-price { font-size: 15px; font-weight: 700; color: var(--gold); }
.vehicle-price span { font-size: 12px; font-weight: 400; color: var(--text-light); }
.vehicle-specs { display: flex; flex-wrap: wrap; gap: 12px; margin: 14px 0 18px; border-top: 1px solid #eee; padding-top: 14px; }
.vehicle-spec { display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 500; letter-spacing: 0.05em; color: var(--text-light); }
.vehicle-spec svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--gold); }
.btn-wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #25D366; color: #fff; font-weight: 700; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  padding: 13px; border-radius: 3px; transition: all 0.2s; width: 100%;
}
.btn-wa:hover { background: #1da851; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,0.3); }
.btn-wa svg { width: 18px; height: 18px; }

/* ── Why Us ── */
.why-card { display: flex; flex-direction: column; align-items: center; text-align: center; }
.why-icon-wrap {
  width: 80px; height: 80px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3); background: rgba(201,168,76,0.08);
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
}
.why-icon-wrap svg { width: 36px; height: 36px; color: var(--gold); }
.why-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.why-text { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ── Marquee ── */
@keyframes marquee  { 0% { transform: translateX(0); }    100% { transform: translateX(-100%); } }
@keyframes marquee2 { 0% { transform: translateX(100%); } 100% { transform: translateX(0); } }
.animate-marquee  { animation: marquee  35s linear infinite; }
.animate-marquee2 { animation: marquee2 35s linear infinite; }

/* ── Testimonials ── */
.testimonial-card {
  background: #fff; border-radius: 4px; padding: 40px 36px;
  border: 1px solid rgba(0,0,0,0.06); box-shadow: 0 4px 20px rgba(13,27,42,0.06);
}
.testimonial-card.featured { background: var(--primary); }
.stars { display: flex; gap: 3px; margin-bottom: 20px; }
.star { width: 18px; height: 18px; color: var(--gold); fill: var(--gold); }
.testimonial-text { font-size: 15px; line-height: 1.75; color: var(--text-mid); font-style: italic; margin-bottom: 28px; }
.testimonial-card.featured .testimonial-text { color: rgba(255,255,255,0.8); }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 46px; height: 46px; border-radius: 50%; background: #dde; flex-shrink: 0; }
.testimonial-card.featured .author-avatar { background: var(--gold); }
.author-name { font-weight: 700; font-size: 14px; color: var(--primary); }
.testimonial-card.featured .author-name { color: var(--gold); }
.author-role { font-size: 12px; color: var(--text-light); }
.testimonial-card.featured .author-role { color: rgba(255,255,255,0.5); }

/* ── Services ── */
.service-card {
  background: #fff; border-radius: 4px; padding: 36px 32px;
  border: 1px solid rgba(0,0,0,0.06); transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(13,27,42,0.04);
}
.service-card:hover { background: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-icon { width: 56px; height: 56px; margin-bottom: 24px; color: var(--gold); }
.service-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--primary); margin-bottom: 12px; transition: color 0.3s; }
.service-card:hover .service-title { color: #fff; }
.service-text { font-size: 14px; color: var(--text-light); line-height: 1.7; transition: color 0.3s; }
.service-card:hover .service-text { color: rgba(255,255,255,0.65); }

/* ── Hero page (inner pages) ── */
.page-hero {
  position: relative; padding: 0; overflow: hidden;
  min-height: 420px; display: flex; align-items: center;
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(13,27,42,0.88) 40%, rgba(13,27,42,0.55) 100%); }
.page-hero-content {
  position: relative; z-index: 10;
  max-width: 1360px; margin: 0 auto; padding: 0 32px;
  width: 100%; text-align: center;
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 80px;
}
.page-hero-breadcrumb { display: flex; align-items: center; gap: 8px; justify-content: center; margin-bottom: 16px; }
.page-hero-breadcrumb a { font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); text-decoration: none; }
.page-hero-breadcrumb span { color: rgba(255,255,255,0.4); font-size: 11px; }
.page-hero-title { font-family: 'Playfair Display', serif; font-size: clamp(36px,5vw,64px); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 16px; }
.page-hero-sub { font-size: 17px; color: rgba(255,255,255,0.75); max-width: 600px; line-height: 1.65; margin: 0 auto; }

/* ── Footer ── */
.footer { background: var(--primary); padding: 80px 0 0; border-top: 1px solid rgba(201,168,76,0.12); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-logo-name { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: #fff; display: block; margin-bottom: 4px; text-decoration: none; }
.footer-logo-tagline { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.footer-about { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.8; margin-top: 16px; }
.footer-heading { font-size: 10px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: block; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-text { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.footer-bottom { margin-top: 60px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.07); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold); }

/* ── WhatsApp FAB ── */
.wa-fab {
  position: fixed; bottom: 32px; right: 32px; z-index: 150;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
  text-decoration: none; transition: all 0.25s;
}
.wa-fab:hover { background: #1da851; transform: scale(1.08); box-shadow: 0 14px 40px rgba(37,211,102,0.5); }
.wa-fab svg { width: 28px; height: 28px; }

/* ── CTA Banner ── */
.cta-section { background: var(--primary); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") center; }
.cta-title { font-family: 'Playfair Display', serif; font-size: clamp(30px,4vw,52px); font-weight: 800; color: #fff; margin-bottom: 16px; }
.cta-sub { font-size: 17px; color: rgba(255,255,255,0.7); margin-bottom: 44px; max-width: 560px; margin-left: auto; margin-right: auto; }
.btn-cta-wa {
  display: inline-flex; align-items: center; gap: 14px;
  background: #25D366; color: #fff; font-weight: 700; font-size: 14px;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  padding: 20px 48px; border-radius: 3px; transition: all 0.25s;
  box-shadow: 0 12px 40px rgba(37,211,102,0.4);
}
.btn-cta-wa:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 20px 50px rgba(37,211,102,0.5); }
.btn-cta-wa svg { width: 26px; height: 26px; }

/* ── Fleet Filter tabs ── */
.fleet-tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.fleet-tab {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 10px 22px; border-radius: 2px; border: 1px solid #dde; cursor: pointer;
  color: var(--text-mid); background: #fff; transition: all 0.2s;
}
.fleet-tab:hover { border-color: var(--gold); color: var(--gold); }
.fleet-tab.active-tab, .fleet-tab.bg-secondary { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ── Tariff Table ── */
.tariff-table { width: 100%; border-collapse: collapse; }
.tariff-table th {
  background: var(--primary); color: #fff; text-align: left;
  font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 18px 20px;
}
.tariff-table td { padding: 18px 20px; font-size: 14px; color: var(--text-mid); border-bottom: 1px solid #eee; }
.tariff-table tr:hover td { background: #faf8f2; }
.tariff-table .price-best { color: var(--gold); font-weight: 700; }
.tariff-table .vehicle-name-cell { font-weight: 700; color: var(--primary); font-family: 'Playfair Display', serif; }

/* ── About page ── */
.stat-block { text-align: center; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-label { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 8px; }
.timeline-item { display: flex; gap: 28px; align-items: flex-start; }
.timeline-dot { width: 48px; height: 48px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 11px; font-weight: 800; color: var(--primary); }
.timeline-dot.outline { background: transparent; border: 2px solid rgba(201,168,76,0.4); color: var(--gold); }

/* ── Contact ── */
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 20px; height: 20px; color: var(--gold); }
.contact-info-label { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light); margin-bottom: 4px; }
.contact-info-value { font-size: 15px; font-weight: 600; color: var(--primary); }
.form-label { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light); display: block; margin-bottom: 8px; }
.form-input {
  width: 100%; border: 1px solid #dde1e8; border-radius: 3px;
  padding: 13px 16px; font-size: 14px; color: var(--text-dark); background: #fafafa;
  transition: border-color 0.2s; font-family: 'Inter', sans-serif;
}
.form-input:focus { outline: none; border-color: var(--gold); background: #fff; }
select.form-input { appearance: none; }
.btn-submit-wa {
  width: 100%; background: #25D366; color: #fff; font-weight: 700; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase; border: none; cursor: pointer;
  padding: 16px; border-radius: 3px; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Inter', sans-serif;
}
.btn-submit-wa:hover { background: #1da851; }
.btn-submit-wa svg { width: 20px; height: 20px; }

/* ── Reveal Animation ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ── Grid helpers ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  :root { --header-h: 72px; }
  .header-inner { padding: 0 20px; }
  .nav-right { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero-arrow { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .qs-bar { padding: 24px 20px; }
  .container { padding: 0 20px; }
  .section-pad { padding: 64px 0; }
  .hero-eyebrow::before, .hero-eyebrow::after { width: 24px; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-primary-hero, .btn-outline-hero { text-align: center; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
