/* ============================================================
   BALI FAST TRACK AIRPORT - Main Stylesheet
   Ultra-luxury dark navy + gold theme
   ============================================================ */

/* ------------------------------------------------------------
   1. DESIGN TOKENS (CSS Custom Properties)
   ------------------------------------------------------------ */
:root {
  /* Navy palette */
  --navy-950: #0a0e1a;
  --navy-900: #0d1326;
  --navy-800: #121a36;
  --navy-700: #1a2548;
  --navy-600: #243362;
  --navy-500: #2f4480;

  /* Gold palette — heritage-muted (Ritz-Carlton inspired) */
  --gold-400: #a08a4e;
  --gold-300: #b8a265;
  --gold-200: #cdb87e;
  --gold-100: #e4d8b8;

  /* Neutrals */
  --white: #ffffff;
  --white-90: rgba(255, 255, 255, 0.9);
  --white-70: rgba(255, 255, 255, 0.7);
  --white-50: rgba(255, 255, 255, 0.5);
  --white-20: rgba(255, 255, 255, 0.2);
  --white-10: rgba(255, 255, 255, 0.1);
  --white-05: rgba(255, 255, 255, 0.05);

  /* Semantic */
  --success: #2ecc71;
  --text-body: #c8cdd8;

  /* Typography — classic serif + clean sans (Ritz-Carlton inspired) */
  --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', 'Helvetica Neue', 'Segoe UI', system-ui, sans-serif;

  /* Layout — generous whitespace */
  --section-pad: clamp(80px, 10vw, 140px);
  --container: min(1200px, 90vw);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--navy-950);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
picture,
video,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--gold-400);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold-200);
}

ul,
ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--white);
  line-height: 1.2;
  font-weight: 400;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

p {
  margin-bottom: 1rem;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

::selection {
  background: var(--gold-400);
  color: var(--navy-950);
}

/* ------------------------------------------------------------
   3. ANIMATIONS
   ------------------------------------------------------------ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes pulseGold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.5); }
  50%      { box-shadow: 0 0 0 12px rgba(201, 168, 76, 0); }
}

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

@keyframes rotatePlus {
  from { transform: rotate(0deg); }
  to   { transform: rotate(45deg); }
}

@keyframes pulseCTA {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.45); }
  50%      { box-shadow: 0 0 0 14px rgba(46, 204, 113, 0); }
}

/* ------------------------------------------------------------
   4. REVEAL ANIMATION CLASSES
   ------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  will-change: opacity, transform;
  animation: revealFallback 0.8s ease forwards;
  animation-delay: 2s;
}

@keyframes revealFallback {
  to { opacity: 1; transform: translateY(0); }
}

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

/* Stagger children */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ------------------------------------------------------------
   5. UTILITY CLASSES
   ------------------------------------------------------------ */
.container {
  width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
}

/* Ritz-Carlton style italic serif eyebrow */
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 1px;
  text-transform: none;
  color: var(--gold-400);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  color: var(--white);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  color: var(--white-70);
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

.gold {
  color: var(--gold-400);
}

.text-center {
  text-align: center;
}

/* ------------------------------------------------------------
   6. BUTTONS
   ------------------------------------------------------------ */
/* Ritz-Carlton style: pill shape, restrained, elegant */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-950);
  background: var(--gold-400);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease, background 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(160, 138, 78, 0.3);
  background: var(--gold-300);
  color: var(--navy-950);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  background: var(--success);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease, background 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  background: #27ae60;
  box-shadow: 0 8px 30px rgba(46, 204, 113, 0.3);
  color: var(--white);
}

.btn-tier {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 6px;
  border: 2px solid var(--gold-400);
  color: var(--gold-400);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-tier:hover {
  background: var(--gold-400);
  color: var(--navy-950);
}

.btn-tier.solid {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-200));
  color: var(--navy-950);
  border-color: transparent;
}

.btn-tier.solid:hover {
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
  transform: translateY(-2px);
}

.btn-book-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-950);
  background: var(--gold-400);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-book-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(160, 138, 78, 0.3);
  background: var(--gold-300);
  color: var(--navy-950);
}

