/* ================================================================
   TRENT REALTY & RENTALS — Design System
   Modern · Black + Gold · Fully Animated
   ================================================================ */

/* ────────────── DESIGN TOKENS ────────────── */
:root {
  /* Brand — Black + Gold from logo */
  --brand-900: #000000;
  --brand-700: #111111;
  --brand-600: #1a1a1a;
  --brand-500: #2d2d2d;
  --brand-100: #f5f0e8;
  --brand-50:  #faf7f2;

  /* Gold Accent */
  --gold:      #c9a96e;
  --gold-dark: #b08a4a;
  --gold-light:#dfc9a0;
  --gold-50:   #fdf8ef;

  /* Neutrals */
  --white:    #ffffff;
  --gray-50:  #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Functional */
  --whatsapp:      #25d366;
  --whatsapp-dark: #1ebe5d;
  --star:          #f59e0b;
  --red:           #ef4444;
  --blue:          #3b82f6;

  /* Radius */
  --r-sm:  6px;
  --r-md:  8px;
  --r-lg:  12px;
  --r-xl:  16px;
  --r-full: 100px;

  /* Shadows */
  --shadow-xs:  0 1px 2px rgba(0,0,0,.05);
  --shadow-sm:  0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg:  0 10px 15px rgba(0,0,0,.1), 0 4px 6px rgba(0,0,0,.05);
  --shadow-xl:  0 20px 25px rgba(0,0,0,.1), 0 8px 10px rgba(0,0,0,.04);
  --shadow-gold: 0 4px 20px rgba(201,169,110,.25);

  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
  --bounce: cubic-bezier(.34,1.56,.64,1);
  --t-fast:   .15s var(--ease);
  --t-base:   .25s var(--ease);
  --t-slow:   .4s var(--ease);
  --t-anim:   .6s var(--ease);

  /* Typography */
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', 'Lora', Georgia, serif;

  /* Layout */
  --max-w:    1200px;
  --header-h: 72px;
}

/* ────────────── RESET ────────────── */
*, *::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);
  background: var(--white);
  color: var(--gray-700);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--t-fast); }
ul, ol { list-style: none; }
input, select, textarea, button { font-family: var(--font-sans); outline: none; border: none; font-size: 1rem; }
button { cursor: pointer; background: none; }
h1,h2,h3,h4,h5,h6 { color: var(--gray-900); line-height: 1.25; font-weight: 700; }

/* ────────────── BASE TYPOGRAPHY ────────────── */
h1 { font-size: clamp(2rem, 5vw, 3.25rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p { color: var(--gray-600); line-height: 1.7; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-serif { font-family: var(--font-serif); }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* ────────────── LAYOUT ────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }
.section { padding: 80px 0; }
@media (min-width: 768px) { .section { padding: 100px 0; } }
.section--gray { background: var(--gray-50); }
.section--dark { background: var(--brand-700); color: var(--white); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,.7); }
.section--dark .section-tag { background: var(--gold); color: var(--brand-900); }
.section--dark .step-card, .section--dark .benefit-card { background: var(--brand-600); border-color: var(--brand-500); }
.section--dark .step-card h4, .section--dark .benefit-card h4 { color: var(--white); }
.section--dark .step-card p, .section--dark .benefit-card p { color: rgba(255,255,255,.65); }
.section--dark .step-card:hover, .section--dark .benefit-card:hover { border-color: var(--gold); }
.section--cream { background: var(--brand-50); }
.section--cream-dark { background: var(--brand-100); }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ────────────── SCROLL ANIMATIONS ────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--t-anim), transform var(--t-anim);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: .1s; }
.fade-up-delay-2 { transition-delay: .2s; }
.fade-up-delay-3 { transition-delay: .3s; }
.fade-up-delay-4 { transition-delay: .4s; }
.fade-up-delay-5 { transition-delay: .5s; }
.fade-up-delay-6 { transition-delay: .6s; }
.fade-up-delay-7 { transition-delay: .7s; }

