/* ============================================================
   staykal — Premium Short-Term Rental Management
   Design: Luxury Minimal | Deep Green + Beige + Gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ── TOKENS ── */
:root {
  --green:  #1F3D2B;
  --green2: #2a5239;
  --beige:  #F5F1E8;
  --beige2: #EDE7D5;
  --gold:   #C6A96B;
  --gold2:  #d4b87a;
  --white:  #FFFFFF;
  --dark:   #111410;
  --gray:   #6B7280;
  --light:  #f9f7f3;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --radius: 4px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
  --shadow: 0 8px 40px rgba(31, 61, 43, 0.12);
  --shadow-lg: 0 20px 60px rgba(31, 61, 43, 0.18);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--beige);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--beige); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── PAGE LOADER ── */
#page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: var(--font-display);
  color: var(--beige);
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  animation: pulseLoader 1.2s ease-in-out infinite;
}
.loader-logo span { color: var(--gold); }
@keyframes pulseLoader {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.97); }
}

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 60px;
  height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(31, 61, 43, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.15);
  height: 70px;
}
.navbar.light-nav { background: transparent; }
.navbar.scrolled .nav-logo,
.navbar.scrolled .nav-link { color: var(--beige); }
.navbar.scrolled .nav-link::after { background: var(--gold); }

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--beige);
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex; align-items: center; gap: 40px;
}
.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,241,232,0.85);
  position: relative;
  transition: color var(--transition-fast);
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--gold); }

.nav-cta {
  padding: 10px 28px;
  background: var(--gold);
  color: var(--dark) !important;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.nav-cta:hover { background: var(--gold2); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 5px;
  cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--beige);
  transition: all var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed; top: 0; right: -100%; width: 80%; max-width: 340px;
  height: 100vh;
  background: var(--green);
  z-index: 999;
  padding: 100px 40px 40px;
  flex-direction: column; gap: 30px;
  transition: right var(--transition);
  box-shadow: -10px 0 40px rgba(0,0,0,0.3);
}
.mobile-menu.open { right: 0; }
.mobile-menu .nav-link { font-size: 1.1rem; color: var(--beige); display: block; padding: 10px 0; }
.mobile-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition);
}
.mobile-overlay.open { opacity: 1; }

/* ── STICKY CTA ── */
.sticky-cta {
  position: fixed; bottom: 30px; right: 30px;
  z-index: 800;
  display: flex; flex-direction: column; gap: 12px;
  align-items: flex-end;
}
.sticky-btn {
  padding: 14px 24px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(198,169,107,0.4);
  transition: all var(--transition-fast);
  white-space: nowrap;
}
.sticky-btn:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(198,169,107,0.5); }
.whatsapp-btn {
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 25px rgba(37,211,102,0.35);
  font-size: 1.4rem;
  transition: all var(--transition-fast);
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 12px 35px rgba(37,211,102,0.45); }

/* ── HERO ── */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0d1f15 0%, #1F3D2B 40%, #2a5239 70%, #1a3224 100%);
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image: 
    radial-gradient(ellipse at 20% 50%, rgba(198,169,107,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(198,169,107,0.06) 0%, transparent 50%);
}
.hero-img-overlay {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?w=1600&q=80') center/cover no-repeat;
  opacity: 0.18;
  mix-blend-mode: luminosity;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 0 60px;
  padding-top: 80px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.4s forwards;
}
.hero-eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
.hero-eyebrow-text {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 300;
  color: var(--beige);
  line-height: 1.05;
  margin-bottom: 28px;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 0.9s ease 0.6s forwards;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-subtitle {
  font-size: 1.05rem; font-weight: 300;
  color: rgba(245,241,232,0.7);
  line-height: 1.8; max-width: 520px;
  margin-bottom: 48px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.8s forwards;
}
.hero-actions {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s ease 1s forwards;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 40px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition-fast);
  box-shadow: 0 8px 30px rgba(198,169,107,0.3);
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(198,169,107,0.4); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(245,241,232,0.8);
  border-bottom: 1px solid rgba(198,169,107,0.4);
  padding-bottom: 3px;
  transition: all var(--transition-fast);
}
.btn-secondary:hover { color: var(--gold); border-color: var(--gold); }

.hero-scroll {
  position: absolute; bottom: 40px; left: 60px;
  display: flex; align-items: center; gap: 12px;
  opacity: 0; animation: fadeUp 0.8s ease 1.4s forwards;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}
.scroll-text {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245,241,232,0.5);
  writing-mode: vertical-rl; transform: rotate(180deg);
}

