:root {
    --primary: rgb(12 43 100);
    --primary-dark: rgb(12 43 100);
    --secondary: #AD0909;
    --secondary-light: #ead7ae;
    --dark: #17221f;
    --muted: #747c78;
    --light: #f6f6f2;
    --border: #e7e8e4;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    color: var(--dark);
    background: #fff;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.serif {
    font-family: "Playfair Display", serif;
}


/* =========================================
           NAVBAR
        ========================================= */

.navbar {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 22px 0;
    transition: .3s ease;
}

.navbar.scrolled {
    position: fixed;
    background: rgb(12 43 100);
    padding: 14px 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .12);
}

.navbar-brand {
    color: #fff !important;
    font-size: 27px;
    font-weight: 700;
    letter-spacing: -.8px;
}

.navbar-brand span {
    color: #fff;
}

.navbar-brand small {
    display: block;
    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    color: rgba(255, 255, 255, .65);
    margin-top: -2px;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, .9);
    font-size: 14px;
    font-weight: 500;
    margin: 0 8px;
}

.navbar .nav-link:hover {
    color: var(--secondary-light);
}

.nav-contact {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .45);
    padding: 10px 18px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

.nav-contact:hover {
    background: #fff;
    color: var(--primary);
}


/* =========================================
           HERO
        ========================================= */

.hero {
    min-height: 720px;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient( 90deg, rgba(9, 32, 27, .90), rgba(9, 32, 27, .58), rgba(9, 32, 27, .30)), url("https://images.unsplash.com/photo-1669003152631-c953ac9f3ed3?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTJ8fHJlYWxlc3RhdGUlMjBsYW5kfGVufDB8fDB8fHww") center/cover no-repeat;
}

.hero-content {
    max-width: 800px;
    padding-top: 70px;
}

.hero-label {
    color: var(--secondary-light);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 20px;
}

.hero-label i {
    color: var(--secondary);
    margin-right: 6px;
}

.hero h1 {
    color: #fff;
    font-size: clamp(45px, 6vw, 75px);
    line-height: 1.04;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.hero h1 span {
    color: var(--secondary-light);
}

.hero-description {
    color: rgba(255, 255, 255, .82);
    font-size: 18px;
    line-height: 1.8;
    max-width: 650px;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-gold {
    background: var(--secondary);
    border: 1px solid var(--secondary);
    color: #fff;
    padding: 13px 23px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}

.btn-gold:hover {
    background: #b48f4e;
    color: #fff;
}

.btn-transparent {
    border: 1px solid rgba(255, 255, 255, .6);
    color: #fff;
    padding: 13px 23px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}

.btn-transparent:hover {
    background: #fff;
    color: var(--primary);
}


/* Hero bottom info */

.hero-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgb(12 43 100 / 64%);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.hero-info-item {
    padding: 20px 25px;
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.hero-info-item:last-child {
    border-right: 0;
}

.hero-info-item strong {
    display: block;
    font-size: 20px;
}

.hero-info-item span {
    color: rgba(255, 255, 255, .6);
    font-size: 11px;
}


/* =========================================
           GENERAL
        ========================================= */

.section {
    padding: 100px 0;
}

.section-light {
    background: var(--light);
}

.eyebrow {
    color: var(--secondary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 13px;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: 45px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-text {
    color: var(--muted);
    line-height: 1.8;
    font-size: 14px;
}


/* =========================================
           LAND CARDS
        ========================================= */

.land-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 7px;
    overflow: hidden;
    height: 100%;
    transition: .3s ease;
}

.land-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(20, 50, 42, .10);
}

.land-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.land-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.land-card:hover .land-image img {
    transform: scale(1.06);
}

.land-badge {
    position: absolute;
    left: 16px;
    top: 16px;
    background: var(--primary);
    color: #fff;
    padding: 7px 11px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.land-price {
    position: absolute;
    right: 16px;
    bottom: 16px;
    background: #fff;
    color: var(--primary);
    padding: 8px 13px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
}

.land-body {
    padding: 23px;
}

.land-body h3 {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    margin-bottom: 8px;
}

.land-location {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 18px;
}

.land-location i {
    color: var(--secondary);
}

.land-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.land-detail {
    font-size: 12px;
    color: #666;
    padding-right: 12px;
    border-right: 1px solid var(--border);
}

.land-detail:last-child {
    border-right: 0;
}

.land-detail i {
    color: var(--primary);
    margin-right: 4px;
}

.land-button {
    display: block;
    width: 100%;
    margin-top: 17px;
    padding: 11px;
    text-align: center;
    background: var(--primary);
    color: #fff;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    border: none;
}

.land-button:hover {
    background: var(--primary-dark);
    color: #fff;
}


/* =========================================
           LOCATION CARDS
        ========================================= */

.location-card {
    height: 300px;
    border-radius: 7px;
    overflow: hidden;
    position: relative;
}

.location-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.location-card:hover img {
    transform: scale(1.07);
}

.location-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( transparent 30%, rgba(0, 0, 0, .75));
}

.location-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 25px;
    color: #fff;
}

.location-content h3 {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    margin-bottom: 4px;
}

.location-content p {
    margin: 0;
    color: rgba(255, 255, 255, .75);
    font-size: 12px;
}


/* =========================================
           ABOUT
        ========================================= */

.about-image {
    height: 560px;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px;
}

.about-experience {
    position: absolute;
    right: -25px;
    bottom: 30px;
    background: var(--primary);
    color: #fff;
    padding: 25px 30px;
    border-radius: 5px;
    text-align: center;
}

.about-experience strong {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 38px;
    color: var(--secondary-light);
}

.about-experience span {
    font-size: 11px;
    color: rgba(255, 255, 255, .7);
}

.about-list {
    padding: 0;
    margin: 30px 0;
    list-style: none;
}

.about-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    color: #555;
    font-size: 14px;
}

.about-list i {
    color: var(--secondary);
    font-size: 18px;
}


/* =========================================
           SERVICES
        ========================================= */

.service-card {
    padding: 35px 30px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    height: 100%;
    transition: .3s;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #d4c49f;
}

.service-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffe9eb;
    color: var(--primary);
    border-radius: 5px;
    font-size: 24px;
    margin-bottom: 22px;
}