.fade-in {
  opacity: 0;
  transition: opacity var(--t-anim);
}
.fade-in.visible { opacity: 1; }

.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity var(--t-anim), transform var(--t-anim);
}
.slide-left.visible { opacity: 1; transform: translateX(0); }

.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity var(--t-anim), transform var(--t-anim);
}
.slide-right.visible { opacity: 1; transform: translateX(0); }

.scale-in {
  opacity: 0;
  transform: scale(.9);
  transition: opacity var(--t-anim), transform var(--t-anim);
}
.scale-in.visible { opacity: 1; transform: scale(1); }

/* Stagger children animation */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: .08s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: .16s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: .24s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: .32s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: .40s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(7) { transition-delay: .48s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(8) { transition-delay: .56s; opacity: 1; transform: translateY(0); }

/* ────────────── SECTION HEADERS ────────────── */
.section-header { text-align: center; margin-bottom: 48px; }
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
}
.section-title { margin-bottom: 12px; }
.section-desc { color: var(--gray-500); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ────────────── BUTTONS ────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-md);
  font-weight: 600; font-size: 0.95rem;
  transition: all var(--t-base);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Ripple effect on buttons */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,.3) 10%, transparent 10%);
  transform: scale(10);
  opacity: 0;
  transition: transform .5s, opacity 1s;
}
.btn:active::after {
  transform: scale(0);
  opacity: 1;
  transition: 0s;
}

.btn-primary {
  background: var(--brand-700);
  color: var(--white);
  border-color: var(--brand-700);
}
.btn-primary:hover {
  background: var(--brand-600);
  border-color: var(--brand-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--brand-700);
  border-color: var(--brand-700);
}
.btn-outline:hover {
  background: var(--brand-700);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--brand-700);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--gray-600);
  padding: 10px 16px;
}
.btn-ghost:hover { color: var(--gold); background: var(--gold-50); }

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

.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ────────────── NAVIGATION ────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center;
  background: transparent;
  transition: all var(--t-slow);
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.navbar--solid {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: var(--max-w); margin: 0 auto; padding: 0 20px; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
  transition: transform var(--t-base);
}
.nav-logo:hover { transform: scale(1.02); }

.logo-mark {
  position: relative;
  width: 44px; height: 44px;
  background: var(--brand-700);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  transition: all var(--t-base);
}
.logo-mark::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}
.logo-mark span {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--gold);
  letter-spacing: -.02em;
  line-height: 1;
  margin-top: 2px;
}
.nav-logo:hover .logo-mark { background: var(--gold); }
.nav-logo:hover .logo-mark span { color: var(--brand-700); }
.nav-logo:hover .logo-mark::before { background: var(--brand-700); }

.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-main {
  font-family: var(--font-serif);
  font-weight: 800; font-size: 1.05rem; color: var(--brand-700);
  letter-spacing: .02em;
  text-transform: uppercase;
}
.logo-sub {
  font-size: .65rem; color: var(--gold-dark); font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
}

/* Footer logo overrides */
.footer .logo-mark { background: var(--gold); }
.footer .logo-mark span { color: var(--brand-900); }
.footer .logo-mark::before { background: var(--brand-900); }
.footer .logo-main { color: var(--white); }
.footer .logo-sub { color: var(--gold); }

.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--r-md);
  transition: all var(--t-fast);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--t-base);
  border-radius: 2px;
}
.nav-link:hover { color: var(--brand-700); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--brand-700); font-weight: 600; }
.nav-link.active::after { transform: scaleX(1); }

.nav-cta {
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--brand-700);
  color: var(--white);
  border-radius: var(--r-md);
  margin-left: 8px;
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,.3), transparent);
  transition: left .5s;
}
.nav-cta:hover::before { left: 100%; }
.nav-cta:hover { background: var(--brand-600); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}
.nav-hamburger span {
  width: 24px; height: 2px; background: var(--gray-900);
  border-radius: 2px;
  transition: all var(--t-base);
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    flex-direction: column;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    padding: 100px 24px 40px;
    gap: 4px;
    transition: right var(--t-slow);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links .nav-link {
    width: 100%; padding: 14px 16px; font-size: 1rem; border-radius: var(--r-md);
  }
  .nav-links .nav-link::after { display: none; }
  .nav-links .nav-link:hover { background: var(--brand-50); }
  .nav-links .nav-cta { width: 100%; text-align: center; margin-left: 0; margin-top: 8px; }
}

