/* =========================================
   GENERAL
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: #222;
    background: #fff;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1240px;
}


/* =========================================
   HEADER
========================================= */

.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.main-header .navbar {
    min-height: 85px;
}


/* =========================================
   LOGO
========================================= */

.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

/* =========================================
   LOGO
========================================= */

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.site-logo {
    width: 150px;
    height: auto;
    display: block;
}


/* =========================================
   NAVIGATION
========================================= */

.navbar-nav {
    gap: 8px;
}

.navbar-nav .nav-link {
    color: #222;
    font-size: 15px;
    font-weight: 500;
    padding: 30px 17px !important;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #b18a4a;
}


/* =========================================
   DROPDOWN
========================================= */

.dropdown-menu {
    border: none;
    border-radius: 0;
    padding: 10px 0;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.dropdown-item {
    padding: 11px 20px;
    font-size: 14px;
    color: #333;
    transition: 0.3s;
}

.dropdown-item:hover {
    background: #f8f5ef;
    color: #b18a4a;
}


/* =========================================
   ADMIN BUTTON
========================================= */

.admin-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: #1d2a24;
    color: #fff;

    padding: 12px 20px;

    font-size: 14px;
    font-weight: 600;

    border-radius: 3px;

    transition: 0.3s;
}

.admin-btn:hover {
    background: #b18a4a;
    color: #fff;
}

.admin-btn i {
    font-size: 15px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

    .main-header {
        position: relative;
    }

    .main-header .navbar {
        min-height: 75px;
    }

    .navbar-nav {
        gap: 0;
        padding: 15px 0;
    }

    .navbar-nav .nav-link {
        padding: 12px 0 !important;
    }

    .admin-btn {
        margin-top: 10px;
        display: inline-flex;
    }

}

/* =========================================
   FOOTER
========================================= */

.main-footer {
    background: #17221d;
    color: #fff;
    padding: 70px 0 0;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 25px;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.footer-text {
    color: #b9c0bc;
    font-size: 14px;
    line-height: 1.8;
    max-width: 350px;
}

.main-footer h5 {
    font-size: 17px;
    margin-bottom: 20px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b9c0bc;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #c5a46d;
}

.footer-contact li {
    color: #b9c0bc;
    font-size: 14px;
    display: flex;
    gap: 10px;
}

.footer-contact i {
    color: #c5a46d;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid #4b5650;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #b18a4a;
    border-color: #b18a4a;
}

.footer-bottom {
    border-top: 1px solid #344039;
    margin-top: 50px;
    padding: 20px 0;

    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #8f9993;
    font-size: 13px;
}

.footer-bottom a {
    color: #c5a46d;
    font-weight: 600;
    transition: 0.3s;
}

.footer-bottom a:hover {
    color: #fff;
}

.footer-logo img {
    width: 180px;
    height: auto;
    display: block;
}

@media (max-width: 767px) {

    .footer-bottom {
        flex-direction: column;
    }

}


/* index page */
/* =========================================
   HERO
========================================= */

.hero-section {
    position: relative;
}

.hero-image {
    width: 100%;
    height: 720px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.68),
        rgba(0,0,0,0.25),
        rgba(0,0,0,0.05)
    );
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    color: #fff;
}

.hero-small-title,
.section-label {
    color: #b18a4a;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p:not(.hero-small-title) {
    font-size: 17px;
    color: #eee;
    max-width: 550px;
    margin-bottom: 30px;
}

.hero-btn,
.dark-btn,
.outline-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 25px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.hero-btn {
    background: #b18a4a;
    color: #fff;
}

.hero-btn:hover {
    background: #fff;
    color: #222;
}

.carousel-indicators {
    z-index: 5;
}

.carousel-indicators button {
    width: 35px;
    height: 3px;
}


/* =========================================
   PROPERTY SEARCH
========================================= */

.property-search-section {
    padding: 30px 0;
    background: #f7f5f1;
}

.property-search-form {
    background: #ffffff;
    padding: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 20px;
    align-items: end;
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
}

.search-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.search-input {
    position: relative;
}

.search-input i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #b18a4a;
    z-index: 2;
}

.search-input select {
    width: 100%;
    height: 52px;
    padding: 0 15px 0 45px;
    border: 1px solid #ddd;
    background: #fff;
    outline: none;
    font-size: 14px;
}

.search-input select:focus {
    border-color: #b18a4a;
}

.search-button button {
    height: 52px;
    padding: 0 28px;
    border: none;
    background: #1d2a24;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.search-button button:hover {
    background: #b18a4a;
}

@media(max-width:767px) {

    .property-search-form {
        grid-template-columns: 1fr;
    }

    .search-button button {
        width: 100%;
    }

}


/* =========================================
   COMMON SECTIONS
========================================= */

.welcome-section,
.projects-section,
.director-section,
.why-section,
.testimonial-section {
    padding: 110px 0;
}

.welcome-section {
    padding-top: 150px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 45px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.section-title span {
    color: #b18a4a;
}

.section-text {
    color: #666;
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 15px;
}

.outline-btn {
    border: 1px solid #1d2a24;
    color: #1d2a24;
    margin-top: 15px;
}

.outline-btn:hover {
    background: #1d2a24;
    color: #fff;
}

.welcome-image {
    position: relative;
}

.welcome-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.experience-box {
    position: absolute;
    bottom: 25px;
    left: -25px;
    background: #b18a4a;
    color: #fff;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.experience-box strong {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
}

.experience-box span {
    font-size: 13px;
}



/* =========================================
   FEATURED PROPERTIES
========================================= */

.featured-properties {
    background: #f7f5f1;
    padding: 110px 0 0;
}


/* =========================================
   HEADING
========================================= */

.featured-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.featured-heading .section-label {
    margin-bottom: 12px;
}

.featured-heading .section-title {
    margin-bottom: 18px;
}

.featured-heading > p:last-child {
    color: #777;
    font-size: 15px;
    line-height: 1.8;
    margin: 0 auto;
}


/* =========================================
   PROPERTY GRID
========================================= */

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
}


/* =========================================
   PROPERTY
========================================= */

.featured-property {
    position: relative;
    height: 540px;
    overflow: hidden;
    background: #1d2a24;
}


.featured-property img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    transition:
        transform 0.7s ease,
        filter 0.7s ease;
}


/* =========================================
   HOVER IMAGE
========================================= */

.featured-property:hover img {
    transform: scale(1.07);
}


/* =========================================
   OVERLAY
========================================= */

.featured-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 25px;

    color: #fff;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.30) 0%,
            rgba(0,0,0,0.05) 35%,
            rgba(0,0,0,0.78) 100%
        );
}


/* =========================================
   STATUS
========================================= */

.property-status {
    align-self: flex-start;

    background: #b18a4a;
    color: #fff;

    padding: 7px 13px;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1.5px;
}


/* =========================================
   PROPERTY INFO
========================================= */

.property-info {
    transform: translateY(5px);
    transition: transform 0.4s ease;
}


.featured-property:hover .property-info {
    transform: translateY(0);
}


/* =========================================
   LOCATION
========================================= */

.property-location {
    color: #d8c29c;

    font-size: 12px;
    font-weight: 500;

    margin-bottom: 8px;
}


.property-location i {
    margin-right: 5px;
}


/* =========================================
   PROPERTY TITLE
========================================= */

.property-info h3 {
    font-family: 'Playfair Display', serif;

    font-size: 26px;
    font-weight: 600;

    line-height: 1.2;

    margin-bottom: 18px;

    color: #fff;
}


/* =========================================
   PROPERTY LINK
========================================= */

.property-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: #fff;

    font-size: 12px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 1px;

    padding-bottom: 6px;

    border-bottom: 1px solid rgba(255,255,255,0.6);

    transition: 0.3s ease;
}


.property-link i {
    font-size: 14px;

    transition: transform 0.3s ease;
}


.property-link:hover {
    color: #d8b979;
    border-color: #d8b979;
}


.property-link:hover i {
    transform: translate(3px, -3px);
}


/* =========================================
   VIEW ALL BUTTON
========================================= */

.featured-button {
    text-align: center;
    padding: 55px 20px 0;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199px) {

    .featured-property {
        height: 500px;
    }

    .property-info h3 {
        font-size: 23px;
    }

}


@media (max-width: 991px) {

    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-property {
        height: 480px;
    }

}


