/* ============================================
   ANGELIKA BUJAKOWSKA - PREMIUM LANDING PAGE
   Color Palette from Kapitalark:
   - Gold/Primary: #d3b184
   - Dark Blue: #0b2d46
   - Dark Green: #122620
   - Text: #212529
   ============================================ */

/* ============================================
   CSS VARIABLES & ROOT SETTINGS
   ============================================ */
:root {
    /* Brand Colors */
    --color-gold: #d3b184;
    --color-gold-light: #e5cba3;
    --color-gold-dark: #b8956a;
    --color-dark-blue: #0b2d46;
    --color-dark-blue-light: #0f3a5c;
    --color-dark-green: #122620;

    /* Neutrals */
    --color-white: #ffffff;
    --color-black: #000000;
    --color-text: #212529;
    --color-text-light: #6c757d;
    --color-text-muted: #9ca3af;
    --color-bg-light: #f8f9fa;
    --color-bg-cream: #fdfbf7;
    --color-border: #e9ecef;

    /* Typography */
    --font-heading: 'Marcellus', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-slower: 0.8s ease;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 4px 20px rgba(211, 177, 132, 0.3);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Container */
    --container-max: 1200px;
    --container-padding: 1.5rem;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-base);
}

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

ul, ol {
    list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-dark-blue);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.text-gold { color: var(--color-gold); }
.text-center { text-align: center; }

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

.section {
    padding: var(--space-5xl) 0;
}

.section-dark {
    background-color: var(--color-dark-blue);
    color: var(--color-white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--color-white);
}

.section-light {
    background-color: var(--color-bg-cream);
}

.section-header {
    margin-bottom: var(--space-3xl);
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-subtitle {
    color: var(--color-text-muted);
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

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

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

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-gold);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(0.95);
    }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--space-lg) 0;
    z-index: 1000;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: var(--space-md) 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-white);
    transition: color var(--transition-base);
}

.logo-subtext {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.navbar.scrolled .logo-text {
    color: var(--color-dark-blue);
}

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

.nav-menu a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-white);
    transition: color var(--transition-base);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: width var(--transition-base);
}

.nav-menu a:hover::after {
    width: 100%;
}

.navbar.scrolled .nav-menu a {
    color: var(--color-text);
}

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

.nav-cta {
    background-color: var(--color-gold) !important;
    color: var(--color-dark-blue) !important;
    padding: var(--space-sm) var(--space-lg) !important;
    border-radius: var(--radius-full);
    font-weight: 600 !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background-color: var(--color-gold-light) !important;
    transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-white);
    transition: all var(--transition-base);
}

.navbar.scrolled .hamburger span {
    background-color: var(--color-dark-blue);
}

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

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

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-white);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(211, 177, 132, 0.4);
}

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

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-dark-blue);
}

.btn-lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-dark-blue);
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(11, 45, 70, 0.95) 0%,
        rgba(18, 38, 32, 0.85) 100%
    );
}

.hero .container {
    position: relative;
    z-index: 1;
}

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

.hero-content {
    max-width: 600px;
    padding-bottom: var(--space-4xl);
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    max-width: 520px;
    margin-top: -60px;
    margin-bottom: -120px;
}

.hero-photo {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    box-shadow: 0 -10px 50px -12px rgba(0, 0, 0, 0.4);
}

.hero-image-decoration {
    position: absolute;
    top: 30px;
    right: -25px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    border: 3px solid var(--color-gold);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    z-index: 1;
}

.hero-image-decoration::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    border-radius: var(--radius-full);
    opacity: 0.25;
    z-index: 0;
}

.hero-image-decoration::after {
    content: '';
    position: absolute;
    top: 30%;
    right: -70px;
    width: 100px;
    height: 100px;
    background: var(--color-gold);
    border-radius: var(--radius-full);
    opacity: 0.15;
    z-index: 0;
}

.hero-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-lg);
    padding: var(--space-sm) var(--space-lg);
    border: 1px solid var(--color-gold);
    border-radius: var(--radius-full);
}

.hero-title {
    color: var(--color-white);
    margin-bottom: var(--space-xl);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.hero-quote {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--color-gold);
    margin-bottom: var(--space-2xl);
    padding-left: var(--space-lg);
    border-left: 3px solid var(--color-gold);
    opacity: 0.9;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    text-align: center;
}

.trust-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-gold);
    line-height: 1;
}

.trust-percent {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-gold);
}

.trust-label {
    display: block;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--space-xs);
}

.trust-divider {
    width: 1px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    margin: var(--space-md) auto 0;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--color-gold);
    border-radius: 2px;
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(12px);
        opacity: 0.3;
    }
}

/* ============================================
   PLAYFAIR ACCENT STYLE
   Złote, kursywne wyróżnione słowa
   ============================================ */
.accent {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    color: var(--color-gold);
}

.accent-dark {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    color: var(--color-dark-blue);
}

/* ============================================
   HERO PREMIUM SECTION
   Pełnoekranowa sekcja z tłem Warszawy
   ============================================ */
.hero-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-premium-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(11, 45, 70, 0.92) 0%,
        rgba(11, 45, 70, 0.85) 40%,
        rgba(18, 38, 32, 0.80) 100%
    );
}

.hero-premium-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: var(--space-3xl);
}

.hero-premium-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: var(--space-2xl);
    align-items: end;
}

/* Hero Text */
.hero-premium-text {
    padding-right: var(--space-xl);
    padding-bottom: var(--space-4xl);
}

.hero-premium-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-xl);
    padding: var(--space-sm) var(--space-lg);
    border: 1px solid rgba(211, 177, 132, 0.4);
    border-radius: var(--radius-full);
    background: rgba(211, 177, 132, 0.08);
}

.hero-premium-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 3.8vw, 3.25rem);
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: var(--space-xl);
}

.hero-premium-title-accent {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    color: var(--color-gold);
}

.hero-premium-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
    max-width: 520px;
}

.hero-premium-subtitle strong {
    color: var(--color-white);
    font-weight: 600;
}

