
/* ===== Standard Navigation (overrides old .navbar styles) ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-sizing: border-box;
  padding-left: clamp(16px, 4vw, 24px);
  padding-right: clamp(16px, 4vw, 24px);
  background: url('../images/white-stone.png') center / cover no-repeat;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  overflow-x: hidden;
}
.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
  box-sizing: border-box;
}
.site-header .nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  position: static;
}
.site-header .nav-logo img {
  height: 96px;
  width: auto;
  max-width: 220px;
}
.nav-inner .nav-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  flex-shrink: 0;
  min-width: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-inner .nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  color: #1a1a1a;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.nav-inner .nav-links a:hover { color: #a68e46; }
.nav-lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 6px 10px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid #B79C4F;
  border-radius: 8px;
  font-size: 0.8rem;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-lang-option {
  background: none;
  border: none;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  color: #888;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-lang-option:hover { color: #4A4A4A; }
.nav-lang-option.active {
  color: #B79C4F;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.nav-lang-sep {
  color: rgba(0, 0, 0, 0.25);
  pointer-events: none;
  user-select: none;
}
.nav-ctas {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 44px;
  padding: 12px 20px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
  white-space: nowrap;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.nav-cta-btn.nav-cta-phone {
  background: #1a4d1a;
  color: #fff;
  box-shadow: 0 2px 8px rgba(26, 26, 26, 0.2);
}
.nav-cta-btn.nav-cta-phone:hover {
  background: #083119;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 26, 26, 0.3);
}
.nav-cta-btn.nav-cta-consult {
  background: #B79C4F;
  color: #1a1a1a;
  box-shadow: 0 2px 8px rgba(201, 162, 39, 0.35);
  border-radius: 8px;
}
.nav-cta-btn.nav-cta-consult:hover {
  background: #a68e46;
  color: #1a1a1a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 162, 39, 0.4);
}
@media (max-width: 900px) {
  .nav-inner .nav-links { display: none; }
  .nav-lang-toggle { padding: 5px 10px; font-size: 0.8rem; }
  .nav-ctas { gap: 8px; }
  .nav-cta-btn { min-width: 0; padding: 8px 12px; font-size: 0.8rem; }
}
@media (max-width: 768px) {
  .nav-inner {
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 0;
  }
  .site-header .nav-logo {
    flex: 0 0 auto;
  }
  .nav-lang-toggle {
    margin-left: auto;
  }
  .nav-ctas {
    flex: 1 1 100%;
    order: 3;
    justify-content: center;
    gap: 10px;
    margin-top: 4px;
  }
  .nav-cta-btn {
    padding: 10px 14px;
    font-size: 0.8rem;
    white-space: nowrap;
  }
  .nav-cta-btn.nav-cta-phone {
    padding: 10px 14px;
    font-size: 0.8rem;
  }
}
@media (max-width: 480px) {
  .nav-inner {
    padding: 8px 10px;
    gap: 8px;
  }
  .nav-lang-toggle { padding: 4px 8px; font-size: 0.75rem; }
  .site-header .nav-logo img {
    height: 56px;
  }
  .nav-cta-btn {
    min-width: 0;
    padding: 8px 12px;
    font-size: 0.75rem;
  }
  .nav-cta-btn.nav-cta-phone {
    padding: 8px 12px;
    font-size: 0.75rem;
  }
}
/* ===== End Standard Navigation ===== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #B79C4F;
    --emerald-green: #006B3C;
    --white: #FFFFFF;
    --dark-green: #004225;
    --light-gold: #F5E6D3;
    --marble-bg: #F8F8F8;

    /* Gold CTA button – exact Home Page gold */
    --cta-gold-dark: #a68e46;
    --cta-gold-light: #c4a95a;
    --cta-hover-dark: #967826;
    --cta-hover-light: #b8a05a;
    --cta-gradient: #B79C4F;
    --cta-gradient-hover: #a68e46;
    --cta-text: #1a1a1a;
    --cta-shadow: 0 2px 8px rgba(201, 162, 39, 0.35);
    --cta-shadow-hover: 0 4px 12px rgba(201, 162, 39, 0.4);
    --cta-radius: 8px;
    --cta-font-size: 0.875rem;
    --cta-font-weight: 700;
    --cta-reflection: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0) 30%, rgba(255,255,255,0.55) 50%, rgba(255,255,255,0) 70%, transparent 100%);
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-green);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Gold CTA – same look as "BOOK MY FREE CONSULTATION" */
.btn-gold-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    min-height: 44px;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Montserrat', sans-serif;
    font-size: var(--cta-font-size);
    font-weight: var(--cta-font-weight);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--cta-text);
    background: var(--cta-gradient);
    border: none;
    border-radius: var(--cta-radius);
    box-shadow: var(--cta-shadow);
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-gold-cta:hover {
    background: var(--cta-gradient-hover);
    transform: translateY(-1px);
    box-shadow: var(--cta-shadow-hover);
}

