/* ==========================================================================
   SOUTH AMERICAN RANCH - HORIZON GROVE DARK ARCHITECTURAL DESIGN SYSTEM
   ========================================================================== */

/* 1. DESIGN TOKENS & CUSTOM PROPERTIES */
:root {
    /* Color Palette */
    --bg-obsidian: #0B0D0E;
    --bg-graphite: #121416;
    --bg-card: rgba(18, 20, 22, 0.65);
    --bg-card-hover: rgba(26, 29, 33, 0.85);
    --bg-card-border: rgba(255, 255, 255, 0.08);
    --bg-card-border-hover: rgba(255, 122, 0, 0.4);
    
    --accent-amber: #FF7A00;
    --accent-amber: #FF7A00;
    --accent-amber-glow: rgba(45, 52, 64, 0.5);
    
    --text-white: #FFFFFF;
    --text-muted: #9CA3AF;
    --text-dim: #6B7280;

    /* Light Block Section Tokens */
    --bg-light-block: #F4F5F7;
    --bg-light-card: #FFFFFF;
    --text-dark-block: #1A1D20;
    --text-dark-muted: #4B5563;
    --border-light-card: rgba(0, 0, 0, 0.08);

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Satoshi', sans-serif;

    /* Radii */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-pill: 9999px;

    /* Transitions & Shadows */
    --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --glass-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* 2. BASE RESET & GLOBAL STYLES */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background: radial-gradient(circle at 50% 0%, #16191D 0%, #0B0D0E 100%);
    background-attachment: fixed;
    color: var(--text-white);
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background: radial-gradient(circle at 50% 0%, #181C22 0%, #0B0D0E 80%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    font-weight: 700;
    line-height: 1.15;
}

p {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-muted);
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* Ambient Glowing Orbs - Dark Graphite Tone */
.ambient-orb {
    position: fixed;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(35, 42, 52, 0.45) 0%, rgba(11, 13, 14, 0) 70%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.orb-top-left {
    top: -150px;
    left: -150px;
    width: 600px;
    height: 600px;
}

.orb-center-right {
    top: 40%;
    right: -200px;
    width: 700px;
    height: 700px;
}

.orb-bottom-left {
    bottom: -150px;
    left: -100px;
    width: 550px;
    height: 550px;
}

.glowing-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-amber);
    box-shadow: 0 0 12px var(--accent-amber);
    margin-right: 8px;
    vertical-align: middle;
}

.dark-dot {
    background-color: var(--text-dark-block);
    box-shadow: none;
}

/* Glassmorphism Card Utilities */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
    transition: all var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--bg-card-border-hover);
    transform: translateY(-4px);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Section Common Layout */
.section {
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.section-header-wrap {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 680px;
}

.bracket-title {
    color: var(--accent-amber);
    font-weight: 600;
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--transition-smooth);
    border: none;
    outline: none;
}

.btn-pill {
    border-radius: var(--radius-pill);
}

.btn-primary {
    background: var(--text-white);
    color: var(--bg-obsidian);
}

.btn-primary:hover {
    background: var(--accent-amber);
    color: var(--text-white);
    box-shadow: 0 10px 25px var(--accent-amber-glow);
    transform: translateY(-2px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}


/* 3. NAVIGATION BAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(11, 13, 14, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent-amber);
    box-shadow: 0 0 12px var(--accent-amber);
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.06em;
    color: var(--text-white);
}

.accent-text {
    color: var(--accent-amber);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    transition: color var(--transition-fast);
}

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-white);
    transition: all var(--transition-fast);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--bg-graphite);
    padding: 30px 24px;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
    border-bottom: 1px solid var(--bg-card-border);
}

.mobile-menu.active {
    display: flex;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
}


/* 4. HERO SECTION */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 0 100px;
    overflow: hidden;
}

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

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.2s ease-in-out, transform 8s linear;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 13, 14, 0.75) 0%, rgba(11, 13, 14, 0.65) 50%, #0B0D0E 100%);
    z-index: 1;
}