.hero-premium-cta {
    display: flex;
    gap: var(--space-md);
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-white);
    border-radius: var(--radius-full);
    box-shadow: 0 8px 30px rgba(211, 177, 132, 0.35);
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-hero-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(211, 177, 132, 0.5);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1rem;
    font-weight: 600;
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-hero-secondary:hover {
    background: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-dark-blue);
    transform: translateY(-4px);
}

/* Hero Agent Photo */
.hero-premium-agent {
    display: flex;
    justify-content: center;
}

.hero-agent-wrapper {
    position: relative;
    width: 100%;
}

.hero-agent-photo {
    width: 110%;
    height: auto;
    max-height: 92vh;
    object-fit: contain;
    object-position: bottom;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
    margin-left: -5%;
}

.hero-agent-info {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    padding: var(--space-lg) var(--space-2xl);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    white-space: nowrap;
}

.hero-agent-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.375rem;
    color: var(--color-white);
    margin-bottom: var(--space-xs);
}

.hero-agent-role {
    display: block;
    font-size: 0.8125rem;
    color: var(--color-gold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Hero Stats Bar */
.hero-premium-stats {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-xl) 0;
}

.hero-stats-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2xl);
}

.hero-stats-cta {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.stats-cta-label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

.stats-cta-buttons {
    display: flex;
    gap: var(--space-sm);
}

.stats-cta-btn {
    padding: var(--space-sm) var(--space-xl);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-white);
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    text-decoration: none;
}

.stats-cta-btn:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-dark-blue);
}

.hero-stats-numbers {
    display: flex;
    align-items: center;
    gap: var(--space-3xl);
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-gold);
    line-height: 1;
}

.hero-stat-label {
    display: block;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: var(--space-xs);
}

/* Fade-in Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in.delay-1 { animation-delay: 0.2s; }
.fade-in.delay-2 { animation-delay: 0.4s; }
.fade-in.delay-3 { animation-delay: 0.6s; }
.fade-in.delay-4 { animation-delay: 0.8s; }

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

/* ============================================
   HERO PREMIUM - RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-premium-content {
        padding-bottom: 0;
        flex: unset;
    }

    .hero-premium-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
        align-items: center;
    }

    .hero-premium-text {
        padding-right: 0;
        padding-bottom: 0;
        order: -1;
    }

    .hero-premium-agent {
        order: 99;
        margin-bottom: 0;
        align-items: flex-end;
    }

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

    .hero-agent-photo {
        max-height: none;
        width: 100%;
        margin-left: 0;
        object-fit: contain;
        object-position: bottom center;
    }

    .hero-agent-info {
        bottom: 0;
        padding: var(--space-md) var(--space-lg);
    }

    .hero-agent-name {
        font-size: 1.125rem;
    }

    .hero-agent-role {
        font-size: 0.75rem;
    }

    .hero-premium-subtitle {
        margin: 0 auto var(--space-2xl);
    }

    .hero-premium-cta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-stats-grid {
        flex-direction: column;
        gap: var(--space-xl);
    }

    .hero-stats-cta {
        flex-direction: column;
        gap: var(--space-md);
    }
}

@media (max-width: 640px) {
    .hero-premium {
        min-height: auto;
    }

    .hero-premium-content {
        padding-top: 100px;
        padding-bottom: 0 !important;
    }

    .hero-premium-content > .container {
        padding-bottom: 0;
    }

    .hero-premium-grid {
        gap: var(--space-xl);
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .hero-premium-text {
        order: -1;
    }

    .hero-premium-agent {
        order: 99;
        margin: 0;
        margin-left: calc(-1 * var(--space-lg));
        margin-right: calc(-1 * var(--space-lg));
        width: calc(100% + var(--space-lg) * 2);
    }

    .hero-premium-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }

    .hero-premium-subtitle {
        font-size: 1rem;
        margin-bottom: var(--space-xl);
    }

    .hero-agent-wrapper {
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .hero-agent-photo {
        width: 100%;
        max-height: 60vh;
        object-fit: cover;
        object-position: top center;
        display: block;
        margin: 0;
        padding: 0;
    }

    .hero-agent-info {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        transform: none;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        padding: var(--space-md) var(--space-lg);
    }

    .hero-premium-stats {
        margin-top: 0;
        padding-top: var(--space-lg);
    }

    .hero-stats-numbers {
        gap: var(--space-xl);
    }

    .hero-stat-value {
        font-size: 1.5rem;
    }

    .hero-premium-cta {
        flex-direction: column;
    }

    .hero-premium-cta .btn-hero-primary,
    .hero-premium-cta .btn-hero-secondary {
        width: 100%;
    }
}

/* ============================================
   SOCIAL PROOF BAR
   ============================================ */
.social-proof-bar {
    background-color: var(--color-gold);
    padding: var(--space-xl) 0;
    text-align: center;
}

.proof-text {
    font-size: 0.875rem;
    color: var(--color-dark-blue);
    margin-bottom: var(--space-xs);
}

.proof-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-dark-blue);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-photo {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-border) 100%);
    border-radius: var(--radius-lg);
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: var(--color-text-light);
    text-align: center;
    padding: var(--space-lg);
    border: 2px dashed var(--color-border);
}

.image-placeholder.avatar {
    aspect-ratio: 1;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    font-weight: 600;
    color: var(--color-gold);
    background: var(--color-dark-blue);
    border: none;
}

.about-agency {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    padding: var(--space-md) var(--space-lg);
    background-color: var(--color-bg-cream);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-gold);
}

.agency-logo {
    height: 40px;
    width: auto;
    background-color: var(--color-dark-blue);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
}

.agency-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-dark-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-lead {
    font-size: 1.25rem;
    color: var(--color-dark-blue);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.about-text {
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    font-weight: 500;
}

.feature-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(211, 177, 132, 0.1);
    border-radius: var(--radius-full);
    color: var(--color-gold);
}

.feature-icon svg {
    width: 16px;
    height: 16px;
}

/* ============================================
   OFFER CARDS SECTION - PREMIUM
   ============================================ */
.offer-cards-premium {
    background: linear-gradient(180deg, var(--color-bg-cream) 0%, var(--color-white) 100%);
    position: relative;
}

.offer-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
}