.btn-gold-cta.full-width {
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 12px clamp(16px, 4vw, 24px);
    background: url('white-stone.png') center / cover no-repeat;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow-x: hidden;
}

.nav-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    white-space: nowrap;
    flex-wrap: nowrap;
    box-sizing: border-box;
}

.logo-container {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-link:hover .logo {
    opacity: 0.9;
}

.logo {
    height: 96px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    white-space: nowrap;
    flex-wrap: nowrap;
}

.nav-menu li {
    flex: 0 0 auto;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-green);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--dark-green);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link-active::after {
    width: 100%;
}

.nav-link-active {
    font-weight: 600;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    white-space: nowrap;
    flex-wrap: nowrap;
}

.nav-lang-btn {
    padding: 10px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid var(--gold);
    border-radius: 8px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-lang-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark-green);
}

/* Base CTA button styles */
.nav-cta-btn {
    min-height: 44px;
    padding: 12px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Green (phone) button – matches main site #1a4d1a */
.nav-cta-btn.nav-cta-phone {
    background: #1a4d1a;
    color: #fff;
    box-shadow: 0 2px 8px rgba(26, 77, 26, 0.4);
}

.nav-cta-btn.nav-cta-phone:hover {
    background: #083119;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 108, 44, 0.5);
}

/* Gold + white reflection (consultation) button */
.nav-cta-btn:not(.nav-cta-phone) {
    background: var(--cta-gradient);
    color: var(--cta-text);
    box-shadow: var(--cta-shadow);
}

.nav-cta-btn:not(.nav-cta-phone):hover {
    background: var(--cta-gradient-hover);
    color: var(--cta-text);
    transform: translateY(-1px);
    box-shadow: var(--cta-shadow-hover);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--emerald-green);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 1024px) {
    .nav-right {
        display: flex;
        align-items: center;
        gap: 8px;
    }
}

@media (max-width: 1280px) {
    .nav-container {
        padding: 0 18px;
        gap: 16px;
    }

    .logo {
        height: 76px;
    }

    .nav-menu {
        gap: 18px;
    }

    .nav-link {
        font-size: 13px;
        letter-spacing: 0.8px;
    }

    .nav-lang-btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .nav-cta-btn {
        padding: 9px 14px;
        font-size: 12px;
    }
}

