/*
Theme Name: AIM Mobile Med Spa
Theme URI: https://aimmobilemedspa.com
Author: InflowMD
Author URI: https://inflowmd.com
Description: Custom WordPress theme for AIM Mobile Med Spa — luxury mobile aesthetics and turnkey Sprinter builds.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: aim-medspa
*/

/* ============================================
   RESET & VARIABLES
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #B8956F;
    --gold-dark: #9A7A56;
    --gold-light: #D4B896;
    --black: #000000;
    --white: #ffffff;
    --off-white: #f5f5f5;
    --cream: #f5f0e8;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --font-body: 'Poppins', sans-serif;
    --font-heading: 'Varela Round', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--off-white);
    font-weight: 400;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    color: var(--black);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(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; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }
.delay-8 { transition-delay: 0.8s; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header-top {
    background: var(--black);
    padding: 8px 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

.header-top .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
}

.header-top a {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.header-top a:hover {
    color: var(--gold);
}

.header-top svg {
    width: 14px;
    height: 14px;
}

.header-main {
    padding: 0;
}

.header-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled .header-main .container {
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo img {
    height: 70px;
    width: auto;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled .logo img {
    height: 42px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--black);
    line-height: 1.2;
}

.logo-text span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-desktop > li {
    list-style: none;
    position: relative;
}

.nav-desktop > li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background: rgba(0, 0, 0, 0.12);
}

.nav-desktop > li > a {
    font-size: 0.72rem;
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text);
    position: relative;
    padding: 8px 24px;
    display: block;
    transition: color 0.3s ease;
}

.nav-desktop > li > a::after {
    display: none;
}

.nav-desktop > li > a:hover {
    color: var(--gold);
}

.nav-desktop > li.current-menu-item > a,
.nav-desktop > li.current-menu-ancestor > a {
    color: var(--gold);
}

/* Shrink nav on scroll */
.site-header.scrolled .nav-desktop > li > a {
    font-size: 0.68rem;
    padding: 6px 20px;
    letter-spacing: 1.5px;
}

.site-header.scrolled .nav-desktop > li:not(:last-child)::after {
    height: 12px;
}

/* Desktop Dropdown */
.nav-desktop .menu-item-has-children {
    position: relative;
}

.nav-desktop .menu-item-has-children > a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-desktop .menu-item-has-children > a::after {
    content: '';
    position: static;
    width: 5px;
    height: 5px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    background: none;
    transition: transform 0.3s ease;
    left: auto;
    right: auto;
}

.nav-desktop .menu-item-has-children:hover > a::after {
    transform: rotate(-135deg);
}

.nav-desktop .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    min-width: 200px;
    padding: 12px 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-top: 2px solid var(--gold);
    list-style: none;
    z-index: 1000;
    padding-top: 20px;
}

.nav-desktop .sub-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 12px;
    background: transparent;
}

.nav-desktop .menu-item-has-children:hover > .sub-menu {
    display: block;
}

.nav-desktop .sub-menu li {
    list-style: none;
}

.nav-desktop .sub-menu a {
    display: block;
    padding: 10px 24px;
    font-size: 0.78rem;
    letter-spacing: 0.3px;
    font-weight: 400;
    color: var(--text);
    white-space: nowrap;
    transition: all 0.3s ease;
}

.nav-desktop .sub-menu a::after {
    display: none;
}

.nav-desktop .sub-menu a:hover {
    color: var(--gold);
    background: var(--off-white);
    padding-left: 28px;
}


.nav-desktop .nav-cta {
    padding-left: 24px;
    margin-left: 8px;
    border-left: 1px solid rgba(0, 0, 0, 0.12);
}

