/* ============================================
   WORLDWIDE ESCROW — Coastal Prestige
   Design System & Styles
   ============================================ */

/* --- Design Tokens --- */
:root {
    /* Primary Palette — Ocean & Coast */
    --navy:        #1A1A2E;
    --navy-light:  #16213E;
    --ocean:       #1B5E8A;
    --ocean-light: #2A7AB5;
    --sky:         #5BA4D9;
    --sky-pale:    #E8F2FA;

    /* Accent — Worldwide Orange */
    --gold:        #D4782F;
    --gold-light:  #E08A3E;
    --gold-pale:   #FDF0E5;
    --sand:        #F7F3ED;
    --sand-dark:   #EDE6D8;

    /* Neutrals */
    --white:       #FFFFFF;
    --gray-50:     #F9FAFB;
    --gray-100:    #F3F4F6;
    --gray-200:    #E5E7EB;
    --gray-300:    #D1D5DB;
    --gray-400:    #9CA3AF;
    --gray-500:    #6B7280;
    --gray-600:    #4B5563;
    --gray-700:    #374151;
    --gray-800:    #1F2937;
    --gray-900:    #111827;

    /* Functional */
    --success:     #16A34A;
    --error:       #DC2626;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-ui:      'DM Sans', 'Inter', sans-serif;

    /* Type Scale */
    --text-xs:   0.75rem;
    --text-sm:   0.875rem;
    --text-base: 1rem;
    --text-lg:   1.125rem;
    --text-xl:   1.25rem;
    --text-2xl:  1.5rem;
    --text-3xl:  1.875rem;
    --text-4xl:  2.25rem;
    --text-5xl:  3rem;
    --text-6xl:  3.75rem;
    --text-7xl:  4.5rem;

    /* Spacing */
    --space-1:  0.25rem;
    --space-2:  0.5rem;
    --space-3:  0.75rem;
    --space-4:  1rem;
    --space-5:  1.25rem;
    --space-6:  1.5rem;
    --space-8:  2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Layout */
    --container-max: 1200px;
    --container-wide: 1400px;
    --section-padding: 6rem 0;

    /* Shadows */
    --shadow-sm:  0 1px 2px rgba(11, 29, 51, 0.05);
    --shadow-md:  0 4px 6px -1px rgba(11, 29, 51, 0.07), 0 2px 4px -2px rgba(11, 29, 51, 0.05);
    --shadow-lg:  0 10px 15px -3px rgba(11, 29, 51, 0.08), 0 4px 6px -4px rgba(11, 29, 51, 0.04);
    --shadow-xl:  0 20px 25px -5px rgba(11, 29, 51, 0.1), 0 8px 10px -6px rgba(11, 29, 51, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(11, 29, 51, 0.15);
    --shadow-gold: 0 4px 14px rgba(198, 151, 63, 0.3);

    /* Radius */
    --radius-sm:  6px;
    --radius-md:  10px;
    --radius-lg:  16px;
    --radius-xl:  24px;
    --radius-full: 9999px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration-fast: 200ms;
    --duration-normal: 350ms;
    --duration-slow: 600ms;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--duration-fast) ease;
}

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

/* --- Utility --- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-16);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-4);
    position: relative;
    padding-left: 2rem;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.25rem;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
    font-weight: 600;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: var(--space-6);
}

.section-title em {
    font-style: italic;
    color: var(--ocean);
}

.section-desc {
    font-size: var(--text-lg);
    color: var(--gray-500);
    line-height: 1.7;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: var(--text-sm);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--duration-normal) var(--ease-out);
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: var(--text-base);
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--navy-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-1px);
}

.btn-outline {
    border: 1.5px solid var(--gray-300);
    color: var(--navy);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--navy);
    background: var(--navy);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
    box-shadow: var(--shadow-lg);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-outline-white {
    border: 1.5px solid rgba(255,255,255,0.4);
    color: var(--white);
    background: transparent;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}

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

/* --- Preloader --- */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-palm {
    width: 60px;
    height: 60px;
    color: var(--gold);
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.4; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-5) 0;
    transition: all var(--duration-normal) var(--ease-out);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-3) 0;
    box-shadow: 0 1px 20px rgba(11, 29, 51, 0.08);
}

.nav-container {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--space-8);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}


.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: 0.04em;
    transition: color var(--duration-normal) ease;
}

.navbar.scrolled .logo-name {
    color: var(--navy);
}

.logo-sub {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--gold);
    line-height: 1;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: var(--space-8);
}