@media (max-width: 1120px) {
    .nav-container {
        padding: 0 14px;
        gap: 12px;
    }

    .logo {
        height: 64px;
    }

    .nav-menu {
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    /* Keep language toggle and CTAs visible in nav bar on mobile */
    .nav-right {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .nav-lang-btn {
        padding: 6px 10px;
        font-size: 11px;
    }

    .nav-cta-btn {
        padding: 6px 10px;
        font-size: 10px;
    }
}

/* Luxury gold divider between sections */
body > section:not(.footer) {
    position: relative;
}

body > section:not(.footer)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        #6B5510 0%,
        #8B6914 15%,
        #B8941F 35%,
        #D4AF37 50%,
        #FFD700 55%,
        #D4AF37 65%,
        #B8941F 85%,
        #8B6914 100%);
    box-shadow: 0 1px 4px rgba(212, 175, 55, 0.35);
    z-index: 5;
}

body > section.promo-section::after {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    overflow: visible;
    border: 6px solid var(--gold);
    box-sizing: border-box;
    padding: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image {
    opacity: 1 !important; /* prevent script from hiding hero image before load */
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 250px 72px 50px 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    z-index: 1;
    box-sizing: border-box;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1.15;
    color: var(--dark-green);
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9), 0 0 20px rgba(255, 255, 255, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-title-line {
    display: block;
}
.hero-title .hero-headline-support,
.hero-title .hero-headline-location {
    font-size: 0.45em;
    opacity: 0.9;
    font-weight: 500;
}

.hero-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 500;
    letter-spacing: 2px;
    margin: 0;
    opacity: 0.98;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding-top: 18px;
}

.hero-form-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    overflow: visible;
}

.hero-form-container {
    background-image: url('white-marble-bg.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.hero-form-container .form-logo-container {
    margin-bottom: 20px;
}

.hero-form-container .form-logo {
    height: 120px;
    width: auto;
}

.hero-form-container .form-logo-title {
    font-size: 16px;
}

.hero-form-container .form-logo-underline {
    width: 80px;
}

.hero-form-container .form-main-heading {
    font-size: 24px;
    margin-bottom: 6px;
}

.hero-form-container .form-sub-heading {
    font-size: 14px;
    margin-bottom: 22px;
}

/* Corner Decorations for Forms */
.corner-decoration {
    position: absolute;
    z-index: 10;
    pointer-events: none;
}

.corner-decoration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-form-container .corner-decoration.top-left {
    top: 5px;
    left: 5px;
    width: 60px;
    height: 60px;
}

.hero-form-container .corner-decoration.top-right {
    top: 5px;
    right: 5px;
    width: 60px;
    height: 60px;
}

.hero-form-container .corner-decoration.bottom-left {
    bottom: 5px;
    left: 5px;
    width: 70px;
    height: 70px;
}

.hero-form-container .corner-decoration.bottom-right {
    bottom: 5px;
    right: 5px;
    width: 70px;
    height: 70px;
}


.hero-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-form .form-group {
    margin-bottom: 0;
}

.hero-form .form-group input,
.hero-form .form-group textarea {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ddd;
    color: #333;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.hero-form .form-group input::placeholder {
    color: #999;
    font-weight: 300;
}

.hero-form .form-group input:focus {
    border-bottom-color: var(--gold);
}

.hero-form .form-submit-btn {
    width: 100%;
    padding: 16px 24px;
    min-height: 44px;
    box-sizing: border-box;
    background: var(--cta-gradient);
    color: var(--cta-text);
    border: none;
    font-size: var(--cta-font-size);
    font-weight: var(--cta-font-weight);
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    border-radius: var(--cta-radius);
    text-transform: uppercase;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Montserrat', sans-serif;
    box-shadow: var(--cta-shadow);
}

.hero-form .form-submit-btn:hover {
    background: var(--cta-gradient-hover);
    color: var(--cta-text);
    transform: translateY(-1px);
    box-shadow: var(--cta-shadow-hover);
}

.form-group {
    margin-bottom: 20px;
}

/* Promo Section (after Hero) */
.promo-section {
    padding: 80px 24px 100px;
    background: var(--white);
    background-image: url('white-stone.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-top: 2px solid #B89C6F;
    border-bottom: 2px solid #B89C6F;
}

.promo-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.promo-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 24px 0;
    letter-spacing: 0.5px;
}

.promo-headline-teal {
    color: var(--dark-green);
}

.promo-headline-gold {
    color: #B89C6F;
}

.promo-description {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin: 0 0 32px 0;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.promo-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    min-height: 44px;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Montserrat', sans-serif;
    font-size: var(--cta-font-size);
    font-weight: var(--cta-font-weight);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--cta-text);
    background: var(--cta-gradient);
    border: none;
    border-radius: var(--cta-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: var(--cta-shadow);
    white-space: nowrap;
}

.promo-btn:hover {
    background: var(--cta-gradient-hover);
    color: var(--cta-text);
    transform: translateY(-1px);
    box-shadow: var(--cta-shadow-hover);
}

.promo-btn-arrow,
.promo-btn-chevron {
    font-size: 16px;
}

.promo-btn-chevron {
    transform: scaleY(1);
    display: inline-block;
}

.promo-disclaimer {
    font-size: 12px;
    color: #888;
    margin: 0 0 32px 0;
    line-height: 1.5;
}

.promo-trust-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 16px 20px;
    margin-bottom: 24px;
}

.promo-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.promo-stars {
    color: #B89C6F;
    font-size: 16px;
    letter-spacing: 2px;
}

.promo-trust-divider {
    width: 1px;
    height: 24px;
    background: #ccc;
    flex-shrink: 0;
}

.promo-trust-icon {
    width: 22px;
    height: 22px;
    color: #333;
    flex-shrink: 0;
}

.promo-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.promo-guarantee-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #B89C6F;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    text-align: center;
    margin: 0 auto 40px;
    letter-spacing: 2px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 100px;
    box-sizing: border-box;
    z-index: 2;
    /* Horizontal gradient: darker golden-brown on edges, brighter gold in middle */
    background: linear-gradient(90deg, 
        #8B6914 0%, 
        #9D7A1A 15%,
        #B8941F 30%,
        #D4AF37 50%,
        #FFD700 60%,
        #D4AF37 70%,
        #B8941F 85%,
        #9D7A1A 95%,
        #8B6914 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: none;
}

.section-title::before,
.section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    width: 250px;
    background: #8B6914;
    z-index: 1;
    pointer-events: none;
}

.section-title::before {
    left: 0;
    background: linear-gradient(to right, #8B6914 0%, rgba(139, 105, 20, 0.5) 30%, rgba(139, 105, 20, 0.2) 60%, rgba(139, 105, 20, 0) 100%);
}

.section-title::after {
    right: 0;
    background: linear-gradient(to left, #8B6914 0%, rgba(139, 105, 20, 0.5) 30%, rgba(139, 105, 20, 0.2) 60%, rgba(139, 105, 20, 0) 100%);
}

.section-subtitle {
    display: block;
    font-size: 24px;
    color: var(--emerald-green);
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-top: 15px;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    text-align: center;
    /* Override parent gradient */
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--emerald-green);
    background-clip: unset;
    text-shadow: none;
    filter: none;
}


/* Results Section */
.results-section {
    padding: 80px 0 100px;
    background: var(--white);
    background-image: url('white-stone.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.results-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}

.results-subheading {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #888;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.results-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 600;
    margin: 0 0 24px 0;
    line-height: 1.2;
    letter-spacing: 1px;
}

.results-headline-real {
    color: var(--dark-green);
    display: inline;
}

.results-headline-results {
    color: #B89C6F;
    display: inline;
}

.results-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.75;
    margin: 0;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.result-pair {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 0 20px;
}

.result-image {
    position: relative;
    flex: 1;
    max-width: 100%;
    border: 5px solid var(--gold);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 66, 37, 0.12);
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.result-image:hover {
    box-shadow: 0 16px 48px rgba(212, 175, 55, 0.2);
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.result-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--emerald-green);
    color: var(--gold);
    padding: 12px 24px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    border-radius: 4px;
    min-width: 100px;
    text-align: center;
    z-index: 10;
}

.result-label.after {
    background: var(--gold);
    color: var(--emerald-green);
}

.result-arrow {
    font-size: 36px;
    color: var(--gold);
    font-weight: bold;
    flex-shrink: 0;
}

.result-arrow {
    font-size: 48px;
    color: var(--gold);
    font-weight: bold;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gold);
    color: var(--emerald-green);
    border: none;
    width: 50px;
    height: 50px;
    font-size: 32px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--emerald-green);
    color: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-gold);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* The Program Section (timeline) */