.hero-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-white);
    margin-bottom: 28px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.08;
    color: var(--text-white);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-subheadline {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 820px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
}

.hero-stats-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(18, 20, 22, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-lg);
    padding: 30px 40px;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 45px;
    background-color: var(--bg-card-border);
}

.carousel-nav {
    position: absolute;
    bottom: 30px;
    right: 40px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 14px;
}

.carousel-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all var(--transition-fast);
}

.carousel-arrow:hover {
    background: var(--accent-amber);
    border-color: var(--accent-amber);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    width: 24px;
    border-radius: 10px;
    background: var(--accent-amber);
}


/* 5. MARQUEE BANNER */
.banner-marquee {
    background: var(--bg-graphite);
    border-top: 1px solid var(--bg-card-border);
    border-bottom: 1px solid var(--bg-card-border);
    padding: 18px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-block;
    animation: marquee 30s linear infinite;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* 6. SECTION 1: BROKER BIO */
.bio-card {
    padding: 50px;
}

.bio-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 50px;
    align-items: center;
}

.bio-image-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--bg-card-border);
    background: radial-gradient(circle at center, rgba(45, 52, 64, 0.4) 0%, transparent 70%);
}

.bio-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center top;
    transition: transform var(--transition-smooth);
    -webkit-mask-image: radial-gradient(ellipse 88% 88% at 50% 45%, #000 45%, rgba(0, 0, 0, 0.7) 70%, transparent 98%);
    mask-image: radial-gradient(ellipse 88% 88% at 50% 45%, #000 45%, rgba(0, 0, 0, 0.7) 70%, transparent 98%);
}

.bio-image-wrapper:hover .bio-img {
    transform: scale(1.03);
}

.bio-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.bio-paragraph {
    font-size: 1.05rem;
    margin-bottom: 16px;
    color: var(--text-muted);
}

.highlight-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-white);
    border-left: 3px solid var(--accent-amber);
    padding-left: 20px;
    margin: 24px 0;
    font-style: italic;
}

.bio-footer-stats {
    display: flex;
    gap: 40px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--bg-card-border);
}

.bio-mini-stat {
    display: flex;
    flex-direction: column;
}

.mini-val {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-amber);
}

.mini-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}


/* 7. SECTION 2: WHY CHILE? */
.top-stats-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px;
    margin-bottom: 40px;
}

.bar-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bar-icon {
    font-size: 2rem;
}

.bar-info h4 {
    font-size: 1.05rem;
    color: var(--text-white);
    margin-bottom: 2px;
}

.bar-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.bar-divider {
    width: 1px;
    height: 40px;
    background-color: var(--bg-card-border);
}

.grid-10 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-card {
    padding: 36px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.card-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.card-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-amber);
    line-height: 1;
    opacity: 0.9;
}

.card-title {
    font-size: 1.35rem;
    color: var(--text-white);
    margin-bottom: 12px;
}

.card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}


/* 8. SECTION 3: PROPERTIES PORTFOLIO */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.property-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.featured-prop {
    border-color: var(--accent-amber);
    box-shadow: 0 20px 50px rgba(255, 122, 0, 0.15);
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent-amber);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    z-index: 5;
}

.prop-image-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.prop-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.property-card:hover .prop-img {
    transform: scale(1.06);
}

.prop-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(11, 13, 14, 0.85);
    backdrop-filter: blur(8px);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.prop-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.prop-title {
    font-size: 1.6rem;
    color: var(--text-white);
    margin-bottom: 4px;
}

.prop-subtitle {
    font-size: 0.95rem;
    color: var(--accent-amber);
    font-weight: 600;
    margin-bottom: 14px;
}

.prop-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.prop-features {
    list-style: none;
    margin-bottom: 24px;
    margin-top: auto;
}

.prop-features li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.prop-features span {
    color: var(--accent-amber);
    font-weight: 700;
}