@media (max-width: 767px) {

    .featured-properties {
        padding-top: 75px;
    }

    .featured-heading {
        margin-bottom: 40px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .featured-property {
        height: 460px;
    }

    .property-info h3 {
        font-size: 25px;
    }

    .featured-button {
        padding-top: 40px;
    }

}




/* =========================================
   DIRECTOR
========================================= */

.director-section {
    background: #fff;
}

.quote-mark {
    font-family: Georgia, serif;
    color: #b18a4a;
    font-size: 70px;
    line-height: 40px;
}

.director-message {
    color: #666;
    line-height: 1.9;
}

.director-name {
    font-family: 'Playfair Display', serif;
    margin-top: 25px;
}

.director-designation {
    color: #b18a4a;
    font-size: 13px;
}

.director-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}


/* =========================================
   BUILD ON TRUST
========================================= */

.trust-section {
    padding: 110px 0;
    background: #f7f5f1;
}


/* =========================================
   TRUST HEADING
========================================= */

.trust-heading {
    max-width: 700px;
    margin: 0 auto 60px;
}

.trust-heading .section-label {
    margin-bottom: 12px;
}

.trust-heading .section-title {
    margin-bottom: 18px;
}

.trust-heading > p:last-child {
    max-width: 580px;
    margin: auto;

    color: #777;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   TRUST ROW
========================================= */

.trust-row {
    background: #fff;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.07);
}


/* =========================================
   TRUST CARD
========================================= */

.trust-card {
    position: relative;

    min-height: 320px;

    padding: 45px 32px;

    background: #fff;

    border-right: 1px solid #ebe6dd;

    text-align: center;

    overflow: hidden;

    transition:
        background 0.35s ease,
        transform 0.35s ease;
}


.trust-card:last-child {
    border-right: none;
}


/* =========================================
   NUMBER
========================================= */

.trust-number {
    position: absolute;

    top: 15px;
    right: 20px;

    font-family: 'Playfair Display', serif;

    font-size: 50px;

    color: #f1ece3;

    line-height: 1;
}


/* =========================================
   ICON
========================================= */

.trust-icon {
    width: 72px;
    height: 72px;

    margin: 10px auto 25px;

    border: 1px solid #d8c29c;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #b18a4a;

    font-size: 28px;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease;
}


/* =========================================
   TITLE
========================================= */

.trust-card h4 {
    font-family: 'Playfair Display', serif;

    font-size: 21px;

    color: #1d2a24;

    margin-bottom: 14px;
}


/* =========================================
   TEXT
========================================= */

.trust-card p {
    color: #777;

    font-size: 14px;

    line-height: 1.8;

    margin: 0;
}


/* =========================================
   HOVER
========================================= */

.trust-card:hover {
    background: #1d2a24;

    transform: translateY(-8px);

    z-index: 2;
}


.trust-card:hover .trust-number {
    color: rgba(255,255,255,0.06);
}


.trust-card:hover .trust-icon {
    background: #b18a4a;

    color: #fff;

    border-color: #b18a4a;
}


.trust-card:hover h4 {
    color: #fff;
}


.trust-card:hover p {
    color: rgba(255,255,255,0.70);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

    .trust-card {
        border-bottom: 1px solid #ebe6dd;
    }

    .trust-card:nth-child(2n) {
        border-right: none;
    }

}


@media (max-width: 767px) {

    .trust-section {
        padding: 75px 0;
    }

    .trust-heading {
        margin-bottom: 40px;
    }

    .trust-card {
        min-height: 290px;
        border-right: none;
    }

}

/* =========================================
   TESTIMONIAL SECTION
========================================= */

.testimonial-section {

    position: relative;

    padding: 100px 0;

    background: #f8f7f4;

    overflow: hidden;
}


/* =========================================
   SECTION HEADING
========================================= */

.testimonial-section .section-heading {

    max-width: 750px;

    margin-left: auto;
    margin-right: auto;

}


.testimonial-heading-text {

    max-width: 600px;

    margin: 15px auto 0;

    color: #777;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================
   TESTIMONIAL SLIDER
========================================= */

#testimonialSlider {

    position: relative;

    width: 100%;

    max-width: 900px;

    margin: 0 auto;

    padding: 0 70px;
}


/* =========================================
   CAROUSEL ITEM
========================================= */

#testimonialSlider .carousel-item {

    padding: 10px 0 20px;
}


/* =========================================
   TESTIMONIAL CARD
========================================= */

.testimonial-card {

    position: relative;

    width: 100%;

    max-width: 720px;

    min-height: 280px;

    margin: 0 auto;

    padding: 50px 55px;

    background: #ffffff;

    border: 1px solid #eee8dc;

    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);

    display: flex;

    align-items: flex-start;

    gap: 30px;

}


/* =========================================
   CLIENT IMAGE AREA
========================================= */

.testimonial-client {

    flex: 0 0 75px;

    width: 75px;

}


/* =========================================
   CLIENT IMAGE
   SMALL TOP LEFT
========================================= */

.testimonial-image {

    width: 70px;

    height: 70px;

    border-radius: 50%;

    overflow: hidden;

    border: 3px solid #f0e5d2;

    background: #f5f2ec;

    display: flex;

    align-items: center;

    justify-content: center;

}


/* =========================================
   CLIENT IMAGE IMG
========================================= */

.testimonial-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

}


/* =========================================
   DEFAULT IMAGE
========================================= */

.testimonial-no-image {

    color: #b18a4a;

    font-size: 30px;

}


/* =========================================
   TESTIMONIAL CONTENT
========================================= */

.testimonial-content {

    flex: 1;

    min-width: 0;

}


/* =========================================
   STARS
========================================= */

.testimonial-content .stars {

    display: flex;

    align-items: center;

    gap: 3px;

    margin-bottom: 18px;

}


/* =========================================
   STAR
========================================= */

.testimonial-content .star {

    font-size: 18px;

    line-height: 1;

    color: #d8d3ca;

}


/* =========================================
   ACTIVE STAR
========================================= */

.testimonial-content .star.active {

    color: #b18a4a;

}


/* =========================================
   TESTIMONIAL MESSAGE
========================================= */

.testimonial-message {

    max-width: 560px;

    margin: 0;

    color: #666;

    font-size: 15px;

    line-height: 1.9;

    font-style: italic;

}


/* =========================================
   QUOTE DESIGN
========================================= */

.testimonial-card::before {

    content: "“";

    position: absolute;

    top: 20px;

    right: 35px;

    font-family: Georgia, serif;

    font-size: 75px;

    line-height: 1;

    color: #eee6d9;

    z-index: 0;

}


/* =========================================
   KEEP CONTENT ABOVE QUOTE
========================================= */

.testimonial-content,
.testimonial-client {

    position: relative;

    z-index: 2;

}


/* =========================================
   CLIENT NAME
========================================= */

.testimonial-name {

    font-family: 'Playfair Display', serif;

    font-size: 20px;

    font-weight: 600;

    color: #1d2a24;

    margin-top: 25px;

    margin-bottom: 5px;

}


/* =========================================
   CLIENT DESIGNATION
========================================= */

.testimonial-designation {

    display: block;

    color: #b18a4a;

    font-size: 12px;

    letter-spacing: 0.5px;

}


/* =========================================
   NAVIGATION ARROWS
========================================= */

.testimonial-arrow {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 50px;

    height: 50px;

    border: 1px solid #d8c29c;

    background: #fff;

    color: #1d2a24;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;

    z-index: 10;

    cursor: pointer;
}


/* =========================================
   LEFT ARROW
========================================= */

.testimonial-prev {

    left: 0;
}


/* =========================================
   RIGHT ARROW
========================================= */

.testimonial-next {

    right: 0;
}


/* =========================================
   ARROW ICON
========================================= */

.testimonial-arrow i {

    font-size: 18px;

    transition: transform 0.3s ease;

}


/* =========================================
   ARROW HOVER
========================================= */

.testimonial-arrow:hover {

    background: #1d2a24;

    color: #fff;

    border-color: #1d2a24;

}


/* =========================================
   LEFT ARROW HOVER
========================================= */

.testimonial-prev:hover {

    transform:
        translateY(-50%)
        translateX(-3px);

}


/* =========================================
   RIGHT ARROW HOVER
========================================= */

.testimonial-next:hover {

    transform:
        translateY(-50%)
        translateX(3px);

}


/* =========================================
   EMPTY TESTIMONIAL
========================================= */

.testimonial-empty {

    padding: 60px 20px;

    color: #777;

}


.testimonial-empty-icon {

    width: 65px;

    height: 65px;

    margin: 0 auto 15px;

    border-radius: 50%;

    background: #fff;

    border: 1px solid #eee2d0;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #b18a4a;

    font-size: 25px;

}


.testimonial-empty p {

    margin: 0;

    font-size: 14px;

}