/* ────────────── HERO ────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.5) 50%, rgba(0,0,0,.65) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  padding: 120px 0 80px;
  max-width: 720px;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 16px;
  font-family: var(--font-serif);
  font-weight: 700;
  animation: heroFadeUp .8s var(--ease) both;
}
.hero-content p {
  color: rgba(255,255,255,.85);
  font-size: 1.15rem;
  margin-bottom: 32px;
  animation: heroFadeUp .8s var(--ease) .2s both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  animation: heroFadeUp .8s var(--ease) .4s both;
}
.hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.2);
  animation: heroFadeUp .8s var(--ease) .6s both;
}
.hero-stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -.02em;
  line-height: 1;
}
.hero-stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  margin-top: 4px;
}

/* ────────────── SEARCH BAR ────────────── */
.search-bar-wrap {
  margin-top: -40px;
  position: relative;
  z-index: 10;
  animation: heroFadeUp .8s var(--ease) .8s both;
}
.search-bar {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  padding: 20px 24px;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  border: 1px solid var(--gray-200);
  transition: box-shadow var(--t-base);
}
.search-bar:hover { box-shadow: 0 25px 50px rgba(0,0,0,.12); }
.search-field { flex: 1; min-width: 140px; }
.search-field label {
  display: block; font-size: .75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; color: var(--gray-500); margin-bottom: 6px;
}
.search-field select, .search-field input {
  width: 100%; padding: 10px 12px; border: 1px solid var(--gray-200);
  border-radius: var(--r-md); background: var(--gray-50);
  color: var(--gray-800); font-size: .9rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.search-field select:focus, .search-field input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-50);
}
.search-bar .btn { flex-shrink: 0; padding: 12px 28px; }

@media (max-width: 768px) {
  .search-bar { padding: 16px; gap: 12px; border-radius: var(--r-lg); }
  .search-field { min-width: 100%; }
  .search-bar .btn { width: 100%; }
}

/* ────────────── TRUST STRIP ────────────── */
.trust-strip {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 32px;
  padding: 32px 0;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-weight: 500; font-size: 0.95rem; color: var(--gray-700);
  transition: transform var(--t-base);
}
.trust-item:hover { transform: translateY(-2px); }
.trust-icon {
  font-size: 1.5rem;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-50);
  border-radius: var(--r-lg);
  border: 1px solid rgba(201,169,110,.2);
}

/* ────────────── PROPERTY CARDS ────────────── */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.property-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all var(--t-base);
}
.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold);
}

.property-card-img {
  position: relative;
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.property-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.property-card:hover .property-card-img img { transform: scale(1.06); }

.property-price-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--brand-700);
  color: var(--gold);
  font-weight: 700; font-size: 0.95rem;
  padding: 6px 14px;
  border-radius: var(--r-full);
}
.property-tags {
  position: absolute; bottom: 12px; left: 12px;
  display: flex; gap: 6px; flex-wrap: wrap;
}
.property-tag {
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(4px);
  color: var(--white); font-size: .7rem; font-weight: 500;
  padding: 4px 10px; border-radius: var(--r-full);
}

.property-card-body { padding: 20px; }
.property-card-title {
  font-size: 1.1rem; font-weight: 700; margin-bottom: 4px;
  transition: color var(--t-fast);
}
.property-card:hover .property-card-title { color: var(--gold-dark); }
.property-card-location { font-size: .85rem; color: var(--gray-500); margin-bottom: 12px; }
.property-card-features {
  display: flex; gap: 16px; flex-wrap: wrap;
  padding: 12px 0;
  border-top: 1px solid var(--gray-100);
  margin-bottom: 16px;
}
.property-feat { font-size: .85rem; color: var(--gray-600); }
.property-feat strong { color: var(--gray-900); font-weight: 700; }
.property-card-actions { display: flex; gap: 8px; }