/* 9. SECTION 4: TURNKEY SERVICES (LIGHT CONTRAST BLOCK) */
/* 9. SECTION 4: TURNKEY SERVICES (DARK GRAPHITE ARCHITECTURAL THEME) */
.timeline-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-steps-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-md);
    padding: 24px 30px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    box-shadow: var(--glass-shadow);
}

.step-card:hover {
    border-color: var(--bg-card-border-hover);
    transform: translateY(-2px);
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent-amber);
    width: 40px;
}

.step-title {
    font-size: 1.3rem;
    color: var(--text-white);
    flex-grow: 1;
    font-weight: 700;
}

.step-toggle-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--text-muted);
    transition: transform var(--transition-fast);
}

.step-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease;
    padding-top: 0;
}

.step-card.active {
    border-color: var(--accent-amber);
    background: var(--bg-card-hover);
    box-shadow: 0 12px 35px rgba(255, 122, 0, 0.15);
}

.step-card.active .step-toggle-icon {
    transform: rotate(45deg);
    color: var(--accent-amber);
}

.step-card.active .step-content {
    max-height: 200px;
    padding-top: 16px;
}

.step-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}


/* 10. SECTION 5: CONTACT & CONSULTATION FORM */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-taras-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 28px;
    border: 1px solid var(--bg-card-border);
    background: radial-gradient(circle at center, rgba(45, 52, 64, 0.4) 0%, transparent 70%);
}

.contact-taras-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center top;
    transition: transform var(--transition-smooth);
    -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 45%, #000 50%, rgba(0, 0, 0, 0.75) 75%, transparent 98%);
    mask-image: radial-gradient(ellipse 90% 90% at 50% 45%, #000 50%, rgba(0, 0, 0, 0.75) 75%, transparent 98%);
}

.contact-taras-wrapper:hover .contact-taras-img {
    transform: scale(1.03);
}

.contact-taras-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: rgba(11, 13, 14, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
    display: flex;
    align-items: center;
}

.contact-title {
    font-size: 3rem;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.contact-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-highlights {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.h-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--bg-card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.highlight-item h5 {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 2px;
}

.highlight-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-form-card {
    padding: 44px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-white);
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    background: rgba(11, 13, 14, 0.7);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-white);
    transition: all var(--transition-fast);
    outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--accent-amber);
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.2);
}

.form-select option {
    background: var(--bg-graphite);
    color: var(--text-white);
}

.btn-submit {
    margin-top: 10px;
}


/* 11. FOOTER */
.footer {
    background: #070809;
    border-top: 1px solid var(--bg-card-border);
    padding: 80px 0 40px;
    position: relative;
    z-index: 2;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-tagline {
    font-size: 0.95rem;
    margin-top: 16px;
    color: var(--text-muted);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h5 {
    font-size: 1rem;
    color: var(--text-white);
    margin-bottom: 18px;
    letter-spacing: 0.04em;
}

.footer-col a, .footer-col p {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--accent-amber);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-dim);
}

.footer-socials span {
    color: var(--text-muted);
}


/* 12. TOAST NOTIFICATION */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
    background: rgba(18, 20, 22, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--accent-amber);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.toast.hidden {
    opacity: 0;
    transform: translateY(40px);
    pointer-events: none;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.toast-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-amber);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}

.toast-message h5 {
    font-size: 1rem;
    color: var(--text-white);
    margin-bottom: 2px;
}

.toast-message p {
    font-size: 0.85rem;
    color: var(--text-muted);
}


/* 13. RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .bio-grid {
        grid-template-columns: 1fr;
    }
    
    .bio-img {
        height: 380px;
    }

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

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

    .top-stats-bar {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .bar-divider {
        display: none;
    }

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

@media (max-width: 768px) {
    .nav-links, .nav-actions {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subheadline {
        font-size: 1.05rem;
    }

    .hero-stats-row {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .grid-10, .properties-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}