/* =========================================
   CAROUSEL TRANSITION
========================================= */

#testimonialSlider .carousel-item {

    transition:
        transform 0.7s ease-in-out,
        opacity 0.7s ease-in-out;

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {


    .testimonial-section {

        padding: 75px 0;

    }


    /* Slider */

    #testimonialSlider {

        padding: 0 45px;

    }


    /* Card */

    .testimonial-card {

        min-height: auto;

        padding: 35px 25px;

        gap: 18px;

    }


    /* Image */

    .testimonial-client {

        flex: 0 0 55px;

        width: 55px;

    }


    .testimonial-image {

        width: 55px;

        height: 55px;

        border-width: 2px;

    }


    .testimonial-no-image {

        font-size: 23px;

    }


    /* Stars */

    .testimonial-content .stars {

        margin-bottom: 13px;

    }


    .testimonial-content .star {

        font-size: 15px;

    }


    /* Message */

    .testimonial-message {

        font-size: 14px;

        line-height: 1.8;

    }


    /* Name */

    .testimonial-name {

        font-size: 18px;

        margin-top: 20px;

    }


    /* Designation */

    .testimonial-designation {

        font-size: 11px;

    }


    /* Quote */

    .testimonial-card::before {

        top: 12px;

        right: 20px;

        font-size: 55px;

    }


    /* Arrows */

    .testimonial-arrow {

        width: 38px;

        height: 38px;

    }


    .testimonial-arrow i {

        font-size: 15px;

    }


    .testimonial-prev {

        left: 0;

    }


    .testimonial-next {

        right: 0;

    }

}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 480px) {


    #testimonialSlider {

        padding: 0 35px;

    }


    .testimonial-card {

        padding: 30px 18px;

        gap: 14px;

    }


    .testimonial-client {

        flex: 0 0 48px;

        width: 48px;

    }


    .testimonial-image {

        width: 48px;

        height: 48px;

    }


    .testimonial-content .star {

        font-size: 14px;

    }


    .testimonial-message {

        font-size: 13px;

    }


    .testimonial-name {

        font-size: 17px;

    }


    .testimonial-arrow {

        width: 34px;

        height: 34px;

    }

}



/* =========================================
   CTA
========================================= */

.cta-section {
    padding: 100px 0;
    background:
        linear-gradient(
            rgba(23,34,29,0.92),
            rgba(23,34,29,0.92)
        ),
        url("../images/common/cta.jpg")
        center/cover no-repeat;
}

.cta-content {
    color: #fff;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    margin-bottom: 30px;
}

.cta-content h2 span {
    color: #c5a46d;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .hero-image {
        height: 650px;
    }

    .property-search-wrapper {
        position: relative;
        bottom: auto;
        padding: 20px 0;
        background: #f7f5f1;
    }

    .property-search {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .search-item {
        border-right: none;
        border-bottom: 1px solid #ddd;
    }

    .search-btn {
        justify-content: center;
    }

    .welcome-section {
        padding-top: 100px;
    }

    .section-title {
        font-size: 38px;
    }

}

@media (max-width: 767px) {

    .hero-image {
        height: 600px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p:not(.hero-small-title) {
        font-size: 14px;
    }

    .welcome-section,
    .projects-section,
    .director-section,
    .why-section,
    .testimonial-section {
        padding: 75px 0;
    }

    .welcome-image img,
    .director-image img {
        height: 400px;
    }

    .experience-box {
        left: 10px;
    }

    .cta-content h2 {
        font-size: 35px;
    }

}


/* =========================================
   FIXED SIDE ENQUIRY BUTTON
========================================= */

.side-enquiry-btn {
    position: fixed;

    right: 0;
    bottom: 35px;

    width: 135px;
    height: 58px;

    background: #1d2a24;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    text-decoration: none;

    border-radius: 8px 0 0 8px;

    border: 1px solid rgba(177, 138, 74, 0.45);
    border-right: none;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.20);

    z-index: 99999;

    transition:
        width 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}


/* =========================================
   ENQUIRY ICON
========================================= */

.side-enquiry-btn .enquiry-icon {

    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #d8c29c;

    border-radius: 50%;

    color: #d8c29c;

    font-size: 16px;

    flex-shrink: 0;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


/* =========================================
   ENQUIRY TEXT
========================================= */

.side-enquiry-btn .enquiry-text {

    writing-mode: horizontal-tb;

    transform: none;

    color: #ffffff;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.8px;

    text-transform: uppercase;

    white-space: nowrap;

    line-height: 1;

}


/* =========================================
   HOVER
========================================= */

.side-enquiry-btn:hover {

    width: 155px;

    background: #b18a4a;

    color: #ffffff;

    text-decoration: none;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.28);

}


/* =========================================
   ICON HOVER
========================================= */

.side-enquiry-btn:hover .enquiry-icon {

    background: #ffffff;

    color: #b18a4a;

    border-color: #ffffff;

    transform: scale(1.08);

}


/* =========================================
   TEXT HOVER
========================================= */

.side-enquiry-btn:hover .enquiry-text {

    color: #ffffff;

}


/* =========================================
   PULSE BORDER
========================================= */

.side-enquiry-btn::before {

    content: "";

    position: absolute;

    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;

    border: 1px solid rgba(177, 138, 74, 0.45);

    border-radius: 10px 0 0 10px;

    pointer-events: none;

    animation: enquiryPulse 2.2s infinite;

}


/* =========================================
   PULSE ANIMATION
========================================= */

@keyframes enquiryPulse {

    0% {

        transform: scale(1);

        opacity: 0.7;

    }

    60% {

        transform: scale(1.06);

        opacity: 0;

    }

    100% {

        transform: scale(1.06);

        opacity: 0;

    }

}


/* =========================================
   ICON SMALL ANIMATION
========================================= */

@keyframes enquiryIcon {

    0%,
    100% {

        transform: scale(1);

    }

    50% {

        transform: scale(1.08);

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .side-enquiry-btn {

        right: 0;

        bottom: 25px;

        width: 115px;

        height: 52px;

        gap: 8px;

        border-radius: 7px 0 0 7px;

    }


    .side-enquiry-btn .enquiry-icon {

        width: 32px;

        height: 32px;

        font-size: 14px;

    }


    .side-enquiry-btn .enquiry-text {

        font-size: 10px;

        letter-spacing: 1.4px;

    }


    .side-enquiry-btn:hover {

        width: 130px;

    }

}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .side-enquiry-btn {

        width: 105px;

        height: 48px;

        bottom: 20px;

    }


    .side-enquiry-btn .enquiry-icon {

        width: 29px;

        height: 29px;

        font-size: 13px;

    }


    .side-enquiry-btn .enquiry-text {

        font-size: 9px;

        letter-spacing: 1.2px;

    }


    .side-enquiry-btn:hover {

        width: 118px;

    }

}


/* about page */
/* =========================================
   ABOUT PAGE BANNER
========================================= */

.inner-banner {
    min-height: 520px;

    position: relative;

    display: flex;
    align-items: center;

    background:
        url("../images/common/about-banner.jpg")
        center center / cover no-repeat;
}

.inner-banner-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(23,34,29,0.90),
            rgba(23,34,29,0.55),
            rgba(23,34,29,0.25)
        );
}

.inner-banner-content {
    position: relative;
    z-index: 2;

    color: #fff;

    padding-top: 70px;
}

.inner-banner-content .section-label {
    margin-bottom: 12px;
}

.inner-banner-content h1 {
    font-family: 'Playfair Display', serif;

    font-size: clamp(45px, 5vw, 68px);

    line-height: 1.1;

    margin-bottom: 25px;
}

.inner-banner-content h1 span {
    color: #c5a46d;
}

.breadcrumb-area {
    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 14px;
}

.breadcrumb-area a {
    color: #fff;

    transition: 0.3s;
}

.breadcrumb-area a:hover {
    color: #c5a46d;
}

.breadcrumb-area i {
    font-size: 11px;

    color: #c5a46d;
}

.breadcrumb-area span {
    color: #c5a46d;
}


/* =========================================
   ABOUT INTRO
========================================= */

.about-intro-section {
    padding: 120px 0;
}

.about-main-image {
    position: relative;

    padding-right: 25px;
    padding-bottom: 25px;
}

.about-main-image::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: 0;

    width: 75%;
    height: 75%;

    background: #b18a4a;

    z-index: 0;
}

.about-main-image img {
    position: relative;

    z-index: 1;

    width: 100%;
    height: 560px;

    object-fit: cover;
}