/* ────────────── BENEFITS ────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transition: transform var(--t-base);
}
.benefit-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.benefit-card:hover::before { transform: scaleX(1); }

.benefit-icon {
  font-size: 2rem;
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  background: var(--brand-50);
  border-radius: var(--r-lg);
  border: 1px solid rgba(201,169,110,.15);
}
.benefit-card h4 { margin-bottom: 8px; }
.benefit-card p { font-size: .9rem; }

/* ────────────── STEPS ────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 24px;
  counter-reset: step-counter;
}
.step-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid var(--gray-200);
  position: relative;
  transition: all var(--t-base);
}
.step-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--brand-700);
  color: var(--gold);
  font-weight: 800; font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  transition: all var(--t-base);
}
.step-card:hover .step-num { background: var(--gold); color: var(--brand-700); transform: scale(1.1); }
.step-card h4 { margin-bottom: 8px; }
.step-card p { font-size: .9rem; }

/* ────────────── REVIEWS ────────────── */
.reviews-carousel-wrap { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 16px; }
.reviews-carousel { display: flex; gap: 20px; min-width: min-content; }

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 24px;
  min-width: 300px; max-width: 360px;
  scroll-snap-align: start;
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 10px; right: 20px;
  font-size: 4rem;
  font-family: var(--font-serif);
  color: var(--gold);
  opacity: .15;
  line-height: 1;
}
.review-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.review-stars { font-size: 1rem; margin-bottom: 12px; }
.review-text { font-size: .9rem; line-height: 1.6; color: var(--gray-600); margin-bottom: 16px; font-style: italic; }
.review-meta { display: flex; justify-content: space-between; align-items: center; font-size: .8rem; }
.review-property { font-weight: 600; color: var(--gold-dark); }
.review-date { color: var(--gray-400); }
.review-badge {
  display: inline-block; margin-top: 10px; font-size: .75rem;
  color: var(--gold-dark);
  background: var(--gold-50);
  padding: 3px 10px; border-radius: var(--r-full);
  border: 1px solid rgba(201,169,110,.2);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

/* ────────────── RATING SUMMARY ────────────── */
.rating-summary {
  display: flex; align-items: center; gap: 48px; flex-wrap: wrap;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 32px;
}
.rating-big { text-align: center; min-width: 140px; }
.rating-big-num { font-size: 3.5rem; font-weight: 800; color: var(--brand-700); line-height: 1; }
.rating-big-stars { color: var(--star); font-size: 1.2rem; margin: 6px 0; letter-spacing: 3px; }
.rating-big-count { color: var(--gray-500); font-size: .85rem; }
.rating-bars { flex: 1; min-width: 200px; }
.rating-bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; font-size: .8rem; color: var(--gray-600); }
.rating-bar-track { flex: 1; height: 8px; background: var(--gray-100); border-radius: 4px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-dark)); border-radius: 4px; transition: width 1s var(--ease); }

