* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #ffffff;
    color: #111111;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
}

/* CONTAINER */

.container {
    width: 92%;
    max-width: 1400px;
    margin: auto;
}

/* HEADER */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 25px 0;
    transition: 0.3s;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.main-header.scrolled {
    background: #ffffff;
    padding: 18px 0;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
}

nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

nav a {
    color: #111111;
    text-decoration: none;
    position: relative;
    transition: 0.3s;
}

nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #c9a96e;
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}

/* HERO */

.hero {
    height: 100vh;
    position: relative;
    background:
        linear-gradient(rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.7)),
        url('/assets/images/hero.jpg') center/cover no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero h1 {
    font-size: 78px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
    color: #f5f5f5;
}

.hero p {
    font-size: 22px;
    color: #f5f5f5;
}

/* SEARCH FORM */

.search-form {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;

    background: rgba(255, 255, 255, 0.08);

    padding: 20px;

    border-radius: 18px;

    backdrop-filter: blur(12px);
}

.search-form input,
.search-form select {
    padding: 18px;
    min-width: 220px;
    border: none;
    background: #fff;
    border-radius: 10px;
    font-size: 15px;
}

.search-form button {
    padding: 18px 35px;
    border: none;
    background: #c9a96e;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.search-form button:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* SECTION SPACING */

section {
    padding: 100px 0;
}

/* PROPERTY GRID */

.property-grid {
    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(320px, 1fr));

    gap: 35px;
}

/* PROPERTY CARD */

.property-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    overflow: hidden;
    transition: 0.4s;
}

.property-card:hover {
    transform: translateY(-10px);
}

.property-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.property-card-content {
    padding: 25px;
}

.property-card h3 {
    margin-bottom: 10px;
    font-size: 24px;
}

.property-card p {
    color: #555555;
    margin-bottom: 12px;
}

.property-card a {
    display: inline-block;
    margin-top: 15px;
    color: #c9a96e;
    text-decoration: none;
    font-weight: bold;
}

/* PROPERTY PAGE */

.property-page {
    padding-top: 140px;
}

.property-banner {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
}

.property-page h1 {
    margin-top: 35px;
    font-size: 52px;
}

.property-gallery {
    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(250px, 1fr));

    gap: 20px;
    margin: 50px 0;
}

.property-gallery img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 14px;
    transition: 0.3s;
}

.property-gallery img:hover {
    transform: scale(1.03);
}

/* LEAD FORM */

.lead-form-section {
    margin-top: 70px;
    background: #f8f8f8;
    padding: 45px;
    border-radius: 20px;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.lead-form input,
.lead-form textarea {
    padding: 18px;
    border: 1px solid #dddddd;
    border-radius: 10px;
    background: #ffffff;
    color: #111;
}

.lead-form textarea {
    min-height: 160px;
}

.lead-form button {
    padding: 18px;
    border: none;
    background: #c9a96e;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
}

/* BLOG */

.blog-page {
    padding-top: 140px;
}

.blog-banner {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 40px;
}

.blog-content {
    font-size: 18px;
    line-height: 1.9;
    color: #e2e2e2;
}

/* FOOTER */

.main-footer {
    background: #f8f8f8;
    border-top: 1px solid #eeeeee;
    padding: 40px 0;
    text-align: center;
}

/* SEARCH RESULTS */

.search-results {
    padding-top: 140px;
}

.properties-page {
    padding-top: 140px;
}

.blog-page {
    padding: 120px 0 80px;
}

.blog-banner {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 40px;
}

.blog-content {
    line-height: 1.8;
    font-size: 18px;
}

.amenities-section {
    margin-top: 60px;
}

.amenities-grid {
    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.amenity-item {
    background: #ffffff;
    border: 1px solid #eeeeee;
    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 25px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 17px;
}

.amenity-item i {
    color: #c9a96e;
    font-size: 22px;
}

.property-cta-section {
    position: relative;
    margin-top: 70px;
    padding: 100px 40px;
    border-radius: 24px;
    overflow: hidden;

    background:
        linear-gradient(rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.7)),
        url('/assets/images/hero.jpg') center/cover no-repeat;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-content h2 {
    font-size: 46px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: #d6d6d6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 35px;
    flex-wrap: wrap;
}

.cta-buttons button {
    padding: 18px 35px;
    border: none;
    background: #c9a96e;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

.lead-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-box {
    width: 95%;
    max-width: 500px;
    background: #111;
    padding: 40px;
    border-radius: 20px;
    position: relative;
}

.close-popup {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 32px;
    cursor: pointer;
}

.lead-popup.active {
    display: flex;
}

.reviews-section {
    background: #fafafa;
}

.reviews-grid {
    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 35px;
    border-radius: 20px;
}

.review-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.designation {
    color: #c9a96e;
    margin: 10px 0;
}

.stars {
    margin: 15px 0;
    color: #c9a96e;
}

.review-text {
    color: #555555;
    line-height: 1.8;
}

.video-testimonials {
    padding: 100px 0;
}

.video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: block;
}

.video-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-overlay i {
    font-size: 70px;
    color: #fff;
}

.property-price {
    color: #c9a96e;
    font-weight: 700;
    font-size: 22px;
    margin-top: 10px;
}

.locations-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
    margin-top:50px;
}

.location-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    border:1px solid #eeeeee;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.05);

    transition:0.35s;
}

.location-card:hover{
    transform:translateY(-8px);
}

.location-card-image{
    width:100%;
    aspect-ratio:5/6;
    object-fit:cover;
}

.location-card-content{
    padding:25px;
}

.location-card-content h3{
    margin-bottom:12px;
    font-size:24px;
}

.location-card-content p{
    color:#555;
    line-height:1.7;
}

.location-card-content a {
    display: inline-block !important;
    margin-top: 18px !important;
    color: #c9a96e !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

.location-page {
    padding-top: 170px;
    padding-bottom: 40px;
}

.location-content {
    max-width: 900px;
}

.location-content h1 {
    font-size: 56px;
    margin-bottom: 25px;
}

.location-seo-description {
    font-size: 22px;
    line-height: 1.8;
    color: #666;
}

.location-description {
    margin-top: 35px;
    line-height: 1.9;
    color: #444;
    font-size: 17px;
}

.location-properties {
    padding-bottom: 100px;
}

.section-title {
    margin-bottom: 50px;
    font-size: 38px;
}

.location-card-content a:hover {
    opacity: 0.8;
}

/* RESPONSIVE */

@media(max-width:992px) {

    .hero h1 {
        font-size: 52px;
    }

    nav {
        gap: 20px;
    }
}

@media(max-width:768px) {

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 18px;
    }

    .property-banner {
        height: 350px;
    }

    .property-page h1 {
        font-size: 38px;
    }

    .search-form {
        flex-direction: column;
    }

    .search-form input,
    .search-form select,
    .search-form button {
        width: 100%;
    }

    nav {
        display: none;
    }
}