.site-header.scrolled .nav-desktop .nav-cta {
    padding-left: 16px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    font-family: var(--font-body);
    text-align: center;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 149, 111, 0.35);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.btn-outline-dark:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 44px;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.nav-cta .btn {
    padding: 10px 24px;
    font-size: 0.7rem;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    margin: 6px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 120px 2rem 2rem;
    flex-direction: column;
    gap: 0;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    font-size: 1.1rem;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
    color: var(--black);
    font-weight: 400;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover {
    color: var(--gold);
}

/* Mobile Dropdown */
.mobile-nav .menu-item-has-children > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav .menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.mobile-nav .menu-item-has-children.open > a::after {
    transform: rotate(-135deg);
}

.mobile-nav .sub-menu {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    background: var(--off-white);
}

.mobile-nav .menu-item-has-children.open > .sub-menu {
    display: block;
}

.mobile-nav .sub-menu a {
    font-size: 0.95rem;
    padding: 14px 0 14px 24px;
    color: var(--text-light);
}

.mobile-nav .sub-menu a:hover {
    color: var(--gold);
}

/* ============================================
   HOMEPAGE HERO
   ============================================ */
.hero {
    padding-top: 135px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(184, 149, 111, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(184, 149, 111, 0.1) 0%, transparent 60%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 100px,
        rgba(184, 149, 111, 0.02) 100px,
        rgba(184, 149, 111, 0.02) 200px
    );
    z-index: 1;
    animation: pulse 8s ease-in-out infinite;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid var(--gold);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    font-weight: 500;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-kicker {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    font-weight: 500;
    animation: fadeInUp 0.8s ease forwards;
}

.hero h1 {
    font-family: var(--font-body);
    font-size: 3.5rem;
    color: var(--cream);
    margin-bottom: 12px;
    line-height: 1.2;
    font-weight: 300;
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero h1 strong {
    font-weight: 600;
    color: var(--white);
}

.hero-tagline {
    font-family: var(--font-accent);
    font-size: 2.2rem;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 28px;
    font-weight: 400;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease 0.35s forwards;
    opacity: 0;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 44px;
    line-height: 1.8;
    font-weight: 300;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.5s forwards;
    opacity: 0;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.65s forwards;
    opacity: 0;
}

/* Page Hero (Inner Pages) */
.page-hero {
    padding-top: 250px;
    padding-bottom: 100px;
    text-align: center;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(184, 149, 111, 0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(184, 149, 111, 0.08) 0%, transparent 60%);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero .section-kicker {
    font-size: 0.72rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 500;
}

.page-hero h1 {
    font-family: var(--font-body);
    font-size: 3.2rem;
    color: var(--cream);
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-hero h1 strong {
    font-weight: 600;
    color: var(--white);
}

.page-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

/* ============================================
   SECTION UTILITIES
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-kicker {
    font-size: 0.72rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 500;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--black);
    font-weight: 400;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 300;
}

.gold-line {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 28px;
}

/* ============================================
   IMAGE GRID (Below Hero)
   ============================================ */
.image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 100%;
    margin: 0;
    padding: 60px 60px;
    background: #f0ebe4;
    position: relative;
}

.image-grid-item {
    position: relative;
    aspect-ratio: 1.35;
    overflow: hidden;
    background: #1a1a1a;
    border-radius: 6px;
}

.image-grid-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 6px;
    z-index: 2;
    transition: border-color 0.4s ease;
    pointer-events: none;
}

.image-grid-item:hover::before {
    border-color: var(--gold);
}

.image-grid-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 3;
    border-radius: 0 0 6px 6px;
    pointer-events: none;
}

.image-grid-item:hover::after {
    transform: scaleX(1);
}

.image-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: brightness(0.85) saturate(0.9);
}

.image-grid-item:hover img {
    transform: scale(1.05);
    filter: brightness(1) saturate(1);
}

.image-grid-item .overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--white);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.image-grid-item:hover .overlay-text {
    transform: translateY(0);
    opacity: 1;
}

/* ============================================
   TAGLINE SECTION (HOMEPAGE)
   ============================================ */
.tagline-section {
    background: var(--black);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tagline-logo {
    display: block;
    width: 100px;
    height: auto;
    margin: 0 auto 40px;
    filter: invert(1);
    mix-blend-mode: screen;
    opacity: 0.85;
}

.tagline-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0 auto;
    width: 200px;
}
.tagline-divider::before,
.tagline-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.tagline-divider .diamond {
    width: 5px;
    height: 5px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}

.tagline-rotator {
    position: relative;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 44px auto;
    max-width: 900px;
    overflow: hidden;
}

.tagline-rotator .tagline-line {
    position: absolute;
    font-family: var(--font-accent);
    font-size: 3rem;
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 2px;
    line-height: 1.3;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    white-space: nowrap;
}

.tagline-rotator .tagline-line.active {
    opacity: 1;
    transform: translateY(0);
}

.tagline-rotator .tagline-line.exiting {
    opacity: 0;
    transform: translateY(-20px);
}