.program-section {
    padding: 80px 0 100px;
    background: var(--white);
    background-image: url('white-stone.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.program-section .container {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px;
}

.program-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #B89C6F;
    text-align: center;
    margin: 0 0 16px 0;
}

.program-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    margin: 0 0 56px 0;
}

.program-headline-dark {
    display: block;
    color: var(--dark-green);
}

.program-headline-gold {
    display: block;
    color: #B89C6F;
}

.program-timeline {
    position: relative;
    padding-left: 0;
}

.program-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: #ccc;
    z-index: 0;
}

.program-step {
    position: relative;
    display: flex;
    gap: 0;
    align-items: flex-start;
    padding-bottom: 48px;
    z-index: 1;
}

.program-step:last-child {
    padding-bottom: 0;
}

.program-step-marker {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 3px solid var(--dark-green);
    background: rgba(255, 255, 255, 0.95);
    margin-top: 4px;
    margin-right: 24px;
    position: relative;
    z-index: 1;
}

.program-step-marker::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 2px;
    background: #B89C6F;
    margin-left: 2px;
}

.program-step-content {
    flex: 1;
    min-width: 0;
}

.program-phase {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #B89C6F;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.program-step-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 600;
    color: var(--dark-green);
    margin: 0 0 14px 0;
    line-height: 1.3;
}

.program-step-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    margin: 0;
}

/* Benefits Section */
.benefits-section {
    padding: 90px 0 110px;
    background: var(--white);
    background-image: url('white-stone.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.benefits-section .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
}

.benefits-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #B89C6F;
    text-align: center;
    margin: 0 0 18px 0;
}

.benefits-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    margin: 0 0 48px 0;
    letter-spacing: 0.5px;
}

.benefits-heading-dark {
    color: var(--dark-green);
}

.benefits-heading-gold {
    color: #B89C6F;
    font-style: italic;
    font-weight: 500;
    margin-left: 10px;
    display: inline-block;
}

.benefits-tiles {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px 32px;
}

.benefit-tile {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 10px;
    padding: 22px 22px 22px;
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.06);
    position: relative;
}

.benefit-tile-topline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(184, 156, 111, 0.95);
}

.benefit-tile-number {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: #B89C6F;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.benefit-tile-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-green);
    margin: 0 0 10px 0;
    line-height: 1.35;
}

.benefit-tile-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #555;
    line-height: 1.75;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--white);
    background-image: url('white-stone.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-top: 3px solid var(--dark-green);
    border-bottom: 3px solid var(--dark-green);
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
}

.testimonials-layout {
    display: grid;
    grid-template-columns: 1fr 1.85fr;
    gap: 60px;
    align-items: center;
}

.testimonials-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

/* Gold frame with shine effect */
.testimonials-headline-frame {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px 16px;
    background: transparent;
    border: 10px solid #c9a84c;
    border-radius: 0;
    width: max-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-shadow:
        inset 0 3px 8px rgba(255, 255, 255, 0.45),
        inset 0 -2px 6px rgba(0, 0, 0, 0.1),
        0 0 28px rgba(201, 168, 76, 0.45),
        0 6px 24px rgba(143, 111, 34, 0.28);
}

.testimonials-headline-frame::before {
    content: '';
    position: absolute;
    inset: -10px;
    padding: 10px;
    background: linear-gradient(165deg, #e8d5a3 0%, #d4af37 20%, #f5e6b8 50%, #c9a84c 80%, #9a7b2d 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    pointer-events: none;
}

.testimonials-headline-frame::after {
    content: '';
    position: absolute;
    inset: -10px;
    padding: 10px;
    background: linear-gradient(
        110deg,
        transparent 20%,
        rgba(255, 255, 255, 0.8) 40%,
        rgba(255, 248, 220, 1) 50%,
        rgba(255, 255, 255, 0.8) 60%,
        transparent 80%
    );
    background-size: 200% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1;
    pointer-events: none;
    animation: frameShimmer 2.5s linear infinite;
}

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

.testimonials-headline {
    margin: 0;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.2;
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
}

.testimonials-headline-dark {
    color: var(--dark-green);
}

.testimonials-headline-gold {
    color: var(--dark-green);
}

.testimonials-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    line-height: 1.6;
    margin: 0;
    text-align: center;
    max-width: 340px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.testimonials-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 0;
}

