        @font-face {
            font-family: 'Poppins';
            font-style: normal;
            font-weight: 400;
            font-display: swap;
            src: url('/assets/fonts/homepage/poppins-400-latin.woff2') format('woff2');
        }

        @font-face {
            font-family: 'Poppins';
            font-style: normal;
            font-weight: 500;
            font-display: swap;
            src: url('/assets/fonts/homepage/poppins-500-latin.woff2') format('woff2');
        }

        @font-face {
            font-family: 'Poppins';
            font-style: normal;
            font-weight: 600;
            font-display: swap;
            src: url('/assets/fonts/homepage/poppins-600-latin.woff2') format('woff2');
        }

        @font-face {
            font-family: 'Poppins';
            font-style: normal;
            font-weight: 700;
            font-display: swap;
            src: url('/assets/fonts/homepage/poppins-700-latin.woff2') format('woff2');
        }

        @font-face {
            font-family: 'Playfair Display';
            font-style: normal;
            font-weight: 400 700;
            font-display: swap;
            src: url('/assets/fonts/homepage/playfair-display-latin.woff2') format('woff2');
        }

        :root {
            /* Updated color scheme to match reference design */
            --brand: #5F8A8B;
            --brand-light: #7BA3A4;
            --brand-dark: #3D5C5D;
            --brand-darker: #2D4647;
            --gold: #C9A962;
            --gold-light: #E8D5A3;
            --cream: #F5EED6;
            --cream-dark: #EBE4CC;
            --cream-light: #FAF7EE;
            --stone: #3A3A3A;
            --stone-light: #6A6A6A;
            --white: #FFFFFF;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        *:focus-visible {
            outline: 2px solid #5F8A8B;
            outline-offset: 2px;
        }

        body {
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--cream);
            color: var(--stone);
            line-height: 1.7;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: 'Playfair Display', Georgia, serif;
            font-weight: 500;
            letter-spacing: -0.02em;
        }

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

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

        .ui-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 1em;
            height: 1em;
            color: currentColor;
            flex: 0 0 auto;
        }

        .ui-icon svg {
            width: 100%;
            height: 100%;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.85;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .ui-icon--contact {
            width: 20px;
            height: 20px;
            color: var(--brand);
        }

        .ui-icon--footer {
            width: 16px;
            height: 16px;
            color: rgba(255, 255, 255, 0.82);
        }

        .ui-icon--inline {
            width: 14px;
            height: 14px;
            vertical-align: -2px;
        }

        .ui-icon--star svg {
            fill: currentColor;
            stroke: none;
        }

        .ui-icon--mobile-toggle {
            width: 22px;
            height: 22px;
        }

        .ui-icon--control {
            width: 18px;
            height: 18px;
        }

        .ui-icon--carousel {
            width: 18px;
            height: 18px;
        }

        .ui-icon--success {
            width: 28px;
            height: 28px;
            color: white;
        }

        .ui-icon--checkbox {
            width: 10px;
            height: 10px;
            color: white;
        }

        .ui-icon--review-star {
            width: 16px;
            height: 16px;
            color: var(--gold);
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        .page {
            display: none;
        }

        .page.active {
            display: block;
        }

        /* Animated gradient background */
        .gradient-bg {
            background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 50%, #1a3a3c 100%);
            background-size: 200% 200%;
            animation: gradientShift 15s ease infinite;
        }

        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }


        /* Premium Buttons */
        .btn {
            background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
            color: white;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 4px 15px rgba(61, 107, 109, 0.3);
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(61, 107, 109, 0.4);
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-gold {
            background: linear-gradient(135deg, var(--gold) 0%, #B8943A 100%);
            box-shadow: 0 4px 15px rgba(201, 169, 98, 0.3);
        }

        .btn-gold:hover {
            box-shadow: 0 8px 25px rgba(201, 169, 98, 0.4);
        }

        /* Button Active/Press State - IXD Micro-interaction */
        .btn:active {
            transform: translateY(-1px) scale(0.98);
            box-shadow: 0 2px 10px rgba(61, 107, 109, 0.3);
        }

        .btn-gold:active {
            box-shadow: 0 2px 10px rgba(201, 169, 98, 0.3);
        }

        /* Smooth Scroll Behavior */
        html {
            scroll-behavior: smooth;
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }
        }

        .btn-outline {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.4);
            color: white;
            box-shadow: none;
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.6);
            box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
        }

        .btn-white {
            background: white;
            color: var(--brand);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .btn-white:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

        /* Hero Section - Immersive */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding-bottom: 40px;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        .hero-bg picture,
        .hero-image {
            display: block;
            width: 100%;
            height: 100%;
        }

        .hero-image {
            object-fit: cover;
            transform: scale(1.03);
        }

        @keyframes heroZoom {
            0% {
                transform: scale(1.1);
            }

            100% {
                transform: scale(1.0);
            }
        }

        @media (min-width: 769px) and (prefers-reduced-motion: no-preference) {
            .hero-image {
                animation: heroZoom 20s ease-in-out infinite alternate;
            }
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg,
                    rgba(0, 0, 0, 0.3) 0%,
                    rgba(0, 0, 0, 0.1) 40%,
                    rgba(0, 0, 0, 0.2) 70%,
                    rgba(0, 0, 0, 0.7) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            padding: 120px 24px 30px;
            max-width: 900px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 10px 24px;
            border-radius: 50px;
            color: white;
            font-size: 13px;
            font-weight: 500;
            margin-bottom: 32px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .hero-badge .stars {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            color: var(--gold);
        }

        .hero-title {
            font-size: clamp(42px, 8vw, 72px);
            color: white;
            font-weight: 500;
            line-height: 1.1;
            margin-bottom: 16px;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        .hero-title span {
            display: block;
            font-size: clamp(14px, 2vw, 18px);
            letter-spacing: 0.3em;
            font-family: inherit;
            font-weight: 400;
            margin-top: 16px;
            opacity: 0.9;
        }

        .hero-subtitle {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Floating Search Box */
        .search-container {
            position: relative;
            bottom: auto;
            left: auto;
            transform: none;
            width: 100%;
            max-width: 1000px;
            padding: 0 24px;
            z-index: 20;
            margin-top: 20px;
        }

        .search-box {
            background: white;
            border-radius: 24px;
            box-shadow:
                0 25px 80px rgba(0, 0, 0, 0.15),
                0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .search-header {
            padding: 20px 24px;
            background: linear-gradient(135deg, var(--cream) 0%, white 100%);
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        }

        .search-header p {
            font-size: 15px;
            color: var(--stone-light);
        }

        .search-fields {
            padding: 24px;
            display: grid;
            gap: 16px;
        }

        .search-field {
            padding: 16px 20px;
            border-radius: 16px;
            background: var(--cream);
            border: 2px solid transparent;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .search-field:hover {
            border-color: var(--brand-light);
            background: white;
            box-shadow: 0 4px 20px rgba(61, 107, 109, 0.1);
        }

        .search-label {
            font-size: 11px;
            color: var(--stone-light);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 600;
            display: block;
            margin-bottom: 4px;
        }

        .search-value {
            font-size: 15px;
            color: var(--stone);
            font-weight: 500;
        }

        /* Property Grid + Section Header */
        .property-section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 48px;
        }

        .property-section-cta {
            display: inline-block;
            padding: 10px 24px;
            background: var(--brand);
            color: white;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            letter-spacing: 0.02em;
            transition: opacity 0.2s;
        }

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

        /* Property Cards - 3D Effect */
        .prop-card {
            position: relative;
            display: block;
            border-radius: 24px;
            overflow: hidden;
            cursor: pointer;
            height: 450px;
            margin-bottom: 32px;
            isolation: isolate;
            transform-style: preserve-3d;
            transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
        }

        .prop-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px;
            padding: 2px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
            -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;
            pointer-events: none;
            z-index: 5;
        }

        .prop-card:hover {
            transform: translateY(-12px) rotateX(2deg);
        }

        .prop-card-shadow {
            position: absolute;
            bottom: -20px;
            left: 10%;
            right: 10%;
            height: 40px;
            background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, transparent 70%);
            filter: blur(15px);
            transition: all 0.6s ease;
            z-index: -1;
        }

        .prop-card:hover .prop-card-shadow {
            bottom: -30px;
            opacity: 0.8;
        }

        .prop-card img {
            position: absolute;
            inset: 0;
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

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

        .prop-card-overlay {
            position: absolute;
            inset: 0;
            z-index: 2;
            background: linear-gradient(to top,
                    rgba(0, 0, 0, 0.65) 0%,
                    rgba(0, 0, 0, 0.3) 40%,
                    transparent 70%);
        }

        .prop-card-content {
            position: absolute;
            inset: 0;
            z-index: 3;
            padding: 32px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .prop-card-link {
            text-decoration: none;
            color: inherit;
        }

        .prop-card-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .prop-title {
            font-size: clamp(28px, 4vw, 40px);
            color: white;
            font-weight: 400;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
            letter-spacing: 0.02em;
        }

        .prop-location {
            color: rgba(255, 255, 255, 0.75);
            font-size: 14px;
            margin-top: 8px;
            font-weight: 500;
        }

        .prop-badge {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 8px 16px;
            border-radius: 50px;
            color: white;
            font-size: 14px;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .prop-badge .ui-icon--star {
            width: 14px;
            height: 14px;
            color: var(--gold);
        }

        .prop-highlights {
            margin-bottom: 24px;
        }

        .prop-desc-snippet {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 20px;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-shadow: 0 1px 12px rgba(0, 0, 0, 0.8);
        }

        .prop-highlight {
            display: flex;
            align-items: center;
            gap: 12px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 14px;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .prop-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
            box-shadow: 0 0 10px rgba(201, 169, 98, 0.5);
        }

        .prop-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .prop-price {
            color: white;
            font-size: 28px;
            font-weight: 300;
            font-family: 'Playfair Display', Georgia, serif;
        }

        .prop-price span {
            font-size: 14px;
            opacity: 0.7;
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .prop-btn {
            background: white;
            color: var(--brand);
            padding: 14px 28px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .prop-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
        }

        /* Section Styling */
        .section {
            padding: 100px 24px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #4a6f70;
            margin-bottom: 16px;
            position: relative;
        }

        .section-tag::before,
        .section-tag::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 40px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold));
        }

        .section-tag::before {
            right: calc(100% + 16px);
        }

        .section-tag::after {
            left: calc(100% + 16px);
            background: linear-gradient(90deg, var(--gold), transparent);
        }

        .section-title {
            font-size: clamp(32px, 5vw, 48px);
            color: var(--brand-dark);
            margin-bottom: 16px;
        }

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

        /* Feature Cards - Neumorphic */
        .feature-grid {
            display: grid;
            gap: 24px;
        }

        .feature-card {
            background: white;
            padding: 40px 32px;
            border-radius: 24px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow:
                0 10px 40px rgba(0, 0, 0, 0.04),
                0 2px 10px rgba(0, 0, 0, 0.02);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--brand), var(--gold));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow:
                0 20px 60px rgba(0, 0, 0, 0.08),
                0 8px 25px rgba(0, 0, 0, 0.04);
        }

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

        .feature-icon {
            width: 72px;
            height: 72px;
            margin: 0 auto 24px;
            background: linear-gradient(135deg, var(--brand) 0%, var(--gold) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            box-shadow: 0 10px 30px rgba(95, 138, 139, 0.25);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .feature-icon svg {
            width: 32px;
            height: 32px;
            stroke: white;
            stroke-width: 2;
            fill: none;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 15px 40px rgba(95, 138, 139, 0.35);
        }

        .feature-title {
            font-size: 20px;
            color: var(--brand-dark);
            margin-bottom: 12px;
        }

        .feature-desc {
            font-size: 15px;
            color: var(--stone-light);
            line-height: 1.7;
        }

        /* Review Cards - Elegant */
        .review-grid {
            display: grid;
            gap: 24px;
        }

        .review-card {
            background: white;
            padding: 36px;
            border-radius: 24px;
            position: relative;
            box-shadow:
                0 10px 40px rgba(0, 0, 0, 0.04),
                0 2px 10px rgba(0, 0, 0, 0.02);
            transition: all 0.4s ease;
        }

        .review-card::before {
            content: '"';
            position: absolute;
            top: 24px;
            right: 32px;
            font-size: 80px;
            font-family: 'Playfair Display', Georgia, serif;
            color: var(--cream-dark);
            line-height: 1;
        }

        .review-card:hover {
            transform: translateY(-6px);
            box-shadow:
                0 20px 60px rgba(0, 0, 0, 0.08),
                0 8px 25px rgba(0, 0, 0, 0.04);
        }

        .review-stars {
            display: inline-flex;
            gap: 4px;
            color: var(--gold);
            font-size: 18px;
            margin-bottom: 20px;
            letter-spacing: 4px;
        }

        .review-text {
            font-size: 16px;
            color: var(--stone);
            line-height: 1.8;
            font-style: italic;
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
        }

        .review-author {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .review-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 18px;
        }

        .review-name {
            font-weight: 600;
            color: var(--stone);
            margin-bottom: 2px;
        }

        .review-property {
            font-size: 13px;
            color: var(--brand);
            font-weight: 500;
        }

        /* CTA Section - Cinematic */
        .cta-section {
            position: relative;
            padding: 120px 24px;
            overflow: hidden;
        }

        .cta-bg {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        .cta-bg-image {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .cta-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(61, 107, 109, 0.95) 0%, rgba(42, 75, 77, 0.95) 100%);
        }

        .cta-content {
            position: relative;
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
            color: white;
        }

        .cta-title {
            font-size: clamp(32px, 5vw, 48px);
            margin-bottom: 20px;
            font-weight: 400;
        }

        .cta-text {
            font-size: 18px;
            opacity: 0.9;
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        /* Stats Bar */
        .stats-bar {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            padding: 60px 24px;
            background: white;
            border-radius: 24px;
            box-shadow:
                0 20px 60px rgba(0, 0, 0, 0.06),
                0 5px 20px rgba(0, 0, 0, 0.03);
            margin: -60px auto 60px;
            max-width: 1000px;
            position: relative;
            z-index: 10;
        }

        .stat-item {
            text-align: center;
            padding: 0 20px;
            border-right: 1px solid var(--cream-dark);
        }

        .stat-item:last-child {
            border-right: none;
        }

        .stat-value {
            font-size: 42px;
            font-weight: 300;
            color: var(--brand);
            font-family: 'Playfair Display', Georgia, serif;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 13px;
            color: var(--stone-light);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 600;
        }

        /* Blog Cards */
        .blog-grid {
            display: grid;
            gap: 32px;
        }

        .blog-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow:
                0 10px 40px rgba(0, 0, 0, 0.04),
                0 2px 10px rgba(0, 0, 0, 0.02);
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow:
                0 30px 80px rgba(0, 0, 0, 0.1),
                0 15px 40px rgba(0, 0, 0, 0.05);
        }

        .blog-card-img {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .blog-card-img::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.1) 100%);
        }

        .blog-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .blog-card:hover .blog-card-img img {
            transform: scale(1.1);
        }

        .blog-card-body {
            padding: 32px;
        }

        .blog-tag {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 6px 14px;
            border-radius: 50px;
            background: var(--cream);
            color: var(--brand);
        }

        .blog-card-title {
            font-size: 22px;
            color: var(--brand-dark);
            margin: 20px 0 12px;
            line-height: 1.3;
            transition: color 0.3s ease;
        }

        .blog-card:hover .blog-card-title {
            color: var(--brand);
        }

        .blog-card-excerpt {
            font-size: 15px;
            color: var(--stone-light);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .blog-card-meta {
            font-size: 13px;
            color: var(--stone-light);
            font-weight: 500;
        }

        /* Footer - Premium */
        .footer {
            background: linear-gradient(180deg, var(--brand-dark) 0%, #1a3a3c 100%);
            padding: 80px 24px 40px;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }

        .footer-grid {
            display: grid;
            gap: 48px;
            margin-bottom: 60px;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 20px;
        }

        .footer-logo-text {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 22px;
            color: white;
        }

        .footer-desc {
            color: rgba(255, 255, 255, 0.6);
            font-size: 15px;
            line-height: 1.8;
            max-width: 280px;
        }

        .footer-heading {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 24px;
        }

        .footer-link {
            display: block;
            color: rgba(255, 255, 255, 0.7);
            font-size: 15px;
            margin-bottom: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .footer-link:hover {
            color: white;
            transform: translateX(4px);
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social-link {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-social-link:hover {
            background: var(--gold);
            border-color: var(--gold);
            transform: translateY(-4px);
        }

        .footer-bottom {
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.4);
            font-size: 14px;
        }

        /* Contact Page */
        .contact-card {
            background: white;
            padding: 48px;
            border-radius: 24px;
            box-shadow:
                0 20px 60px rgba(0, 0, 0, 0.06),
                0 5px 20px rgba(0, 0, 0, 0.03);
        }

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

        .form-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: var(--stone);
            margin-bottom: 8px;
        }

        .form-input {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid var(--cream-dark);
            border-radius: 12px;
            font-size: 16px;
            font-family: inherit;
            transition: all 0.3s ease;
            background: var(--cream);
        }

        .form-input:focus {
            border-color: var(--brand);
            background: white;
            box-shadow: 0 0 0 4px rgba(61, 107, 109, 0.1);
        }

        /* Amenity Tags */
        .amenity-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
        }

        .amenity {
            background: white;
            padding: 16px;
            border-radius: 12px;
            text-align: center;
            font-size: 14px;
            color: var(--stone);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
            transition: all 0.3s ease;
        }

        .amenity:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Utilities */
        .text-center {
            text-align: center;
        }

        .mb-8 {
            margin-bottom: 32px;
        }

        .mt-8 {
            margin-top: 32px;
        }

        /* Responsive */
        /* Responsive */
        @media (min-width: 640px) {
            .search-fields {
                grid-template-columns: 2fr 1fr;
            }
        }

        @media (min-width: 768px) {
            .feature-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .review-grid {
                grid-template-columns: repeat(3, 1fr);
            }

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

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

        @media (max-width: 768px) {
            .property-section-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
                margin-bottom: 32px;
            }

            .property-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .prop-card {
                height: 340px;
            }

            .stats-bar {
                grid-template-columns: repeat(2, 1fr);
                margin: -40px 16px 40px;
            }

            .stat-item {
                border-right: none;
                padding: 16px;
            }

            .stat-value {
                font-size: 32px;
            }

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

            .footer-grid {
                grid-template-columns: 1fr 1fr !important;
                gap: 32px !important;
            }

            .footer-grid>div:first-child {
                grid-column: 1 / -1;
            }

            /* Mobile Touch Targets - minimum 44px for accessibility */
            .btn {
                min-height: 44px;
                min-width: 44px;
            }

            /* Larger touch targets for mobile */
            .prop-btn {
                padding: 16px 32px;
            }

            /* Ensure all interactive elements are easily tappable */
            a, button {
                touch-action: manipulation;
            }
        }

        /* Fixed Mobile CTA Bar */
        @media (max-width: 768px) {
            .mobile-cta-bar {
                display: flex;
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                background: white;
                padding: 12px 16px;
                box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
                z-index: 100;
                align-items: center;
                justify-content: space-between;
                gap: 12px;
            }

            .mobile-cta-bar .cta-info {
                flex: 1;
            }

            .mobile-cta-bar .cta-title {
                font-size: 14px;
                font-weight: 600;
                color: var(--stone);
            }

            .mobile-cta-bar .cta-subtitle {
                font-size: 12px;
                color: var(--stone-light);
            }

            .mobile-cta-bar .btn {
                white-space: nowrap;
            }

            .hero-image {
                transform: none;
            }

            .hero-badge {
                backdrop-filter: none;
            }

            .search-box {
                box-shadow:
                    0 16px 40px rgba(0, 0, 0, 0.12),
                    0 6px 20px rgba(0, 0, 0, 0.08);
            }

            /* Add padding to body so content doesn't hide behind CTA bar */
            body {
                padding-bottom: 70px;
            }
        }

        @media (min-width: 769px) {
            .mobile-cta-bar {
                display: none;
            }
        }

        /* Page Hero */
        .page-hero {
            position: relative;
            height: 450px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 70px;
        }

        .page-hero-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
        }

        .page-hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(61, 107, 109, 0.9) 0%, rgba(42, 75, 77, 0.85) 100%);
        }

        .page-hero-content {
            position: relative;
            text-align: center;
            color: white;
            padding: 24px;
        }

        .page-hero-tag {
            font-size: 12px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            opacity: 0.8;
            margin-bottom: 16px;
        }

        .page-hero-title {
            font-size: clamp(36px, 6vw, 56px);
            font-weight: 400;
            margin-bottom: 16px;
        }

        .page-hero-subtitle {
            font-size: 18px;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Photo Carousel */
        .photo-carousel {
            margin: 40px 0;
        }

        .carousel-main {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            background: #f5f5f5;
        }

        .carousel-main img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
        }

        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.2s;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-arrow:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-prev {
            left: 16px;
        }

        .carousel-next {
            right: 16px;
        }

        .carousel-counter {
            position: absolute;
            bottom: 16px;
            right: 16px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
        }

        .carousel-thumbnails {
            display: flex;
            gap: 8px;
            margin-top: 12px;
            overflow-x: auto;
            padding: 4px 0;
        }

        .carousel-thumb {
            flex-shrink: 0;
            width: 80px;
            height: 60px;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            opacity: 0.6;
            transition: all 0.2s;
            border: 2px solid transparent;
        }

        .carousel-thumb:hover {
            opacity: 0.9;
        }

        .carousel-thumb.active {
            opacity: 1;
            border-color: var(--gold);
        }

        .carousel-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Booking Bar */
        .booking-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px 24px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-top: 1px solid rgba(0, 0, 0, 0.06);
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
            z-index: 50;
        }

        .booking-price {
            font-size: 32px;
            font-weight: 300;
            color: var(--brand);
            font-family: 'Playfair Display', Georgia, serif;
        }

        .booking-price span {
            font-size: 14px;
            color: var(--stone-light);
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        /* Detail Stats */
        .detail-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            padding: 40px 0;
            border-bottom: 1px solid var(--cream-dark);
        }

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

        .detail-stat-val {
            font-size: 32px;
            font-weight: 300;
            color: var(--brand);
            font-family: 'Playfair Display', Georgia, serif;
        }

        .detail-stat-label {
            font-size: 12px;
            color: var(--stone-light);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-top: 8px;
            font-weight: 600;
        }

        .detail-section {
            padding: 40px 0;
            border-bottom: 1px solid var(--cream-dark);
        }

        .detail-title {
            font-size: 24px;
            color: var(--brand-dark);
            margin-bottom: 20px;
        }

        /* ===== DYNAMIC ANIMATIONS ===== */

        /* Bouncing Testimonial Bubbles */
        .review-card {
            animation: gentleBounce 6s ease-in-out infinite;
        }

        .review-card:nth-child(1) {
            animation-delay: 0s;
        }

        .review-card:nth-child(2) {
            animation-delay: 2s;
        }

        .review-card:nth-child(3) {
            animation-delay: 4s;
        }

        @keyframes gentleBounce {

            0%,
            100% {
                transform: translateY(0);
            }

            25% {
                transform: translateY(-8px);
            }

            50% {
                transform: translateY(-4px);
            }

            75% {
                transform: translateY(-10px);
            }
        }

        .review-card:hover {
            animation-play-state: paused;
            transform: translateY(-12px) scale(1.02);
        }

        /* Floating Quote Decoration */
        .review-card::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 20px;
            background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.08) 0%, transparent 70%);
            animation: shadowPulse 6s ease-in-out infinite;
            opacity: 0.6;
        }

        .review-card:nth-child(1)::after {
            animation-delay: 0s;
        }

        .review-card:nth-child(2)::after {
            animation-delay: 2s;
        }

        .review-card:nth-child(3)::after {
            animation-delay: 4s;
        }

        @keyframes shadowPulse {

            0%,
            100% {
                transform: translateX(-50%) scaleX(1);
                opacity: 0.6;
            }

            25% {
                transform: translateX(-50%) scaleX(0.9);
                opacity: 0.4;
            }

            50% {
                transform: translateX(-50%) scaleX(0.95);
                opacity: 0.5;
            }

            75% {
                transform: translateX(-50%) scaleX(0.85);
                opacity: 0.35;
            }
        }

        /* Floating Decorative Elements */
        .floating-decor {
            position: fixed;
            pointer-events: none;
            z-index: 0;
            opacity: 0.03;
        }

        .wave-decor {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 120px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%233D6B6D' d='M0,60 C360,120 720,0 1080,60 C1260,90 1380,60 1440,45 L1440,120 L0,120 Z'/%3E%3C/svg%3E") repeat-x;
            background-size: 1440px 120px;
            animation: waveFlow 20s linear infinite;
        }

        @keyframes waveFlow {
            0% {
                background-position-x: 0;
            }

            100% {
                background-position-x: 1440px;
            }
        }

        /* Animated Stat Counter Glow */
        .stat-value {
            position: relative;
        }

        .stat-value::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            opacity: 0;
            animation: statGlow 3s ease-in-out infinite;
        }

        .stat-item:nth-child(1) .stat-value::after {
            animation-delay: 0s;
        }

        .stat-item:nth-child(2) .stat-value::after {
            animation-delay: 0.75s;
        }

        .stat-item:nth-child(3) .stat-value::after {
            animation-delay: 1.5s;
        }

        .stat-item:nth-child(4) .stat-value::after {
            animation-delay: 2.25s;
        }

        @keyframes statGlow {

            0%,
            100% {
                opacity: 0;
                width: 20px;
            }

            50% {
                opacity: 1;
                width: 50px;
            }
        }

        /* Feature Card Hover Enhancements */
        .feature-card {
            position: relative;
            overflow: hidden;
        }

        .feature-card::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, rgba(61, 107, 109, 0.05) 0%, transparent 70%);
            transition: width 0.6s ease, height 0.6s ease;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            z-index: 0;
        }

        .feature-card:hover::after {
            width: 300px;
            height: 300px;
        }

        .feature-icon {
            position: relative;
            z-index: 1;
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }

        /* Property Card Shine Effect */
        .prop-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: skewX(-15deg);
            transition: left 0.8s ease;
            z-index: 6;
        }

        .prop-card:hover::after {
            left: 150%;
        }

        /* Pulsing CTA Buttons */
        .btn-gold {
            position: relative;
        }

        .btn-gold::after {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 50px;
            background: linear-gradient(135deg, var(--gold) 0%, #B8943A 100%);
            opacity: 0;
            z-index: -1;
            animation: buttonPulse 2s ease-in-out infinite;
        }

        @keyframes buttonPulse {

            0%,
            100% {
                opacity: 0;
                transform: scale(1);
            }

            50% {
                opacity: 0.3;
                transform: scale(1.05);
            }
        }

        /* Animated Section Tags */
        .section-tag {
            
        }

        @keyframes tagShimmer {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.7;
            }
        }

        .section-tag::before,
        .section-tag::after {
            animation: lineGrow 3s ease-in-out infinite;
        }

        @keyframes lineGrow {

            0%,
            100% {
                width: 40px;
            }

            50% {
                width: 60px;
            }
        }

        /* Blog Card Lift Animation */
        .blog-card {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .blog-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px;
            box-shadow: 0 0 0 0 rgba(61, 107, 109, 0.2);
            transition: box-shadow 0.4s ease;
            pointer-events: none;
        }

        .blog-card:hover::before {
            box-shadow: 0 0 0 4px rgba(61, 107, 109, 0.1);
        }

        /* Animated Navigation Underline */
        .nav-link::after {
            background: linear-gradient(90deg, var(--brand), var(--gold), var(--brand));
            background-size: 200% 100%;
            animation: navGradient 2s linear infinite;
        }

        @keyframes navGradient {
            0% {
                background-position: 0% 50%;
            }

            100% {
                background-position: 200% 50%;
            }
        }

        /* Footer Wave Animation */
        .footer::after {
            content: '';
            position: absolute;
            top: -60px;
            left: 0;
            width: 200%;
            height: 60px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%232A4B4D' d='M0,30 C180,60 360,0 540,30 C720,60 900,0 1080,30 C1260,60 1440,0 1440,30 L1440,60 L0,60 Z'/%3E%3C/svg%3E") repeat-x;
            background-size: 720px 60px;
            animation: footerWave 10s linear infinite;
        }

        @keyframes footerWave {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-720px);
            }
        }

        /* Search Box Focus Animation */
        .search-field {
            position: relative;
        }

        .search-field::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 16px;
            border: 2px solid transparent;
            background: linear-gradient(90deg, var(--brand), var(--gold)) border-box;
            -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none; /* Allow clicks to pass through */
        }

        .search-field:hover::before {
            opacity: 1;
        }

        /* Do not animate LCP text; it only delays the first meaningful paint. */

        /* Reduce motion for accessibility */
        @media (prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Property Filters */
        .filter-bar {
            display: flex;
            gap: 12px;
            margin-bottom: 32px;
            flex-wrap: wrap;
        }

        /* LEGATE MODAL SYSTEM */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            z-index: 1000;
            display: none;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal-overlay.active {
            display: flex;
            opacity: 1;
        }

        .modal-content {
            background: var(--cream);
            width: 90%;
            max-width: 600px;
            max-height: 80vh;
            overflow-y: auto;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            position: relative;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }

        .modal-overlay.active .modal-content {
            transform: translateY(0);
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 24px;
            cursor: pointer;
            color: var(--stone-light);
            transition: color 0.2s;
        }

        .close-modal:hover {
            color: var(--brand);
        }

        /* EMAIL CAPTURE POPUP */
        .email-popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(8px);
            z-index: 2000;
            display: none;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .email-popup-overlay.active {
            display: flex;
            opacity: 1;
        }

        .email-popup {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 243, 240, 0.98) 100%);
            width: 90%;
            max-width: 480px;
            border-radius: 24px;
            padding: 48px 40px;
            box-shadow: 0 25px 80px -12px rgba(0, 0, 0, 0.35);
            position: relative;
            transform: translateY(30px) scale(0.95);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-align: center;
        }

        .email-popup-overlay.active .email-popup {
            transform: translateY(0) scale(1);
        }

        .email-popup-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--cream-dark);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--stone-light);
            transition: all 0.2s;
        }

        .email-popup-close:hover {
            background: var(--brand);
            color: white;
        }

        .email-popup-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .email-popup-title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 32px;
            color: var(--brand-dark);
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .email-popup-subtitle {
            color: var(--stone);
            font-size: 16px;
            margin-bottom: 28px;
            line-height: 1.6;
        }

        .email-popup-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .email-popup-input {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid var(--cream-dark);
            border-radius: 12px;
            font-size: 16px;
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            transition: border-color 0.3s, box-shadow 0.3s;
            background: white;
        }

        .email-popup-input:focus {
            border-color: var(--brand);
            box-shadow: 0 0 0 4px rgba(95, 138, 139, 0.1);
        }

        .email-popup-btn {
            width: 100%;
            padding: 16px 24px;
            background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .email-popup-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(95, 138, 139, 0.35);
        }

        .email-popup-privacy {
            font-size: 12px;
            color: var(--stone-light);
            margin-top: 16px;
        }

        .email-popup-success {
            display: none;
            text-align: center;
        }

        .email-popup-success.show {
            display: block;
        }

        .email-popup-success-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
        }

        @media (max-width: 600px) {
            .email-popup {
                padding: 36px 24px;
                margin: 20px;
            }

            .email-popup-title {
                font-size: 26px;
            }
        }
