/* =============================================
   TAXI OFICIAL AEROPUERTO INTI SPA
   Main Stylesheet
   ============================================= */

/* ---- CSS Custom Properties ---- */
:root {
  --gold:        #F5A623;
  --gold-dark:   #D4891A;
  --gold-light:  #FDEFC9;
  --navy:        #0A1628;
  --navy-mid:    #112240;
  --navy-light:  #1B3461;
  --slate:       #2D3F5E;
  --white:       #FFFFFF;
  --off-white:   #F8F9FC;
  --gray-100:    #F1F3F8;
  --gray-200:    #E2E6EF;
  --gray-400:    #9AA5BE;
  --gray-600:    #5A6A8A;
  --gray-800:    #2C3850;
  --green:       #25D366;
  --green-dark:  #1EBE58;
  --red:         #E53E3E;
  --text:        #1A2235;
  --text-muted:  #6B7A99;

  --gradient:    linear-gradient(135deg, var(--gold) 0%, #FF8C00 100%);
  --gradient-dark: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  --shadow-sm:   0 2px 8px rgba(10,22,40,.08);
  --shadow-md:   0 8px 24px rgba(10,22,40,.12);
  --shadow-lg:   0 16px 48px rgba(10,22,40,.16);
  --shadow-gold: 0 8px 24px rgba(245,166,35,.35);

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  --transition:  0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);

  --font-sans:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif:  'Playfair Display', Georgia, serif;

  --container:   1200px;
  --nav-h:       72px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ---- Container ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Section base ---- */
.section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-light);
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-lg { padding: 15px 32px; font-size: 15px; }
.btn-block { width: 100%; margin-top: 8px; }

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245,166,35,.45);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  border-color: transparent;
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-200);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}

.btn-nav {
  background: var(--gradient);
  color: var(--white);
  padding: 10px 20px;
  font-size: 13px;
  border-radius: var(--radius-full);
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold); }

.btn-whatsapp {
  background: var(--green);
  color: var(--white);
  border-color: transparent;
}
.btn-whatsapp:hover { background: var(--green-dark); transform: translateY(-2px); }

/* ===================== NAVBAR ===================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: all var(--transition);
}

#header.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  width: 38px;
  height: 38px;
}

.logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-accent {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  color: rgba(255,255,255,.75);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,.1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-dark);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(245,166,35,.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 80%, rgba(27,52,97,.8) 0%, transparent 50%);
}

.hero-circles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245,166,35,.12);
}

.circle-1 {
  width: 600px; height: 600px;
  right: -200px; top: -100px;
  animation: rotateSlow 30s linear infinite;
}

.circle-2 {
  width: 400px; height: 400px;
  right: 50px; top: 50px;
  border-color: rgba(245,166,35,.08);
  animation: rotateSlow 20s linear infinite reverse;
}

.circle-3 {
  width: 200px; height: 200px;
  right: 150px; top: 150px;
  background: radial-gradient(circle, rgba(245,166,35,.08) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .6; }
  50%       { transform: scale(1.1); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 680px;
  padding-top: 40px;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,166,35,.15);
  color: var(--gold);
  border: 1px solid rgba(245,166,35,.3);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  animation: fadeInDown .8s ease both;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  animation: fadeInUp .8s ease .1s both;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  animation: fadeInUp .8s ease .2s both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp .8s ease .3s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  animation: fadeInUp .8s ease .4s both;
  margin-top: 8px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-number {
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.6);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: 12px;
  z-index: 1;
  animation: fadeIn 1s ease 1s both;
}

.scroll-arrow {
  animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ===================== TRUST BAR ===================== */
.trust-bar {
  background: var(--navy);
  padding: 20px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.75);
  font-size: 14px;
  font-weight: 500;
}

.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ===================== SERVICES ===================== */
.services-section { background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245,166,35,.3);
}

.service-card.featured {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured .service-features li { color: rgba(255,255,255,.85); }

.service-card.featured .service-icon { background: rgba(245,166,35,.15); color: var(--gold); }

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--gold-light);
  color: var(--gold-dark);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 4px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.service-features li svg { color: var(--gold); flex-shrink: 0; }

