* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #1b4576;
            --secondary: #d47637;
            --accent: #2b578e;
            --light: #f8f9fa;
            --dark: #2d3748;
            --text: #333;
            --border: #e2e8f0;
            --success: #25D366;
            --danger: #e53e3e;
            --gray: #6c757d;
            --white: #ffffff;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: var(--text);
            background-color: var(--white);
            overflow-x: hidden;
        }

        /* ===== CONTAINER ===== */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* ===== YOUR NAVIGATION ===== */
        .navbar {
            background-color: var(--white);
            box-shadow: var(--shadow-sm);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 0.8rem 0;
        }

        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo h1 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 0.2rem;
        }

        .logo p {
            font-size: 0.8rem;
            color: var(--gray);
            font-weight: 400;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            align-items: center;
            gap: 2rem;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s;
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-menu a:hover {
            color: var(--primary);
        }

        .nav-menu a.active {
            color: var(--primary);
            font-weight: 600;
        }

        .nav-menu a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--primary);
        }

        .admin-btn {
            background-color: var(--primary);
            color: white !important;
            padding: 0.5rem 1rem !important;
            border-radius: 4px;
            margin-left: 0.5rem;
        }

        .admin-btn:hover {
            background-color: var(--accent);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary);
            cursor: pointer;
            padding: 0.5rem;
        }

        /* ===== HERO SECTION ===== */
        .hero {
            padding: 10rem 0 5rem;
            background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.75)), 
                        url('https://images.unsplash.com/photo-1613490493576-7fde63acd811?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            margin-top: 4.5rem;
        }

        .hero-content {
            max-width: 800px;
            text-align: center;
            margin: 0 auto;
        }

        .hero h1 {
            color: var(--white);
            font-size: 2.75rem;
            margin-bottom: 1.5rem;
            font-family: 'Playfair Display', serif;
        }

        .hero p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.125rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.875rem 1.75rem;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background-color: var(--primary);
            color: var(--white);
        }

        .btn-primary:hover {
            background-color: var(--accent);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .btn-secondary {
            background-color: var(--secondary);
            color: var(--white);
        }

        .btn-secondary:hover {
            background-color: #e68a4d;
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-outline:hover {
            background-color: var(--primary);
            color: var(--white);
            transform: translateY(-2px);
        }

        /* ===== MEDIA & PRICING SECTION ===== */
        .media-pricing-section {
            padding: 5rem 0;
            background-color: var(--light);
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1rem;
            display: inline-block;
            position: relative;
            padding-bottom: 0.75rem;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: var(--secondary);
        }

        .section-title p {
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Gallery Container */
        .gallery-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .main-media {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            height: 500px;
            box-shadow: var(--shadow-lg);
        }

        .main-media img,
        .main-media video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: none;
        }

        .main-media .active {
            display: block;
        }

        .gallery-controls {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 1.5rem;
            z-index: 10;
        }

        .gallery-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.9);
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            color: var(--primary);
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: var(--shadow-md);
        }

        .gallery-btn:hover {
            background-color: var(--white);
            transform: scale(1.1);
        }

        .thumbnail-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .thumbnail {
            border-radius: 8px;
            overflow: hidden;
            height: 80px;
            cursor: pointer;
            opacity: 0.7;
            transition: all 0.3s;
            position: relative;
        }

        .thumbnail:hover,
        .thumbnail.active {
            opacity: 1;
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        .thumbnail img,
        .thumbnail video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .thumbnail-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(27, 69, 118, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        /* Pricing Summary */
        .pricing-summary {
            background-color: var(--white);
            border-radius: 12px;
            padding: 2.5rem;
            margin-top: 3rem;
            box-shadow: var(--shadow-md);
            border-left: 5px solid var(--secondary);
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .pricing-header h3 {
            color: var(--primary);
            font-size: 1.75rem;
            margin-bottom: 0.5rem;
        }

        .price-display {
            text-align: center;
            margin: 2rem 0;
        }

        .price-amount {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
        }

        .price-period {
            font-size: 1.25rem;
            color: var(--gray);
            margin-top: 0.5rem;
        }

        .pricing-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .pricing-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem;
            background-color: var(--light);
            border-radius: 8px;
        }

        .pricing-item i {
            color: var(--secondary);
            font-size: 1.25rem;
            margin-top: 0.25rem;
        }

        .pricing-content h4 {
            margin-bottom: 0.5rem;
            color: var(--primary);
        }

        .proposal-cta {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
        }

        /* ===== PROPERTY DETAILS ===== */
        .property-details {
            padding: 5rem 0;
        }

        .details-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .detail-card {
            background-color: var(--white);
            border-radius: 12px;
            padding: 2rem;
            box-shadow: var(--shadow-md);
            transition: all 0.3s;
        }

        .detail-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .detail-card h3 {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
            font-family: 'Playfair Display', serif;
        }

        .detail-card h3 i {
            color: var(--secondary);
        }

        .feature-list {
            list-style: none;
        }

        .feature-list li {
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .feature-list li:last-child {
            border-bottom: none;
        }

        .feature-list i {
            color: var(--secondary);
            width: 20px;
        }

        /* ===== CONTACT SECTION ===== */
        .contact-section {
            padding: 5rem 0;
            background-color: var(--light);
        }

        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .contact-info {
            background-color: var(--white);
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: var(--shadow-md);
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-label {
            font-weight: 500;
            margin-bottom: 0.5rem;
            color: var(--text);
        }

        .form-input,
        .form-select,
        .form-textarea {
            padding: 0.875rem 1rem;
            border: 1px solid var(--border);
            border-radius: 6px;
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(27, 69, 118, 0.1);
        }

        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .social-link {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.875rem 1.5rem;
            background-color: var(--white);
            border-radius: 6px;
            text-decoration: none;
            color: var(--text);
            transition: all 0.3s;
            border: 1px solid var(--border);
        }

        .social-link:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .social-link.whatsapp {
            background-color: rgba(37, 211, 102, 0.1);
            border-color: var(--success);
        }

        .social-link.whatsapp i {
            color: var(--success);
        }

        .social-link.phone i {
            color: var(--primary);
        }

        .social-link.email i {
            color: var(--danger);
        }

        /* ===== YOUR FOOTER ===== */
        .footer {
            background-color: #2c3e50;
            color: var(--white);
            padding: 4rem 0 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-col h3,
        .footer-col h4 {
            color: var(--white);
            margin-bottom: 1.5rem;
            font-family: 'Playfair Display', serif;
        }

        .footer-col h3 {
            font-size: 1.5rem;
        }

        .footer-col h4 {
            font-size: 1.2rem;
        }

        .footer-col p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 0.75rem;
        }

        .footer-col ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.95rem;
        }

        .footer-col ul li a:hover {
            color: var(--secondary);
        }

        .footer-col i {
            color: var(--secondary);
            margin-right: 0.75rem;
            width: 20px;
        }

        .footer-img-placeholder {
            background-color: white;
            padding: 10px;
            border-radius: 8px;
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            box-shadow: var(--shadow-sm);
        }

        .footer-img-placeholder span {
            color: var(--primary);
            font-weight: bold;
            font-size: 1.2rem;
            text-align: center;
            line-height: 1.2;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.875rem;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.25rem;
            }
            
            .hero {
                margin-top: 4rem;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .main-media {
                height: 400px;
            }
            
            .price-amount {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            /* Mobile Navigation */
            .nav-menu {
                display: none;
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--white);
                flex-direction: column;
                padding: 2rem;
                box-shadow: var(--shadow-md);
                z-index: 999;
            }

            .nav-menu.active {
                display: flex;
            }

            .mobile-menu-btn {
                display: block;
            }

            .logo h1 {
                font-size: 1.25rem;
            }

            .hero {
                padding: 8rem 0 4rem;
                margin-top: 3.5rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero-actions {
                flex-direction: column;
                align-items: center;
            }

            .hero-actions .btn {
                width: 100%;
                max-width: 300px;
            }

            .main-media {
                height: 300px;
            }

            .thumbnail-grid {
                grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
            }

            .gallery-btn {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .details-grid,
            .contact-container {
                grid-template-columns: 1fr;
            }

            .pricing-details {
                grid-template-columns: 1fr;
            }

            .price-amount {
                font-size: 2.5rem;
            }

            .pricing-summary,
            .contact-info,
            .detail-card {
                padding: 1.5rem;
            }

            .social-links {
                flex-direction: column;
            }

            .social-link {
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .container {
                padding: 0 1rem;
            }

            .hero {
                margin-top: 3rem;
                padding: 6rem 0 3rem;
            }

            .hero h1 {
                font-size: 1.75rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .main-media {
                height: 250px;
            }

            .thumbnail {
                height: 70px;
            }

            .price-amount {
                font-size: 2.25rem;
            }

            .section-title h2 {
                font-size: 1.5rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate {
            animation: fadeIn 0.8s ease-out forwards;
            opacity: 0;
        }

        .delay-1 {
            animation-delay: 0.2s;
        }

        .delay-2 {
            animation-delay: 0.4s;
        }

        .delay-3 {
            animation-delay: 0.6s;
        }