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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

section {
    width: 100%;
}
.navbar {
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid #222222;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;

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

.logo img {
    width: 380px;
    height: 105px;
    object-fit: contain;
    object-position: left center;
    display: block;
}
.logo:hover {
    opacity: 0.9;
}
.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    color: #ffffff;
    letter-spacing: 1.2px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #c9a227;
}
.hero {
    min-height: 85vh;
    padding: 100px 30px;

    display: flex;
    align-items: center;

   background:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("../images/hero.jpg") center/cover no-repeat;
}

.hero-content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.eyebrow {
    margin-bottom: 15px;

    color: #c9a227;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
}

.hero h1 {
    margin-bottom: 25px;

    font-size: 72px;
    line-height: 1.05;
}

.hero p:not(.eyebrow) {
    max-width: 600px;
    margin-bottom: 30px;

    color: #cccccc;
    font-size: 18px;
}

.btn {
    display: inline-block;
    padding: 15px 32px;

    background: #c9a227;
    color: #000000;

    font-weight: 700;
    letter-spacing: 1px;
    border: 1px solid #c9a227;
border-radius: 4px;

transition: all 0.3s ease;
}

.btn:hover {
    background: #ffffff;
}
.properties {
    padding: 120px 30px;
    background: #000000;
}

.section-heading {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-heading h2 {
    margin-bottom: 20px;
    font-size: 46px;
}

.section-heading p:not(.eyebrow) {
    color: #aaaaaa;
    font-size: 17px;
}
.about {
    padding: 120px 30px;
    background: #111111;
    border-top: 1px solid #222222;
    border-bottom: 1px solid #222222;
}
.about .section-heading {
    margin-bottom: 0;
}

.about .section-heading h2 {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.contact {
    padding: 120px 30px;
    background: #000000;
}

.contact .section-heading {
    max-width: 700px;
    margin-bottom: 0;
}
.contact .btn {
    margin-top: 25px;
}
@media (max-width: 768px) {

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        min-height: 75vh;
        padding: 70px 25px;
    }

    .hero h1 {
        font-size: 44px;
    }

    .properties,
    .about,
    .contact {
        padding: 70px 25px;
    }

    .section-heading h2 {
        font-size: 34px;
    }
}
@media (max-width: 768px) {

    .property-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

}
.property-grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.property-card {
    width: 100%;
    background: #181818;
    overflow: hidden;
}

.property-image {
    width: 100%;
    height: 300px;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-info {
    padding: 25px;
}

.property-card {
    background: #181818;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.property-card:hover {
    transform: translateY(-8px);
    border-color: #c9a227;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}
.property-image {
    height: 280px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}
.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.property-info {
    padding: 28px;
}

.property-info span {
    color: #c9a227;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.property-info h3 {
    margin: 10px 0;
    font-size: 24px;
    line-height: 1.2;
}

.property-info p {
    color: #999999;
    margin-bottom: 10px;
}

.property-info h4 {
    margin-top: 15px;
    margin-bottom: 5px;
    color: #c9a227;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}
.property-card {
    cursor: pointer;
}
.property-card:hover .property-image img {
    transform: scale(1.05);
}
.footer,
footer {
    padding: 40px 30px;
    background: #000000;
    border-top: 1px solid #222222;
    text-align: center;
}

.footer p,
footer p {
    color: #777777;
    font-size: 13px;
}
.btn-call {
    margin-left: 10px;
}
.card-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #c9a227;
    color: #000000;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.card-btn:hover {
    background: #ffffff;
    color: #000000;
}

@media (max-width: 768px) {

    .property-grid {
        grid-template-columns: 1fr;
    }

}
.property-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.property-detail-image {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.property-detail-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.property-detail-content {
    padding-top: 20px;
}
.property-detail-content h1 {
    margin: 15px 0;
    font-size: 48px;
    line-height: 1.1;
}

.property-detail-content h2 {
    margin-bottom: 25px;
    color: #c9a227;
    font-size: 28px;
}

.property-detail-content > p {
    color: #aaaaaa;
    font-size: 17px;
    line-height: 1.7;
}
.property-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 35px 0;
}

.property-features > div {
    padding: 20px 15px;
    background: #181818;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    text-align: center;
}

.property-features strong {
    display: block;
    color: #c9a227;
    font-size: 24px;
    margin-bottom: 8px;
}

.property-features span {
    color: #999999;
    font-size: 13px;
}
.property-detail-content h3 {
    margin-top: 35px;
    margin-bottom: 15px;
    font-size: 22px;
    color: #ffffff;
}

.property-detail-content h3 + p {
    color: #aaaaaa;
    line-height: 1.7;
}
.inquiry-box {
    margin-top: 45px;
    padding: 30px;
    background: #181818;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
}

.inquiry-box h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #ffffff;
}

.inquiry-box p {
    color: #999999;
    margin-bottom: 25px;
    line-height: 1.6;
}
.inquiry-box input,
.inquiry-box textarea {
    width: 100%;
    padding: 14px 15px;
    margin-bottom: 15px;
    background: #111111;
    color: #ffffff;
    border: 1px solid #333333;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    box-sizing: border-box;
}

.inquiry-box input:focus,
.inquiry-box textarea:focus {
    outline: none;
    border-color: #c9a227;
}

.inquiry-box textarea {
    resize: vertical;
}
.inquiry-box .btn {
    margin-top: 5px;
    margin-right: 10px;
}

.inquiry-box .secondary {
    background: transparent;
    color: #c9a227;
    border-color: #c9a227;
}

.inquiry-box .secondary:hover {
    background: #c9a227;
    color: #000000;
}
@media (max-width: 768px) {

    .property-detail {
        grid-template-columns: 1fr;
        padding: 60px 20px;
        gap: 35px;
    }

    .property-detail-image {
        width: 100%;
    }

    .property-detail-image img {
        width: 100%;
        height: 350px;
        object-fit: cover;
        display: block;
    }

}