/* ------------------------------------------------------------
   7. HEADER / NAVIGATION
   ------------------------------------------------------------ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.5rem 0;
  box-shadow: 0 1px 0 rgba(160, 138, 78, 0.1), 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
}

/* --- Logo --- */
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  flex-shrink: 0;
  line-height: 0;
}

.logo-mark svg {
  display: block;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: 0.5px;
}

.logo-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--gold-400);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 1px;
}

.site-header.scrolled .logo-mark svg {
  width: 32px;
  height: 32px;
}

.site-header.scrolled .logo-text {
  font-size: 1.05rem;
}

/* Logo from WP custom logo */
.site-logo img,
.custom-logo {
  height: 44px;
  width: auto;
  transition: height 0.3s ease;
}

.site-header.scrolled .site-logo img,
.site-header.scrolled .custom-logo {
  height: 36px;
}

/* --- Desktop Nav --- */
.desktop-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white-90);
  letter-spacing: 0.3px;
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  position: relative;
  transition: color 0.3s ease, background 0.3s ease;
}

.nav-menu > li > a svg {
  opacity: 0.5;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--gold-400);
  background: var(--white-05);
}

.nav-menu > li > a:hover svg {
  opacity: 1;
  transform: rotate(180deg);
}

/* Gold underline on hover */
.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0.85rem;
  right: 0.85rem;
  height: 1.5px;
  background: var(--gold-400);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease-out);
}

.nav-menu > li > a:hover::after {
  transform: scaleX(1);
}

/* Don't show underline on dropdown trigger */
.nav-menu > li.has-dropdown > a::after {
  display: none;
}

/* --- Services Dropdown --- */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  padding-top: 0.75rem;
  z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-inner {
  background: rgba(18, 26, 54, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--white-10);
  border-radius: 14px;
  padding: 0.5rem;
  min-width: 300px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(160, 138, 78, 0.08);
}

.dropdown-inner a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  color: var(--white-90);
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-inner a:hover {
  background: var(--white-05);
  color: var(--gold-400);
}

.dropdown-inner a::after {
  display: none;
}

.dropdown-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--white-05);
  color: var(--gold-400);
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.dropdown-inner a:hover .dropdown-icon {
  background: rgba(160, 138, 78, 0.15);
}

.dropdown-inner a strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: inherit;
  line-height: 1.3;
}

.dropdown-inner a small {
  display: block;
  font-size: 0.72rem;
  color: var(--white-50);
  font-weight: 400;
  margin-top: 1px;
}

/* --- Nav Actions (desktop CTA) --- */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white-05);
  color: var(--success);
  transition: background 0.3s ease, transform 0.3s ease;
}

.nav-wa:hover {
  background: var(--success);
  color: var(--white);
  transform: scale(1.1);
}

/* --- Hamburger --- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}

.nav-toggle span:nth-child(2) {
  width: 70%;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  width: 100%;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Mobile Nav Overlay --- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* --- Mobile Slide-in Panel --- */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 88vw);
  height: 100vh;
  height: 100dvh;
  background: var(--navy-900);
  z-index: 1050;
  overflow-y: auto;
  transition: right 0.4s var(--ease-out);
  box-shadow: -10px 0 60px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--white-10);
  flex-shrink: 0;
}

.mobile-nav-header .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-nav-body {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 0;
}

.mobile-nav-section {
  padding: 0.5rem 1.5rem 1rem;
}

.mobile-nav-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.5rem 0;
  margin-bottom: 0.25rem;
}

.mobile-nav-section a {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white-90);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--white-05);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-nav-section a:hover {
  color: var(--gold-400);
  padding-left: 0.5rem;
}

.mobile-nav-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--white-10);
  flex-shrink: 0;
  background: var(--navy-950);
}

.mobile-nav-info {
  text-align: center;
  font-size: 0.75rem;
  color: var(--white-50);
  margin-top: 0.75rem;
  margin-bottom: 0;
}