.hero-stats {
  position: absolute; bottom: 40px; right: 60px;
  display: flex; gap: 40px;
  opacity: 0; animation: fadeUp 0.8s ease 1.2s forwards;
}
.hero-stat { text-align: right; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 300;
  color: var(--gold); line-height: 1;
}
.hero-stat-label {
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(245,241,232,0.5); margin-top: 4px;
}

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

/* ── SECTIONS ── */
.section {
  padding: 100px 60px;
  max-width: 1200px; margin: 0 auto;
}
.section-full { padding: 100px 0; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 60px; }

.section-eyebrow {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 20px;
}
.eyebrow-line { width: 30px; height: 1px; background: var(--gold); }
.eyebrow-text {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-subtitle {
  font-size: 1rem; font-weight: 300;
  color: var(--gray); line-height: 1.8;
  max-width: 540px;
}

/* ── PROBLEM SECTION ── */
.problem-section {
  background: var(--green);
  padding: 100px 0;
}
.problem-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.problem-content .section-title { color: var(--beige); }
.problem-content .section-subtitle { color: rgba(245,241,232,0.65); max-width: 100%; }
.problem-content .eyebrow-text { color: var(--gold); }
.problem-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.problem-card {
  background: rgba(245,241,232,0.05);
  border: 1px solid rgba(198,169,107,0.15);
  border-radius: 8px; padding: 28px 24px;
  transition: all var(--transition);
}
.problem-card:hover {
  background: rgba(198,169,107,0.08);
  border-color: rgba(198,169,107,0.3);
  transform: translateY(-4px);
}
.problem-card-icon { font-size: 1.8rem; margin-bottom: 14px; }
.problem-card-title { font-size: 0.85rem; font-weight: 600; color: var(--beige); margin-bottom: 8px; }
.problem-card-text { font-size: 0.8rem; color: rgba(245,241,232,0.5); line-height: 1.7; }
.problem-card.highlight { border-color: rgba(198,169,107,0.4); background: rgba(198,169,107,0.08); }
.problem-card.highlight .problem-card-title { color: var(--gold); }

/* ── SERVICES ── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  background: var(--beige2); margin-top: 60px;
}
.service-card {
  background: var(--beige);
  padding: 50px 40px;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { background: var(--white); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: var(--green);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 24px;
  transition: background var(--transition-fast);
}
.service-card:hover .service-icon { background: var(--gold); }
.service-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 12px; color: var(--dark); }
.service-text { font-size: 0.85rem; color: var(--gray); line-height: 1.8; }

/* ── EARNINGS ── */
.earnings-section {
  background: var(--light);
  padding: 100px 0;
}
.earnings-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 60px;
}
.earnings-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; margin-top: 60px;
}
.earnings-card-big {
  background: var(--green);
  border-radius: 12px; padding: 60px 50px;
  text-align: center; position: relative; overflow: hidden;
}
.earnings-card-big::before {
  content: '';
  position: absolute; top: -50%; right: -30%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(198,169,107,0.15), transparent 70%);
  border-radius: 50%;
}
.earnings-amount {
  font-family: var(--font-display);
  font-size: 4rem; font-weight: 300;
  color: var(--gold); line-height: 1;
  margin-bottom: 8px;
}
.earnings-per { font-size: 0.8rem; color: rgba(245,241,232,0.6); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 24px; }
.earnings-label { font-size: 1.1rem; color: var(--beige); font-weight: 300; line-height: 1.6; }
.earnings-badge {
  display: inline-block;
  margin-top: 24px; padding: 8px 20px;
  background: rgba(198,169,107,0.15);
  border: 1px solid rgba(198,169,107,0.3);
  border-radius: 50px;
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold);
}

.earnings-points { display: flex; flex-direction: column; gap: 24px; }
.earnings-point {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px; border-radius: 8px;
  border: 1px solid rgba(31,61,43,0.08);
  transition: all var(--transition);
}
.earnings-point:hover { border-color: var(--gold); background: var(--white); transform: translateX(4px); }
.earnings-point-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--green);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.earnings-point-title { font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; }
.earnings-point-text { font-size: 0.82rem; color: var(--gray); line-height: 1.7; }

/* ── TRUST ── */
.trust-section { background: var(--green); padding: 80px 0; }
.trust-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 60px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(245,241,232,0.1);
}
.trust-item {
  background: var(--green);
  padding: 50px 40px; text-align: center;
  transition: background var(--transition);
}
.trust-item:hover { background: var(--green2); }
.trust-icon { font-size: 2rem; margin-bottom: 16px; }
.trust-title { font-size: 1rem; font-weight: 600; color: var(--beige); margin-bottom: 10px; }
.trust-text { font-size: 0.82rem; color: rgba(245,241,232,0.55); line-height: 1.7; }