.tagline-rotator .tagline-line .gold {
    color: var(--gold);
}

/* ============================================
   HOMEPAGE SERVICES
   ============================================ */
.services-section {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.service-card {
    padding: 48px 36px;
    text-align: center;
    position: relative;
    transition: all 0.5s ease;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.service-card:last-child {
    border-right: none;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width 0.5s ease;
}

.service-card:hover::before {
    width: 60px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--gold);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
    transition: stroke 0.4s ease;
}

.service-card:hover .service-icon svg {
    stroke: var(--white);
}

.service-icon i {
    font-size: 26px;
    color: var(--gold);
    transition: color 0.4s ease;
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 14px;
    color: var(--black);
}

.service-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 300;
}

/* ============================================
   SPLIT SECTIONS
   ============================================ */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 650px;
}

.split-image {
    position: relative;
    overflow: hidden;
    background: #f0ebe4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
}

.split-image img {
    max-width: 88%;
    max-height: 420px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.split-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2), 0 10px 25px rgba(0, 0, 0, 0.12);
}

.split-content {
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    padding: 80px 72px;
}

.split-content-inner {
    max-width: 520px;
}

.split-content .section-kicker {
    color: var(--gold);
    margin-bottom: 20px;
}

.split-content h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 24px;
}

.split-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
}

.split-content .highlight-list {
    list-style: none;
    margin: 28px 0;
    padding: 0;
}

.split-content .highlight-list li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

.split-content .highlight-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 1px;
    background: var(--gold);
}

.split-reverse .split-image {
    order: 2;
}

.split-reverse .split-content {
    order: 1;
}

/* About Story Section */
.story-section {
    padding: 100px 0;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-image {
    position: relative;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 6s ease;
}

.story-image:hover img {
    transform: scale(1.03);
}

.story-content h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
}

.story-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
    font-weight: 300;
}

.story-content .accent {
    color: var(--gold);
    font-weight: 500;
}

/* ============================================
   HOW IT WORKS (HOMEPAGE)
   ============================================ */
.how-it-works {
    padding: 100px 0;
    background: var(--off-white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-top: 70px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.step-card {
    text-align: center;
    position: relative;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.78rem;
    line-height: 1.6;
    font-weight: 300;
}

.step-number {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-accent);
    font-size: 1.6rem;
    color: var(--gold);
    font-weight: 600;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.step-card:hover .step-number {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(184, 149, 111, 0.3);
}

.step-card h4 {
    font-size: 0.88rem;
    margin-bottom: 8px;
    color: var(--white);
    font-weight: 500;
    font-family: var(--font-body);
}

.step-card p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    font-weight: 300;
}

/* Location How It Works */
.how-it-works {
    padding: 100px 0;
    background: var(--black);
}

.how-it-works .section-title {
    color: var(--white);
}

.how-it-works .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 70px;
    position: relative;
}

.how-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.how-step {
    text-align: center;
    position: relative;
}

.how-step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--font-accent);
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 600;
    background: var(--black);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.how-step:hover .how-step-number {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(184, 149, 111, 0.3);
    transform: scale(1.1);
}

.how-step h3 {
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 10px;
}

.how-step p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-weight: 300;
}

/* ============================================
   WHY MOBILE
   ============================================ */
.why-mobile {
    padding: 100px 0;
    background: var(--black);
}

.why-mobile .section-title {
    color: var(--white);
}

.why-mobile .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 70px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.benefit-card {
    padding: 48px 36px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    line-height: 1.7;
    font-weight: 300;
}

.benefit-card:nth-child(3n) {
    border-right: none;
}

.benefit-card:nth-child(n+4) {
    border-bottom: none;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width 0.5s ease;
}

.benefit-card:hover::before {
    width: 100%;
}

.benefit-card:hover {
    background: rgba(184, 149, 111, 0.06);
}

.benefit-card h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-weight: 300;
}

/* ============================================
   AUDIENCE / TARGET AUDIENCE
   ============================================ */