.nav-link {
    font-family: var(--font-ui);
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    transition: color var(--duration-normal) ease, transform var(--duration-normal) var(--ease-out), letter-spacing var(--duration-normal) var(--ease-out);
    position: relative;
    opacity: 0;
    animation: navFadeIn 0.6s var(--ease-out) forwards;
}

.nav-link:nth-child(1) { animation-delay: 0.1s; }
.nav-link:nth-child(2) { animation-delay: 0.17s; }
.nav-link:nth-child(3) { animation-delay: 0.24s; }
.nav-link:nth-child(4) { animation-delay: 0.31s; }
.nav-link:nth-child(5) { animation-delay: 0.38s; }
.nav-link:nth-child(6) { animation-delay: 0.45s; }
.nav-link:nth-child(7) { animation-delay: 0.52s; }
.nav-link:nth-child(8) { animation-delay: 0.59s; }

@keyframes navFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: width var(--duration-normal) var(--ease-out), left var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) ease;
    border-radius: 1px;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
    box-shadow: 0 2px 8px rgba(212, 120, 47, 0.4);
}

.nav-link:hover {
    color: var(--white);
    transform: translateY(-2px);
    letter-spacing: 0.02em;
}

.navbar.scrolled .nav-link {
    color: var(--gray-600);
}

.navbar.scrolled .nav-link:hover {
    color: var(--navy);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-ui);
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    transition: color var(--duration-normal) ease, transform var(--duration-normal) var(--ease-out);
}

.nav-phone:hover {
    color: var(--white);
    transform: translateY(-1px);
}

.navbar.scrolled .nav-phone {
    color: var(--gray-600);
}

.navbar.scrolled .nav-phone:hover {
    color: var(--navy);
}

.nav-cta {
    background: var(--gold);
    color: var(--white);
    font-size: 0.9375rem;
    padding: 0.65rem 1.6rem;
    animation: ctaFadeIn 0.7s var(--ease-out) 0.7s forwards, ctaGlow 3s ease-in-out 2s infinite;
    opacity: 0;
}

@keyframes ctaFadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes ctaGlow {
    0%, 100% { box-shadow: 0 0 0 rgba(212, 120, 47, 0); }
    50% { box-shadow: 0 0 18px rgba(212, 120, 47, 0.3); }
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 120, 47, 0.4);
    animation: none;
    opacity: 1;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--duration-normal) var(--ease-out);
    border-radius: 1px;
}

.navbar.scrolled .mobile-toggle span {
    background: var(--navy);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--navy);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right var(--duration-slow) var(--ease-out);
}

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

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-8);
}

.mobile-link {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    color: var(--white);
    font-weight: 500;
    opacity: 0.8;
    transition: opacity var(--duration-fast) ease;
}

.mobile-link:hover {
    opacity: 1;
}

.mobile-cta {
    margin-top: var(--space-4);
    background: var(--gold);
    font-size: var(--text-lg);
    padding: 1rem 2.5rem;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--space-32) var(--space-6) var(--space-16);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--navy);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(1.05);
    object-fit: cover;
    z-index: 0;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            180deg,
            rgba(11, 29, 51, 0.75) 0%,
            rgba(11, 29, 51, 0.5) 30%,
            rgba(11, 29, 51, 0.45) 50%,
            rgba(11, 29, 51, 0.6) 80%,
            rgba(11, 29, 51, 0.85) 100%
        ),
        radial-gradient(ellipse 80% 50% at 50% 40%, rgba(198, 151, 63, 0.06) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-full);
    padding: 0.5rem 1.25rem;
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    margin-bottom: var(--space-8);
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(var(--text-4xl), 7vw, var(--text-7xl));
    font-weight: 600;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: var(--space-6);
    letter-spacing: -0.02em;
}

.hero-title-accent {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, #e8c97a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(var(--text-base), 1.5vw, var(--text-lg));
    color: rgba(255,255,255,0.65);
    max-width: 600px;
    margin: 0 auto var(--space-10);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-16);
}

.hero-actions .btn-primary {
    background: var(--gold);
}

.hero-actions .btn-primary:hover {
    background: var(--gold-light);
    box-shadow: var(--shadow-gold);
}

.hero-actions .btn-outline {
    border-color: rgba(255,255,255,0.3);
    color: var(--white);
}

.hero-actions .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-10);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    display: block;
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.5);
    margin-top: var(--space-2);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    color: rgba(255,255,255,0.4);
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --- Trust Bar --- */
.trust-bar {
    background: var(--sand);
    border-top: 1px solid var(--sand-dark);
    border-bottom: 1px solid var(--sand-dark);
    padding: var(--space-6) 0;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: var(--space-12);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--gray-600);
}