.service-card h4 {
    font-size: 19px;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 13px;
    margin: 0;
}


/* =========================================
           STATS
        ========================================= */

.stats {
    background: var(--primary);
    padding: 65px 0;
}

.stat {
    text-align: center;
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, .13);
}

.stat:last-child {
    border-right: 0;
}

.stat strong {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 42px;
    color: var(--secondary-light);
}

.stat span {
    color: rgba(255, 255, 255, .58);
    font-size: 12px;
}


/* =========================================
           TESTIMONIALS
        ========================================= */

.testimonial {
    padding: 35px;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 6px;
    height: 100%;
}

.testimonial .quote {
    color: var(--secondary);
    font-size: 30px;
}

.testimonial p {
    color: #626a66;
    line-height: 1.8;
    font-size: 14px;
    margin: 10px 0 25px;
}

.client {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
}

.client strong {
    display: block;
    font-size: 13px;
}

.client span {
    color: #999;
    font-size: 11px;
}

.page-hero {
    min-height: 510px;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient( 90deg, rgba(9, 32, 27, .90), rgba(9, 32, 27, .62), rgba(9, 32, 27, .35)), url("https://images.unsplash.com/photo-1600270074098-f51a52d71a37?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8cmVhbGVzdGF0ZSUyMGxhbmR8ZW58MHx8MHx8fDA%3D") center/cover no-repeat;
}

.page-hero-content {
    max-width: 760px;
    padding-top: 60px;
}

.hero-label {
    color: var(--secondary-light);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 18px;
}

.page-hero h1 {
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: clamp(45px, 6vw, 68px);
    line-height: 1.05;
    margin-bottom: 22px;
}

.page-hero p {
    color: rgba(255, 255, 255, .78);
    max-width: 650px;
    font-size: 17px;
    line-height: 1.8;
    margin: 0;
}

.breadcrumb-custom {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
}

.breadcrumb-custom a,
.breadcrumb-custom span {
    font-size: 12px;
    color: rgba(255, 255, 255, .7);
}

.breadcrumb-custom .current {
    color: var(--secondary-light);
}


/* =====================================================
           GENERAL
        ===================================================== */

.section {
    padding: 100px 0;
}

