    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: #333;
        }

        a {
            text-decoration: none;
        }

        h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            line-height: 1.2;
            font-weight: 700;
        }

        h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            line-height: 1.3;
            font-weight: 600;
        }

        h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            line-height: 1.4;
            font-weight: 600;
        }

        h4 {
            font-size: 1.125rem;
            line-height: 1.5;
            font-weight: 600;
        }

        p {
            font-size: 1rem;
            line-height: 1.6;
        }

        /* Header/Navigation */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .header-container {
            max-width: 80rem;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            height: 60px;
            width: auto;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: #574229;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #8b6a3e;
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .logo {
                height: 50px;
            }
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            margin-top: 80px;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            background-image: linear-gradient(rgba(87, 66, 41, 0.7), rgba(87, 66, 41, 0.7)), url('https://oaklandvillas.pk/assets/img/OV-1.jpg');
            background-size: cover;
            background-position: center;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: white;
            padding: 0 1rem;
            max-width: 80rem;
            margin: 0 auto;
        }

        .hero-content h1 {
            margin-bottom: 1.5rem;
        }

        .hero-content p {
            font-size: 1.25rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            max-width: 48rem;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.95;
        }

        .cta-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
        }

        .btn {
            padding: 0.75rem 2rem;
            border-radius: 0.375rem;
            transition: all 0.3s ease;
            font-weight: 500;
            font-size: 1rem;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background-color: #fff;
            color: #574229;
        }

        .btn-primary:hover {
            background-color: #f5f5f5;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background-color: transparent;
            color: #fff;
            border: 2px solid #fff;
        }

        .btn-secondary:hover {
            background-color: #fff;
            color: #574229;
        }

        /* Section Styles */
        .section {
            padding: 5rem 1rem;
        }

        .section-bg-light {
            background-color: #fafaf9;
        }

        .section-bg-white {
            background-color: #fff;
        }

        .container {
            max-width: 72rem;
            margin: 0 auto;
        }

        .container-lg {
            max-width: 80rem;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-header h2 {
            color: #574229;
            margin-bottom: 1rem;
        }

        .divider {
            width: 5rem;
            height: 0.25rem;
            background-color: #574229;
            margin: 0 auto 2rem;
        }

        /* About Section */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
        }

        @media (min-width: 768px) {
            .about-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .about-text p {
            line-height: 1.8;
            color: #4a4a4a;
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }

        .about-image {
            border-radius: 0.5rem;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 400px;
        }

        /* Location Cards */
        .location-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .location-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .location-card {
            text-align: center;
            padding: 2rem;
            border-radius: 0.75rem;
            background-color: #fafaf9;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .location-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 20px rgba(87, 66, 41, 0.15);
        }

        .location-icon {
            width: 4rem;
            height: 4rem;
            margin: 0 auto 1rem;
            border-radius: 50%;
            background-color: #574229;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .location-icon svg {
            width: 2rem;
            height: 2rem;
            color: white;
        }

        .location-card h3 {
            color: #574229;
            margin-bottom: 0.75rem;
        }

        .location-card p {
            color: #6b6b6b;
        }

        /* Amenities Grid */
        .amenities-intro {
            max-width: 48rem;
            margin: 0 auto;
            color: #6b6b6b;
            line-height: 1.8;
            font-size: 1.1rem;
            text-align: center;
        }

        .amenities-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-top: 3rem;
        }

        @media (min-width: 640px) {
            .amenities-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .amenities-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (min-width: 1280px) {
            .amenities-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .amenity-card {
            background-color: white;
            padding: 1.5rem;
            border-radius: 0.5rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            border: 1px solid #e5e5e5;
            transition: all 0.3s ease;
        }

        .amenity-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 20px rgba(87, 66, 41, 0.15);
            border-color: #574229;
        }

        .amenity-icon {
            font-size: 2rem;
            margin-bottom: 0.75rem;
        }

        .amenity-card h4 {
            color: #574229;
            margin-bottom: 0.5rem;
        }

        .amenity-card p {
            color: #888;
            font-size: 0.9rem;
        }

        /* Investment Section */
        .investment-section {
            padding: 5rem 1rem;
            background-color: white;
        }

        .investment-card {
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            background-color: #574229;
            display: grid;
            grid-template-columns: 1fr;
        }

        @media (min-width: 768px) {
            .investment-card {
                grid-template-columns: 1fr 1fr;
            }
        }

        .investment-content {
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: white;
        }

        .investment-content h2 {
            margin-bottom: 1.5rem;
        }

        .investment-content p {
            line-height: 1.8;
            opacity: 0.95;
            margin-bottom: 1.5rem;
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            margin-bottom: 0.75rem;
        }

        .feature-list svg {
            width: 1.5rem;
            height: 1.5rem;
            margin-right: 0.75rem;
            flex-shrink: 0;
        }

        .feature-list span {
            opacity: 0.95;
        }

        .investment-image {
            min-height: 400px;
            background-image: url('https://oaklandvillas.pk/assets/img/OV-3.jpg');
            background-size: cover;
            background-position: center;
        }

        /* Gallery Section */
        .gallery-section {
            padding: 5rem 1rem;
            background-color: #fff;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-top: 3rem;
        }

        @media (min-width: 640px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .gallery-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(87, 66, 41, 0.2);
        }

        .gallery-item img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(87, 66, 41, 0.9), transparent);
            padding: 1.5rem;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        .gallery-overlay p {
            color: white;
            margin: 0;
        }

        /* Footer */
        .footer {
            padding: 3rem 1rem;
            background-color: #2d2419;
            color: white;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }

        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .footer h3,
        .footer h4 {
            color: #d4a574;
            margin-bottom: 1rem;
        }

        .footer p {
            line-height: 1.8;
            opacity: 0.9;
        }

        .footer a {
            color: white;
            opacity: 0.9;
        }

        .footer a:hover {
            opacity: 1;
            text-decoration: underline;
        }

        .footer-bottom {
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        .footer-bottom p {
            opacity: 0.8;
        }

        .contact-info {
            line-height: 1.8;
            opacity: 0.9;
        }

        .contact-info p {
            margin-bottom: 0.5rem;
        }
.map-wrapper {
    margin-top: 50px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}


        /* Responsive */
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.75rem;
            }

            h3 {
                font-size: 1.25rem;
            }

            .section {
                padding: 3rem 1rem;
            }

            .hero-content p {
                font-size: 1rem;
            }
        }