/* ────────────── CTA BANNER ────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--brand-900) 0%, var(--brand-700) 50%, var(--brand-600) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(201,169,110,.08) 0%, transparent 50%);
  animation: ctaGlow 8s ease-in-out infinite alternate;
}
@keyframes ctaGlow {
  0% { transform: translate(0, 0); }
  100% { transform: translate(5%, 5%); }
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; font-family: var(--font-serif); position: relative; }
.cta-banner p { color: rgba(255,255,255,.75); margin-bottom: 32px; position: relative; }
.cta-banner-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ────────────── FOOTER ────────────── */
.footer {
  background: var(--brand-900);
  color: rgba(255,255,255,.8);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { font-size: .9rem; color: rgba(255,255,255,.6); margin-top: 12px; line-height: 1.7; }
.footer-brand .nav-logo { margin-bottom: 8px; }
.footer-brand .logo-icon { background: var(--gold); color: var(--brand-700); }
.footer-brand .logo-main { color: var(--white); }
.footer-brand .logo-sub { color: var(--gold); }
.footer h4 { color: var(--white); margin-bottom: 16px; font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: .9rem; color: rgba(255,255,255,.6);
  transition: all var(--t-fast);
  position: relative;
  padding-left: 0;
}
.footer-links a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact-item {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 12px; font-size: .9rem;
}
.footer-contact-item a { color: rgba(255,255,255,.7); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  padding: 24px 0;
  margin-top: 24px;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* ────────────── WHATSAPP FLOAT ────────────── */
.whatsapp-float {
  position: fixed; bottom: 100px; right: 24px; z-index: 999;
  width: 60px; height: 60px;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: all var(--t-base);
  animation: waPulse 2s ease-in-out infinite;
}
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,.5);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.3); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,.5); }
}

/* ────────────── MOBILE BAR ────────────── */
.mobile-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  background: var(--white);
  padding: 12px 16px;
  box-shadow: 0 -2px 10px rgba(0,0,0,.1);
  gap: 10px;
  border-top: 1px solid var(--gray-200);
}
.mobile-bar .btn { flex: 1; }
@media (max-width: 768px) { .mobile-bar { display: flex; } .whatsapp-float { bottom: 90px; } }

/* ────────────── PAGE HEADER ────────────── */
.page-header {
  padding: 120px 0 48px;
  background: linear-gradient(135deg, var(--brand-50) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--gray-200);
}
.page-header h1 { margin-bottom: 8px; font-family: var(--font-serif); }
.page-header p { font-size: 1.05rem; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .85rem; margin-bottom: 16px; color: var(--gray-400); }
.breadcrumb a { color: var(--gold-dark); font-weight: 500; }
.breadcrumb a:hover { color: var(--brand-700); text-decoration: underline; }

/* ────────────── FILTER BAR ────────────── */
.filter-bar {
  display: flex; gap: 16px; flex-wrap: wrap; align-items: flex-end;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.filter-group { flex: 1; min-width: 130px; }
.filter-group label { display: block; font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-500); margin-bottom: 6px; }
.filter-group select, .filter-group input {
  width: 100%; padding: 10px 12px; border: 1px solid var(--gray-200);
  border-radius: var(--r-md); font-size: .9rem; background: var(--gray-50);
}
.filter-group select:focus, .filter-group input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-50); }
.filter-toggle { display: flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 500; cursor: pointer; padding: 12px 0; white-space: nowrap; }
.filter-toggle input { accent-color: var(--gold); width: 16px; height: 16px; }
.sort-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.results-count { font-size: .9rem; color: var(--gray-500); }
.sort-bar select { padding: 8px 12px; border: 1px solid var(--gray-200); border-radius: var(--r-md); font-size: .85rem; }

@media (max-width: 768px) { .filter-bar { padding: 16px; } .filter-group { min-width: 100%; } }

/* ────────────── DETAIL PAGE ────────────── */
.detail-layout {
  display: grid; grid-template-columns: 1fr 360px; gap: 40px; padding: 40px 0;
}
@media (max-width: 900px) { .detail-layout { grid-template-columns: 1fr; } }
.detail-main { min-width: 0; }

.gallery { border-radius: var(--r-xl); overflow: hidden; margin-bottom: 24px; }
.gallery-main { aspect-ratio: 16/10; overflow: hidden; cursor: zoom-in; border-radius: var(--r-xl) var(--r-xl) 0 0; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.gallery-main:hover img { transform: scale(1.03); }
.gallery-thumbs {
  display: flex; gap: 8px; padding: 8px 0;
}
.gallery-thumb {
  width: 80px; height: 56px; border-radius: var(--r-md);
  overflow: hidden; cursor: pointer;
  border: 2px solid transparent;
  opacity: .6;
  transition: all var(--t-fast);
}
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--gold); opacity: 1; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.detail-section { margin-bottom: 32px; }
.detail-section h3 { font-size: 1.1rem; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--gold); display: inline-block; }
.detail-section p { font-size: .95rem; }