.offer-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: visible;
    background: var(--color-white);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.offer-card-glow {
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius-xl) + 2px);
    background: conic-gradient(
        from var(--offer-glow-angle, 0deg),
        transparent 0deg,
        rgba(211, 177, 132, 0.4) 10deg,
        rgba(211, 177, 132, 0.7) 20deg,
        rgba(211, 177, 132, 0.4) 30deg,
        transparent 40deg
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 2px;
    opacity: 0.4;
    animation: offer-glow-rotate 4s linear infinite;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 10;
}

@property --offer-glow-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes offer-glow-rotate {
    0% { --offer-glow-angle: 0deg; }
    100% { --offer-glow-angle: 360deg; }
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.offer-card:hover .offer-card-glow {
    opacity: 0.8;
}

.offer-card-image {
    position: relative;
    height: 320px;
    overflow: hidden;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.offer-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.offer-card:hover .offer-card-image img {
    transform: scale(1.08);
}

.offer-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(11, 45, 70, 0.95) 0%,
        rgba(11, 45, 70, 0.7) 40%,
        rgba(11, 45, 70, 0.3) 70%,
        rgba(11, 45, 70, 0.1) 100%
    );
}

.offer-card-image-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-2xl);
    z-index: 2;
}

.offer-card-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.offer-card-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 90%;
}

.offer-card-content {
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.offer-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-lg) 0;
}

.offer-card-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    font-size: 0.9375rem;
    color: var(--color-text);
}

.offer-card-features li svg {
    flex-shrink: 0;
    color: var(--color-gold);
}

.offer-card-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: linear-gradient(135deg, var(--color-gold) 0%, #c4a574 100%);
    border: none;
    border-radius: var(--radius-full);
    color: var(--color-dark-blue);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(211, 177, 132, 0.3);
}

.offer-card-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(211, 177, 132, 0.5);
}

.offer-card-btn svg {
    transition: transform 0.3s ease;
}

.offer-card-btn:hover svg {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .offer-cards-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .offer-card-image { height: 280px; }
    .offer-card-title { font-size: 1.75rem; }
}

/* ============================================
   PORTALS INFINITE SLIDER
   ============================================ */
.portals-slider {
    background-color: var(--color-bg-cream);
    padding: var(--space-3xl) 0;
    overflow: hidden;
    position: relative;
}

.portals-slider::before,
.portals-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.portals-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--color-bg-cream) 0%, transparent 100%);
}

.portals-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--color-bg-cream) 0%, transparent 100%);
}

.portals-slider-track {
    display: flex;
    width: max-content;
    animation: scroll-infinite 25s linear infinite;
}

.portals-slider-track:hover {
    animation-play-state: paused;
}

.portals-slider-content {
    display: flex;
    align-items: center;
    gap: var(--space-4xl);
    padding: 0 var(--space-2xl);
}

.portal-logo {
    height: 36px;
    width: auto;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.portal-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

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

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.service-card {
    background-color: var(--color-dark-blue-light);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-dark-blue);
}

.service-card.featured .service-title,
.service-card.featured .service-icon {
    color: var(--color-dark-blue);
}

.service-card.featured::before {
    background: var(--color-dark-blue);
}

.service-badge {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: var(--space-xs) var(--space-sm);
    background-color: var(--color-dark-blue);
    color: var(--color-gold);
    border-radius: var(--radius-sm);
}

.service-icon {
    color: var(--color-gold);
    margin-bottom: var(--space-lg);
}

.service-title {
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.service-desc {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-lg);
}

.service-card.featured .service-desc {
    color: rgba(11, 45, 70, 0.8);
}

.service-list {
    margin-bottom: var(--space-xl);
}

.service-list li {
    font-size: 0.875rem;
    padding: var(--space-sm) 0;
    padding-left: var(--space-lg);
    position: relative;
    color: rgba(255, 255, 255, 0.8);
}

.service-card.featured .service-list li {
    color: var(--color-dark-blue);
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: 700;
}

.service-card.featured .service-list li::before {
    color: var(--color-dark-blue);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-gold);
    transition: gap var(--transition-base);
}

.service-card.featured .service-link {
    color: var(--color-dark-blue);
}

.service-link:hover {
    gap: var(--space-md);
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
    background-color: var(--color-bg-cream);
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.video-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

/* ============================================
   PROCESS SECTION - STACKING CARDS
   ============================================ */
.process-premium {
    background-color: var(--color-bg-cream);
}

.process-cards-wrapper {
    position: relative;
}

.process-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    background: #ffffff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    /* Stacking effect */
    position: sticky;
    top: 100px;
    margin-bottom: var(--space-2xl);
    opacity: 1 !important;
}

.process-card:nth-child(1) { z-index: 1; }
.process-card:nth-child(2) { z-index: 2; top: 120px; }
.process-card:nth-child(3) { z-index: 3; top: 140px; }
.process-card:nth-child(4) { z-index: 4; top: 160px; }

.process-card:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    transform: scale(1.01);
}

.process-card.reverse {
    direction: rtl;
}

.process-card.reverse > * {
    direction: ltr;
}

.process-card-image {
    position: relative;
    min-height: 350px;
    overflow: hidden;
}

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

.process-card:hover .process-img {
    transform: scale(1.05);
}

.process-card-number {
    position: absolute;
    top: var(--space-xl);
    left: var(--space-xl);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--color-dark-blue);
    background: var(--color-white);
    border-radius: var(--radius-full);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.process-card.reverse .process-card-number {
    left: auto;
    right: var(--space-xl);
}

.process-card-content {
    padding: var(--space-3xl);
}

.process-card-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
    padding: var(--space-xs) var(--space-md);
    background: rgba(211, 177, 132, 0.1);
    border-radius: var(--radius-full);
}

.process-card-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--color-dark-blue);
    margin-bottom: var(--space-lg);
    line-height: 1.3;
}

.process-card-desc {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.process-card-list {
    list-style: none;
}

.process-card-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    font-size: 0.9375rem;
    color: var(--color-text);
}

.process-card-list li svg {
    flex-shrink: 0;
    color: var(--color-gold);
    margin-top: 2px;
}