.about-experience {
    position: absolute;

    z-index: 2;

    bottom: 45px;
    left: -20px;

    background: #1d2a24;

    color: #fff;

    padding: 22px 28px;

    display: flex;

    align-items: center;

    gap: 15px;
}

.about-experience strong {
    font-family: 'Playfair Display', serif;

    font-size: 42px;

    color: #c5a46d;
}

.about-experience span {
    font-size: 13px;

    line-height: 1.5;
}

.about-features {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 14px;

    margin-top: 25px;
}

.about-feature-item {
    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 14px;

    font-weight: 600;
}

.about-feature-item i {
    color: #b18a4a;

    font-size: 17px;
}


/* =========================================
   ABOUT STORY
========================================= */

.about-story-section {
    padding: 100px 0;

    background: #f7f5f1;
}

.about-story-text {
    color: #666;

    line-height: 1.9;

    font-size: 15px;

    margin-bottom: 15px;
}


/* =========================================
   VISION / MISSION
========================================= */

.vision-section {
    padding: 100px 0;

    background: #fff;
}

.vision-card {
    height: 100%;

    padding: 40px;

    background: #f7f5f1;

    display: flex;

    gap: 25px;

    transition: 0.3s;
}

.vision-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.08);
}

.vision-icon {
    min-width: 65px;

    width: 65px;
    height: 65px;

    background: #1d2a24;

    color: #c5a46d;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 28px;
}

.vision-label {
    color: #b18a4a;

    font-size: 12px;

    letter-spacing: 2px;

    font-weight: 700;

    margin-bottom: 8px;
}

.vision-card h3 {
    font-family: 'Playfair Display', serif;

    font-size: 28px;

    margin-bottom: 15px;
}

.vision-card p:last-child {
    color: #666;

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 0;
}


/* =========================================
   ABOUT WHY
========================================= */

.about-why-section {
    padding: 110px 0;

    background: #f7f5f1;
}

.about-why-card {
    background: #fff;

    padding: 40px 25px;

    text-align: center;

    height: 100%;

    transition: 0.3s;

    border-bottom: 3px solid transparent;
}

.about-why-card:hover {
    transform: translateY(-7px);

    border-bottom-color: #b18a4a;

    box-shadow:
        0 15px 35px rgba(0,0,0,0.08);
}

.about-why-icon {
    width: 75px;
    height: 75px;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: #f3eee5;

    color: #b18a4a;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 30px;
}

.about-why-card h4 {
    font-family: 'Playfair Display', serif;

    font-size: 23px;

    margin-bottom: 12px;
}

.about-why-card p {
    color: #777;

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 0;
}


/* =========================================
   VALUES
========================================= */

.values-section {
    padding: 110px 0;

    background: #fff;
}

.value-box {
    padding: 30px;

    border: 1px solid #e5e0d8;

    height: 100%;

    transition: 0.3s;
}

.value-box:hover {
    border-color: #b18a4a;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.06);
}

.value-box > span {
    color: #b18a4a;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;
}

.value-box h4 {
    font-family: 'Playfair Display', serif;

    font-size: 24px;

    margin: 12px 0;
}

.value-box p {
    color: #777;

    font-size: 14px;

    line-height: 1.7;

    margin: 0;
}


/* =========================================
   ABOUT STATS
========================================= */

.about-stats-section {
    padding: 75px 0;

    background: #1d2a24;

    color: #fff;
}

.about-stat {
    border-right: 1px solid #3c4842;
}

.col-lg-3:last-child .about-stat {
    border-right: none;
}

.about-stat strong {
    display: block;

    font-family: 'Playfair Display', serif;

    font-size: 45px;

    color: #c5a46d;
}

.about-stat span {
    display: block;

    color: #c8ceca;

    font-size: 13px;

    margin-top: 5px;
}


/* =========================================
   ABOUT RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .inner-banner {
        min-height: 450px;
    }

    .inner-banner-content {
        padding-top: 30px;
    }

    .about-intro-section,
    .about-why-section,
    .values-section,
    .vision-section {
        padding: 80px 0;
    }

    .about-main-image img {
        height: 500px;
    }

    .about-experience {
        left: 10px;
    }

    .about-stat {
        border-right: none;
    }

}


@media (max-width: 767px) {

    .inner-banner {
        min-height: 400px;
    }

    .inner-banner-content h1 {
        font-size: 42px;
    }

    .about-main-image {
        padding-right: 10px;
        padding-bottom: 15px;
    }

    .about-main-image img {
        height: 400px;
    }

    .about-experience {
        bottom: 30px;
        padding: 15px 20px;
    }

    .about-experience strong {
        font-size: 32px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .vision-card {
        padding: 25px;

        flex-direction: column;
    }

    .about-stat strong {
        font-size: 35px;
    }

}


/* contact page */

/* =========================================
   CONTACT PAGE
========================================= */

.contact-banner {
    background:
        url("../images/common/contact-banner.jpg")
        center center / cover no-repeat;
}


/* =========================================
   CONTACT SECTION
========================================= */

.contact-section {
    padding: 120px 0;
    background: #fff;
}


/* =========================================
   CONTACT INFORMATION
========================================= */

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;

    margin-top: 28px;
}

.contact-info-icon {
    min-width: 52px;
    width: 52px;
    height: 52px;

    background: #f4efe6;
    color: #b18a4a;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 21px;
}

.contact-info-item h5 {
    font-family: 'Playfair Display', serif;

    font-size: 18px;

    margin-bottom: 5px;
}

.contact-info-item p {
    color: #777;

    font-size: 14px;

    line-height: 1.7;

    margin: 0;
}

.contact-info-item a {
    color: #777;

    transition: 0.3s;
}

.contact-info-item a:hover {
    color: #b18a4a;
}


/* =========================================
   CONTACT SOCIAL
========================================= */

.contact-social {
    margin-top: 35px;

    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-social > span {
    font-size: 13px;

    font-weight: 600;
}

.contact-social > div {
    display: flex;

    gap: 8px;
}

.contact-social a {
    width: 36px;
    height: 36px;

    border: 1px solid #ddd;

    color: #333;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s;
}

.contact-social a:hover {
    background: #1d2a24;

    color: #fff;

    border-color: #1d2a24;
}


/* =========================================
   CONTACT FORM
========================================= */

.contact-form-box {
    background: #f7f5f1;

    padding: 45px;

    border-top: 4px solid #b18a4a;
}

.form-heading {
    margin-bottom: 30px;
}

.form-heading h3 {
    font-family: 'Playfair Display', serif;

    font-size: 34px;

    margin-bottom: 10px;
}

.form-heading h3 span {
    color: #b18a4a;
}

.form-heading > p:last-child {
    color: #777;

    font-size: 14px;

    margin-bottom: 0;
}


/* =========================================
   FORM INPUT
========================================= */

.contact-form-box label {
    display: block;

    font-size: 13px;

    font-weight: 600;

    color: #333;

    margin-bottom: 8px;
}

.input-group-custom {
    position: relative;

    display: flex;

    align-items: center;
}

.input-group-custom > i {
    position: absolute;

    left: 15px;

    color: #b18a4a;

    z-index: 2;
}

.input-group-custom input,
.input-group-custom select,
.input-group-custom textarea {
    width: 100%;

    border: 1px solid #ddd;

    background: #fff;

    outline: none;

    padding: 14px 15px 14px 45px;

    font-family: 'DM Sans', sans-serif;

    font-size: 14px;

    color: #333;

    transition: 0.3s;
}

.input-group-custom textarea {
    resize: vertical;

    min-height: 140px;

    padding-top: 15px;
}

.input-group-custom textarea + i {
    top: 18px;
}

.input-group-custom input:focus,
.input-group-custom select:focus,
.input-group-custom textarea:focus {
    border-color: #b18a4a;

    box-shadow:
        0 0 0 3px rgba(177,138,74,0.08);
}

.input-group-custom select {
    appearance: auto;

    cursor: pointer;
}


/* =========================================
   SUBMIT BUTTON
========================================= */

.contact-submit-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    border: none;

    background: #1d2a24;

    color: #fff;

    padding: 15px 28px;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.3s;
}

.contact-submit-btn:hover {
    background: #b18a4a;
}


/* =========================================
   MAP
========================================= */

.map-section {
    background: #f7f5f1;
}

.map-title {
    padding: 80px 0 40px;

    text-align: center;
}

.map-title .section-title {
    margin-bottom: 0;
}


/* =========================================
   CONTACT CTA
========================================= */

.contact-cta {
    padding: 90px 0;

    background: #1d2a24;

    color: #fff;
}