.audience-section {
    padding: 100px 0;
    background: var(--white);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.audience-card {
    padding: 40px 28px;
    background: var(--off-white);
    border-radius: 0;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.audience-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.audience-card:hover::after {
    transform: scaleX(1);
}

.audience-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.audience-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 149, 111, 0.07);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.audience-card:hover .audience-icon {
    background: rgba(184, 149, 111, 0.13);
    transform: scale(1.08);
}

.audience-icon i {
    font-size: 30px;
    color: var(--gold);
    transition: color 0.3s ease;
}

.audience-icon svg {
    width: 34px;
    height: 34px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.3;
}

.audience-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
    color: var(--black);
}

.audience-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 300;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison-section {
    padding: 100px 0;
    background: var(--off-white);
}

.comparison-table {
    max-width: 900px;
    margin: 60px auto 0;
    border-collapse: collapse;
    width: 100%;
}

.comparison-table thead th {
    padding: 20px 24px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--gold);
}

.comparison-table thead th:first-child {
    text-align: left;
    color: var(--text);
}

.comparison-table thead th:nth-child(2) {
    background: var(--black);
    color: var(--gold);
}

.comparison-table thead th:nth-child(3) {
    color: var(--text-muted);
}

.comparison-table tbody td {
    padding: 16px 24px;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--text);
    font-weight: 300;
}

.comparison-table tbody td:first-child {
    font-weight: 400;
    color: var(--black);
}

.comparison-table tbody td:nth-child(2) {
    text-align: center;
    background: rgba(0, 0, 0, 0.02);
}

.comparison-table tbody td:nth-child(3) {
    text-align: center;
}

.check {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 700;
}

.cross {
    color: #ccc;
    font-size: 1rem;
}

.comparison-table tbody tr {
    transition: background 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(184, 149, 111, 0.04);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-container {
    max-width: 780px;
    margin: 60px auto 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    cursor: pointer;
    gap: 16px;
    transition: color 0.3s ease;
    width: 100%;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--black);
    text-align: left;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question h3 {
    font-size: 1.05rem;
    font-weight: 400;
    margin: 0;
    transition: color 0.3s ease;
}

.faq-question:hover h3 {
    color: var(--gold);
}

.faq-toggle {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    color: var(--gold);
}

.faq-item.active .faq-toggle {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-answer-inner {
    padding: 0 0 24px;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 300;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding-bottom: 28px;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 300;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(45deg);
}

/* ============================================
   ABOUT PAGE: PILLARS & VALUES
   ============================================ */
.pillars-section {
    padding: 100px 0;
    background: var(--off-white);
}

.pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 70px;
}

.pillar-card {
    padding: 60px 48px;
    position: relative;
    transition: all 0.4s ease;
}

.pillar-card:first-child {
    background: var(--black);
    color: var(--white);
}

.pillar-card:last-child {
    background: var(--cream);
    color: var(--black);
}

.pillar-badge {
    display: inline-block;
    padding: 6px 18px;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    color: var(--gold);
    margin-bottom: 24px;
    font-weight: 500;
}

.pillar-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.pillar-card:first-child h3 {
    color: var(--white);
}

.pillar-card p {
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 16px;
    font-weight: 300;
}

.pillar-card:first-child p {
    color: rgba(255, 255, 255, 0.75);
}

.pillar-card:last-child p {
    color: var(--text-light);
}

.pillar-list {
    list-style: none;
    margin: 24px 0;
    padding: 0;
}

.pillar-list li {
    padding: 8px 0 8px 20px;
    position: relative;
    font-size: 0.9rem;
    font-weight: 300;
}

.pillar-card:first-child .pillar-list li {
    color: rgba(255, 255, 255, 0.8);
}

.pillar-card:last-child .pillar-list li {
    color: var(--text-light);
}

.pillar-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 1px;
    background: var(--gold);
}

.pillar-card .btn {
    margin-top: 12px;
}

.values-section {
    padding: 100px 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 70px;
}

.value-card {
    text-align: center;
    padding: 40px 28px;
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-6px);
}

.value-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.value-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.value-card:hover .value-icon {
    background: var(--gold);
}

.value-card:hover .value-icon svg {
    stroke: var(--white);
}

.value-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 300;
}

/* The Name (About Page) */
.name-section {
    padding: 80px 0;
    background: var(--cream);
    text-align: center;
}

.name-section h2 {
    font-family: var(--font-accent);
    font-size: 3rem;
    font-style: italic;
    color: var(--black);
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 1px;
}

.name-section h2 .gold {
    color: var(--gold);
}

.name-section p {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

/* ============================================
   CONTACT PAGE LAYOUT
   ============================================ */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #eee;
}