.testimonial-card {
    padding: 28px 32px;
    background: var(--white);
    border: none;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
}

.testimonial-text {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
    font-family: 'Montserrat', sans-serif;
}

.testimonial-attribution {
    font-size: 13px;
    color: #b8963a;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

/* Guaranteed Results Section */
.reasons-section {
    padding: 90px 0 110px;
    background: var(--white);
    background-image: url('white-stone.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.reasons-section .container {
    max-width: 1200px;
}

.reasons-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #B89C6F;
    text-align: center;
    margin: 0 0 14px 0;
}

.reasons-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 4.8vw, 52px);
    font-weight: 500;
    line-height: 1.15;
    text-align: center;
    margin: 0 0 22px 0;
    letter-spacing: 0.5px;
}

.reasons-headline-dark {
    color: var(--dark-green);
}

.reasons-headline-gold {
    color: #B89C6F;
    font-style: italic;
    font-weight: 500;
    margin: 0 8px;
    display: inline-block;
}

.reasons-intro {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    text-align: center;
    max-width: 720px;
    margin: 0 auto 54px;
}

.reasons-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    align-items: start;
}

.reason-card {
    padding: 22px 26px 0;
    text-align: left;
}

.reason-card + .reason-card {
    border-left: 1px solid rgba(184, 156, 111, 0.85);
}

.reason-number {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #B89C6F;
    margin: 0 0 18px 0;
}

.reason-kicker {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #B89C6F;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.reason-title {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-green);
    margin: 0 0 10px 0;
    line-height: 1.35;
}

.reason-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #555;
    line-height: 1.75;
    margin: 0 0 14px 0;
}

.reason-note {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: #777;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--marble-bg);
    background-image: url('white-stone.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.faq-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #666;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 12px 0;
}

.faq-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 700;
    text-align: center;
    margin: 0 0 56px 0;
    line-height: 1.2;
}

.faq-heading-dark {
    color: var(--dark-green);
}

.faq-heading-gold {
    color: #B89C6F;
    font-style: italic;
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    border: 2px solid rgba(212, 175, 55, 0.45);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 6px 24px rgba(0, 66, 37, 0.06);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover,
.faq-item.active {
    border-color: var(--gold);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.12);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--dark-green);
    transition: background 0.3s ease, color 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.08);
    color: var(--emerald-green);
}

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

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p:first-child {
    padding: 18px 28px 12px;
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: var(--dark-green);
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    font-family: 'Montserrat', sans-serif;
}

.faq-answer p {
    padding: 0 28px 12px;
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: var(--dark-green);
    font-family: 'Montserrat', sans-serif;
}

.faq-answer p:last-child {
    padding-bottom: 24px;
}

.faq-answer ul {
    padding: 0 28px 12px 56px;
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: var(--dark-green);
    font-family: 'Montserrat', sans-serif;
}

.faq-answer ul li {
    margin-bottom: 4px;
}

.faq-item.active .faq-answer {
    max-height: 800px;
}

/* Form Submission Section */
.form-submission-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.form-submission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('white-stone.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.form-submission-section .container {
    position: relative;
    z-index: 1;
}

.form-submission-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Left Side - Informational Content */
.form-submission-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.consultation-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin: 0;
}

.consultation-heading {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.heading-dark {
    color: var(--dark-green);
}

.heading-gold {
    color: #B89C6F;
    font-style: italic;
}

.consultation-subheadline {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #666;
    font-style: italic;
    margin: 0;
    line-height: 1.6;
}

.consultation-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: var(--dark-green);
    line-height: 1.8;
    font-weight: 400;
    max-width: 520px;
    margin: 0;
}

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

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

.contact-icon {
    color: var(--gold);
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.contact-icon svg {
    stroke: var(--gold);
}

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

.contact-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #888;
    text-transform: uppercase;
}

.contact-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: var(--dark-green);
    font-weight: 500;
    line-height: 1.4;
}

.consultation-checklist {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.consultation-checklist li {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--dark-green);
    display: flex;
    align-items: center;
    gap: 10px;
}

.consultation-checklist .check-icon {
    color: var(--gold);
    font-weight: 700;
    font-size: 16px;
}

/* Right Side - Form */
.form-submission-form-wrapper {
    position: relative;
    overflow: visible;
}

.form-submission-form {
    background: #fff;
    padding: 40px 36px;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.12);
    position: relative;
}

.form-main-heading {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--dark-green);
    margin: 0 0 8px 0;
    text-align: left;
}

.form-sub-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666;
    text-align: left;
    margin: 0 0 28px 0;
    font-weight: 400;
    line-height: 1.5;
}

