:root {
    --primary-color: #048f20;
    --secondary-color: #057f1b;
    --text-color: #333;
    --light-text: #666;
    --white: #ffffff;
    --background-light: #f8f9fa;
    --border-color: #dee2e6;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

a:hover {
    color: var(--secondary-color);
}

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

/* Top Contact Info */
.top-contact {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
}

.contact-info {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.contact-info a:hover {
    opacity: 0.8;
}

/* Header */
header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: var(--shadow);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 60px;
}

.tagline {
    font-size: 1.1rem;
    color: var(--light-text);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    color: var(--text-color);
    font-weight: bold;
    font-size: 1rem;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/land-plotting-layout-design.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 150px 0;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-color);
    border: 2px solid var(--white);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-secondary:hover {
    background: transparent;
    transform: translateY(-2px);
}

/* Page Header (for inner pages) */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/page-header-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Featured Plots / Plot Listings */
.featured-plots, .plot-listings {
    padding: 80px 0;
    background: var(--background-light);
}

.featured-plots h2, .plot-listings h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-color);
    font-size: 2.5rem;
}

.plot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.plot-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.plot-card:hover {
    transform: translateY(-5px);
}

.plot-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.plot-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.property-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    z-index: 2;
}

.property-tag.residential {
    background-color: #007bff;
}

.property-tag.commercial {
    background-color: #6f42c1;
}

.property-tag.corner {
    background-color: #fd7e14;
}

.plot-info {
    padding: 20px;
}

.plot-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.plot-location {
    color: var(--light-text);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.plot-location i {
    color: var(--primary-color);
    margin-right: 5px;
}

.plot-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.plot-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.plot-features li {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: var(--background-light);
    border-radius: 5px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.plot-features li:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.plot-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.plot-actions {
    display: flex;
    gap: 10px;
}

/* Plot Search Section */
.plot-search {
    padding: 50px 0;
    background-color: var(--background-light);
}

.search-filters {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.filter-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: flex-end;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--text-color);
}

.filter-group select,
.filter-group input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    background-color: var(--white);
    color: var(--text-color);
}

.filter-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.filter-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Amenities Section */
.amenities {
    padding: 80px 0;
    background: var(--white);
}

.amenities h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-color);
    font-size: 2.5rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.amenity-category {
    background: var(--background-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.amenity-category:hover {
    transform: translateY(-5px);
}

.amenity-category h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.amenity-category h2 i {
    font-size: 3rem;
    color: var(--primary-color);
}

.amenity-items {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 25px;
    padding: 25px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.amenity-item:last-child {
    margin-bottom: 0;
}

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

.amenity-item i {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 3rem;
}

.amenity-item h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 10px;
    line-height: 1.2;
}

.amenity-item p {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.6;
}

/* About Us Section */
.about-content {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-text {
    /* No specific padding-right needed here, gap handles spacing */
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--text-color);
    line-height: 1.2;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--light-text);
    line-height: 1.7;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.about-text ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.about-text ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 1.1rem;
}

.about-text ul li i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    max-width: 100%;
    height: auto;
}

.about-image img:hover {
    transform: translateY(-5px);
}

/* Key Features */
.key-features {
    padding: 80px 0;
    background: var(--background-light);
}

.key-features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 10px;
    line-height: 1.2;
}

.feature-item p {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    background: var(--background-light);
    padding: 100px 0;
    text-align: center;
}

.team-section h2 {
    font-size: 3rem;
    margin-bottom: 60px;
    color: var(--text-color);
    line-height: 1.2;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-member {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid var(--border-color);
}

.team-member:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.team-member img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 25px;
    border: 5px solid var(--primary-color);
}

.team-member h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