/* ------------------------------------------------------------
   8. HERO SECTION
   ------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 0 60px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10, 14, 26, 0.82) 0%,
    rgba(10, 14, 26, 0.6) 50%,
    rgba(10, 14, 26, 0.9) 100%
  );
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 14, 26, 0.7) 0%,
    rgba(10, 14, 26, 0.5) 40%,
    rgba(10, 14, 26, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
  padding-inline: 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white-10);
  border: 1px solid var(--white-20);
  border-radius: 50px;
  padding: 0.4rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-300);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-badge svg,
.hero-badge img {
  width: 16px;
  height: 16px;
}

.hero h1 {
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero h1 .gold {
  color: var(--gold-400);
  display: inline;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--white-70);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

/* Hero stats bar */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2.5rem;
  border-top: 1px solid var(--white-10);
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--white-50);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ------------------------------------------------------------
   9. TRUST BAR
   ------------------------------------------------------------ */
.trust-bar {
  background: var(--navy-900);
  padding: 2rem 0;
  border-top: 1px solid var(--white-05);
  border-bottom: 1px solid var(--white-05);
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem 3rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--white-70);
  font-weight: 600;
}

.trust-item svg,
.trust-item img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold-400);
}

/* ------------------------------------------------------------
   10. SERVICE SUMMARY (AEO)
   ------------------------------------------------------------ */
.service-summary {
  padding: var(--section-pad) 0;
  background: var(--navy-950);
}

.service-summary-inner {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.service-summary p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--white-70);
}

/* ------------------------------------------------------------
   11. SERVICES GRID
   ------------------------------------------------------------ */
.services {
  padding: var(--section-pad) 0;
  background: var(--navy-900);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  background: var(--navy-800);
  border-radius: 12px;
  padding: 2rem;
  border-top: 3px solid transparent;
  transition: transform 0.4s var(--ease-out), border-color 0.3s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-200));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.service-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-200));
  border-radius: 10px;
  margin-bottom: 1.25rem;
  color: var(--navy-950);
  font-size: 1.4rem;
}

.service-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.service-card p {
  color: var(--white-50);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: gap 0.3s ease;
}

.service-card-link:hover {
  gap: 0.8rem;
  color: var(--gold-200);
}

/* ------------------------------------------------------------
   12. HOW IT WORKS
   ------------------------------------------------------------ */
.how-it-works {
  padding: var(--section-pad) 0;
  background: var(--navy-950);
}

.steps-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  position: relative;
  margin-top: 3rem;
}

/* Connecting line */
.steps-container::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  z-index: 0;
}

.step {
  text-align: center;
  flex: 1;
  max-width: 280px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--navy-800);
  border: 2px solid var(--gold-400);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-400);
  position: relative;
  transition: background 0.3s ease, color 0.3s ease;
}

.step:hover .step-number {
  background: var(--gold-400);
  color: var(--navy-950);
}

.step h3 {
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--white-50);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ------------------------------------------------------------
   13. PRICING
   ------------------------------------------------------------ */
.pricing {
  padding: var(--section-pad) 0;
  background: var(--navy-900);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: center;
  margin-top: 2rem;
}

.pricing-card {
  background: var(--navy-800);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid var(--white-10);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
}

/* Featured middle card */
.pricing-card.featured {
  border: 2px solid var(--gold-400);
  transform: scale(1.05);
  box-shadow: 0 12px 50px rgba(201, 168, 76, 0.15);
  z-index: 2;
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.pricing-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-200));
  color: var(--navy-950);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.pricing-tier-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-price-note {
  font-size: 0.85rem;
  color: var(--white-50);
  margin-bottom: 1.5rem;
}

.pricing-features {
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--white-70);
  border-bottom: 1px solid var(--white-05);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '\2713';
  color: var(--gold-400);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ------------------------------------------------------------
   14. TESTIMONIALS
   ------------------------------------------------------------ */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--navy-950);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: var(--navy-800);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--white-05);
  transition: transform 0.3s var(--ease-out);
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg,
.testimonial-stars span {
  color: var(--gold-400);
  font-size: 1rem;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--white-70);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-400);
}

.testimonial-name {
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--white-50);
}

/* ------------------------------------------------------------
   15. FAQ ACCORDION
   ------------------------------------------------------------ */
.faq {
  padding: var(--section-pad) 0;
  background: var(--navy-900);
}

.faq-list {
  max-width: 800px;
  margin-inline: auto;
  margin-top: 2rem;
}

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white-90);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
  gap: 1rem;
  font-family: var(--font-body);
}

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

.faq-question[aria-expanded="true"] {
  color: var(--gold-400);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold-400);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s ease;
}