/* ===================== WHY SECTION ===================== */
.why-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.why-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 50%, rgba(245,166,35,.05) 0%, transparent 60%);
  pointer-events: none;
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.why-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.why-card-main {
  background: var(--gradient-dark);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 280px;
  box-shadow: var(--shadow-lg);
}

.why-sun {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  animation: sunGlow 3s ease-in-out infinite;
}

.sun-icon {
  width: 44px;
  height: 44px;
  filter: brightness(0) invert(1);
}

@keyframes sunGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(245,166,35,.4); }
  50%       { box-shadow: 0 0 40px rgba(245,166,35,.7); }
}

.why-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.why-card-sub {
  font-size: 12px;
  color: var(--gray-400);
}

.why-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.float-badge {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-md);
  animation: floatBadge 3s ease-in-out infinite;
}

.float-badge svg { color: var(--gold); }
.float-1 { top: 10%;  right: -10%; animation-delay: 0s; }
.float-2 { bottom: 15%; left: -8%;  animation-delay: 1s; }
.float-3 { top: 55%;  right: -12%; animation-delay: 2s; }

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.why-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}

.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.why-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-light);
  color: var(--gold-dark);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.why-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===================== RATES ===================== */
.rates-section { background: var(--off-white); }

.rates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.rate-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}

.rate-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.rate-card.featured {
  border-color: var(--gold);
  background: var(--navy);
  transform: scale(1.04);
  box-shadow: var(--shadow-gold);
}

.rate-card.featured:hover { transform: scale(1.04) translateY(-6px); }

.rate-card.featured .rate-header h3,
.rate-card.featured .rate-passengers,
.rate-card.featured .price-from,
.rate-card.featured .price-currency { color: rgba(255,255,255,.7); }

.rate-card.featured .price-amount { color: var(--gold); }
.rate-card.featured .rate-features li { color: rgba(255,255,255,.75); }
.rate-card.featured .rate-features li::before { color: var(--gold); }

.rate-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.rate-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}

.rate-passengers {
  font-size: 13px;
  color: var(--text-muted);
}

.rate-icon {
  display: flex;
  justify-content: center;
  color: var(--gold);
  opacity: .7;
}

.rate-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.price-from, .price-currency {
  font-size: 13px;
  color: var(--text-muted);
}

.price-amount {
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.rate-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.rate-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}

.rate-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.rates-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.rates-note svg { flex-shrink: 0; color: var(--gold-dark); }

.promo-banner {
  background: var(--gradient);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.promo-icon { font-size: 36px; }

.promo-text {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.promo-text strong {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.promo-text span {
  font-size: 14px;
  color: rgba(255,255,255,.85);
}

.promo-banner .btn-gold {
  flex-shrink: 0;
  background: var(--white);
  color: var(--navy);
}
.promo-banner .btn-gold:hover { background: var(--gold-light); }

/* ===================== BOOKING SECTION ===================== */
.booking-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.booking-section::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 100% 50%, rgba(245,166,35,.06) 0%, transparent 70%);
  pointer-events: none;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.booking-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 8px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  box-shadow: var(--shadow-gold);
}

.step-text h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.step-text p  { font-size: 14px; color: var(--text-muted); }

.booking-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.contact-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
  border: 1.5px solid var(--gray-200);
}

.contact-pill.whatsapp { color: var(--green-dark); border-color: rgba(37,211,102,.3); background: rgba(37,211,102,.05); }
.contact-pill.whatsapp:hover { background: rgba(37,211,102,.1); transform: translateX(4px); }
.contact-pill.phone { color: var(--navy); }
.contact-pill.phone:hover { background: var(--gray-100); transform: translateX(4px); }

/* Booking Form */
.booking-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.booking-form h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-800);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,166,35,.15);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(229,62,62,.12);
}

.form-group textarea { resize: vertical; min-height: 90px; }

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}