.team-member p {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .about-content {
        padding: 80px 0;
    }

    .about-text h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .team-section h2 {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .about-content {
        padding: 60px 0;
    }

    .about-text h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .about-text p {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .about-text h3 {
        font-size: 1.5rem;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .about-text ul li {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .about-text ul li i {
        font-size: 1.2rem;
        margin-right: 10px;
    }

    .team-section {
        padding: 60px 0;
    }

    .team-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .team-member {
        padding: 20px;
    }

    .team-member img {
        width: 120px;
        height: 120px;
        margin-bottom: 15px;
    }

    .team-member h3 {
        font-size: 1.4rem;
        margin-bottom: 5px;
    }

    .team-member p {
        font-size: 0.9rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: flex-start;
}

.contact-info-block {
    background: var(--background-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-info-block h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.contact-info-block ul {
    list-style: none;
    padding: 0;
}

.contact-info-block ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-color);
}

.contact-info-block ul li i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-info-block ul li div {
    flex-grow: 1;
}

.contact-info-block ul li a {
    color: var(--text-color);
}

.contact-form-block {
    background: var(--background-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form-block h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--text-color);
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    background-color: var(--white);
    color: var(--text-color);
}

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

.contact-form .submit-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form .submit-btn:hover {
    background-color: var(--secondary-color);
}

.map-section {
    padding: 0 0 80px 0;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* Payment Plans Section */
.payment-plans {
    padding: 100px 0;
    background: var(--background-light);
}

.payment-plans h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: var(--text-color);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.plan-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.plan-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.plan-price {
    font-size: 1.5rem;
    color: var(--text-color);
    font-weight: bold;
    margin-bottom: 30px;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.plan-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 10px;
}

.plan-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.plan-features li i.fa-times-circle {
    color: #dc3545; /* Red color for 'no' features */
}

.plan-features li i.fa-star {
    color: #ffc107; /* Orange color for 'best for' features */
}

.plan-card .btn-primary {
    margin-top: auto; /* Push button to the bottom */
    width: 80%;
    padding: 12px 25px;
    font-size: 1.1rem;
}

/* Additional Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: var(--background-light);
}

.benefits-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: var(--text-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.benefit-item {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.benefit-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

.benefit-item p {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .payment-plans h2,
    .benefits-section h2 {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .plan-card,
    .benefit-item {
        padding: 30px;
    }

    .plan-header h2 {
        font-size: 1.8rem;
    }

    .plan-price {
        font-size: 1.3rem;
    }

    .benefits-section h2 {
        font-size: 2.2rem;
    }

    .benefit-item h3 {
        font-size: 1.5rem;
    }

    .benefit-item p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .payment-plans h2,
    .benefits-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .plan-card,
    .benefit-item {
        padding: 25px;
    }

    .plan-card .btn-primary {
        width: 100%;
    }

    .benefit-item i {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
}

/* Call to Action Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4d2e 100%);
    color: white;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.cta-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.cta-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.cta-features i {
    color: #4CAF50;
    margin-right: 10px;
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.cta-buttons .btn-primary {
    background-color: white;
    color: var(--primary-color);
    padding: 12px 30px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-buttons .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.cta-image {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cta-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .cta-content {
        flex-direction: column;
    }

    .cta-text {
        text-align: center;
    }

    .cta-features li {
        justify-content: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .cta-image {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .cta-buttons {
        flex-direction: column;
    }

    .cta-text h2 {
        font-size: 2rem;
    }

    .about-content {
        padding: 60px 0;
    }

    .about-text h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .about-text p {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .about-text h3 {
        font-size: 1.5rem;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .about-text ul li {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .about-text ul li i {
        font-size: 1.2rem;
        margin-right: 10px;
    }

    .team-section {
        padding: 60px 0;
    }

    .team-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .team-member {
        padding: 20px;
    }

    .team-member img {
        width: 120px;
        height: 120px;
        margin-bottom: 15px;
    }

    .team-member h3 {
        font-size: 1.4rem;
        margin-bottom: 5px;
    }

    .team-member p {
        font-size: 0.9rem;
    }
}

/* Footer */
footer {
    background: var(--text-color);
    color: var(--white);
    padding: 50px 0 20px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p {
    color: var(--white);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section p i {
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--white);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .page-header p {
        font-size: 0.9rem;
    }

    .plot-grid,
    .features-grid,
    .amenities-grid,
    .team-grid,
    .plans-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .plot-card,
    .feature-item,
    .amenity-category,
    .team-member,
    .plan-card,
    .benefit-item {
        padding: 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .about-text ul {
        align-items: center;
        justify-content: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info-block,
    .contact-form-block {
        padding: 20px;
    }

    .calculator-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .footer-section p,
    .social-links {
        justify-content: center;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .cta p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .location-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .location-item {
        padding: 20px;
    }

    .top-contact {
        padding: 8px 0;
    }

    .contact-info a {
        font-size: 0.8rem;
    }

    .logo img {
        height: 50px;
    }

    .tagline {
        font-size: 1rem;
    }

    .btn-primary, .btn-secondary {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Smaller mobile screens (e.g., 480px and below) */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .featured-plots h2,
    .why-choose-us h2,
    .location-advantage h2,
    .contact-section h2,
    .payment-plans h2,
    .benefits-section h2,
    .cta h2,
    .amenities h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .plot-info h3 {
        font-size: 1.3rem;
    }

    .plot-price {
        font-size: 1.1rem;
    }

    .plot-features li {
        font-size: 0.9rem;
        padding: 6px 10px;
    }

    .feature-item h3,
    .amenity-category h3,
    .team-member h3,
    .contact-info-block h3,
    .contact-form-block h3,
    .plan-header h3,
    .calculator-result h3,
    .benefit-item h3 {
        font-size: 1.3rem;
    }

    .calculator-result .result-amount {
        font-size: 2.2rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    .amenity-category {
        padding: 20px;
    }

    .amenity-category h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .amenity-category h2 i {
        font-size: 2.5rem;
    }

    .amenity-item {
        padding: 20px;
        margin-bottom: 20px;
    }

    .amenity-item i {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .amenity-item h3 {
        font-size: 1.3rem;
    }

    .amenity-item p {
        font-size: 1rem;
    }

    .amenities {
        padding: 60px 0;
    }

    .amenities h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: var(--background-light);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: var(--white);
    border: none;
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-color);
    font-size: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
    background: var(--background-light);
    border: none;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    border: none;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.feature-item p {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Location Advantage Styles */
.location-advantage {
    padding: 60px 0;
    background-color: var(--background-light);
}

.location-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.location-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.location-item:hover {
    transform: translateY(-5px);
}

.location-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.location-item h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.location-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .location-features {
        grid-template-columns: 1fr;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Availability Status Styles */
.availability-status {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    z-index: 2;
}

.availability-status.available {
    background-color: #28a745;
}

.availability-status.reserved {
    background-color: #ffc107;
    color: #000;
}

.availability-status.sold {
    background-color: #dc3545;
}

/* Key Features */
.key-features {
    padding: 80px 0;
    background: var(--background-light);
}

.key-features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 10px;
    line-height: 1.2;
}

.feature-item p {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.6;
}