/* ── LOCATIONS ── */
.locations-section { padding: 100px 0; background: var(--beige); }
.locations-inner { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
.locations-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px;
  margin-top: 60px;
}
.location-card {
  position: relative; border-radius: 12px; overflow: hidden;
  height: 380px;
  transition: transform var(--transition);
}
.location-card:hover { transform: scale(1.02); }
.location-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.location-card:hover .location-img { transform: scale(1.05); }
.location-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,20,16,0.85) 0%, rgba(17,20,16,0.2) 50%, transparent 100%);
}
.location-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px;
}
.location-flag { font-size: 2rem; margin-bottom: 10px; }
.location-name {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 300;
  color: var(--beige); margin-bottom: 8px;
}
.location-desc { font-size: 0.82rem; color: rgba(245,241,232,0.7); line-height: 1.7; }
.location-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px; font-size: 0.75rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
  transition: gap var(--transition-fast);
}
.location-card:hover .location-link { gap: 14px; }

/* ── FINAL CTA ── */
.final-cta {
  background: linear-gradient(135deg, #0d1f15, var(--green), #2a5239);
  padding: 120px 0;
  text-align: center; position: relative; overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(198,169,107,0.12), transparent 70%);
}
.final-cta-inner { position: relative; z-index: 1; padding: 0 60px; }
.final-cta .section-title { color: var(--beige); }
.final-cta .section-title em { color: var(--gold); }
.final-cta .section-subtitle { color: rgba(245,241,232,0.65); max-width: 480px; margin: 0 auto 48px; }
.final-cta-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 80px 60px 40px;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(245,241,232,0.1);
}
.footer-brand {}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 300;
  color: var(--beige); margin-bottom: 16px;
}
.footer-logo span { color: var(--gold); }
.footer-desc { font-size: 0.82rem; color: rgba(245,241,232,0.45); line-height: 1.8; max-width: 280px; margin-bottom: 28px; }
.footer-socials { display: flex; gap: 12px; }
.footer-social {
  width: 38px; height: 38px;
  border: 1px solid rgba(245,241,232,0.15);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: rgba(245,241,232,0.5);
  transition: all var(--transition-fast);
}
.footer-social:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.footer-col-title {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.footer-link {
  display: block; padding: 5px 0;
  font-size: 0.82rem; color: rgba(245,241,232,0.45);
  transition: color var(--transition-fast);
}
.footer-link:hover { color: var(--beige); }
.footer-bottom {
  max-width: 1200px; margin: 40px auto 0;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 0.75rem; color: rgba(245,241,232,0.25); }
.footer-gold { color: var(--gold); }

/* ── PAGE HERO (Inner Pages) ── */
.page-hero {
  background: var(--green);
  padding: 160px 60px 100px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(198,169,107,0.1), transparent 60%);
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300; color: var(--beige); line-height: 1.1;
}
.page-hero-title em { color: var(--gold); font-style: italic; }
.page-hero-subtitle {
  font-size: 1.05rem; color: rgba(245,241,232,0.6);
  font-weight: 300; margin-top: 20px; max-width: 500px; line-height: 1.8;
}

/* ── SERVICES PAGE ── */
.services-detail {
  padding: 100px 0; background: var(--beige);
}
.services-detail-inner { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
.service-detail-item {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; padding: 80px 0;
  border-bottom: 1px solid rgba(31,61,43,0.08);
}
.service-detail-item:last-child { border-bottom: none; }
.service-detail-item.reverse { direction: rtl; }
.service-detail-item.reverse > * { direction: ltr; }
.service-detail-num {
  font-family: var(--font-display);
  font-size: 6rem; font-weight: 300;
  color: rgba(31,61,43,0.08); line-height: 1;
  margin-bottom: -20px;
}
.service-detail-title { font-size: 1.6rem; font-weight: 300; font-family: var(--font-display); margin-bottom: 16px; }
.service-detail-text { font-size: 0.9rem; color: var(--gray); line-height: 1.9; }
.service-detail-features { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.service-feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.85rem; color: var(--dark);
}
.service-feature::before {
  content: '';
  width: 8px; height: 1px; background: var(--gold);
}
.service-detail-visual {
  background: var(--green);
  border-radius: 12px; height: 360px;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; position: relative; overflow: hidden;
}
.service-detail-visual img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 12px;
}