.process-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2xl);
    padding: var(--space-2xl) var(--space-3xl);
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-dark-green) 100%);
    border-radius: var(--radius-xl);
    margin-top: var(--space-2xl);
}

.process-cta-content {
    flex: 1;
}

.process-cta-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.process-cta-title .accent-dark {
    color: var(--color-gold);
}

.process-cta-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .process-card {
        grid-template-columns: 1fr;
        gap: 0;
        position: sticky;
        top: 70px;
        margin-bottom: var(--space-2xl);
    }
    .process-card:nth-child(2) { top: 85px; }
    .process-card:nth-child(3) { top: 100px; }
    .process-card:nth-child(4) { top: 115px; }
    .process-card.reverse { direction: ltr; }
    .process-card-image { min-height: 280px; }
    .process-card-number {
        top: var(--space-lg);
        left: var(--space-lg);
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    .process-card.reverse .process-card-number {
        left: var(--space-lg);
        right: auto;
    }
    .process-card-content { padding: var(--space-2xl); }
    .process-cta {
        flex-direction: column;
        text-align: center;
        padding: var(--space-2xl);
    }
}

@media (max-width: 640px) {
    .process-card-image { min-height: 220px; }
    .process-card-content { padding: var(--space-xl); }
    .process-card-title { font-size: 1.375rem; }
    .process-cta-title { font-size: 1.5rem; }
}

/* ============================================
   PORTFOLIO SECTION - PREMIUM
   ============================================ */
.portfolio-premium {
    background: linear-gradient(180deg, var(--color-bg-cream) 0%, var(--color-white) 100%);
}

.portfolio-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3xl);
    padding: var(--space-2xl) var(--space-3xl);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    margin-bottom: var(--space-3xl);
}

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

.portfolio-stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: var(--color-dark-blue);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.portfolio-stat-label {
    font-size: 0.8125rem;
    color: var(--color-text-light);
}

.portfolio-stat-divider {
    width: 1px;
    height: 50px;
    background: var(--color-border);
}

.portfolio-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.portfolio-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.portfolio-card-featured {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.portfolio-card-featured .portfolio-card-image {
    height: 100%;
    min-height: 500px;
}

.portfolio-card-featured .portfolio-card-title {
    font-size: 1.75rem;
}

.portfolio-card-featured .portfolio-card-price {
    font-size: 1.5rem;
}

.portfolio-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.portfolio-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .portfolio-card-img {
    transform: scale(1.08);
}

.portfolio-card-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(
        to top,
        rgba(11, 45, 70, 0.95) 0%,
        rgba(11, 45, 70, 0.6) 40%,
        transparent 100%
    );
    pointer-events: none;
}

.portfolio-card-badge {
    position: absolute;
    top: var(--space-lg);
    left: var(--space-lg);
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-dark-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.portfolio-card-badge svg {
    color: var(--color-gold);
}

.portfolio-card-badge-premium {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-dark-blue);
}

.portfolio-card-badge-premium svg {
    color: var(--color-dark-blue);
}

.portfolio-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-xl);
    color: var(--color-white);
}

.portfolio-card-type {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.portfolio-card-title {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
    line-height: 1.2;
}

.portfolio-card-location {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-md);
}

.portfolio-card-location svg {
    flex-shrink: 0;
    opacity: 0.7;
}

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

.portfolio-card-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-gold);
}

.portfolio-card-time {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    padding: var(--space-xs) var(--space-sm);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
}

.portfolio-cta-premium {
    position: relative;
    margin-top: var(--space-3xl);
    padding: var(--space-3xl);
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, #0a2538 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.portfolio-cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 0% 50%, rgba(211, 177, 132, 0.2) 0%, transparent 50%),
                radial-gradient(ellipse at 100% 50%, rgba(211, 177, 132, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.portfolio-cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.portfolio-cta-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(211, 177, 132, 0.2) 0%, rgba(211, 177, 132, 0.05) 100%);
    border-radius: var(--radius-lg);
    color: var(--color-gold);
    border: 1px solid rgba(211, 177, 132, 0.3);
}

.portfolio-cta-text-wrapper {
    flex: 1;
}

.portfolio-cta-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.portfolio-cta-desc {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
}

.portfolio-cta-action {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.portfolio-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg) var(--space-2xl);
    background: linear-gradient(135deg, var(--color-gold) 0%, #c4a574 100%);
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(211, 177, 132, 0.3);
    white-space: nowrap;
}

.portfolio-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(211, 177, 132, 0.5);
}

.portfolio-cta-btn svg {
    transition: transform 0.3s ease;
}

.portfolio-cta-btn:hover svg {
    transform: translateX(4px);
}

.portfolio-cta-trust {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.portfolio-cta-trust-avatars {
    display: flex;
}

.trust-avatar {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gold) 0%, #b89a64 100%);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 2px solid var(--color-dark-blue);
    margin-left: -8px;
}

.trust-avatar:first-child {
    margin-left: 0;
}

.portfolio-cta-trust-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.portfolio-cta-decoration {
    position: absolute;
    right: -20px;
    bottom: -20px;
    color: var(--color-gold);
    pointer-events: none;
}