.form-success {
  text-align: center;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.form-success svg { color: var(--green); }
.form-success h3 { font-size: 24px; color: var(--navy); }
.form-success p  { font-size: 15px; color: var(--text-muted); max-width: 320px; }

.hidden { display: none !important; }

/* ===================== TESTIMONIALS ===================== */
.testimonials-section { background: var(--off-white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-card.featured {
  background: var(--navy);
  border-color: var(--navy);
}

.testimonial-card.featured .stars  { color: var(--gold); }
.testimonial-card.featured p        { color: rgba(255,255,255,.85); }
.testimonial-card.featured strong   { color: var(--white); }
.testimonial-card.featured span     { color: rgba(255,255,255,.55); }

.stars { font-size: 18px; color: var(--gold); letter-spacing: 2px; }

.testimonial-card > p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-author strong { display: block; font-size: 14px; color: var(--navy); }
.testimonial-author span   { font-size: 12px; color: var(--text-muted); }

/* ===================== FAQ ===================== */
.faq-section { background: var(--white); }

.faq-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: start;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
}

.faq-question:hover { color: var(--gold-dark); }

.faq-icon {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--gray-400);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer.open { max-height: 200px; }

.faq-answer p {
  padding-bottom: 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-contact { position: sticky; top: calc(var(--nav-h) + 32px); }

.faq-contact-card {
  background: var(--gradient-dark);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-contact-card h3 { font-size: 22px; font-weight: 700; }
.faq-contact-card p  { font-size: 14px; color: rgba(255,255,255,.7); }

.faq-contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.faq-contact-links .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.faq-contact-links .btn-outline:hover {
  background: rgba(255,255,255,.1);
  color: var(--white);
}

/* ===================== CONTACT ===================== */
.contact-section { background: var(--off-white); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-light);
  color: var(--gold-dark);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-item a  { font-size: 15px; color: var(--gold-dark); font-weight: 500; }
.contact-item a:hover { text-decoration: underline; }
.contact-item span { font-size: 14px; color: var(--text-muted); }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-btn {
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: all var(--transition);
}

.social-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-placeholder {
  background: var(--gradient-dark);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--white);
  text-align: center;
  padding: 32px;
  position: relative;
}

.map-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(245,166,35,.12) 0%, transparent 70%);
}

.map-pin {
  color: var(--gold);
  position: relative;
  z-index: 1;
  animation: pulse 2s ease-in-out infinite;
}

.map-placeholder p { font-size: 18px; font-weight: 600; position: relative; z-index: 1; }
.map-sub { font-size: 14px !important; color: rgba(255,255,255,.6) !important; font-weight: 400 !important; }
.map-placeholder .btn-outline { position: relative; z-index: 1; margin-top: 8px; }

/* ===================== FOOTER ===================== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 72px 0 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo .logo-text { color: var(--white); }

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.6);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: all var(--transition);
}

.footer-social a:hover { background: var(--gold); color: var(--navy); }

.footer-links-col h4,
.footer-contact-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}

.footer-links-col ul a:hover { color: var(--gold); }

.footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color var(--transition);
}

.footer-contact-item:hover { color: var(--gold); }
.footer-contact-item svg { flex-shrink: 0; color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.45); }

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--gold); }

/* ===================== FLOATING BUTTONS ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 60px;
  height: 60px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
  z-index: 900;
  transition: all var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37,211,102,.6);
}

.whatsapp-tooltip {
  position: absolute;
  left: calc(100% + 14px);
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.whatsapp-tooltip::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: var(--navy);
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover { background: var(--gold); transform: translateY(-3px); }

/* ===================== SCROLL ANIMATIONS ===================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .why-layout,
  .booking-layout { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { min-height: 300px; order: -1; }
  .booking-info { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .rates-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 32px; }
  .rate-card.featured { transform: scale(1); }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: var(--nav-h) 0 0;
    background: var(--navy);
    padding: 24px;
    gap: 8px;
    z-index: 999;
  }

  .nav-links.open .nav-link {
    padding: 14px 16px;
    font-size: 16px;
    border-radius: var(--radius-md);
  }

  .hero-ctas { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 100%; height: 1px; }

  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-contact { position: static; }

  .form-row { grid-template-columns: 1fr; }
  .booking-form-wrap { padding: 24px; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; padding-top: 48px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .trust-bar-inner { flex-direction: column; gap: 16px; text-align: center; }
  .promo-banner { flex-direction: column; text-align: center; }

  .why-floats { display: none; }
  .why-card-main { width: 100%; max-width: 280px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-content { padding-top: 20px; padding-bottom: 60px; }
  .hero-title { font-size: 32px; }
  .booking-form-wrap { padding: 20px; border-radius: var(--radius-lg); }
  .section-title { font-size: 26px; }
}