.contact-cta h2 {
    font-family: 'Playfair Display', serif;

    font-size: 45px;

    line-height: 1.2;

    margin-bottom: 0;
}

.contact-cta h2 span {
    color: #c5a46d;
}

.contact-call-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    background: #b18a4a;

    color: #fff;

    padding: 15px 28px;

    font-size: 14px;

    font-weight: 600;

    transition: 0.3s;
}

.contact-call-btn:hover {
    background: #fff;

    color: #1d2a24;
}


/* =========================================
   CONTACT RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .contact-section {
        padding: 90px 0;
    }

    .contact-form-box {
        padding: 35px;
    }

    .contact-cta h2 {
        font-size: 38px;
    }

}


@media (max-width: 767px) {

    .contact-section {
        padding: 70px 0;
    }

    .contact-form-box {
        padding: 25px 20px;
    }

    .form-heading h3 {
        font-size: 28px;
    }

    .contact-social {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-cta {
        padding: 70px 0;
    }

    .contact-cta h2 {
        font-size: 32px;
    }

}


/* upcoming project */
/* =========================================
   UPCOMING PROJECTS PAGE
========================================= */


/* =========================================
   BANNER
========================================= */

.projects-banner {
    background:
        url("../images/projects/projects-banner.jpg")
        center center / cover no-repeat;
}


/* =========================================
   INTRO
========================================= */

.projects-intro {
    padding: 100px 0 70px;

    background: #fff;
}


/* =========================================
   PROJECT CARDS
========================================= */

.upcoming-projects-section {
    padding: 30px 0 110px;

    background: #fff;
}

.project-card {
    background: #fff;

    border: 1px solid #e8e4dc;

    height: 100%;

    overflow: hidden;

    transition: 0.4s;

    box-shadow:
        0 8px 30px rgba(0,0,0,0.04);
}

.project-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 18px 45px rgba(0,0,0,0.10);
}


/* =========================================
   PROJECT IMAGE
========================================= */

.project-image {
    position: relative;

    height: 380px;

    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.6s;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-status {
    position: absolute;

    top: 20px;
    left: 20px;

    background: #1d2a24;

    color: #fff;

    padding: 9px 16px;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;

    font-weight: 600;
}


/* =========================================
   PROJECT CONTENT
========================================= */

.project-content {
    padding: 30px;
}

.project-location {
    color: #b18a4a;

    font-size: 12px;

    font-weight: 600;

    margin-bottom: 10px;

    display: flex;

    align-items: center;

    gap: 6px;
}

.project-location i {
    font-size: 14px;
}

.project-content h3 {
    font-family: 'Playfair Display', serif;

    font-size: 28px;

    margin-bottom: 12px;

    color: #222;
}

.project-content > p {
    color: #777;

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 25px;
}


/* =========================================
   PROJECT DETAILS
========================================= */

.project-details {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    border-top: 1px solid #e8e4dc;

    border-bottom: 1px solid #e8e4dc;

    padding: 18px 0;

    margin-bottom: 22px;
}

.project-details > div {
    padding: 0 12px;

    border-right: 1px solid #e8e4dc;
}

.project-details > div:first-child {
    padding-left: 0;
}

.project-details > div:last-child {
    border-right: none;
}

.project-details small {
    display: block;

    color: #999;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 0.7px;

    margin-bottom: 5px;
}

.project-details strong {
    display: block;

    font-size: 13px;

    color: #333;
}


/* =========================================
   PROJECT BUTTON
========================================= */

.project-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    background: #1d2a24;

    color: #fff;

    padding: 13px 22px;

    font-size: 13px;

    font-weight: 600;

    transition: 0.3s;
}

.project-btn:hover {
    background: #b18a4a;

    color: #fff;
}

.project-btn i {
    transition: 0.3s;
}

.project-btn:hover i {
    transform: translateX(4px);
}


/* =========================================
   BENEFITS
========================================= */

.project-benefits-section {
    padding: 110px 0;

    background: #f7f5f1;
}

.benefit-box {
    background: #fff;

    padding: 30px;

    height: 100%;

    border: 1px solid #e9e4dc;

    transition: 0.3s;
}

.benefit-box:hover {
    transform: translateY(-5px);

    border-color: #b18a4a;

    box-shadow:
        0 12px 30px rgba(0,0,0,0.07);
}

.benefit-icon {
    width: 55px;
    height: 55px;

    background: #f3eee5;

    color: #b18a4a;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 24px;

    margin-bottom: 20px;
}

.benefit-box h4 {
    font-family: 'Playfair Display', serif;

    font-size: 21px;

    margin-bottom: 10px;
}

.benefit-box p {
    color: #777;

    font-size: 13px;

    line-height: 1.7;

    margin: 0;
}


/* =========================================
   CTA
========================================= */

.projects-cta {
    padding: 110px 0;

    background:
        linear-gradient(
            rgba(29,42,36,0.93),
            rgba(29,42,36,0.93)
        ),
        url("../images/projects/projects-cta.jpg")
        center / cover no-repeat;

    color: #fff;
}

.projects-cta-content {
    max-width: 750px;

    margin: auto;
}

.projects-cta h2 {
    font-family: 'Playfair Display', serif;

    font-size: 48px;

    line-height: 1.2;

    margin-bottom: 20px;
}

.projects-cta h2 span {
    color: #c5a46d;
}

.projects-cta-content > p:not(.section-label) {
    color: #d0d4d1;

    max-width: 600px;

    margin: 0 auto 28px;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .projects-intro {
        padding: 80px 0 50px;
    }

    .upcoming-projects-section {
        padding-bottom: 80px;
    }

    .project-image {
        height: 340px;
    }

    .project-benefits-section {
        padding: 80px 0;
    }

    .projects-cta {
        padding: 80px 0;
    }

    .projects-cta h2 {
        font-size: 40px;
    }

}


@media (max-width: 767px) {

    .project-image {
        height: 280px;
    }

    .project-content {
        padding: 22px;
    }

    .project-content h3 {
        font-size: 24px;
    }

    .project-details {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .project-details > div {
        border-right: none;

        border-bottom: 1px solid #e8e4dc;

        padding: 0 0 12px;
    }

    .project-details > div:last-child {
        border-bottom: none;

        padding-bottom: 0;
    }

    .projects-cta h2 {
        font-size: 34px;
    }
}

/* =========================================
   PROJECT AREA DETAILS
========================================= */

.project-area-details {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 0;

    margin-bottom: 22px;

    border: 1px solid #e8e4dc;

    background: #faf9f6;

}


.area-item {

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 13px 10px;

    border-right: 1px solid #e8e4dc;

}


.area-item:last-child {

    border-right: none;

}


.area-item > i {

    width: 32px;

    height: 32px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #f0eadf;

    color: #b18a4a;

    font-size: 15px;

}


.area-item small {

    display: block;

    color: #999;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: .5px;

    margin-bottom: 2px;

}


.area-item strong {

    display: block;

    color: #333;

    font-size: 10px;

    line-height: 1.3;

}


/* =========================================
   3 CARDS PER ROW
========================================= */

@media (min-width: 992px) {

    .upcoming-projects-section .row {

        --bs-gutter-x: 24px;

        --bs-gutter-y: 30px;

    }

    .upcoming-projects-section .project-card {

        height: 100%;

    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 767px) {

    .project-area-details {

        grid-template-columns: 1fr;

    }

    .area-item {

        border-right: none;

        border-bottom: 1px solid #e8e4dc;

    }

    .area-item:last-child {

        border-bottom: none;

    }

}

/* ongoing-project page */

/* =========================================
   ONGOING PROJECTS
========================================= */

.ongoing-banner {
    background:
        url("../images/projects/ongoing-banner.jpg")
        center center / cover no-repeat;
}


/* =========================================
   ONGOING SECTION
========================================= */

.ongoing-projects-section {
    padding-top: 20px;
}


/* =========================================
   ONGOING STATUS
========================================= */

.ongoing-status {
    background: #b18a4a;
}


/* =========================================
   PROJECT PROGRESS
========================================= */

.project-progress {
    margin-bottom: 25px;
}

.progress-heading {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 8px;

    font-size: 12px;

    color: #777;
}

.progress-heading strong {
    color: #1d2a24;

    font-size: 13px;
}

.project-progress .progress {
    height: 6px;

    border-radius: 0;

    background: #e8e5df;

    overflow: hidden;
}

.project-progress .progress-bar {
    background: #b18a4a;

    transition: width 1s ease;
}


/* =========================================
   ONGOING FEATURES
========================================= */

.ongoing-features-section {
    padding: 110px 0;

    background: #f7f5f1;
}

.ongoing-feature-card {
    background: #fff;

    text-align: center;

    padding: 35px 25px;

    height: 100%;

    border: 1px solid #e8e3db;

    transition: 0.3s;
}

.ongoing-feature-card:hover {
    transform: translateY(-6px);

    border-color: #b18a4a;

    box-shadow:
        0 12px 30px rgba(0,0,0,0.07);
}

.ongoing-feature-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 20px;

    background: #f3eee5;

    color: #b18a4a;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 27px;
}

.ongoing-feature-card h4 {
    font-family: 'Playfair Display', serif;

    font-size: 21px;

    margin-bottom: 10px;
}

.ongoing-feature-card p {
    color: #777;

    font-size: 13px;

    line-height: 1.7;

    margin-bottom: 0;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 767px) {

    .ongoing-features-section {
        padding: 75px 0;
    }

    .project-progress {
        margin-bottom: 20px;
    }

}


/* completed-project page */

/* =========================================
   COMPLETED PROJECTS
========================================= */

.completed-banner {
    background:
        url("../images/projects/completed-banner.jpg")
        center center / cover no-repeat;
}


/* =========================================
   INTRO
========================================= */

.completed-intro {
    padding-bottom: 60px;
}


/* =========================================
   PROJECT SECTION
========================================= */

.completed-projects-section {
    padding: 20px 0 110px;

    background: #fff;
}


/* =========================================
   COMPLETED CARD
========================================= */

.completed-project-card {
    height: 100%;

    background: #fff;

    border: 1px solid #e5e0d8;

    overflow: hidden;

    transition: 0.4s;

    box-shadow:
        0 8px 30px rgba(0,0,0,0.04);
}

.completed-project-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 18px 45px rgba(0,0,0,0.10);
}