@media (max-width: 1024px) {
    .portfolio-cta-content {
        flex-direction: column;
        text-align: center;
    }
    .portfolio-cta-icon {
        width: 80px;
        height: 80px;
    }
    .portfolio-cta-icon svg {
        width: 36px;
        height: 36px;
    }
    .portfolio-cta-title { font-size: 1.5rem; }
    .portfolio-stats {
        flex-wrap: wrap;
        gap: var(--space-xl);
        padding: var(--space-xl);
    }
    .portfolio-stat-divider { display: none; }
    .portfolio-masonry { grid-template-columns: repeat(2, 1fr); }
    .portfolio-card-featured {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    .portfolio-card-featured .portfolio-card-image { min-height: 350px; }
}

@media (max-width: 768px) {
    .portfolio-cta-premium { padding: var(--space-2xl); }
    .portfolio-cta-title { font-size: 1.25rem; }
    .portfolio-cta-desc { font-size: 1rem; }
    .portfolio-cta-btn {
        padding: var(--space-md) var(--space-xl);
        font-size: 0.9375rem;
    }
}

@media (max-width: 640px) {
    .portfolio-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }
    .portfolio-masonry {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    .portfolio-card-image { height: 240px; }
    .portfolio-card-featured .portfolio-card-image { min-height: 280px; }
    .portfolio-card-content { padding: var(--space-lg); }
    .portfolio-card-title { font-size: 1.25rem; }
    .portfolio-card-featured .portfolio-card-title { font-size: 1.375rem; }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-track {
    display: flex;
    overflow: hidden;
}

.testimonial-card {
    flex: 0 0 100%;
    padding: var(--space-2xl);
    text-align: center;
}

.google-reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    padding: var(--space-md) var(--space-xl);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
}

.google-logo {
    height: 32px;
    width: auto;
}

.google-reviews-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.google-reviews-count {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
}

.google-reviews-stars {
    display: flex;
    gap: 2px;
}

.google-reviews-stars .star {
    font-size: 0.875rem;
}

.google-rating {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-left: var(--space-sm);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.testimonial-card-new {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition-base);
}

.testimonial-card-new:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-md);
    gap: var(--space-md);
}

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

.author-avatar-new {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name-new {
    font-weight: 600;
    color: var(--color-white);
    font-size: 0.9375rem;
}

.author-badge {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.testimonial-meta {
    text-align: right;
    flex-shrink: 0;
}

.testimonial-stars {
    color: var(--color-gold);
    font-size: 0.875rem;
    letter-spacing: 1px;
}

.testimonial-date {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-top: var(--space-xs);
}

.testimonial-content {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-cta {
    text-align: center;
    margin-top: var(--space-3xl);
}

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

.testimonials-cta .btn-outline:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-dark-blue);
}

.testimonial-rating {
    margin-bottom: var(--space-lg);
}

.star {
    color: var(--color-gold);
    font-size: 1.25rem;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

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

.author-info {
    text-align: left;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--color-white);
}

.author-location {
    font-size: 0.8125rem;
    color: var(--color-gold);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.slider-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    color: var(--color-white);
    transition: all var(--transition-base);
}

.slider-btn:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-dark-blue);
}

.slider-dots {
    display: flex;
    gap: var(--space-sm);
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition-base);
}

.slider-dots .dot.active {
    background-color: var(--color-gold);
    width: 30px;
}

/* ============================================
   WHY ME SECTION - PREMIUM
   ============================================ */
.why-me-premium {
    position: relative;
    background: linear-gradient(180deg, var(--color-white) 0%, #f8f6f3 100%);
    overflow: hidden;
}

.why-me-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(211, 177, 132, 0.08) 0%, transparent 50%),
                      radial-gradient(circle at 80% 70%, rgba(11, 45, 70, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.why-me-premium .container {
    position: relative;
    z-index: 1;
}

.why-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

.why-premium-card {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(211, 177, 132, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

.why-premium-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius-xl) + 2px);
    padding: 2px;
    background: linear-gradient(135deg, rgba(211, 177, 132, 0.4), rgba(211, 177, 132, 0.1), rgba(211, 177, 132, 0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.why-premium-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius-xl) + 2px);
    background: conic-gradient(
        from var(--glow-angle, 0deg),
        transparent 0deg,
        rgba(211, 177, 132, 0.35) 10deg,
        rgba(211, 177, 132, 0.6) 20deg,
        rgba(211, 177, 132, 0.35) 30deg,
        transparent 40deg
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 2px;
    opacity: 0.5;
    animation: glow-rotate 4s linear infinite;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

@property --glow-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes glow-rotate {
    0% { --glow-angle: 0deg; }
    100% { --glow-angle: 360deg; }
}

.why-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 30px rgba(211, 177, 132, 0.15);
    border-color: transparent;
}

.why-premium-card:hover::before {
    opacity: 1;
}

.why-premium-card:hover::after {
    opacity: 0.85;
}

.why-premium-featured {
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, #0a2538 100%);
    color: var(--color-white);
    border: 1px solid rgba(211, 177, 132, 0.3);
}

.why-premium-featured .why-premium-title {
    color: var(--color-white);
}

.why-premium-featured .why-premium-desc {
    color: rgba(255, 255, 255, 0.8);
}

.why-premium-featured .why-premium-stat-value {
    color: var(--color-gold);
}

.why-premium-featured .why-premium-stat-label {
    color: rgba(255, 255, 255, 0.7);
}

.why-premium-featured::after {
    background: conic-gradient(
        from var(--glow-angle, 0deg),
        transparent 0deg,
        rgba(211, 177, 132, 0.5) 10deg,
        rgba(211, 177, 132, 0.85) 20deg,
        rgba(211, 177, 132, 0.5) 30deg,
        transparent 40deg
    );
    opacity: 0.6;
}

.why-premium-featured:hover {
    box-shadow: 0 20px 60px rgba(11, 45, 70, 0.4), 0 0 30px rgba(211, 177, 132, 0.2);
}

.why-premium-featured:hover::after {
    opacity: 1;
}

.why-premium-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: var(--space-lg);
}

.why-premium-icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(211, 177, 132, 0.15) 0%, rgba(211, 177, 132, 0.05) 100%);
    border-radius: var(--radius-lg);
    transform: rotate(-6deg);
    transition: transform 0.4s ease;
}

.why-premium-card:hover .why-premium-icon-bg {
    transform: rotate(0deg);
}

.why-premium-icon {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    z-index: 1;
}

.why-premium-featured .why-premium-icon-bg {
    background: linear-gradient(135deg, rgba(211, 177, 132, 0.25) 0%, rgba(211, 177, 132, 0.1) 100%);
}

.why-premium-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.why-premium-number {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.why-premium-featured .why-premium-number {
    color: rgba(211, 177, 132, 0.7);
}

.why-premium-title {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-dark-blue);
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.why-premium-featured .why-premium-title {
    color: var(--color-white);
    font-size: 1.75rem;
}

.accent-gold {
    color: var(--color-gold);
}

.why-premium-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
}

.why-premium-featured .why-premium-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.0625rem;
}

