:root {
            /* 
               COLOR SCHEMES 
               Uncomment the block you want to use, and comment the others.
               
               1. Emerald Green (Default)
            */
            --primary-color: #2b571e;
            --secondary-color: #a89050;

            /* 2. Royal Blue */
            /*
            --primary-color: #1a365d;
            --secondary-color: #d6bcfa;
            */

            /* 3. Burgundy Red */
            /*
            --primary-color: #63171b;
            --secondary-color: #f6e05e;
            */

            /* 4. Slate Charcoal */
            /*
            --primary-color: #2d3748;
            --secondary-color: #a0aec0;
            */

            /* 5. Terracotta */
            /*
            --primary-color: #c05621;
            --secondary-color: #fbd38d;
            */

            --primary-light: #3d6b2f;
            --accent-color: #f7b731;
            --background-color: #fafafa;
            --text-color: #333333;
            --text-light: #555555;
            --border-color: #eaeaea;
            --white: #ffffff;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--background-color);
        }

        /* Typography */
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.3;
        }

        h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            margin: 15px auto 0;
            border-radius: 2px;
        }

        /* Header */
        .header {
            background: rgba(255, 255, 255, 0.98);
            padding: 0.8rem 2%;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            backdrop-filter: blur(10px);
        }

        .logo img {
            width: 180px;
            height: auto;
            transition: var(--transition);
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 3rem;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 600;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: var(--transition);
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: var(--transition);
        }

        nav a:hover {
            color: var(--primary-color);
        }

        nav a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            background-image: url('https://ramsonstrendsquares.com/wp-content/uploads/2023/11/RamsonsTrendsquares_04.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            height: 50vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: center;
            color: var(--white);
            position: relative;
            padding: 0 5% 5rem;
            clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 90%, 0 100%);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
            z-index: 1;
        }

        .hero>* {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero-subtitle {
            font-size: clamp(1.2rem, 2vw, 1.8rem);
            margin-bottom: 2rem;
            font-weight: 300;
        }

        .btn {
            background: var(--primary-color);
            color: var(--white);
            padding: 0.875rem 2rem;
            border: 2px solid var(--primary-color);
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: var(--transition);
        }

        .btn:hover {
            background: var(--white);
            color: var(--primary-color);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Buttons & Highlights */
        .btn-outline {
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .btn-outline:hover {
            background: var(--primary-color);
            color: var(--white);
        }

        .btn-yellow {
            background: #ffc107;
            color: #000;
            border: 2px solid #000;
            padding: 0.6rem 1.5rem;
            font-size: 1rem;
            margin: 1rem 0;
            border-radius: 4px;
            font-weight: 700;
            box-shadow: none;
            display: inline-flex;
            gap: 10px;
            align-items: center;
            transition: var(--transition);
        }

        .btn-yellow:hover {
            background: #e0a800;
            color: #000;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
            border-color: #000;
        }

        /* Info Cards */
        .info-cards-wrapper {
            padding: -50px 5% 4rem;
            background: transparent;
            position: relative;
            z-index: 10;
            margin-top: -80px;
        }

        .info-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .info-card {
            background: var(--white);
            padding: 2.5rem 2rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .info-card-icon {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .info-card h3 {
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
        }

        /* Section Styles */
        section {
            padding: 5rem 5%;
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .text-center {
            text-align: center;
        }

        /* About Section */
        .about-content {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 900px;
            margin: 0 auto;
            text-align: justify;
        }

        .about-content p {
            margin-bottom: 1.5rem;
        }

        .about-subtitle {
            text-align: center;
            font-size: 1.5rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            font-weight: 600;
        }

        /* Price Cards */
        #price {
            background-color: var(--white);
        }

        .price-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
        }

        .price-card {
            background: var(--white);
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            padding: 2rem 1.5rem;
            text-align: center;
            transition: var(--transition);
            width: 220px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .price-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            border-color: var(--primary-color);
        }

        .price-card h3 {
            font-size: 1rem;
            color: var(--text-color);
            margin-bottom: 0.2rem;
            font-weight: 700;
        }

        .price-card-sqft {
            font-size: 0.85rem;
            color: #666;
            margin-bottom: 1.5rem;
        }

        .price-card-price {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.2rem;
        }

        .price-card-onwards {
            font-size: 1rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }

        .price-card .btn {
            padding: 0.6rem 1rem;
            font-size: 0.85rem;
            border-radius: 4px;
            width: 100%;
        }

        /* Coming Soon Features */
        .coming-soon-block {
            background: rgba(43, 87, 30, 0.05);
            border: 2px dashed var(--primary-color);
            border-radius: 8px;
            padding: 2rem;
            text-align: center;
            margin: 3rem auto 0;
            max-width: 800px;
            color: var(--primary-color);
            transition: var(--transition);
        }

        .coming-soon-block:hover {
            background: rgba(43, 87, 30, 0.1);
            transform: translateY(-3px);
        }

        .coming-soon-block h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .coming-soon-block p {
            font-size: 1.1rem;
            color: var(--text-light);
        }

        /* Gallery */
        .gallery-images {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 1.5rem;
        }

        .gallery-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .gallery-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            display: block;
        }

        .gallery-image:hover img {
            transform: scale(1.1);
        }

        /* Amenities */
        #amenities {
            background-color: var(--white);
        }

        .amenities-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
            font-size: 1.1rem;
            color: var(--text-light);
        }

        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 2rem;
        }

        .amenity-card {
            background: var(--background-color);
            padding: 2.5rem 1rem;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }

        .amenity-card:hover {
            transform: translateY(-5px);
        }

        .amenity-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
            display: block;
        }

        .amenity-card h3 {
            font-size: 1.1rem;
            color: var(--text-color);
        }

        /* Location */
        .location-container {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        }

        .map-iframe {
            width: 100%;
            height: 500px;
            border: 0;
            display: block;
        }

        /* FAQ */
        #faq {
            background-color: var(--background-color);
        }

        .faq-item {
            background: var(--white);
            margin-bottom: 1rem;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border-color);
        }

        .faq-item-title {
            padding: 1.5rem 2rem;
            cursor: pointer;
            background: var(--white);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.1rem;
            font-weight: 600;
            transition: var(--transition);
        }

        .faq-item-title:hover {
            color: var(--primary-color);
        }

        .faq-content {
            padding: 0 2rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease-out;
            color: var(--text-light);
        }

        .faq-item.active .faq-content {
            padding: 0 2rem 1.5rem;
            max-height: 200px;
            /* arbitrary max-height for transition */
        }

        .faq-item.active .faq-item-title {
            color: var(--primary-color);
        }

        .faq-icon {
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        /* City Section */
        .city-section {
            background-color: #f8f8f8;
            background-image: radial-gradient(#d1d1d1 1px, transparent 1px);
            background-size: 10px 10px;
            padding: 5rem 5%;
        }

        .city-content {
            max-width: 1000px;
            margin: 0 auto;
            text-align: justify;
            font-size: 1.05rem;
            color: var(--text-color);
        }

        .city-content h2 {
            color: #000;
        }

        .city-content p {
            margin-bottom: 1.5rem;
        }

        /* Footer */
        .footer-section {
            background: #1a2914;
            /* very dark green */
            color: rgba(255, 255, 255, 0.7);
            padding: 4rem 5% 2rem;
            text-align: center;
        }

        .footer-logo {
            margin-bottom: 2rem;
            text-align: center;
        }

        .footer-logo img {
            width: 180px;
            height: auto;
            display: block;
            margin: 0 auto;
        }

        .footer-disclaimer {
            font-size: 0.85rem;
            max-width: 1000px;
            margin: 0 auto 2rem;
            line-height: 1.8;
            text-align: justify;
        }

        .footer-copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            font-size: 0.9rem;
        }

        /* Mobile Navigation */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-color);
            margin-left: auto;
        }

        @media (max-width: 900px) {

            .logo img,
            .footer-logo img {
                width: 150px;
            }

            .hero {
                clip-path: none;
                padding-bottom: 3rem;
            }

            .mobile-menu-btn {
                display: block;
            }

            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--white);
                padding: 2rem 0;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            }

            nav ul.show {
                display: flex;
            }

            .info-cards-wrapper {
                margin-top: 1rem;
                padding: 2rem 5% 3rem;
            }

            section {
                padding: 3rem 5%;
            }

            .amenities-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }

            .sticky-footer-btn-container {
                display: flex !important;
            }

            body {
                padding-bottom: 60px;
            }
        }

        /* Modal Styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-container {
            background: var(--primary-color);
            width: 90%;
            max-width: 360px;
            border-radius: 8px;
            position: relative;
            padding: 2rem 1rem 1.5rem;
            text-align: center;
            transform: translateY(-20px);
            transition: all 0.3s ease;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
            border: 2px solid var(--white);
        }

        .modal-overlay.active .modal-container {
            transform: translateY(0);
        }

        .modal-close {
            position: absolute;
            top: 5px;
            right: 15px;
            background: none;
            border: none;
            color: var(--white);
            font-size: 2rem;
            cursor: pointer;
            z-index: 2001;
            line-height: 1;
        }

        .modal-title {
            color: var(--white);
            font-size: 1.8rem;
            line-height: 1.2;
            margin-bottom: 0.8rem;
            font-weight: 700;
            font-family: 'Georgia', serif;
        }

        .modal-subtitle {
            background: var(--white);
            color: var(--text-color);
            padding: 0.5rem;
            font-size: 0.95rem;
            margin: 0 auto 1.5rem;
            width: 95%;
            font-weight: 500;
        }

        .modal-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            color: var(--white);
            font-weight: 700;
            font-size: 1.1rem;
        }

        .modal-divider::before,
        .modal-divider::after {
            content: '';
            height: 2px;
            background: var(--white);
            width: 40px;
            margin: 0 10px;
        }

        .modal-form-card {
            background: var(--white);
            border-radius: 8px;
            padding: 1.5rem;
            margin: 0 auto;
            width: 100%;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .modal-input {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 1rem;
            font-family: inherit;
        }

        .modal-submit {
            width: 100%;
            background: var(--accent-color);
            color: #000;
            border: none;
            padding: 0.8rem;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 4px;
            cursor: pointer;
            transition: opacity 0.3s;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }

        .modal-submit:hover {
            opacity: 0.9;
        }

        /* Sticky Footer Details Button */
        .sticky-footer-btn-container {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.85);
            display: none;
            justify-content: center;
            align-items: center;
            padding: 12px;
            z-index: 1000;
            border-top: 1px solid #333;
        }

        .sticky-btn {
            background: var(--accent-color);
            color: #000;
            border: none;
            padding: 10px 25px;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 4px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: opacity 0.3s;
        }

        .sticky-btn:hover {
            opacity: 0.9;
        }

        .scroll-top-btn {
            background: #111;
            color: var(--white);
            border: 1px solid #444;
            padding: 10px 15px;
            border-radius: 4px;
            cursor: pointer;
            margin-left: 10px;
            font-size: 1rem;
            transition: background 0.3s;
        }

        .scroll-top-btn:hover {
            background: #333;
        }