/* ── HOW IT WORKS ── */
.steps-section { padding: 100px 0; background: var(--light); }
.steps-inner { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  background: var(--beige2); margin-top: 60px;
}
.step-card {
  background: var(--beige);
  padding: 60px 40px; text-align: center;
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 4rem; font-weight: 300;
  color: var(--gold); opacity: 0.4; line-height: 1;
  margin-bottom: 16px;
}
.step-icon { font-size: 2.2rem; margin-bottom: 20px; }
.step-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 14px; }
.step-text { font-size: 0.85rem; color: var(--gray); line-height: 1.8; }
.step-connector {
  position: absolute; top: 80px; right: -20px;
  width: 40px; height: 1px; background: var(--gold);
  z-index: 2;
}

/* ── ABOUT ── */
.about-story { padding: 100px 0; }
.about-story-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-values { padding: 100px 0; background: var(--green); }
.about-values-inner { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 60px; background: rgba(245,241,232,0.1); }
.value-card { background: var(--green); padding: 40px 30px; transition: background var(--transition); }
.value-card:hover { background: var(--green2); }
.value-icon { font-size: 2rem; margin-bottom: 16px; }
.value-title { font-size: 1rem; font-weight: 600; color: var(--beige); margin-bottom: 10px; }
.value-text { font-size: 0.8rem; color: rgba(245,241,232,0.5); line-height: 1.7; }

/* ── CONTACT ── */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px;
  align-items: start; padding: 100px 0;
}
.contact-inner { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
.contact-info-item { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 36px; }
.contact-info-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--green); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.contact-info-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.contact-info-value { font-size: 0.9rem; color: var(--dark); line-height: 1.7; }

.contact-form {
  background: var(--white);
  border-radius: 12px; padding: 50px;
  box-shadow: var(--shadow);
}
.form-title { font-family: var(--font-display); font-size: 1.8rem; font-weight: 300; margin-bottom: 8px; }
.form-subtitle { font-size: 0.85rem; color: var(--gray); margin-bottom: 36px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); }
.form-input, .form-select, .form-textarea {
  padding: 14px 18px;
  border: 1px solid rgba(31,61,43,0.15);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem; color: var(--dark);
  background: var(--beige);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198,169,107,0.12);
  background: var(--white);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-submit {
  width: 100%; padding: 16px;
  background: var(--green);
  color: var(--beige);
  font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition-fast);
  margin-top: 10px;
}
.form-submit:hover { background: var(--green2); transform: translateY(-1px); box-shadow: var(--shadow); }

/* ── LEAD FORM INLINE ── */
.inline-lead {
  background: var(--light); padding: 80px 0;
}
.inline-lead-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 60px;
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: center;
}
.inline-lead-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.inline-lead-form .form-input { background: var(--white); }
.inline-lead-form .btn-primary { grid-column: 1 / -1; justify-content: center; padding: 15px; }

/* ── ANIMATIONS & SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── UTILITY ── */
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }
.mb-60 { margin-bottom: 60px; }
.mt-60 { margin-top: 60px; }
.divider { height: 1px; background: rgba(31,61,43,0.08); margin: 0 60px; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .navbar { padding: 0 40px; }
  .section { padding: 80px 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .problem-inner { gap: 50px; }
  .about-story-inner { gap: 50px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .trust-inner { grid-template-columns: 1fr; }
  .problem-inner { grid-template-columns: 1fr; }
  .earnings-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .service-detail-item { grid-template-columns: 1fr; }
  .service-detail-item.reverse { direction: ltr; }
  .steps-grid { grid-template-columns: 1fr; }
  .about-story-inner { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .inline-lead-inner { grid-template-columns: 1fr; }
  .hero-stats { right: 40px; gap: 24px; }
  .hero-scroll { left: 40px; }
}

@media (max-width: 600px) {
  .navbar { padding: 0 20px; }
  .hero-content { padding: 0 24px; padding-top: 80px; }
  .hero-title { font-size: 2.8rem; }
  .hero-stats { display: none; }
  .hero-scroll { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .section { padding: 60px 24px; }
  .section-inner { padding: 0 24px; }
  .problem-inner { padding: 0 24px; }
  .earnings-inner { padding: 0 24px; }
  .trust-inner { padding: 0 24px; grid-template-columns: 1fr; }
  .locations-inner { padding: 0 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 60px 24px 30px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .page-hero { padding: 130px 24px 70px; }
  .contact-form { padding: 32px 24px; }
  .sticky-cta { bottom: 16px; right: 16px; }
  .sticky-btn { padding: 12px 18px; font-size: 0.7rem; }
  .final-cta-inner { padding: 0 24px; }
  .problem-visual { grid-template-columns: 1fr; }
}