.trust-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* --- Services Section --- */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.service-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-10) var(--space-8);
    transition: all var(--duration-normal) var(--ease-out);
}

.service-card:hover {
    border-color: var(--gray-300);
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.service-card.featured {
    background: var(--navy);
    border-color: var(--navy);
}

.service-card.featured:hover {
    box-shadow: var(--shadow-2xl);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.05em;
}

.service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: var(--space-6);
    color: var(--ocean);
}

.service-card.featured .service-icon {
    color: var(--gold);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-3);
}

.service-card.featured .service-title {
    color: var(--white);
}

.service-desc {
    font-size: var(--text-sm);
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

.service-card.featured .service-desc {
    color: rgba(255,255,255,0.6);
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    color: var(--gray-600);
}

.service-card.featured .service-features li {
    color: rgba(255,255,255,0.7);
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

/* --- About Section --- */
.about {
    background: var(--sand);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-placeholder {
    aspect-ratio: 4/5;
    background: var(--navy);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image-placeholder svg {
    width: 100%;
    height: 100%;
}

.about-accent-card {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--gold);
    color: var(--white);
    padding: var(--space-6) var(--space-8);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.accent-number {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    line-height: 1;
    margin-bottom: var(--space-1);
}

.accent-text {
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.4;
}

.about-lead {
    font-size: var(--text-lg);
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.about-text {
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: var(--space-8);
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.value {
    display: flex;
    gap: var(--space-4);
}

.value-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
}

.value h4 {
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-1);
}

.value p {
    font-size: var(--text-sm);
    color: var(--gray-500);
    line-height: 1.6;
}

/* --- Process Section --- */
.process {
    background: var(--white);
}

.process-timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold-pale), var(--gold), var(--gold-pale));
}

.process-step {
    display: flex;
    gap: var(--space-8);
    margin-bottom: var(--space-12);
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content {
    padding-top: var(--space-4);
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-3);
}

.step-content p {
    color: var(--gray-500);
    line-height: 1.7;
    font-size: var(--text-sm);
}

/* --- Testimonials Section --- */
.testimonials {
    background: var(--sand);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all var(--duration-normal) var(--ease-out);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    color: var(--gold);
    margin-bottom: var(--space-5);
}

.testimonial-quote {
    font-size: var(--text-sm);
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-6);
    font-style: normal;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ocean), var(--ocean-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--white);
    flex-shrink: 0;
}

.author-name {
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--navy);
}

.author-role {
    font-size: var(--text-xs);
    color: var(--gray-400);
}

/* --- CTA Section --- */
.cta-section {
    position: relative;
    background: linear-gradient(
        135deg,
        var(--navy) 0%,
        #0e2444 40%,
        var(--ocean) 100%
    );
    padding: var(--space-24) var(--space-6);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-palm {
    position: absolute;
    right: -5%;
    bottom: -10%;
    width: 400px;
    color: var(--white);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
    font-weight: 600;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: var(--space-5);
}

.cta-text {
    font-size: var(--text-lg);
    color: rgba(255,255,255,0.6);
    margin-bottom: var(--space-10);
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* --- Contact Section --- */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: start;
}

.contact-lead {
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: var(--space-10);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.contact-detail {
    display: flex;
    gap: var(--space-4);
}

.detail-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--sky-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--ocean);
}

.contact-detail h4 {
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-1);
}

.contact-detail p {
    font-size: var(--text-sm);
    color: var(--gray-500);
    line-height: 1.6;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-10);
}

.form-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-8);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.form-group {
    margin-bottom: var(--space-5);
}

.form-group label {
    display: block;
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: var(--space-2);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--gray-800);
    background: var(--white);
    transition: border-color var(--duration-fast) ease, box-shadow var(--duration-fast) ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--ocean);
    box-shadow: 0 0 0 3px rgba(27, 94, 138, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236B7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* --- Footer --- */
.footer {
    background: var(--navy);
    padding: var(--space-16) var(--space-6) var(--space-8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-5);
}

.footer-logo .logo-palm {
    color: var(--gold);
}

.footer-logo .logo-name {
    color: var(--white);
}

.footer-desc {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    max-width: 320px;
}

.footer-links h4 {
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-5);
}

.footer-links a {
    display: block;
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.45);
    padding: var(--space-2) 0;
    transition: color var(--duration-fast) ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.3);
    max-width: 600px;
}