.section-light {
    background: var(--light);
}

.eyebrow {
    color: var(--secondary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 13px;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: 45px;
    line-height: 1.15;
    margin-bottom: 18px;
}

.section-text {
    color: var(--muted);
    line-height: 1.85;
    font-size: 14px;
}


/* =====================================================
           ABOUT INTRO
        ===================================================== */

.about-image {
    height: 580px;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px;
}

.about-image-small {
    position: absolute;
    width: 220px;
    height: 220px;
    right: -35px;
    bottom: 35px;
    border: 8px solid #fff;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
}

.about-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.experience-box {
    position: absolute;
    left: -30px;
    top: 35px;
    background: var(--primary);
    color: #fff;
    padding: 23px 28px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .18);
}

.experience-box strong {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 36px;
    color: var(--secondary-light);
}

.experience-box span {
    display: block;
    font-size: 9px;
    letter-spacing: 1.3px;
    color: rgba(255, 255, 255, .65);
}


/* =====================================================
           CHECK LIST
        ===================================================== */

.check-list {
    padding: 0;
    margin: 28px 0 30px;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #555;
    font-size: 14px;
}

.check-list i {
    color: var(--secondary);
    font-size: 18px;
    margin-top: 1px;
}


/* =====================================================
           STATS
        ===================================================== */

.stats {
    background: var(--primary);
    padding: 65px 0;
}

.stat {
    text-align: center;
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, .13);
}

.stat:last-child {
    border-right: 0;
}

.stat strong {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 42px;
    color: var(--secondary-light);
}

.stat span {
    color: rgba(255, 255, 255, .58);
    font-size: 12px;
}


/* =====================================================
           MISSION / VISION
        ===================================================== */

.value-card {
    background: #fff;
    border: 1px solid var(--border);
    padding: 35px 30px;
    height: 100%;
    border-radius: 6px;
    transition: .3s;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(20, 50, 42, .08);
}

.value-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff2f3;
    color: var(--primary);
    border-radius: 5px;
    font-size: 23px;
    margin-bottom: 22px;
}

.value-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    margin-bottom: 13px;
}

.value-card p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 13px;
    margin: 0;
}


/* =====================================================
           WHY US
        ===================================================== */

.why-image {
    height: 530px;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px;
}

.feature {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f1ede3;
    color: var(--primary);
    border-radius: 4px;
    font-size: 20px;
}

.feature h4 {
    font-size: 16px;
    margin: 0 0 7px;
}

.feature p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}


/* =====================================================
           PROCESS
        ===================================================== */

.process-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--secondary);
    border-radius: 50%;
    color: var(--primary);
    font-family: "Playfair Display", serif;
    font-size: 22px;
    margin-bottom: 22px;
}

.process-card {
    position: relative;
    height: 100%;
}

.process-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 30px;
    left: 75px;
    width: calc(100% - 50px);
    border-top: 1px dashed #d6d6d0;
}

.process-card h4 {
    font-size: 17px;
    margin-bottom: 10px;
}

.process-card p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
    max-width: 230px;
}


/* =====================================================
           TEAM
        ===================================================== */

.team-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    height: 100%;
}

.team-image {
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    padding: 23px;
}

.team-info h4 {
    font-family: "Playfair Display", serif;
    font-size: 21px;
    margin-bottom: 4px;
}

.team-info span {
    color: var(--secondary);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-info p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
    margin-top: 12px;
    margin-bottom: 0;
}


/* =====================================================
           RESPONSIVE
        ===================================================== */

@media(max-width: 991px) {
    .navbar {
        background: rgba(15, 48, 40, .97);
    }
    .navbar-collapse {
        padding: 20px 0;
    }
    .stat {
        border-right: 0;
        margin-bottom: 25px;
    }
    .about-image-small {
        right: 15px;
    }
    .experience-box {
        left: 15px;
    }
    .process-card:not(:last-child)::after {
        display: none;
    }
}