.amenities-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; }
.amenity-item { display: flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--gray-700); padding: 8px 0; }
.amenity-item .check { color: var(--gold); font-weight: 700; }

.map-placeholder {
  background: var(--gray-100);
  border-radius: var(--r-lg);
  padding: 60px 20px;
  text-align: center;
  color: var(--gray-400);
  font-size: .9rem;
  border: 2px dashed var(--gray-200);
}

/* SIDEBAR */
.detail-sidebar { position: sticky; top: 100px; }
.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-md);
}
.pricing-card-price {
  font-size: 2rem; font-weight: 800; color: var(--brand-700); margin-bottom: 20px;
}
.pricing-card-price span { font-size: .9rem; font-weight: 400; color: var(--gray-400); }
.pricing-card-row {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  font-size: .9rem;
  border-bottom: 1px solid var(--gray-100);
}
.pricing-card-row .label { color: var(--gray-500); }
.pricing-card-row .value { font-weight: 600; color: var(--gray-800); }
.pricing-card .btn { margin-top: 20px; }

/* ────────────── TOUR SCHEDULER ────────────── */
.tour-scheduler {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 28px;
  margin: 24px 0;
}
.tour-scheduler h3 { font-size: 1.1rem; margin-bottom: 16px; }
.calendar-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 16px;
}
.cal-header { text-align: center; font-size: .7rem; font-weight: 600; color: var(--gray-400); text-transform: uppercase; padding: 6px 0; }
.cal-day {
  text-align: center; padding: 10px 4px; border-radius: var(--r-md);
  font-size: .85rem; cursor: pointer;
  transition: all var(--t-fast);
  border: 1px solid transparent;
}
.cal-day:hover { background: var(--gold-50); border-color: var(--gold); }
.cal-day.selected { background: var(--brand-700); color: var(--white); font-weight: 600; }
.cal-day.disabled { opacity: .3; cursor: not-allowed; }
.cal-month-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.cal-month-nav button { padding: 6px 12px; border-radius: var(--r-md); background: var(--gray-100); font-weight: 600; transition: all var(--t-fast); }
.cal-month-nav button:hover { background: var(--gold); color: var(--white); }
.time-slots { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.time-slot {
  padding: 8px 16px; border: 1px solid var(--gray-200); border-radius: var(--r-full);
  font-size: .85rem; cursor: pointer;
  transition: all var(--t-fast);
}
.time-slot:hover { border-color: var(--gold); color: var(--gold-dark); }
.time-slot.selected { background: var(--brand-700); color: var(--white); border-color: var(--brand-700); }

/* ────────────── LIGHTBOX ────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.92);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
  animation: lbFade .3s ease both;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--r-lg); object-fit: contain; }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  font-size: 1.5rem; color: var(--white); cursor: pointer;
  width: 48px; height: 48px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-fast);
}
.lightbox-close:hover { background: rgba(255,255,255,.2); transform: rotate(90deg); }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }

/* ────────────── MODAL ────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.modal-overlay.active { display: flex; }
.modal {
  position: relative;
  background: var(--white);
  border-radius: var(--r-xl);
  max-width: 580px; width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 32px;
  box-shadow: var(--shadow-xl);
  animation: modalSlide .3s var(--ease) both;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  font-size: 1.25rem; color: var(--gray-500); cursor: pointer;
  width: 36px; height: 36px;
  border-radius: 50%; border: 1px solid var(--gray-200);
  background: var(--gray-50);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-fast);
  line-height: 1;
}
.modal-close:hover { background: var(--gold); color: var(--brand-900); border-color: var(--gold); }
@keyframes modalSlide { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ────────────── FORMS ────────────── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  background: var(--white);
  font-size: .95rem;
  transition: all var(--t-fast);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-50);
}
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
}
.form-group textarea { resize: vertical; }
.form-hint { font-size: .8rem; color: var(--gray-400); margin-top: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-actions { display: flex; justify-content: flex-end; gap: 12px; margin-top: 28px; }
.form-error { color: var(--red); font-size: .8rem; margin-top: 4px; display: none; }

.checkbox-label {
  display: flex; gap: 10px; align-items: flex-start;
  margin-bottom: 14px; font-size: .9rem; cursor: pointer; color: var(--gray-700);
}
.checkbox-label input { margin-top: 3px; accent-color: var(--gold); width: 16px; height: 16px; }
.inline-link { color: var(--gold-dark); font-weight: 500; text-decoration: underline; }

/* ────────────── APPLICATION FORM ────────────── */
.apply-progress { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 40px; flex-wrap: wrap; }
.apply-step-indicator { display: flex; align-items: center; }
.apply-step-dot { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.apply-step-circle {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gray-200); color: var(--gray-500);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700;
  transition: all var(--t-base);
}
.apply-step-dot.active .apply-step-circle { background: var(--brand-700); color: var(--gold); box-shadow: 0 0 0 4px rgba(201,169,110,.2); }
.apply-step-dot.completed .apply-step-circle { background: var(--gold); color: var(--white); }
.apply-step-label { font-size: .7rem; font-weight: 500; color: var(--gray-400); white-space: nowrap; }
.apply-step-dot.active .apply-step-label { color: var(--brand-700); font-weight: 600; }
.apply-step-line { width: 32px; height: 2px; background: var(--gray-200); margin: 0 4px; margin-bottom: 20px; }
@media (max-width: 600px) { .apply-step-label { display: none; } .apply-step-line { width: 16px; } }

.apply-card {
  max-width: 720px; margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
@media (max-width: 600px) { .apply-card { padding: 24px 16px; } }
.apply-card h3 { margin-bottom: 4px; }
.step-desc { font-size: .9rem; color: var(--gray-500); margin-bottom: 24px; }
.apply-step-content { animation: stepIn .4s var(--ease) both; }
@keyframes stepIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

/* Upload */
.upload-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; margin-bottom: 20px; }
.upload-box {
  position: relative;
  border: 2px dashed var(--gray-300);
  border-radius: var(--r-lg);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all var(--t-fast);
}
.upload-box:hover { border-color: var(--gold); background: var(--gold-50); }
.upload-box.uploaded { border-color: var(--gold); border-style: solid; background: var(--gold-50); }
.upload-box input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.upload-icon { font-size: 2rem; margin-bottom: 8px; }
.upload-label { font-size: .85rem; font-weight: 600; color: var(--gray-700); }
.upload-hint { font-size: .75rem; color: var(--gray-400); margin-top: 4px; }
.upload-status { font-size: .75rem; margin-top: 8px; font-weight: 600; color: var(--gold-dark); }
.upload-status.success { color: var(--gold-dark); }

/* E-Sign */
.esign-area { position: relative; margin-bottom: 20px; }
.esign-canvas {
  width: 100%; height: 120px;
  border: 2px solid var(--gray-200);
  border-radius: var(--r-md);
  cursor: crosshair;
  touch-action: none;
  transition: border-color var(--t-fast);
}
.esign-canvas:hover { border-color: var(--gold); }
.esign-clear {
  position: absolute; top: 8px; right: 8px;
  font-size: .75rem; font-weight: 600; color: var(--gray-500);
  padding: 4px 10px;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--gray-200);
  cursor: pointer;
  transition: all var(--t-fast);
}
.esign-clear:hover { color: var(--red); border-color: var(--red); }