.contact-method:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-method-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.contact-method:hover .contact-method-icon {
    background: var(--gold);
}

.contact-method-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
    transition: stroke 0.4s ease;
}

.contact-method:hover .contact-method-icon svg {
    stroke: var(--white);
}

.contact-method-text h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-method-text p {
    font-size: 0.88rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.6;
}

.contact-method-text a {
    color: var(--gold);
    font-weight: 500;
}

.contact-method-text a:hover {
    color: var(--gold-dark);
}

/* Location Cards */
.location-cards {
    margin-top: 48px;
}

.location-cards h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--black);
}

.location-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.location-card {
    display: block;
    padding: 24px;
    background: var(--off-white);
    border: 1px solid #eee;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.location-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.location-card:hover::before {
    transform: scaleX(1);
}

.location-card-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 6px;
}

.location-card-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.5;
}

.location-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 10px;
}

.location-card-arrow svg {
    width: 14px;
    height: 14px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.location-card:hover .location-card-arrow svg {
    transform: translateX(4px);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form-wrapper {
    background: var(--off-white);
    padding: 48px;
    border: 1px solid #eee;
}

.contact-form-wrapper h2 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.contact-form-wrapper > p {
    font-size: 0.88rem;
    color: var(--text-light);
    font-weight: 300;
    margin-bottom: 32px;
    line-height: 1.7;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-label .required {
    color: var(--gold);
    margin-left: 2px;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.88rem;
    font-family: var(--font-body);
    background: var(--white);
    border: 1px solid #ddd;
    color: var(--text);
    transition: all 0.3s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 149, 111, 0.1);
}

.form-input::placeholder, .form-textarea::placeholder {
    color: var(--text-muted);
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

/* Form Section - Two Column Layout */
.form-section {
    padding: 100px 0;
    background: var(--white);
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.form-intro {
    padding-right: 20px;
}

.form-intro .section-kicker {
    margin-bottom: 12px;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.form-intro > p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.form-intro-detail {
    padding: 28px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.form-intro-detail:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.form-intro-detail h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 8px;
}

.form-intro-detail p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Lead Capture Form */
.lead-form {
    background: var(--off-white);
    padding: 48px 40px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text);
    transition: border-color 0.3s ease;
    outline: none;
    border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    margin-bottom: 24px;
}

.checkbox-group label.group-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 12px;
    font-weight: 500;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
    cursor: pointer;
}

.checkbox-item span {
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 300;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--gold);
    color: var(--white);
    border: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 28px;
}

.form-submit:hover {
    background: var(--gold-dark);
    box-shadow: 0 8px 25px rgba(184, 149, 111, 0.35);
}

.form-submit .btn {
    width: 100%;
    padding: 16px;
    font-size: 0.82rem;
    letter-spacing: 2px;
}

/* Inquiry Type */
.inquiry-type-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.inquiry-radio {
    display: none;
}

.inquiry-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: var(--white);
    border: 1px solid #ddd;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text);
    transition: all 0.3s ease;
}

.inquiry-label:hover {
    border-color: var(--gold-light);
}

.inquiry-radio:checked + .inquiry-label {
    border-color: var(--gold);
    background: rgba(184, 149, 111, 0.06);
    color: var(--black);
    font-weight: 500;
}

.inquiry-dot {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 50%;
    border: 2px solid #ccc;
    position: relative;
    transition: all 0.3s ease;
}

.inquiry-radio:checked + .inquiry-label .inquiry-dot {
    border-color: var(--gold);
}

.inquiry-radio:checked + .inquiry-label .inquiry-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

/* Form Success State */
.form-success {
    display: none;
    text-align: center;
    padding: 60px 32px;
}

.form-success.show {
    display: block;
}

.form-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-success-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
}

.form-success h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.form-success p {
    font-size: 0.92rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.8;
    max-width: 400px;
    margin: 0 auto;
}

/* Location Service Area */
.service-area {
    padding: 80px 0;
    background: var(--cream);
    text-align: center;
}

.service-area h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.service-area p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.8;
    font-weight: 300;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.area-tag {
    padding: 10px 24px;
    border: 1px solid var(--gold);
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--gold);
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.area-tag:hover {
    background: var(--gold);
    color: var(--white);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 120px 0;
    background: var(--black);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(184, 149, 111, 0.1), transparent 70%);
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--cream);
    margin-bottom: 24px;
}