.payment-note {
    background: #f9fafb;
    border-left: 4px solid #bfa76f;
    padding: 20px 25px;
    margin-bottom: 40px;
    border-radius: 6px;
}

    .payment-note p {
        margin: 6px 0;
        font-weight: 500;
        color: #333;
    }

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.payment-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .payment-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
    }

    .payment-card h3 {
        text-align: center;
        margin-bottom: 20px;
        font-family:Arial, Helvetica, sans-serif;
        font-size: 22px;
        color: #1f2937;
    }

.payment-table {
    width: 100%;
    border-collapse: collapse;
}

    .payment-table tr {
        border-bottom: 1px solid #e5e7eb;
    }

    .payment-table td {
        padding: 14px 6px;
        font-size: 15px;
        color: #374151;
    }

        .payment-table td:last-child {
            text-align: right;
            font-weight: 600;
        }

    .payment-table .total-row td {
        font-size: 16px;
        font-weight: 700;
        color: #111827;
        border-top: 2px solid #bfa76f;
        padding-top: 18px;
    }

@media (max-width: 768px) {
    .payment-card {
        padding: 22px;
    }

        .payment-card h3 {
            font-size: 20px;
        }

    .payment-table td {
        font-size: 14px;
    }
}
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-float:hover {
        transform: scale(1.08);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    }

/* Mobile */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        display: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

        .nav-links.active {
            display: flex;
        }

        .nav-links li {
            margin: 12px 0;
        }
}