/* ────────────── FAQ ────────────── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question {
  width: 100%; padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 1rem; font-weight: 600; text-align: left;
  color: var(--gray-800);
  cursor: pointer;
  transition: color var(--t-fast);
}
.faq-question:hover { color: var(--gold-dark); }
.faq-icon {
  font-size: 1.5rem; font-weight: 300; color: var(--gold);
  transition: transform var(--t-base);
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--t-slow); }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 0 20px; font-size: .9rem; color: var(--gray-600); line-height: 1.7; }

/* ────────────── TIMELINE ────────────── */
.timeline { position: relative; padding-left: 28px; }
.timeline::before {
  content: ''; position: absolute; left: 7px; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(180deg, var(--gold), var(--brand-700));
}
.timeline-item { position: relative; margin-bottom: 28px; }
.timeline-dot {
  position: absolute; left: -24px; top: 6px;
  width: 14px; height: 14px;
  background: var(--gold);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}
.timeline-item h4 { margin-bottom: 4px; font-size: 1rem; }
.timeline-item p { font-size: .9rem; }

/* ────────────── ELIGIBILITY ────────────── */
.eligibility-list { list-style: none; }
.eligibility-list li {
  display: flex; gap: 14px; padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
}
.eligibility-list li .icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .8rem;
}