.why-premium-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-premium-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

.why-premium-list li svg {
    flex-shrink: 0;
    color: var(--color-gold);
    margin-top: 2px;
}

.why-premium-stat {
    display: inline-flex;
    flex-direction: column;
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(135deg, rgba(211, 177, 132, 0.1) 0%, rgba(211, 177, 132, 0.05) 100%);
    border-radius: var(--radius-md);
    border: 1px solid rgba(211, 177, 132, 0.2);
}

.why-premium-stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark-blue);
    line-height: 1;
}

.why-premium-stat-label {
    font-size: 0.8125rem;
    color: var(--color-text-light);
    margin-top: var(--space-xs);
}

.why-premium-stat-highlight {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
    border-color: rgba(76, 175, 80, 0.2);
}

.why-premium-stat-highlight .why-premium-stat-value {
    color: #2e7d32;
}

.why-premium-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    background: linear-gradient(135deg, var(--color-gold) 0%, #c4a574 100%);
    color: var(--color-white);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.why-premium-badge svg {
    flex-shrink: 0;
}

.why-premium-quote {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-3xl);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(211, 177, 132, 0.15);
    text-align: center;
}

.why-premium-quote::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-dark-blue));
    border-radius: 2px;
}

.why-premium-quote-icon {
    color: var(--color-gold);
    margin-bottom: var(--space-lg);
}

.why-premium-quote-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--color-dark-blue);
    line-height: 1.6;
    margin-bottom: var(--space-xl);
}

.why-premium-quote-text em {
    color: var(--color-gold);
    font-style: normal;
    font-weight: 600;
}

.why-premium-quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.why-premium-quote-photo {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 3px solid var(--color-gold);
}

.why-premium-quote-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.why-premium-quote-name {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--color-dark-blue);
}

.why-premium-quote-role {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-xl) 0;
    font-size: 1.0625rem;
    font-weight: 500;
    text-align: left;
    color: var(--color-dark-blue);
    transition: color var(--transition-base);
}

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

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

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

.faq-answer p {
    padding-bottom: var(--space-xl);
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--color-dark-green) 0%, var(--color-dark-blue) 100%);
    padding: var(--space-4xl) 0;
}

.cta-box {
    display: flex;
    align-items: center;
    gap: var(--space-3xl);
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
}

.cta-image {
    flex-shrink: 0;
}

.cta-photo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius-full);
    border: 4px solid var(--color-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-content {
    flex: 1;
}

.cta-title {
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.cta-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.0625rem;
    margin-bottom: var(--space-lg);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
    align-items: start;
}

.contact-photo-wrapper {
    margin-bottom: var(--space-xl);
}

.contact-photo {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--color-gold);
}

.contact-desc {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-2xl);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.contact-method:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-gold);
    border-radius: var(--radius-md);
    color: var(--color-dark-blue);
}

.contact-method-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-method-value {
    font-weight: 500;
}

.social-label {
    display: block;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-md);
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--color-white);
    transition: all var(--transition-base);
}

.social-link:hover {
    background-color: var(--color-gold);
    color: var(--color-dark-blue);
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-xl);
}

.form-header {
    margin-bottom: var(--space-xl);
}

.form-title {
    font-size: 1.5rem;
    color: var(--color-dark-blue);
    margin-bottom: var(--space-xs);
}

.form-subtitle {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

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

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

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-dark-blue);
    margin-bottom: var(--space-sm);
}

.form-input {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    background-color: var(--color-white);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(211, 177, 132, 0.2);
}

.form-input::placeholder {
    color: var(--color-text-muted);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-md) center;
    padding-right: var(--space-3xl);
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--color-gold);
}

.form-checkbox label {
    font-size: 0.8125rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.form-checkbox a {
    color: var(--color-gold);
    text-decoration: underline;
}

.form-note {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--color-dark-green);
    color: var(--color-white);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: inline-flex;
    flex-direction: column;
    margin-bottom: var(--space-lg);
}

.footer-logo .logo-text {
    font-size: 1.125rem;
}

.footer-desc {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 300px;
}

.footer-heading {
    font-size: 1rem;
    color: var(--color-gold);
    margin-bottom: var(--space-lg);
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-base);
}

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

.footer-contact p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-sm);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: var(--space-xl);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
}

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

/* ============================================
   FLOATING CALL BUTTON
   ============================================ */
.floating-call-btn {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-xl) var(--space-md) var(--space-md);
    background: var(--color-white);
    border-radius: 60px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-base);
    border: 2px solid var(--color-border);
    text-decoration: none;
    animation: floating-attention 3s ease-in-out infinite;
}

.floating-call-btn::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 64px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition-base);
    animation: glow-pulse 2s ease-in-out infinite;
}

.floating-call-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(211, 177, 132, 0.3), 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--color-gold);
    animation: none;
}

.floating-call-btn:hover::before {
    opacity: 0.15;
    animation: none;
}

@keyframes floating-attention {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: translateY(-6px);
        box-shadow: 0 14px 40px rgba(211, 177, 132, 0.25), 0 6px 16px rgba(0, 0, 0, 0.12);
    }
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 0.12;
        transform: scale(1.02);
    }
}

.floating-call-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-dark-blue);
    border-radius: var(--radius-full);
    color: var(--color-white);
    flex-shrink: 0;
    position: relative;
}

.floating-call-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    border: 2px solid var(--color-gold);
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    animation: ring-pulse 2s ease-out infinite;
}

@keyframes ring-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.floating-call-text {
    display: flex;
    flex-direction: column;
    padding-right: var(--space-sm);
}

.floating-call-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-light);
    line-height: 1.2;
}

.floating-call-number {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-dark-blue);
    letter-spacing: -0.02em;
    line-height: 1.3;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

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

.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all var(--transition-slower);
}

.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0);
}

/* ============================================
   HOME STAGING SECTION - PREMIUM
   ============================================ */
.staging-section {
    position: relative;
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, #0a2538 100%);
    overflow: hidden;
}

.staging-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 50%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(211, 177, 132, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.staging-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(211, 177, 132, 0.3), transparent);
}