.cta-section h2 strong {
    color: var(--white);
    font-weight: 600;
}

.cta-section p,
.cta-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 640px;
    margin: 0 auto 48px;
    line-height: 1.8;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER - DEFAULT (DARK)
   ============================================ */
.site-footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 30px;
    font-size: 0.85rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand-text {
    font-size: 0.82rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 16px;
    font-weight: 300;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--white);
}

.footer-heading {
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 300;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
    min-width: 16px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a:hover {
    color: var(--gold);
}

/* Homepage Footer Variant (Cream) */
.home .site-footer {
    background: var(--cream);
    color: var(--black);
    padding: 80px 0 40px;
    font-size: 0.85rem;
}

.home .site-footer .footer-heading {
    color: var(--black);
    font-weight: 600;
    font-family: var(--font-body);
    letter-spacing: 3px;
}

.home .site-footer .footer-brand-text {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 300;
    margin-top: 16px;
}

.home .site-footer .footer-links a {
    color: var(--text-light);
    transition: color 0.3s ease;
    font-weight: 300;
}

.home .site-footer .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.88rem;
    color: var(--text-light);
    font-weight: 300;
}

.home .site-footer .footer-contact-item a {
    color: var(--text-light);
}

.home .site-footer .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text-muted);
    padding-top: 28px;
}

.home .site-footer .footer-bottom a {
    color: var(--text-muted);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .service-card:nth-child(odd) {
        border-right: 1px solid rgba(0, 0, 0, 0.06);
    }

    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    .steps-grid::before {
        display: none;
    }

    .how-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-grid::before {
        display: none;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 926px) {
    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .form-intro {
        padding-right: 0;
    }

    .nav-desktop {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .nav-cta {
        display: none;
    }

    .header-top {
        display: none;
    }

    .header-main .container {
        height: 70px;
    }

    .hero {
        margin-top: 80px;
        min-height: 70vh;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .page-hero {
        margin-top: 80px;
        padding: 80px 0 70px;
    }

    .page-hero h1 {
        font-size: 2.4rem;
    }

    .split-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .split-image {
        min-height: auto;
        padding: 32px;
    }

    .split-content {
        padding: 60px 36px;
    }

    .split-reverse .split-image {
        order: 1;
    }

    .split-reverse .split-content {
        order: 2;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .pillar-card {
        padding: 48px 36px;
    }

    .section-title {
        font-size: 2rem;
    }

    .image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 36px 24px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-card:nth-child(3n) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .benefit-card:nth-child(2n) {
        border-right: none;
    }

    .benefit-card {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .benefit-card:nth-last-child(-n+2) {
        border-bottom: none !important;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tagline-text {
        font-size: 2rem;
    }

    .comparison-table {
        font-size: 0.8rem;
    }

    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 12px 14px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-wrapper {
        padding: 36px 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .inquiry-type-grid {
        grid-template-columns: 1fr;
    }

    .location-card-grid {
        grid-template-columns: 1fr;
    }

    .contact-section {
        padding: 70px 0;
    }

    .faq-section {
        padding: 70px 0;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .name-section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1.3rem;
    }

    .hero-subtitle {
        font-size: 0.92rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero-ctas .btn {
        width: 100%;
        max-width: 300px;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .page-hero p {
        font-size: 0.95rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        border-right: none !important;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        border-right: none !important;
    }

    .image-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 28px 16px;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .tagline-text {
        font-size: 1.5rem;
    }

    .split-content {
        padding: 48px 24px;
    }

    .split-content h2 {
        font-size: 1.7rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .step-number {
        width: 56px;
        height: 56px;
        font-size: 1.3rem;
    }

    .comparison-table thead th:nth-child(2),
    .comparison-table tbody td:nth-child(2) {
        font-size: 0.75rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .contact-section {
        padding: 50px 0;
    }

    .contact-form-wrapper {
        padding: 28px 20px;
    }

    .faq-section {
        padding: 50px 0;
    }

    .cta-section {
        padding: 70px 0;
    }

    .name-section h2 {
        font-size: 1.6rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .container {
        padding: 0 1.2rem;
    }

    .hero {
        min-height: 65vh;
    }

    .page-hero h1 {
        font-size: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 24px 16px;
    }
}