/* ────────────── CONTACT ────────────── */
.contact-cards {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px; margin-bottom: 40px;
}
.contact-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  transition: all var(--t-base);
  display: block;
}
.contact-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.contact-card-icon {
  font-size: 2rem; margin-bottom: 12px;
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  border-radius: var(--r-lg);
}
.contact-card-icon.wa { background: #e7faf0; }
.contact-card-icon.phone { background: var(--gold-50); }
.contact-card-icon.email { background: var(--brand-50); }
.contact-card h4 { margin-bottom: 4px; }
.contact-card p { font-size: .85rem; color: var(--gray-500); margin-bottom: 12px; }
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
@media (max-width: 768px) { .contact-layout { grid-template-columns: 1fr; } }
.office-hours-card {
  background: var(--gray-50);
  border-radius: var(--r-lg);
  padding: 20px;
  border: 1px solid var(--gray-200);
}
.hours-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--gray-100); font-size: .9rem; }
.hours-row:last-child { border-bottom: 0; }
.hours-row .day { font-weight: 600; color: var(--gray-700); }
.hours-row .time { color: var(--gray-500); }

/* ────────────── STAR PICKER ────────────── */
.star-picker { display: flex; gap: 4px; font-size: 1.5rem; }
.star-pick { color: var(--gray-300); cursor: pointer; transition: all var(--t-fast); }
.star-pick:hover, .star-pick.active { color: var(--star); transform: scale(1.15); }

/* ────────────── REVIEW FORM ────────────── */
.review-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 32px;
}

/* ────────────── TOAST ────────────── */
.toast {
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-700);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-size: .9rem;
  font-weight: 500;
  z-index: 10000;
  transition: all .4s var(--bounce);
  box-shadow: var(--shadow-lg);
}
.toast.show { bottom: 100px; }
.toast.success { background: var(--gold); color: var(--brand-700); }

/* ────────────── LOADING SKELETON ────────────── */
@keyframes shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.skeleton {
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
  background-size: 400px 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--r-md);
}

/* ────────────── GOLD GRADIENT TEXT ────────────── */
.text-gradient {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ────────────── CUSTOM SCROLLBAR ────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ────────────── PARALLAX SECTION ────────────── */
.parallax-bg {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

/* ────────────── PAGE LOAD ANIMATION ────────────── */
body {
  animation: pageLoad .6s var(--ease) both;
}
@keyframes pageLoad {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ────────────── APPLICATION FEE CARD ────────────── */
.fee-card {
  background: linear-gradient(135deg, var(--brand-700), var(--brand-600));
  border-radius: var(--r-xl);
  padding: 24px 28px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--white);
}
.fee-card-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  white-space: nowrap;
}
.fee-card-amount small {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
}
.fee-card-details h4 { color: var(--white); margin-bottom: 4px; font-size: .95rem; }
.fee-card-details p { color: rgba(255,255,255,.7); font-size: .85rem; margin: 0; }
.fee-card-badge {
  margin-left: auto;
  background: var(--gold);
  color: var(--brand-900);
  font-size: .7rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .fee-card { flex-wrap: wrap; }
  .fee-card-badge { margin-left: 0; }
}