.footer-social {
    display: flex;
    gap: var(--space-4);
}

.footer-social a {
    color: rgba(255,255,255,0.35);
    transition: color var(--duration-fast) ease;
}

.footer-social a:hover {
    color: var(--gold);
}

/* --- Top Bar --- */
.top-bar {
    background: var(--navy);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar-container {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--space-8);
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.7);
    transition: color var(--duration-fast) ease;
}

.top-bar-item:hover {
    color: var(--gold);
}

/* --- Inline Globe Logo --- */
.logo-globe {
    display: inline-block;
    width: 1.1em;
    height: 1.1em;
    vertical-align: -0.15em;
    margin: 0 -0.06em;
    color: var(--gold);
}

.footer-logo .logo-globe {
    color: var(--gold);
}

/* --- Navbar offset for top bar --- */
.navbar {
    top: 29px;
}

.navbar.scrolled {
    top: 0;
}

/* --- Stats Bar --- */
.stats-bar {
    background: var(--navy);
    border-top: none;
    border-bottom: none;
    padding: var(--space-10) 0;
}

.stats-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-16);
}

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

.stat-block .stat-number {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-block .stat-plus {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--gold);
}

.stat-block .stat-label {
    display: block;
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.5);
    margin-top: var(--space-2);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.stat-divider-v {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.15);
}

/* --- Property Showcase --- */
.property-showcase {
    position: relative;
    overflow: hidden;
}

.property-image {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slideshow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.slideshow .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    filter: brightness(1.25);
    transition: opacity 2s ease-in-out, transform 8s ease-in-out;
    transform: scale(1.05);
}

.slideshow .slide.active {
    opacity: 1;
    transform: scale(1);
}

.property-image img:not(.slide) {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(1.25);
}

.property-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(26, 26, 46, 0.65) 0%,
        rgba(26, 26, 46, 0.3) 40%,
        rgba(26, 26, 46, 0.1) 70%,
        transparent 100%
    );
}

.property-content {
    position: absolute;
    bottom: 0;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-16) var(--space-16);
    max-width: 600px;
    z-index: 2;
}

.property-title {
    font-family: var(--font-display);
    font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: var(--space-5);
}

.property-text {
    font-size: var(--text-base);
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: var(--space-8);
}

/* --- Market Data --- */
.market-data {
    background: var(--white);
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.market-card {
    text-align: center;
    padding: var(--space-10) var(--space-8);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: all var(--duration-normal) var(--ease-out);
}

.market-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.market-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    color: var(--gold);
}

.market-card h3 {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-3);
}

.market-card p {
    font-size: var(--text-sm);
    color: var(--gray-500);
    line-height: 1.7;
}

/* --- FAQ --- */
.faq {
    background: var(--sand);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-6) 0;
    font-family: var(--font-ui);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    cursor: pointer;
    transition: color var(--duration-fast) ease;
}

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

.faq-question svg {
    flex-shrink: 0;
    color: var(--gold);
    transition: transform var(--duration-normal) var(--ease-out);
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

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

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: var(--space-6);
}

.faq-answer p {
    font-size: var(--text-sm);
    color: var(--gray-500);
    line-height: 1.8;
}

/* --- Team --- */
.team {
    background: var(--white);
}

.team-grid {
    /* Flexbox wrap with centered justify keeps every card a fixed width and
       centers each row independently — so the 4-card top row and the 3-card
       bottom row both sit centered in the container. Card width tuned so 4
       cards fit on row 1 with the remaining 3 wrapping to row 2. */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-6);
}
.team-card {
    flex: 0 0 240px;
    max-width: 240px;
}

.team-card {
    text-align: center;
    padding: var(--space-8) var(--space-4);
    border-radius: var(--radius-lg);
    transition: all var(--duration-normal) var(--ease-out);
}

.team-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.team-photo {
    position: relative;
    margin-bottom: var(--space-5);
    overflow: hidden;
    border-radius: var(--radius-md);
}

.team-photo-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(145deg, #e8edf2, #c8d0da);
    display: flex;
    align-items: center;
    justify-content: center;
    filter: brightness(0.92);
    transition: filter var(--duration-normal) var(--ease-out);
}

.team-photo-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform var(--duration-normal) var(--ease-out), filter var(--duration-normal) var(--ease-out);
}

.team-card:hover .team-photo-img {
    transform: scale(1.03);
    filter: brightness(1.04);
}

.team-card:hover .team-photo-placeholder {
    filter: brightness(1.05);
}