.submission-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.submission-form .form-group {
    margin-bottom: 0;
}

.submission-form .form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 8px;
}

.submission-form .form-group input {
    width: 100%;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.submission-form .form-group input::placeholder {
    color: #aaa;
    font-weight: 400;
}

.submission-form .form-group input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.submission-form .form-submit-btn {
    width: 100%;
    padding: 16px 24px;
    min-height: 44px;
    box-sizing: border-box;
    background: var(--cta-gradient);
    color: var(--cta-text);
    border: none;
    font-size: var(--cta-font-size);
    font-weight: var(--cta-font-weight);
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    border-radius: var(--cta-radius);
    text-transform: uppercase;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: var(--cta-shadow);
}

.submission-form .form-submit-btn .btn-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.submission-form .form-submit-btn:hover {
    background: var(--cta-gradient-hover);
    color: var(--cta-text);
    transform: translateY(-1px);
    box-shadow: var(--cta-shadow-hover);
}

.submission-form .form-submit-btn:hover .btn-arrow {
    transform: translateX(4px);
}

.form-disclaimer {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: #888;
    text-align: center;
    margin: 16px 0 0 0;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: var(--white);
    background-image: url('white-stone.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-top: 2px solid var(--gold);
    padding: 48px 24px 40px;
    text-align: center;
}

.footer .container {
    max-width: 900px;
    margin: 0 auto;
}

.footer-line {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #888;
    line-height: 1.6;
    margin: 0;
}

.footer-contact-line {
    margin-bottom: 16px;
}

.footer-services-line {
    margin-bottom: 16px;
}

.footer-legal-line {
    margin-bottom: 0;
}

.footer-legal-link {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: var(--dark-green);
    text-decoration: underline;
}

.footer-dot {
    margin: 0 8px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        align-items: center;
        justify-content: flex-start;
        padding: 170px 20px;
    }

    .hero-form-wrapper {
        max-width: 450px;
    }

    .stats-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-tiles {
        grid-template-columns: repeat(2, 1fr);
    }

    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reason-card {
        padding: 26px 22px;
        border-left: none;
    }

    .reason-card:nth-child(2n) {
        border-left: 1px solid rgba(184, 156, 111, 0.85);
    }

    .reason-card:nth-child(n+3) {
        border-top: 1px solid rgba(184, 156, 111, 0.35);
    }

    .benefits-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits-banner-col {
        order: -1;
    }

    .benefits-headline-banner {
        max-width: 100%;
    }

    .testimonials-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .testimonials-left {
        align-items: center;
        text-align: center;
    }

    .testimonials-headline {
        font-size: 32px;
    }

    .testimonials-description {
        text-align: center;
        max-width: 100%;
    }

    .form-submission-content {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 20px;
    }

    .consultation-heading {
        font-size: 36px;
    }

    .consultation-eyebrow {
        font-size: 12px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
        max-width: 100%;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        border-width: 4px;
    }

    .hero-content {
        align-items: center;
        justify-content: flex-start;
        padding: 150px 1rem;
    }

    .promo-section {
        padding: 60px 1rem 80px;
    }

    .promo-inner {
        padding: 0 0.5rem;
        max-width: 100%;
    }

    .promo-headline {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .promo-trust-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 18px;
        padding: 0 0.5rem;
    }

    .promo-trust-item {
        white-space: normal;
        text-align: center;
        flex: 1 1 auto;
        min-width: 0;
        font-size: 13px;
    }

    .promo-trust-divider {
        display: none;
    }

    .hero-form-wrapper {
        max-width: 100%;
    }

    .hero-form-container {
        padding: 30px 25px;
    }

    .hero-form-container .form-main-heading {
        font-size: 24px;
    }

    .section-title {
        font-size: 32px;
    }

    .stats-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefits-tiles {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .reasons-intro {
        margin-bottom: 40px;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .reason-card {
        padding: 26px 0;
        border-left: none;
        border-top: 1px solid rgba(184, 156, 111, 0.35);
    }

    .reason-card:first-child {
        border-top: none;
        padding-top: 0;
    }

    .benefits-headline-banner {
        padding: 36px 28px;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .result-pair {
        flex-direction: column;
    }

    .result-arrow {
        transform: rotate(90deg);
    }

    .program-section {
        padding: 56px 0 72px;
    }

    .program-section .container {
        padding: 0 16px;
    }

    .program-headline {
        margin-bottom: 40px;
    }

    .program-step {
        padding-bottom: 36px;
    }

    .program-step-marker {
        width: 20px;
        height: 20px;
        margin-right: 16px;
    }

    .program-timeline::before {
        left: 8px;
        top: 18px;
    }

    .consultation-heading {
        font-size: 28px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .form-submission-content {
        padding: 0 1rem;
    }

    .contact-text {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .form-submission-form {
        padding: 30px 20px;
        max-width: 100%;
    }

    .form-submission-form-wrapper {
        max-width: 100%;
    }

    .form-main-heading {
        font-size: 22px;
    }

    .consultation-description {
        font-size: 14px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .testimonials-headline {
        font-size: 28px;
    }

    .results-headline,
    .program-headline,
    .benefits-heading,
    .reasons-headline {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .reason-title,
    .reason-text,
    .reason-kicker,
    .benefit-tile-title,
    .benefit-tile-text,
    .program-step-title,
    .program-step-desc {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .footer .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .footer-line {
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 0.25rem;
    }

    .footer {
        padding: 40px 0 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 0.875rem;
        padding-right: 0.875rem;
    }

    .hero {
        border-width: 3px;
    }

    .hero-content {
        padding: 120px 0.875rem;
    }

    .promo-section {
        padding: 48px 0.875rem 64px;
    }

    .promo-headline {
        font-size: 22px;
        line-height: 1.3;
    }

    .promo-description {
        font-size: 14px;
    }

    .promo-disclaimer {
        font-size: 11px;
    }

    .reasons-section {
        padding: 64px 0 80px;
    }

    .reasons-headline {
        margin-bottom: 18px;
    }

    .reason-number {
        font-size: 18px;
    }

    .hero-form-container {
        padding: 25px 20px;
    }

    .hero-form-container .form-logo {
        height: 55px;
    }

    .hero-form-container .form-logo-title {
        font-size: 16px;
    }

    .hero-form-container .form-main-heading {
        font-size: 22px;
    }

    .hero-form-container .form-sub-heading {
        font-size: 14px;
    }

    .promo-headline {
        font-size: 24px;
    }

    .promo-buttons {
        flex-direction: column;
    }

    .promo-btn {
        width: 100%;
        justify-content: center;
    }

    .promo-trust-row {
        flex-direction: column;
        gap: 14px;
        padding: 0 0.25rem;
    }

    .promo-trust-item {
        font-size: 12px;
    }

    .promo-trust-divider {
        width: 40px;
        height: 1px;
    }

    .form-submission-content {
        padding: 0 0.875rem;
    }

    .consultation-heading {
        font-size: 24px;
    }

    .form-submission-form {
        padding: 24px 16px;
    }

    .footer .container {
        padding-left: 0.875rem;
        padding-right: 0.875rem;
    }

    .footer {
        padding: 32px 0 28px;
    }

    .footer-line {
        font-size: 13px;
    }

    .consultation-popup-content {
        max-width: calc(100vw - 24px);
        margin: 0 12px;
    }

    .consultation-popup-form {
        padding: 24px 16px;
    }

    .faq-question span {
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: left;
    }

    .section-title {
        font-size: 24px;
    }

    .floating-referral-wrap {
        bottom: 20px;
        right: 20px;
    }

    .floating-referral-btn {
        padding: 14px 20px;
    }

    .referral-btn-line {
        font-size: 12px;
    }

    .referral-btn-cta {
        font-size: 13px;
    }
}

/* Floating Referral Button */
.floating-referral-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}

.floating-referral-wrap.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-referral-wrap.dismissed {
    display: none;
}

.floating-referral-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--dark-green);
    border: 2px solid var(--gold);
    color: var(--white);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 2;
    transition: background 0.2s ease, color 0.2s ease;
}

.floating-referral-close:hover {
    background: var(--gold);
    color: var(--dark-green);
}

.floating-referral-btn {
    position: relative;
    bottom: auto;
    right: auto;
    background: var(--emerald-green);
    border: 3px solid var(--gold);
    border-radius: 12px;
    padding: 18px 24px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.floating-referral-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 107, 60, 0.4);
}

.referral-btn-line {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.3;
}

.referral-btn-cta {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
}

/* Referral Modal */
.referral-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.referral-modal.active {
    display: flex;
}

/* Consultation Popup (hero form - appears 5s after load) */
.consultation-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.consultation-popup.active {
    display: flex;
}

.consultation-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    cursor: pointer;
}

.consultation-popup-content {
    position: relative;
    max-width: 420px;
    width: 100%;
    z-index: 1;
}

.consultation-popup-form {
    max-width: 100%;
}

.consultation-popup-close {
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--white);
    border: 2px solid var(--gold);
    font-size: 28px;
    color: var(--emerald-green);
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 20;
    line-height: 1;
    padding: 0;
}

.consultation-popup-close:hover {
    background: var(--gold);
    color: var(--white);
}

.referral-modal-content {
    background: var(--white);
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--gold);
}

.referral-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 32px;
    color: var(--emerald-green);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.referral-modal-close:hover {
    background: var(--gold);
    color: var(--white);
}

.referral-form-container {
    padding: 50px 40px 40px;
    background-image: url('white-marble-bg.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.referral-form-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
    gap: 15px;
}

.referral-form-logo .form-logo {
    height: 130px;
    width: auto;
}

.referral-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--emerald-green);
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.referral-form-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

.referral-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.referral-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.referral-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--emerald-green);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.referral-form .form-group input {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ddd;
    color: #333;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.referral-form .form-group input::placeholder {
    color: #999;
    font-weight: 300;
}

.referral-form .form-group input:focus {
    border-bottom-color: var(--gold);
}

.referral-form .form-submit-btn {
    width: 100%;
    padding: 16px 24px;
    min-height: 44px;
    box-sizing: border-box;
    background: var(--cta-gradient);
    color: var(--cta-text);
    border: none;
    font-size: var(--cta-font-size);
    font-weight: var(--cta-font-weight);
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    border-radius: var(--cta-radius);
    text-transform: uppercase;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Montserrat', sans-serif;
    box-shadow: var(--cta-shadow);
}

.referral-form .form-submit-btn:hover {
    background: var(--cta-gradient-hover);
    color: var(--cta-text);
    transform: translateY(-1px);
    box-shadow: var(--cta-shadow-hover);
}

/* ============================================
   Mobile Nav & Content Fix (≤768px comprehensive)
   ============================================ */
@media (max-width: 768px) {
    /* --- Prevent all horizontal overflow --- */
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }
    *, *::before, *::after {
        box-sizing: border-box;
    }

    /* --- Navbar: two-row layout --- */
    .site-header {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    .nav-inner {
        flex-wrap: wrap !important;
        align-items: center;
        padding: 8px 0 !important;
        gap: 6px !important;
    }
    .site-header .nav-logo img {
        height: 52px !important;
        width: auto;
    }
    .nav-lang-toggle {
        margin-left: auto;
        font-size: 0.72rem !important;
        padding: 4px 8px !important;
        flex-shrink: 0;
    }
    .nav-ctas {
        flex: 1 1 100% !important;
        order: 3;
        display: flex !important;
        justify-content: center;
        gap: 8px;
        margin-top: 2px;
        width: 100%;
    }
    .nav-cta-btn {
        flex: 1 1 0 !important;
        min-width: 0 !important;
        padding: 9px 6px !important;
        font-size: 0.68rem !important;
        letter-spacing: 0 !important;
        white-space: normal !important;
        text-align: center;
        line-height: 1.3;
    }

    /* --- Hero: keep full-viewport but center the title --- */
    .hero {
        min-height: 100svh;
        min-height: 100vh;
        overflow: hidden;
    }
    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 120px 1rem 60px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .hero-title {
        font-size: clamp(1.6rem, 8vw, 2.4rem) !important;
        text-align: center !important;
        white-space: normal !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100% !important;
    }
    .hero-title-line {
        display: block;
        text-align: center;
    }
    .hero-tagline {
        text-align: center !important;
        font-size: 0.9rem !important;
        max-width: 100% !important;
        word-wrap: break-word;
    }
    .hero-form-wrapper {
        max-width: 100% !important;
        width: 100% !important;
    }

    /* --- All section headings & text: centered --- */
    h1, h2, h3, h4, h5,
    .section-title, .section-eyebrow,
    [class*="-headline"], [class*="-heading"],
    [class*="-title"]:not(.hero-form-container .form-logo-title),
    [class*="-eyebrow"], [class*="-subtext"],
    [class*="-subtitle"], [class*="-description"],
    [class*="-intro"], [class*="-desc"], p {
        text-align: center;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* --- All containers & sections: no overflow --- */
    section,
    .container,
    [class*="-inner"],
    [class*="-section"],
    [class*="-container"],
    [class*="-wrapper"] {
        max-width: 100vw !important;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    .container,
    [class*="-inner"] {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    /* --- Grids → single column --- */
    .stats-grid,
    .benefits-grid,
    .benefits-tiles,
    .reasons-grid,
    .results-grid,
    .blog-grid,
    .testimonials-layout,
    .form-submission-content,
    .benefits-layout {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
    }

    /* --- CTA buttons: full width, centered --- */
    .promo-buttons {
        flex-direction: column !important;
        align-items: center !important;
    }
    .promo-btn {
        width: 100% !important;
        max-width: 320px;
        justify-content: center !important;
    }

    /* --- Promo / reasons / results sections --- */
    .promo-inner {
        text-align: center;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    .promo-headline {
        text-align: center !important;
    }
    .promo-trust-row {
        flex-wrap: wrap;
        justify-content: center;
    }
    .reasons-intro {
        text-align: center;
    }
    .result-pair {
        flex-direction: column !important;
        align-items: center !important;
    }
    .result-arrow {
        transform: rotate(90deg) !important;
    }

    /* --- Testimonials --- */
    .testimonials-left {
        align-items: center !important;
        text-align: center !important;
    }
    .testimonials-description {
        text-align: center !important;
    }

    /* --- Contact / consultation --- */
    .consultation-heading {
        text-align: center !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .contact-text {
        text-align: center !important;
        word-wrap: break-word;
    }
    .form-submission-content {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    .form-submission-form,
    .form-submission-form-wrapper {
        max-width: 100% !important;
    }

    /* --- Footer --- */
    .footer .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    .footer-line {
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}