.faq-answer-inner {
  padding-bottom: 1.25rem;
  font-size: 0.95rem;
  color: var(--white-50);
  line-height: 1.7;
}

/* ------------------------------------------------------------
   16. BLOG PREVIEW
   ------------------------------------------------------------ */
.blog-preview {
  padding: var(--section-pad) 0;
  background: var(--navy-950);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.blog-card {
  background: var(--navy-800);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--white-05);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.blog-card-thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-thumb img {
  transform: scale(1.05);
}

.blog-card-category {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--gold-400);
  color: var(--navy-950);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-date {
  font-size: 0.8rem;
  color: var(--white-50);
  margin-bottom: 0.5rem;
}

.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-card:hover h3 {
  color: var(--gold-400);
}

.blog-card p {
  color: var(--white-50);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ------------------------------------------------------------
   17. PARTNERS BAR
   ------------------------------------------------------------ */
.partners-bar {
  padding: 3rem 0;
  background: var(--navy-900);
  border-top: 1px solid var(--white-05);
  border-bottom: 1px solid var(--white-05);
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem 3rem;
}

.partners-logos img {
  height: 36px;
  width: auto;
  opacity: 0.4;
  filter: grayscale(100%) brightness(1.5);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.partners-logos img:hover {
  opacity: 0.8;
  filter: grayscale(0%) brightness(1);
}

/* ------------------------------------------------------------
   18. CTA BANNER
   ------------------------------------------------------------ */
.cta-banner {
  padding: var(--section-pad) 0;
  background: var(--navy-950);
}

.cta-banner-card {
  position: relative;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
  border-radius: 20px;
  padding: 4rem 3rem;
  text-align: center;
  overflow: hidden;
  border: 1px solid var(--white-10);
}

.cta-banner-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-card h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
}

.cta-banner-card p {
  position: relative;
  z-index: 1;
  color: var(--white-70);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.cta-banner-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ------------------------------------------------------------
   19. FOOTER
   ------------------------------------------------------------ */
.site-footer {
  background: var(--navy-900);
  border-top: 1px solid var(--white-10);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2rem;
}

.footer-brand p {
  color: var(--white-50);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-brand .site-logo {
  margin-bottom: 0.5rem;
}

.footer-column h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-400);
  margin-bottom: 1.25rem;
}

.footer-column ul li {
  margin-bottom: 0.6rem;
}

.footer-column ul a {
  font-size: 0.9rem;
  color: var(--white-50);
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-column ul a:hover {
  color: var(--gold-400);
  padding-left: 0.3rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--white-50);
  margin-bottom: 0.75rem;
}

.footer-contact-item svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--gold-400);
  margin-top: 3px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 0;
  margin-top: 3rem;
  border-top: 1px solid var(--white-10);
  font-size: 0.8rem;
  color: var(--white-50);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: var(--white-50);
  font-size: 0.8rem;
}

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

/* ------------------------------------------------------------
   20. FLOATING WHATSAPP BUTTON
   ------------------------------------------------------------ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 60px;
  height: 60px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(46, 204, 113, 0.4);
  animation: pulseCTA 2.5s infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(46, 204, 113, 0.5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

.whatsapp-float-label {
  position: absolute;
  right: 72px;
  white-space: nowrap;
  background: var(--navy-800);
  color: var(--white-90);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

/* ------------------------------------------------------------
   21. WORDPRESS-SPECIFIC OVERRIDES
   ------------------------------------------------------------ */

/* Gutenberg block alignment */
.wp-block-group.alignfull,
.wp-block-cover.alignfull,
.wp-block-image.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
}

.wp-block-group.alignwide,
.wp-block-cover.alignwide,
.wp-block-image.alignwide {
  max-width: var(--container);
  margin-inline: auto;
}

/* Gutenberg block styling */
.entry-content .wp-block-heading {
  font-family: var(--font-heading);
  color: var(--white);
}

.entry-content .wp-block-paragraph {
  color: var(--text-body);
  line-height: 1.7;
}

.entry-content .wp-block-list {
  color: var(--text-body);
  padding-left: 1.25rem;
}

.entry-content .wp-block-list li {
  margin-bottom: 0.5rem;
}