.staging-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
    align-items: center;
}

.staging-content {
    max-width: 520px;
}

.staging-section .section-tag {
    color: var(--color-gold);
    border-color: rgba(211, 177, 132, 0.4);
    background: rgba(211, 177, 132, 0.1);
}

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

.staging-section .section-title .accent-dark {
    color: var(--color-gold);
}

.staging-lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-lg);
}

.staging-lead strong {
    color: var(--color-white);
    font-weight: 600;
}

.staging-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-xl);
}

.staging-text strong {
    color: var(--color-gold);
    font-weight: 600;
}

.staging-question {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: rgba(211, 177, 132, 0.08);
    border: 1px solid rgba(211, 177, 132, 0.2);
    border-left: 3px solid var(--color-gold);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    margin-bottom: var(--space-xl);
    backdrop-filter: blur(10px);
}

.staging-question-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gold) 0%, #c4a574 100%);
    color: var(--color-dark-blue);
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(211, 177, 132, 0.3);
}

.staging-question p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.staging-question strong {
    color: var(--color-gold);
}

.staging-stats {
    display: flex;
    gap: var(--space-3xl);
}

.staging-stat {
    text-align: left;
    padding-left: var(--space-lg);
    border-left: 2px solid rgba(211, 177, 132, 0.3);
}

.staging-stat:first-child {
    border-left: none;
    padding-left: 0;
}

.staging-stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.staging-stat-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.staging-slider-wrapper {
    position: relative;
}

.staging-slider-wrapper::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: calc(var(--radius-xl) + 3px);
    background: conic-gradient(
        from var(--staging-glow-angle, 0deg),
        transparent 0deg,
        rgba(211, 177, 132, 0.4) 15deg,
        rgba(211, 177, 132, 0.7) 30deg,
        rgba(211, 177, 132, 0.4) 45deg,
        transparent 60deg
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 3px;
    opacity: 0.6;
    animation: staging-glow-rotate 5s linear infinite;
    pointer-events: none;
}

@property --staging-glow-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes staging-glow-rotate {
    0% { --staging-glow-angle: 0deg; }
    100% { --staging-glow-angle: 360deg; }
}

.staging-comparison {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(211, 177, 132, 0.3);
    cursor: ew-resize;
    user-select: none;
}

.staging-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.staging-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.staging-image-before {
    z-index: 1;
    clip-path: inset(0 50% 0 0);
}

.staging-image-after {
    z-index: 0;
}

.staging-label {
    position: absolute;
    bottom: var(--space-lg);
    padding: var(--space-sm) var(--space-xl);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    z-index: 5;
    backdrop-filter: blur(10px);
}

.staging-label-before {
    left: var(--space-lg);
    background: rgba(11, 45, 70, 0.9);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.staging-label-after {
    right: var(--space-lg);
    background: linear-gradient(135deg, var(--color-gold) 0%, #c4a574 100%);
    color: var(--color-dark-blue);
    box-shadow: 0 4px 15px rgba(211, 177, 132, 0.4);
}

.staging-slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateX(-50%);
    pointer-events: none;
}

.staging-slider-line {
    flex: 1;
    width: 3px;
    background: linear-gradient(180deg, var(--color-gold), var(--color-white), var(--color-gold));
    box-shadow: 0 0 15px rgba(211, 177, 132, 0.5);
}

.staging-slider-button {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-white) 0%, #f5f5f5 100%);
    border: 3px solid var(--color-gold);
    border-radius: var(--radius-full);
    color: var(--color-gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 20px rgba(211, 177, 132, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    pointer-events: auto;
    cursor: ew-resize;
}

.staging-comparison:hover .staging-slider-button,
.staging-comparison.active .staging-slider-button {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4), 0 0 30px rgba(211, 177, 132, 0.5);
}

.staging-slider-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.staging-slider-hint svg {
    color: var(--color-gold);
    animation: hint-slide 1.5s ease-in-out infinite;
}

@keyframes hint-slide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); }
}

@media (max-width: 1024px) {
    .staging-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
    .staging-content {
        max-width: 100%;
        text-align: center;
    }
    .staging-question { text-align: left; }
    .staging-stats { justify-content: center; }
}

@media (max-width: 640px) {
    .staging-stats {
        flex-direction: column;
        gap: var(--space-xl);
        align-items: center;
    }
    .staging-stat {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(211, 177, 132, 0.2);
        padding-top: var(--space-lg);
    }
    .staging-stat:first-child {
        border-top: none;
        padding-top: 0;
    }
    .staging-stat-value { font-size: 2rem; }
}