/* =========================================
   IMAGE
========================================= */

.completed-project-image {
    height: 380px;

    position: relative;

    overflow: hidden;
}

.completed-project-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.6s;
}

.completed-project-card:hover
.completed-project-image img {
    transform: scale(1.05);
}


/* =========================================
   COMPLETED BADGE
========================================= */

.completed-badge {
    position: absolute;

    top: 20px;
    left: 20px;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    background: #1d2a24;

    color: #fff;

    padding: 9px 16px;

    font-size: 11px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.completed-badge i {
    color: #c5a46d;
}


/* =========================================
   CONTENT
========================================= */

.completed-project-content {
    padding: 30px;
}

.completed-project-content h3 {
    font-family: 'Playfair Display', serif;

    font-size: 28px;

    color: #222;

    margin-bottom: 12px;
}

.completed-project-content > p {
    color: #777;

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 24px;
}


/* =========================================
   DETAILS
========================================= */

.completed-details {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid #e8e4dc;

    border-bottom: 1px solid #e8e4dc;

    padding: 18px 0;

    margin-bottom: 20px;
}

.completed-details > div {
    padding: 0 12px;

    border-right: 1px solid #e8e4dc;
}

.completed-details > div:first-child {
    padding-left: 0;
}

.completed-details > div:last-child {
    border-right: none;
}

.completed-details span {
    display: block;

    color: #999;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 0.7px;

    margin-bottom: 5px;
}

.completed-details strong {
    display: block;

    color: #333;

    font-size: 13px;
}


/* =========================================
   POSSESSION BOX
========================================= */

.possession-box {
    display: flex;

    align-items: center;

    gap: 14px;

    background: #f7f5f1;

    padding: 14px;

    margin-bottom: 22px;
}

.possession-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    background: #fff;

    color: #b18a4a;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 20px;
}

.possession-box small {
    display: block;

    color: #999;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 0.7px;

    margin-bottom: 3px;
}

.possession-box strong {
    display: block;

    color: #1d2a24;

    font-size: 13px;
}


/* =========================================
   STATS
========================================= */

.completed-stats-section {
    padding: 90px 0;

    background: #f7f5f1;
}

.completed-stat {
    background: #fff;

    padding: 35px 20px;

    border: 1px solid #e8e3db;

    height: 100%;

    transition: 0.3s;
}

.completed-stat:hover {
    transform: translateY(-5px);

    border-color: #b18a4a;
}

.completed-stat-icon {
    width: 58px;
    height: 58px;

    margin: 0 auto 15px;

    background: #f3eee5;

    color: #b18a4a;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 24px;
}

.completed-stat h3 {
    font-family: 'Playfair Display', serif;

    font-size: 34px;

    color: #1d2a24;

    margin-bottom: 5px;
}

.completed-stat p {
    color: #777;

    font-size: 13px;

    margin: 0;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .completed-projects-section {
        padding-bottom: 80px;
    }

    .completed-project-image {
        height: 340px;
    }

    .completed-stats-section {
        padding: 70px 0;
    }

}


@media (max-width: 767px) {

    .completed-project-image {
        height: 280px;
    }

    .completed-project-content {
        padding: 22px;
    }

    .completed-project-content h3 {
        font-size: 24px;
    }

    .completed-details {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .completed-details > div {
        border-right: none;

        border-bottom: 1px solid #e8e4dc;

        padding: 0 0 12px;
    }

    .completed-details > div:last-child {
        border-bottom: none;

        padding-bottom: 0;
    }

    .completed-stats-section {
        padding: 60px 0;
    }

}

/* =========================================
   FULL WIDTH COMPLETED PROJECT GRID
========================================= */

.completed-projects-section {
    padding: 30px 0 110px;
    background: #fff;
}

.completed-projects-section .container-fluid {
    width: 100%;
    max-width: 100%;
}

.completed-projects-section .row {
    margin-left: 0;
    margin-right: 0;
}

.completed-projects-section .row > [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}


/* =========================================
   AREA DETAILS
========================================= */

.project-area-details {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border: 1px solid #e8e4dc;

    background: #faf9f6;

    margin-bottom: 22px;
}

.area-item {
    display: flex;

    align-items: center;

    gap: 8px;

    padding: 12px 10px;

    border-right: 1px solid #e8e4dc;
}

.area-item:last-child {
    border-right: none;
}

.area-item > i {
    width: 32px;
    height: 32px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #f0eadf;

    color: #b18a4a;

    font-size: 14px;
}

.area-item small {
    display: block;

    color: #999;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: .5px;

    margin-bottom: 2px;
}

.area-item strong {
    display: block;

    color: #333;

    font-size: 10px;

    line-height: 1.3;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .completed-projects-section {
        padding-left: 5px;
        padding-right: 5px;
    }

    .completed-projects-section
    .row > [class*="col-"] {
        padding-left: 6px;
        padding-right: 6px;
    }

    .project-area-details {
        grid-template-columns: 1fr;
    }

    .area-item {
        border-right: none;

        border-bottom: 1px solid #e8e4dc;
    }

    .area-item:last-child {
        border-bottom: none;
    }

}


/* project page */

/* =========================================
   PROJECT DETAIL PAGE
========================================= */

.project-detail-hero {

    min-height: 650px;

    display: flex;

    align-items: center;

    position: relative;

    background:
        url("../images/projects/project-detail-banner.jpg")
        center center / cover no-repeat;

    color: #fff;

}

.project-detail-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(20,28,24,0.90),
            rgba(20,28,24,0.40),
            rgba(20,28,24,0.20)
        );

}

.project-detail-hero .container {

    position: relative;

    z-index: 2;

}

.project-detail-hero-content {

    max-width: 750px;

    padding: 100px 0 80px;

}

.project-detail-status {

    display: inline-block;

    background: #b18a4a;

    color: #fff;

    padding: 9px 17px;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;

    font-weight: 600;

    margin-bottom: 18px;

}

.project-detail-location {

    font-size: 14px;

    margin-bottom: 15px;

    color: #eee;

}

.project-detail-location i {

    color: #c5a46d;

    margin-right: 5px;

}

.project-detail-hero h1 {

    font-family: 'Playfair Display', serif;

    font-size: 65px;

    line-height: 1.05;

    margin-bottom: 20px;

}

.project-detail-hero h1 span {

    display: block;

    color: #c5a46d;

}

.project-detail-subtitle {

    max-width: 600px;

    color: #e5e5e5;

    font-size: 15px;

    line-height: 1.8;

}

.project-detail-buttons {

    display: flex;

    gap: 12px;

    margin-top: 30px;

}

.project-main-btn,
.project-outline-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 24px;

    font-size: 13px;

    font-weight: 600;

    transition: 0.3s;

}

.project-main-btn {

    background: #b18a4a;

    color: #fff;

}