.entry-content .wp-block-quote {
  border-left: 3px solid var(--gold-400);
  padding-left: 1.25rem;
  font-style: italic;
  color: var(--white-70);
}

.entry-content .wp-block-image img {
  border-radius: 12px;
}

.entry-content .wp-block-separator {
  border-color: var(--white-10);
  opacity: 1;
}

.entry-content .wp-block-table {
  border-collapse: collapse;
  width: 100%;
}

.entry-content .wp-block-table td,
.entry-content .wp-block-table th {
  border: 1px solid var(--white-10);
  padding: 0.75rem 1rem;
  color: var(--text-body);
}

.entry-content .wp-block-table th {
  background: var(--navy-700);
  color: var(--white);
  font-weight: 700;
}

.entry-content .wp-block-button .wp-block-button__link {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-200));
  color: var(--navy-950);
  font-weight: 700;
  border-radius: 6px;
  padding: 0.85rem 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.entry-content .wp-block-button .wp-block-button__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
}

/* WordPress admin bar spacing */
body.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

/* WordPress comment styling */
.comment-list {
  list-style: none;
}

.comment-body {
  background: var(--navy-800);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid var(--white-05);
}

/* WordPress form styling */
.wpcf7-form input,
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--navy-800);
  border: 1px solid var(--white-10);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--gold-400);
}

.wpcf7-form .wpcf7-submit {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-200));
  color: var(--navy-950);
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.85rem 2.5rem;
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wpcf7-form .wpcf7-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
}

/* ------------------------------------------------------------
   22. RESPONSIVE BREAKPOINTS
   ------------------------------------------------------------ */

/* Tablet: max-width 900px */
@media (max-width: 900px) {
  .desktop-nav,
  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  /* Hero */
  .hero {
    padding: 100px 0 40px;
    min-height: 90vh;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  /* Grids -> 2 columns */
  .services-grid,
  .testimonials-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Pricing keeps 3 cols but tighter */
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .pricing-card.featured {
    transform: scale(1.02);
  }

  .pricing-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
  }

  /* Steps */
  .steps-container {
    gap: 1.5rem;
  }

  .steps-container::before {
    width: 70%;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  /* CTA banner */
  .cta-banner-card {
    padding: 3rem 2rem;
  }
}

/* Mobile: max-width 600px */
@media (max-width: 600px) {
  html {
    font-size: 15px;
  }

  /* Grids -> 1 column */
  .services-grid,
  .testimonials-grid,
  .blog-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
    order: -1;
  }

  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }

  /* Hero */
  .hero {
    padding: 90px 0 30px;
    min-height: auto;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-whatsapp {
    justify-content: center;
    width: 100%;
  }

  .hero-stats {
    gap: 1.5rem 1rem;
  }

  .hero-stat-number {
    font-size: 1.6rem;
  }

  /* Steps vertical */
  .steps-container {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }

  .steps-container::before {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--gold-400), transparent);
  }

  .step {
    max-width: 100%;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
  }

  /* Trust bar */
  .trust-items {
    gap: 1rem;
  }

  .trust-item {
    font-size: 0.8rem;
    flex: 0 0 calc(50% - 0.5rem);
    justify-content: center;
  }

  /* CTA */
  .cta-banner-card {
    padding: 2.5rem 1.5rem;
  }

  .cta-banner-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-banner-actions .btn-primary,
  .cta-banner-actions .btn-whatsapp {
    justify-content: center;
    width: 100%;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  /* Partners */
  .partners-logos img {
    height: 28px;
  }

  /* WhatsApp float */
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 1rem;
    right: 1rem;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  .whatsapp-float-label {
    display: none;
  }
}