/* ============================================
   RESPONSIVE DESIGN - TABLET
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --container-padding: 2rem;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--color-dark-blue);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-xl);
        padding: var(--space-xl);
        z-index: 1000;
    }

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

    .nav-menu a {
        font-size: 1.5rem;
        color: var(--color-white) !important;
    }

    .hamburger {
        display: flex;
        position: relative;
        z-index: 1002;
    }

    .hamburger.active span {
        background-color: var(--color-white);
    }

    .hero-grid,
    .hero-premium-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
        align-items: center;
    }

    .hero-content {
        max-width: 100%;
        order: 2;
        padding-bottom: var(--space-2xl);
    }

    .hero-image {
        order: 1;
    }

    .hero-image-wrapper {
        max-width: 320px;
        margin: 0 auto;
        margin-bottom: 0;
    }

    .hero-photo {
        border-radius: var(--radius-xl);
    }

    .hero-image-decoration {
        border-radius: var(--radius-xl);
        top: -15px;
        right: -15px;
    }

    .hero-quote {
        border-left: none;
        padding-left: 0;
        text-align: center;
    }

    .hero-cta,
    .hero-premium-cta {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    /* Hero Premium Responsive */
    .hero-premium-text {
        max-width: 100%;
        text-align: center;
    }

    .hero-premium-agent {
        order: -1;
        margin-bottom: var(--space-2xl);
    }

    .hero-agent-wrapper {
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-stats-grid {
        flex-direction: column;
        gap: var(--space-lg);
        text-align: center;
    }

    .hero-stats-cta {
        flex-direction: column;
    }

    .hero-stats-numbers {
        gap: var(--space-2xl);
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

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

    .offer-cards-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .offer-card {
        min-height: 420px;
    }

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

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

    .why-premium-quote {
        padding: var(--space-2xl);
    }

    .why-premium-quote-text {
        font-size: 1.25rem;
    }

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

    .cta-box {
        flex-direction: column;
        text-align: center;
    }

    .cta-photo {
        width: 180px;
        height: 180px;
    }

    .contact-photo-wrapper {
        text-align: center;
    }

    .contact-photo {
        max-width: 280px;
        margin: 0 auto;
    }

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

    .process-timeline::before {
        left: 40px;
    }

    .process-step,
    .process-step:nth-child(even) {
        flex-direction: row;
        text-align: left;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE
   ============================================ */
@media (max-width: 640px) {
    :root {
        --container-padding: 1rem;
        --space-5xl: 5rem;
    }

    .hero-image-wrapper {
        max-width: 280px;
    }

    .hero-image-decoration {
        top: -10px;
        right: -10px;
    }

    .hero-image-decoration::before,
    .hero-image-decoration::after {
        display: none;
    }

    .hero-trust {
        flex-direction: column;
        gap: var(--space-lg);
    }

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

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

    .hero-cta .btn {
        width: 100%;
    }

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

    .portfolio-grid,
    .why-grid,
    .why-premium-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-header {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .testimonial-meta {
        text-align: left;
    }

    .google-reviews-badge {
        flex-direction: column;
        gap: var(--space-md);
        padding: var(--space-md);
    }

    .google-reviews-info {
        align-items: center;
    }

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

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

    .floating-call-btn {
        bottom: var(--space-lg);
        left: auto;
        right: var(--space-md);
        width: auto;
        padding: var(--space-sm) var(--space-md);
        gap: var(--space-sm);
    }

    .floating-call-icon {
        width: 40px;
        height: 40px;
    }

    .floating-call-icon svg {
        width: 20px;
        height: 20px;
    }

    .floating-call-text {
        padding-right: 0;
    }

    .floating-call-label {
        font-size: 0.75rem;
    }

    .floating-call-number {
        font-size: 1rem;
    }

    .process-step {
        flex-direction: column !important;
        text-align: center !important;
    }

    .process-timeline::before {
        display: none;
    }

    .step-number {
        margin: 0 auto var(--space-md);
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ============================================
   HIGH CONTRAST
   ============================================ */
@media (prefers-contrast: high) {
    :root {
        --color-gold: #c9a55a;
        --color-text-light: #4a4a4a;
    }
}

/* ============================================
   EXIT INTENT POPUP
   ============================================ */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.exit-popup.active {
    opacity: 1;
    visibility: visible;
}

.exit-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 45, 70, 0.85);
    backdrop-filter: blur(8px);
}

.exit-popup-content {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    max-width: 480px;
    width: 100%;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.exit-popup.active .exit-popup-content {
    transform: translateY(0) scale(1);
}

.exit-popup-close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-light);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    color: var(--color-text-light);
    transition: all var(--transition-base);
}

.exit-popup-close:hover {
    background: var(--color-dark-blue);
    color: var(--color-white);
}

.exit-popup-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.exit-popup-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
    padding: var(--space-xs) var(--space-md);
    background: rgba(211, 177, 132, 0.1);
    border-radius: var(--radius-full);
}

.exit-popup-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    color: var(--color-dark-blue);
    line-height: 1.3;
    margin-bottom: var(--space-md);
}

.exit-popup-desc {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.exit-popup-form {
    margin-bottom: var(--space-lg);
}

.exit-popup-fields {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.exit-popup-input {
    flex: 1;
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    background: var(--color-bg-light);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.exit-popup-input:focus {
    outline: none;
    border-color: var(--color-gold);
    background: var(--color-white);
}

.exit-popup-input::placeholder {
    color: var(--color-text-muted);
}

.exit-popup-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-lg) var(--space-2xl);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark-blue);
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(211, 177, 132, 0.35);
    transition: all var(--transition-base);
}

.exit-popup-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(211, 177, 132, 0.5);
}

.exit-popup-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    text-align: center;
}

.exit-popup-note svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .exit-popup-content {
        padding: var(--space-2xl) var(--space-xl);
    }
    .exit-popup-fields {
        flex-direction: column;
    }
    .exit-popup-title {
        font-size: 1.375rem;
    }
}

/* ============================================
   SOCIAL PROOF POPUP
   ============================================ */
.social-proof-popup {
    position: fixed;
    bottom: 100px;
    left: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--color-white);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transform: translateX(-120%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 320px;
    border: 1px solid rgba(211, 177, 132, 0.2);
}

.social-proof-popup.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.social-proof-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(211, 177, 132, 0.15), rgba(211, 177, 132, 0.05));
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.social-proof-icon svg {
    color: var(--color-gold);
}

.social-proof-content {
    flex: 1;
}

.social-proof-text {
    font-size: 0.875rem;
    color: var(--color-dark-blue);
    margin: 0;
    line-height: 1.3;
}

.social-proof-text strong {
    color: var(--color-dark-blue);
}

.social-proof-action {
    font-size: 0.8125rem;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.3;
}

.social-proof-time {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .social-proof-popup {
        left: var(--space-md);
        right: var(--space-md);
        bottom: 90px;
        max-width: none;
    }
}

/* ============================================
   FORM URGENCY INDICATOR
   ============================================ */
.form-urgency {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: linear-gradient(135deg, rgba(211, 177, 132, 0.15), rgba(211, 177, 132, 0.05));
    border: 1px solid rgba(211, 177, 132, 0.3);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    font-size: 0.875rem;
    color: var(--color-dark-blue);
}

.urgency-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gold);
    border-radius: var(--radius-full);
    flex-shrink: 0;
    animation: urgency-pulse 2s ease-in-out infinite;
}

.urgency-icon svg {
    color: var(--color-white);
}

@keyframes urgency-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(211, 177, 132, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(211, 177, 132, 0);
    }
}

.form-urgency strong {
    color: var(--color-gold);
    font-weight: 700;
}