.project-main-btn:hover {

    background: #fff;

    color: #1d2a24;

}

.project-outline-btn {

    border: 1px solid rgba(255,255,255,0.5);

    color: #fff;

}

.project-outline-btn:hover {

    background: #fff;

    color: #1d2a24;

}


.search-result-section {
    padding: 50px 0 20px;
}

.search-result-info {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.search-result-info span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #f7f5f1;
    color: #555;
    font-size: 14px;
}

.search-result-info i {
    color: #b18a4a;
}

.clear-search {
    display: inline-block;
    margin-top: 18px;
    color: #b18a4a;
    font-weight: 600;
    text-decoration: none;
}


/* =========================================
   QUICK DETAILS
========================================= */

.project-quick-details {

    position: relative;

    margin-top: -60px;

    z-index: 5;

    padding-bottom: 20px;

}

.project-quick-box {

    background: #fff;

    box-shadow:
        0 15px 45px rgba(0,0,0,0.10);

}

.quick-detail-item {

    min-height: 110px;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 20px 25px;

    border-right: 1px solid #e5e0d8;

}

.quick-detail-icon {

    width: 48px;

    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #f4efe6;

    color: #b18a4a;

    font-size: 21px;

}

.quick-detail-item small {

    display: block;

    color: #999;

    font-size: 10px;

    letter-spacing: 1px;

    margin-bottom: 5px;

}

.quick-detail-item strong {

    display: block;

    color: #222;

    font-size: 14px;

}


/* =========================================
   PROJECT OVERVIEW
========================================= */

.project-overview-section {

    padding: 110px 0;

    background: #fff;

}

.project-overview-image {

    position: relative;

    height: 550px;

}

.project-overview-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}

.project-image-experience {

    position: absolute;

    right: -25px;

    bottom: 35px;

    background: #1d2a24;

    color: #fff;

    padding: 25px;

    display: flex;

    align-items: center;

    gap: 12px;

}

.project-image-experience strong {

    font-family: 'Playfair Display', serif;

    color: #c5a46d;

    font-size: 35px;

}

.project-image-experience span {

    font-size: 11px;

    line-height: 1.5;

    text-transform: uppercase;

    letter-spacing: .5px;

}

.overview-highlights {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

    margin-top: 25px;

}

.overview-highlights > div {

    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 13px;

    color: #555;

}

.overview-highlights i {

    color: #b18a4a;

}


/* =========================================
   PROJECT GALLERY
========================================= */

.project-gallery-section {
    padding: 110px 0;
    background: #f7f5f1;
}


/* =========================================
   GALLERY HEADING
========================================= */

.project-gallery-section .section-heading {
    margin-bottom: 45px;
}

.project-gallery-section .section-heading > p:last-child {
    color: #777;
    font-size: 14px;
}


/* =========================================
   GALLERY GRID
========================================= */

.project-gallery-section .row {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

   grid-template-rows: 250px 250px 250px;

    gap: 14px;

    margin-left: 0;
    margin-right: 0;
}


/* Remove Bootstrap column behavior */

.project-gallery-section .row > [class*="col-"] {
    width: auto;

    padding-left: 0;
    padding-right: 0;

    margin: 0;
}


/* =========================================
   IMAGE BOX
========================================= */

.project-gallery-image {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;

    background: #ddd;
}


/* =========================================
   FIRST LARGE IMAGE
========================================= */

.project-gallery-section .row > div:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 3;
}


/* =========================================
   TOP RIGHT IMAGES
========================================= */

.project-gallery-section .row > div:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.project-gallery-section .row > div:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}


/* =========================================
   BOTTOM MIDDLE IMAGES
========================================= */

.project-gallery-section .row > div:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}

.project-gallery-section .row > div:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
}

/* =========================================
   IMAGE 6
========================================= */

.project-gallery-section .row > div:nth-child(6) {
    grid-column: 2 / 4;
    grid-row: 3;

    height: 250px;
}


/* =========================================
   IMAGE
========================================= */

.project-gallery-image,
.project-gallery-image.large {
    height: 100%;
}

.project-gallery-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.5s ease;
}


/* =========================================
   HOVER
========================================= */

.project-gallery-image:hover img {
    transform: scale(1.05);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .project-gallery-section .row {
        grid-template-columns: 1fr 1fr;

        grid-template-rows: 350px 230px 230px;
    }

    .project-gallery-section .row > div:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .project-gallery-section .row > div:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

    .project-gallery-section .row > div:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    .project-gallery-section .row > div:nth-child(4) {
        grid-column: 1;
        grid-row: 3;
    }

    .project-gallery-section .row > div:nth-child(5) {
        grid-column: 2;
        grid-row: 3;
    }

    .project-gallery-section .row > div:nth-child(6) {
        display: block;

        grid-column: 1 / 3;
        grid-row: 4;

        height: 300px;
    }

}


@media (max-width: 767px) {

    .project-gallery-section {
        padding: 75px 0;
    }

    .project-gallery-section .row {
        display: grid;

        grid-template-columns: 1fr;

        grid-template-rows: auto;

        gap: 12px;
    }

    .project-gallery-section .row > div:nth-child(1),
    .project-gallery-section .row > div:nth-child(2),
    .project-gallery-section .row > div:nth-child(3),
    .project-gallery-section .row > div:nth-child(4),
    .project-gallery-section .row > div:nth-child(5),
    .project-gallery-section .row > div:nth-child(6) {

        grid-column: 1;
        grid-row: auto;

        height: 260px;
    }

}

/* =========================================
   PROPERTY DETAILS
========================================= */

.property-details-section {

    padding: 110px 0;

    background: #fff;

}

.property-details-table {

    border-top: 1px solid #e5e0d8;

}

.property-detail-row {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 18px 0;

    border-bottom: 1px solid #e5e0d8;

}

.property-detail-row span {

    color: #888;

    font-size: 13px;

}

.property-detail-row strong {

    color: #222;

    font-size: 14px;

    text-align: right;

}


/* =========================================
   AMENITIES
========================================= */

.project-amenities-section {

    padding: 110px 0;

    background: #f7f5f1;

}

.project-amenities-section
.section-heading > p:last-child {

    color: #777;

    font-size: 14px;

}

.amenity-card {

    background: #fff;

    border: 1px solid #e7e2da;

    text-align: center;

    padding: 30px 15px;

    height: 100%;

    transition: .3s;

}

.amenity-card:hover {

    transform: translateY(-5px);

    border-color: #b18a4a;

    box-shadow:
        0 10px 30px rgba(0,0,0,.06);

}

.amenity-icon {

    width: 58px;

    height: 58px;

    margin: 0 auto 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #f3eee5;

    color: #b18a4a;

    font-size: 25px;

}

.amenity-card h4 {

    font-family: 'Playfair Display', serif;

    font-size: 18px;

    margin: 0;

}


/* =========================================
   LOCATION
========================================= */

.location-advantages-section {

    padding: 110px 0;

    background: #fff;

}

.project-map {

    width: 100%;

    box-shadow:
        0 10px 30px rgba(0,0,0,.08);

}

.project-map iframe {

    display: block;

}

.location-list {

    margin-top: 25px;

}

.location-list > div {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px 0;

    border-bottom: 1px solid #eee;

    color: #555;

    font-size: 14px;

}

.location-list i {

    color: #b18a4a;

}

/* =========================================================
   ENQUIRY PAGE - PREMIUM UI
========================================================= */

.enquiry-section {
    position: relative;
    padding: 110px 0;
    background: #f7f5f1;
    overflow: hidden;
}

.enquiry-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(177, 138, 74, 0.10);
    border-radius: 50%;
    top: -180px;
    left: -180px;
    pointer-events: none;
}

.enquiry-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(29, 42, 36, 0.06);
    border-radius: 50%;
    bottom: -150px;
    right: -130px;
    pointer-events: none;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.enquiry-section .container {
    position: relative;
    z-index: 2;
}


/* Section label */

.enquiry-section .section-label {
    margin-bottom: 18px;
    color: #b18a4a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}


/* Main heading */

.enquiry-section .section-title {
    margin-bottom: 25px;
    color: #1d2a24;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 4vw, 58px);
    font-weight: 500;
    line-height: 1.12;
}

.enquiry-section .section-title span {
    color: #b18a4a;
}


/* Description */

.enquiry-section .section-text {
    max-width: 510px;
    margin-bottom: 15px;
    color: #777;
    font-size: 14px;
    line-height: 1.9;
}


/* =========================================================
   ENQUIRY INFO
========================================================= */

.enquiry-info {
    margin-top: 38px;
    max-width: 500px;
}


/* Individual item */

.enquiry-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 22px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #ebe6dd;
    transition: all 0.3s ease;
}