/* Small mobile: max-width 400px */
@media (max-width: 400px) {
  html {
    font-size: 14px;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.9rem;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hero-stat {
    width: 100%;
  }

  .service-card {
    padding: 1.5rem;
  }

  .pricing-card {
    padding: 1.5rem 1.25rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 1rem 0;
  }

  .cta-banner-card {
    padding: 2rem 1.25rem;
  }

  .blog-card-body {
    padding: 1.25rem;
  }
}

/* ------------------------------------------------------------
   23. CLASS ALIASES — HTML ↔ CSS Name Mapping
   Fixes class mismatches between PHP templates and CSS
   ------------------------------------------------------------ */

/* Pricing: HTML uses price-* , CSS originally used pricing-* */
.price-card { background: var(--navy-800); border-radius: 16px; padding: 2.5rem 2rem; text-align: center; border: 1px solid var(--white-10); transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease; position: relative; }
.price-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(0,0,0,0.3); }
.price-card.featured { border: 2px solid var(--gold-400); transform: scale(1.05); box-shadow: 0 12px 50px rgba(201,168,76,0.15); z-index: 2; }
.price-card.featured:hover { transform: scale(1.05) translateY(-4px); }
.price-badge { display: inline-block; background: linear-gradient(135deg, var(--gold-400), var(--gold-200)); color: var(--navy-950); font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; padding: 0.3rem 1rem; border-radius: 50px; margin-bottom: 1rem; }
.price-tier { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--white-50); margin-bottom: 0.25rem; }
.price-name { font-family: var(--font-heading); font-size: 1.3rem; color: var(--white); margin-bottom: 0.5rem; }
.price-amount { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; color: var(--gold-400); line-height: 1; margin-bottom: 0.25rem; }
.price-amount .currency { font-size: 1.5rem; vertical-align: top; margin-right: 2px; }
.price-per { font-size: 0.85rem; color: var(--white-50); margin-bottom: 1.5rem; }
.price-features { text-align: left; margin-bottom: 2rem; list-style: none; padding: 0; }
.price-features li { display: flex; align-items: flex-start; gap: 0.6rem; padding: 0.5rem 0; font-size: 0.95rem; color: var(--white-70); border-bottom: 1px solid var(--white-05); }
.price-features li:last-child { border-bottom: none; }
.price-features li::before { content: '\2713'; color: var(--gold-400); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.btn-tier { display: inline-flex; align-items: center; justify-content: center; width: 100%; padding: 0.85rem 1.5rem; border-radius: 50px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; border: 1px solid var(--gold-400); color: var(--gold-400); background: transparent; transition: all 0.3s ease; cursor: pointer; text-decoration: none; }
.btn-tier:hover { background: var(--gold-400); color: var(--navy-950); }
.btn-tier.solid { background: linear-gradient(135deg, var(--gold-400), var(--gold-200)); color: var(--navy-950); border-color: transparent; }
.btn-tier.solid:hover { box-shadow: 0 8px 30px rgba(201,168,76,0.3); }

/* Testimonials/Reviews: HTML uses review-*, CSS originally used testimonial-* */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.review-card { background: var(--navy-800); border-radius: 12px; padding: 2rem; border: 1px solid var(--white-05); transition: transform 0.3s var(--ease-out); }
.review-card:hover { transform: translateY(-4px); }
.review-stars { color: var(--gold-400); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review-text { color: var(--white-70); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-400), var(--gold-200)); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; color: var(--navy-950); flex-shrink: 0; }
.review-name { font-weight: 600; color: var(--white); font-size: 0.9rem; }
.review-origin { font-size: 0.8rem; color: var(--white-50); }

/* Service link alias */
.service-link { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; font-weight: 700; color: var(--gold-400); text-transform: uppercase; letter-spacing: 1px; transition: gap 0.3s ease; }
.service-link:hover { gap: 0.8rem; color: var(--gold-200); }

/* Service icon alias */
.service-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--gold-400), var(--gold-200)); border-radius: 10px; margin-bottom: 1.25rem; color: var(--navy-950); }

/* Responsive aliases */
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.featured { transform: scale(1.02); }
  .price-card.featured:hover { transform: scale(1.02) translateY(-4px); }
}
@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; order: -1; }
  .price-card.featured:hover { transform: translateY(-4px); }
  .price-card { padding: 1.5rem 1.25rem; }
  .review-card { padding: 1.5rem; }
}

/* ------------------------------------------------------------
   24. PRINT STYLES
   ------------------------------------------------------------ */
@media print {
  .site-header,
  .whatsapp-float,
  .nav-toggle,
  .mobile-nav,
  .nav-overlay {
    display: none !important;
  }

  body {
    background: #fff;
    color: #222;
  }

  h1, h2, h3, h4, h5, h6 {
    color: #111;
  }

  a {
    color: #111;
    text-decoration: underline;
  }
}