.team-photo-placeholder span {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--gray-400);
    letter-spacing: 0.05em;
}

/* Modifier: shrinks the photo within its frame so the subject doesn't dominate.
   Used on Muzzy's card per his request — pulls the headshot back ~18% so he
   reads at a more natural size relative to the other team members. */
.team-photo--shrunk {
    background: #f5f1e8;
}
.team-photo--shrunk .team-photo-img {
    transform: scale(0.82);
    transform-origin: center center;
}
.team-card:hover .team-photo--shrunk .team-photo-img {
    transform: scale(0.85);
}

/* Two-office Visit Us layout — side-by-side on desktop, stacks on mobile */
.office-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin-top: var(--space-2);
}
.office .office-label {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gray-400);
    margin-bottom: 4px;
}
.office p {
    margin: 0;
    line-height: 1.5;
}
@media (max-width: 600px) {
    .office-grid {
        grid-template-columns: 1fr;
    }
}

.team-email-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 46, 0.4);
    color: var(--white);
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-out);
    border-radius: var(--radius-md);
}

.team-card:hover .team-email-overlay {
    opacity: 1;
}

.team-name {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-1);
}

.team-role {
    display: block;
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--space-3);
}

.team-email {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    color: var(--gray-400);
    transition: color var(--duration-fast) ease;
}

.team-email:hover {
    color: var(--gold);
}

/* --- Giving Back --- */
.giving-back {
    background: var(--sand);
}

.giving-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.giving-lead {
    font-size: var(--text-lg);
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.giving-text {
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: var(--space-8);
}

.giving-values {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.giving-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.giving-image {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

/* --- CTA Accent --- */
.cta-accent {
    color: var(--gold);
}

/* --- Animations --- */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--duration-slow) var(--ease-out), transform var(--duration-slow) var(--ease-out);
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate].visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* --- The Closing Room (Podcast) --- */
.closing-room {
    background: var(--navy);
    color: var(--white);
}

.closing-room .section-tag {
    color: var(--gold);
    border-color: rgba(212, 120, 47, 0.3);
}

.closing-room .section-title {
    color: var(--white);
}

.closing-room .section-title em {
    color: var(--gold);
}

.closing-room .section-desc {
    color: var(--gray-400);
}

.podcast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-10);
}

.podcast-card {
    background: var(--navy-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
}

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

.podcast-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.podcast-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.podcast-info {
    padding: var(--space-6);
}

.podcast-tag {
    display: inline-block;
    background: rgba(212, 120, 47, 0.15);
    color: var(--gold);
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--space-3);
}

.podcast-title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: var(--space-2);
}

.podcast-meta {
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    color: var(--gray-400);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .nav-phone {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .services-grid,
    .market-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .team-grid {
        /* Tablet: cards naturally wrap via flexbox — narrower cards fit more per row */
        gap: var(--space-5);
    }
    .team-card {
        flex: 0 0 220px;
        max-width: 220px;
    }

    .giving-grid {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }

    .property-content {
        padding: var(--space-8);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem 0;
    }

    .top-bar {
        display: none;
    }

    .navbar {
        top: 0;
    }

    .hero {
        padding: var(--space-24) var(--space-6) var(--space-12);
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(var(--text-3xl), 10vw, var(--text-5xl));
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .hero-scroll {
        display: none;
    }

    .stats-items {
        flex-direction: column;
        gap: var(--space-8);
    }

    .stat-divider-v {
        width: 40px;
        height: 1px;
    }

    .stat-block .stat-number {
        font-size: var(--text-4xl);
    }

    .property-image {
        height: 500px;
    }

    .property-content {
        max-width: 100%;
        padding: var(--space-6);
    }

    .property-overlay {
        background: linear-gradient(
            0deg,
            rgba(26, 26, 46, 0.9) 0%,
            rgba(26, 26, 46, 0.6) 40%,
            rgba(26, 26, 46, 0.3) 100%
        );
    }

    .property-content {
        justify-content: flex-end;
    }

    .team-grid {
        max-width: 500px;
        margin: 0 auto;
        gap: var(--space-4);
    }
    .team-card {
        flex: 0 0 calc(50% - var(--space-4));
        max-width: calc(50% - var(--space-4));
    }

    .cta-actions {
        flex-direction: column;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 var(--space-4);
    }

    .container {
        padding: 0 var(--space-4);
    }

    .contact-form-wrapper {
        padding: var(--space-6);
    }

    .service-card {
        padding: var(--space-8) var(--space-6);
    }

    .property-image {
        height: 450px;
    }
}