.enquiry-info-item:hover {
    transform: translateX(6px);
    border-color: #d8c29c;
    box-shadow: 0 12px 30px rgba(29, 42, 36, 0.07);
}


/* Icon */

.enquiry-info-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #1d2a24;
    color: #d8c29c;

    font-size: 18px;

    transition: all 0.3s ease;
}

.enquiry-info-item:hover .enquiry-info-icon {
    background: #b18a4a;
    color: #ffffff;
}


/* Text */

.enquiry-info-item h5 {
    margin: 0 0 5px;
    color: #1d2a24;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    font-weight: 500;
}

.enquiry-info-item p {
    margin: 0;
    color: #888;
    font-size: 12px;
    line-height: 1.6;
}

.enquiry-info-item a {
    color: #777;
    text-decoration: none;
    transition: color 0.3s ease;
}

.enquiry-info-item a:hover {
    color: #b18a4a;
}


/* =========================================================
   FORM BOX
========================================================= */

.enquiry-form-box {
    position: relative;
    padding: 48px;
    background: #ffffff;
    border: 1px solid #ebe6dd;
    border-top: 4px solid #b18a4a;
    box-shadow: 0 25px 60px rgba(29, 42, 36, 0.09);
}


/* Small decorative line */

.enquiry-form-box::after {
    content: "";
    position: absolute;
    width: 55px;
    height: 3px;
    top: -4px;
    right: 45px;
    background: #1d2a24;
}


/* =========================================================
   FORM HEADING
========================================================= */

.form-heading {
    margin-bottom: 30px;
}

.form-heading .section-label {
    margin-bottom: 10px;
}

.form-heading h3 {
    margin: 0 0 10px;
    color: #1d2a24;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.25;
}

.form-heading h3 span {
    color: #b18a4a;
}

.form-heading > p:last-child {
    margin: 0;
    color: #888;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   FORM LABEL
========================================================= */

.enquiry-form-box label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   INPUT GROUP
========================================================= */

.input-group-custom {
    position: relative;
}


/* Icon */

.input-group-custom > i {
    position: absolute;
    left: 16px;
    top: 18px;

    z-index: 2;

    color: #aaa;
    font-size: 16px;

    transition: color 0.3s ease;
}


/* Inputs */

.input-group-custom input,
.input-group-custom select,
.input-group-custom textarea {
    width: 100%;

    border: 1px solid #dedbd5;
    border-radius: 0;

    outline: none;

    background: #ffffff;
    color: #333;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


/* Input */

.input-group-custom input,
.input-group-custom select {
    height: 54px;
    padding: 0 15px 0 45px;
}


/* Textarea */

.input-group-custom textarea {
    min-height: 140px;
    padding: 16px 15px 16px 45px;
    resize: vertical;
    line-height: 1.7;
}


/* Placeholder */

.input-group-custom input::placeholder,
.input-group-custom textarea::placeholder {
    color: #aaa;
}


/* Focus */

.input-group-custom input:focus,
.input-group-custom select:focus,
.input-group-custom textarea:focus {
    border-color: #b18a4a;
    box-shadow: 0 0 0 3px rgba(177, 138, 74, 0.08);
}


/* Focus icon */

.input-group-custom:focus-within > i {
    color: #b18a4a;
}


/* =========================================================
   SELECT ARROW
========================================================= */

.input-group-custom select {
    appearance: none;
    -webkit-appearance: none;

    cursor: pointer;

    padding-right: 40px;
}

.input-group-custom:has(select)::after {
    content: "\F282";

    position: absolute;
    right: 15px;
    top: 50%;

    transform: translateY(-50%);

    font-family: "bootstrap-icons";
    font-size: 13px;

    color: #999;

    pointer-events: none;
}


/* =========================================================
   TEXTAREA ICON
========================================================= */

.textarea-group > i {
    top: 18px;
    transform: none;
}


/* =========================================================
   ALERT
========================================================= */

.enquiry-form-box .alert {
    margin-bottom: 25px;
    padding: 13px 15px;

    border: none;
    border-left: 3px solid #b18a4a;
    border-radius: 0;

    font-size: 12px;
}


/* Success */

.enquiry-form-box .alert-success {
    background: #f1f7f2;
    color: #41604a;
}


/* Danger */

.enquiry-form-box .alert-danger {
    background: #faf2f0;
    color: #8a4d42;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.contact-submit-btn {
    position: relative;

    width: 100%;
    min-height: 55px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    border: none;
    border-radius: 0;

    background: #1d2a24;
    color: #ffffff;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    cursor: pointer;
    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.contact-submit-btn::before {
    content: "";

    position: absolute;

    width: 100%;
    height: 100%;

    left: -100%;
    top: 0;

    background: #b18a4a;

    transition: left 0.4s ease;
}


.contact-submit-btn span,
.contact-submit-btn i {
    position: relative;
    z-index: 2;
}


.contact-submit-btn {
    z-index: 1;
}


.contact-submit-btn:hover::before {
    left: 0;
}


.contact-submit-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(29, 42, 36, 0.18);
}


/* =========================================================
   CTA
========================================================= */

.contact-cta {
    position: relative;
    padding: 90px 0;

    background:
        linear-gradient(
            135deg,
            rgba(29, 42, 36, 0.97),
            rgba(18, 29, 25, 0.97)
        );
}


.contact-cta .section-label {
    color: #d8c29c;
    margin-bottom: 15px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
}


.contact-cta h2 {
    margin: 0;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(38px, 4vw, 55px);

    font-weight: 500;
    line-height: 1.15;
}


.contact-cta h2 span {
    color: #b18a4a;
}


/* Call button */

.contact-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 16px 28px;

    background: #b18a4a;
    color: #ffffff;

    text-decoration: none;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    transition: all 0.3s ease;
}


.contact-call-btn:hover {
    background: #ffffff;
    color: #1d2a24;

    transform: translateY(-2px);
}


/* =========================================================
   ENQUIRY BANNER
========================================================= */

.enquiry-banner {
    position: relative;

    min-height: 480px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            rgba(18, 29, 25, 0.78),
            rgba(18, 29, 25, 0.78)
        ),
        url("../assets/images/projects/project-main.jpg")
        center / cover no-repeat;
}


.enquiry-banner .inner-banner-content {
    position: relative;
    z-index: 2;
}


.enquiry-banner h1 {
    margin: 0 0 25px;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(48px, 5vw, 70px);

    font-weight: 500;
    line-height: 1.05;
}


.enquiry-banner h1 span {
    color: #b18a4a;
}


.breadcrumb-area {
    display: flex;
    align-items: center;
    gap: 10px;

    color: rgba(255,255,255,0.65);

    font-size: 12px;
}


.breadcrumb-area a {
    color: #ffffff;
    text-decoration: none;
}


.breadcrumb-area a:hover {
    color: #d8c29c;
}


.breadcrumb-area i {
    color: #b18a4a;
    font-size: 10px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .enquiry-section {
        padding: 80px 0;
    }

    .enquiry-info {
        max-width: 100%;
    }

    .enquiry-form-box {
        padding: 40px;
    }

    .enquiry-banner {
        min-height: 430px;
    }

    .enquiry-banner h1 {
        font-size: 52px;
    }

    .contact-cta {
        padding: 75px 0;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .enquiry-section {
        padding: 65px 0;
    }

    .enquiry-section .section-title {
        font-size: 40px;
    }

    .enquiry-info {
        margin-top: 30px;
    }

    .enquiry-info-item {
        padding: 17px;
        gap: 14px;
    }

    .enquiry-info-icon {
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
    }

    .enquiry-form-box {
        padding: 30px 22px;
    }

    .form-heading h3 {
        font-size: 28px;
    }

    .enquiry-banner {
        min-height: 400px;
    }

    .enquiry-banner h1 {
        font-size: 42px;
    }

    .contact-cta {
        padding: 60px 0;
    }

    .contact-cta h2 {
        font-size: 38px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .enquiry-section {
        padding: 55px 0;
    }

    .enquiry-section .section-title {
        font-size: 34px;
    }

    .enquiry-form-box {
        padding: 28px 18px;
    }

    .form-heading h3 {
        font-size: 25px;
    }

    .enquiry-info-item {
        padding: 15px;
    }

    .enquiry-info-item h5 {
        font-size: 16px;
    }

    .enquiry-info-item p {
        font-size: 11px;
    }

    .enquiry-banner h1 {
        font-size: 36px;
    }

}