@media(max-width: 767px) {
    .section {
        padding: 70px 0;
    }
    .section-title {
        font-size: 36px;
    }
    .page-hero {
        min-height: 500px;
    }
    .page-hero h1 {
        font-size: 45px;
    }
    .page-hero p {
        font-size: 15px;
    }
    .about-image {
        height: 420px;
        margin-bottom: 40px;
    }
    .about-image-small {
        width: 160px;
        height: 160px;
    }
    .experience-box {
        padding: 17px 20px;
    }
    .experience-box strong {
        font-size: 29px;
    }
    .why-image {
        height: 380px;
        margin-bottom: 40px;
    }
    .contact-cta h2 {
        font-size: 37px;
    }
}


/* =========================================
           CONTACT CTA
        ========================================= */

.contact-cta {
    background: linear-gradient( 90deg, rgba(15, 48, 40, .94), rgba(15, 48, 40, .78)), url("https://images.unsplash.com/photo-1564013799919-ab600027ffc6?auto=format&fit=crop&w=2000&q=80") center/cover;
    padding: 95px 0;
}

.contact-cta h2 {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    color: #fff;
}

.contact-cta p {
    color: rgba(255, 255, 255, .72);
    max-width: 650px;
    margin: 15px auto 30px;
}

.phone-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
}

.phone-large i {
    color: var(--secondary-light);
}


/* =========================================
           FOOTER
        ========================================= */

footer {
    background: #060f26;
    color: #fff;
    padding-top: 70px;
}

.footer-brand {
    font-size: 26px;
    font-weight: 700;
}

.footer-brand span {
    color: #fff;
}

footer p {
    color: rgba(255, 255, 255, .55);
    font-size: 13px;
    line-height: 1.8;
}

footer h5 {
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 11px;
    color: rgba(255, 255, 255, .55);
    font-size: 13px;
}

.footer-links a {
    color: rgba(255, 255, 255, .55);
    font-size: 13px;
}

.footer-links a:hover {
    color: #fff;
}

.social {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 5px;
}

.social:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 20px 0;
    margin-top: 55px;
    color: rgba(255, 255, 255, .4);
    font-size: 11px;
}


/* =========================================
           MODAL
        ========================================= */

.modal-content {
    border: 0;
    border-radius: 8px;
    overflow: hidden;
}

.contact-modal-header {
    background: var(--primary);
    color: #fff;
    padding: 28px;
}

.contact-modal-header h4 {
    font-family: "Playfair Display", serif;
    margin: 0 0 5px;
}

.contact-modal-header p {
    margin: 0;
    color: rgba(255, 255, 255, .65);
    font-size: 12px;
}

.modal-body {
    padding: 30px;
}

.modal-land-title {
    color: var(--primary);
    font-family: "Playfair Display", serif;
    font-size: 23px;
    margin-bottom: 5px;
}

.modal-land-location {
    color: #777;
    font-size: 13px;
    margin-bottom: 25px;
}

.contact-box {
    padding: 18px;
    background: var(--light);
    border-radius: 5px;
    margin-bottom: 15px;
}

.contact-box i {
    font-size: 20px;
    color: var(--secondary);
    margin-right: 10px;
}

.contact-box strong {
    color: var(--primary);
}

.call-button {
    display: block;
    width: 100%;
    background: var(--primary);
    color: #fff;
    padding: 14px;
    text-align: center;
    border-radius: 4px;
    font-weight: 600;
}

.call-button:hover {
    background: var(--primary-dark);
    color: #fff;
}


/* =========================================
           RESPONSIVE
        ========================================= */

@media(max-width: 991px) {
    .navbar {
        background: rgba(15, 48, 40, .97);
    }
    .navbar-collapse {
        padding: 20px 0;
    }
    .hero {
        min-height: 820px;
    }
    .hero-info {
        display: none;
    }
    .about-experience {
        right: 20px;
    }
    .stat {
        border-right: 0;
        margin-bottom: 25px;
    }
}

@media(max-width: 767px) {
    .section {
        padding: 70px 0;
    }
    .section-title {
        font-size: 36px;
    }
    .hero {
        min-height: 850px;
    }
    .hero h1 {
        font-size: 45px;
    }
    .hero-description {
        font-size: 16px;
    }
    .about-image {
        height: 400px;
        margin-bottom: 50px;
    }
    .about-experience {
        right: 15px;
        bottom: 15px;
    }
    .contact-cta h2 {
        font-size: 37px;
    }
}

@media (max-width: 767px) {
    html,
    body {
        overflow-x: hidden !important;
        width: 100%;
    }
}