@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    /* --primary-color: #14251f; */
    --primary-color: #1B1B1B;
    --secondary-color: #b4975a;
    --text-dark: #1c1c1c;
    --text-light: #292626;
    --white-color: #ffffff;
    --border-color: #e8e8e8;
    --transition: all 0.3s ease;
}



/* =========================================
   GLOBAL
========================================= */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    color: var(--text-dark);
    background-color: var(--white-color);
    font-family: "Poppins", sans-serif;
}

a {
    text-decoration: none;
}

p {
    /* color: #393535 !important; */
}


/* =========================================
   HEADER
========================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background-color: var(--white-color);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.site-header .navbar {
    min-height: 88px;
    padding: 0;
}




/* =========================================
   BRAND
========================================= */

.navbar-brand {
    display: inline-flex;
    align-items: center;
    padding: 0;
}

.logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

@media (max-width: 991.98px) {
    .logo-img {
        height: 70px;
    }

    /* .carousel-control-prev-icon{
       height: 20px !important;
    }
     .carousel-control-next-icon{
       height: 20px !important;
    } */
}

@media (max-width: 575.98px) {
    .logo-img {
        height: 70px;
    }
}

.carousel-item img {
    width: 100% !important;
}

/* =========================================
   CAROUSEL CONTROLS CUSTOMIZATION
========================================= */

.carousel-control-prev,
.carousel-control-next {
    width: 48px !important;
    height: 48px !important;
    background-color: rgba(27, 27, 27, 0.6) !important;
    border-radius: 50% !important;
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    opacity: 0.85 !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.carousel-control-prev {
    left: 24px !important;
}

.carousel-control-next {
    right: 24px !important;
}



.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    opacity: 1 !important;
    box-shadow: 0 6px 20px rgba(180, 151, 90, 0.4) !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 18px !important;
    height: 18px !important;
}

@media(max-width: 991px) {

    .carousel-control-prev,
    .carousel-control-next {
        width: 35px !important;
        height: 35px !important;
    }
}


/* =========================================
   MAIN NAVIGATION
========================================= */

.main-navigation {
    gap: 6px;
}

.main-navigation .nav-link {
    position: relative;
    display: inline-block;
    padding: 31px 14px !important;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
}

.main-navigation .nav-link::after {
    position: absolute;
    content: "";
    left: 14px;
    right: 14px;
    bottom: 21px;
    height: 1px;
    background-color: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: center;
    transition: var(--transition);
}

.main-navigation .nav-link:hover,
.main-navigation .nav-link.active {
    color: var(--secondary-color);
}

.main-navigation .nav-link:hover::after,
.main-navigation .nav-link.active::after {
    transform: scaleX(1);
}


/* =========================================
   DROPDOWN
========================================= */

.main-navigation .dropdown-menu {
    min-width: 210px;
    margin-top: 0;
    padding: 10px 0;
    border: 1px solid var(--border-color);
    border-radius: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    
}

.main-navigation .dropdown-menu{
    background: var(--secondary-color);
    
}

.main-navigation .dropdown-item {
    padding: 10px 20px;
    color: var(--white-color);
    font-size: 14px;
    transition: var(--transition);
    
}

.main-navigation .dropdown-item:hover {
    color: var(--secondary-color);
    background-color: #f8f7f3;
    
}




/* =========================================
   HEADER CONTACT
========================================= */

.header-contact {
    gap: 18px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--text-dark);
}

.phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    transition: var(--transition);
}

.header-phone:hover .phone-icon {
    color: var(--white-color);
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.phone-content {
    display: flex;
    flex-direction: column;
}

.phone-content small {
    margin-bottom: 2px;
    color: var(--text-light);
    font-size: 10px;
    line-height: 1;
}

.phone-content strong {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}


/* =========================================
   HEADER BUTTON
========================================= */

.header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 19px;
    color: var(--white-color);
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: var(--transition);
    white-space: nowrap;
}

.header-btn:hover {
    color: var(--primary-color);
    background-color: transparent;
}


/* =========================================
   MOBILE TOGGLE
========================================= */

.navbar-toggler {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--border-color);
    border-radius: 0;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 20px;
    height: 20px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199.98px) {

    .main-navigation {
        gap: 0;
    }

    .main-navigation .nav-link {
        padding-left: 10px !important;
        padding-right: 10px !important;
        font-size: 13px;
    }

    .main-navigation .nav-link::after {
        left: 10px;
        right: 10px;
    }


    .header-contact {
        gap: 10px;
    }

    .header-phone {
        display: none;
    }

    .header-btn {
        padding: 0 15px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991.98px) {

    .site-header .navbar {
        min-height: 76px;
        /* padding: 12px 0; */
    }

    .navbar-brand {
        margin: 0;
    }


    .navbar-collapse {
        margin-top: 15px;
        padding: 15px 0 5px;
        border-top: 1px solid var(--border-color);
    }

    .main-navigation {
        gap: 0;
    }

    .main-navigation .nav-link {
        display: block;
        padding: 12px 0 !important;
    }

    .main-navigation .nav-link::after {
        display: none;
    }

    .main-navigation .dropdown-menu {
        margin-top: 0;
        border: 0;
        box-shadow: none;
        background-color: #f8f7f3;
    }

    .main-navigation .dropdown-item {
        padding: 10px 20px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575.98px) {

    .site-header .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .site-header .navbar {
        min-height: 70px;
    }


    .navbar-toggler {
        width: 40px;
        height: 40px;
    }

}


/* =========================================
   TRUST SECTION
========================================= */

.section-padding {
    padding: 90px 0;
}

@media (max-width: 991.98px) {
    .section-padding {
        padding: 50px 0;
    }
}

.section-title {
    color: var(--primary-color);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.4;
    max-width: 850px;
    margin: 0 auto 18px;
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 24px;
    }
}

.title-divider {
    width: 160px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 0 auto 50px;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1100px;
    margin: 0 auto 40px;
    position: relative;
}

/* Vertical Divider Line for Desktop */
.trust-grid::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background-color: #d1d1d1;
    transform: translateX(-50%);
}

.trust-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 30px;
}

/* Left Column Items */
.trust-item:nth-child(odd) {
    padding-right: 60px;
    padding-left: 0;
}

/* Right Column Items */
.trust-item:nth-child(even) {
    padding-left: 60px;
    padding-right: 0;
}

/* Top Row Items (border-bottom divider) */
.trust-item:nth-child(1),
.trust-item:nth-child(2) {
    border-bottom: 1px solid #d1d1d1;
    padding-bottom: 50px;
}

/* Bottom Row Items */
.trust-item:nth-child(3),
.trust-item:nth-child(4) {
    padding-top: 50px;
}

.trust-icon {
    font-size: 38px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.trust-content h4 {
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 0;
}

.trust-content p {
    color: var(--text-light);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
}

.trust-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 32px;
    color: var(--primary-color);
    background-color: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    margin-top: 10px;
}

.trust-cta-btn:hover {
    color: var(--white-color);
    background-color: var(--primary-color);
}

/* Responsive Overrides for trust-grid */
@media (max-width: 767.98px) {
    .trust-grid {
        grid-template-columns: 1fr;
        margin-bottom: 20px;
    }

    .trust-grid::before {
        display: none;
    }

    .trust-item {
        padding: 30px 0 !important;
        border-bottom: 1px solid #d1d1d1 !important;
    }

    .trust-item:last-child {
        border-bottom: none !important;
    }
}


/* =========================================
   TRUST FORM MODAL
========================================= */

.trust-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.trust-modal.show {
    opacity: 1;
    pointer-events: auto;
}

.trust-modal-content {
    display: flex;
    width: 850px;
    max-width: 95%;
    background-color: var(--white-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.trust-modal.show .trust-modal-content {
    transform: scale(1);
}

.trust-modal-left {
    width: 45%;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-modal-left h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 30px;
    color: var(--white-color);
}

.modal-pillar {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.modal-pillar:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.modal-pillar-icon {
    font-size: 20px;
    color: var(--secondary-color);
    margin-top: 3px;
}

.modal-pillar-text h5 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--white-color);
}

.modal-pillar-text p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

.trust-modal-right {
    width: 55%;
    padding: 45px 35px;
    background-color: var(--white-color);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    border: none;
    background: transparent;
    color: #666;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close-btn:hover {
    color: var(--primary-color);
}

.modal-logo-wrapper {
    text-align: center;
    margin-bottom: 25px;
}

.modal-logo {
    max-height: 70px;
    width: auto;
}

.modal-form .form-control,
.modal-form .form-select {
    height: 46px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    padding: 10px 15px;
    color: var(--text-dark);
}

.modal-form .form-control:focus,
.modal-form .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: none;
}

.phone-input-group {
    display: flex;
    gap: 10px;
}

.country-code-select {
    width: 130px !important;
}

.phone-input {
    flex: 1;
}

.modal-submit-btn {
    width: 100%;
    height: 46px;
    background-color: var(--secondary-color);
    color: var(--white-color);
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.modal-submit-btn:hover {
    background-color: var(--primary-color);
}

/* Responsive modal overrides */
@media (max-width: 767.98px) {
    .trust-modal-content {
        width: 400px;
    }

    .trust-modal-left {
        display: none;
    }

    .trust-modal-right {
        width: 100%;
        padding: 40px 25px;
    }
}


/* =========================================
   ABOUT US SECTION
========================================= */

.about-section {
    background-color: #F7F5F0;
}

.about-img-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(20, 37, 31, 0.08);
}

.about-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.about-img-wrapper:hover .about-img {
    transform: scale(1.03);
}

.about-logo-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 10px 16px;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    max-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

.about-logo-badge img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media (min-width: 992px) {
    .about-content {
        padding-left: 30px;
    }
}

.about-subtitle {
    display: block;
    color: var(--secondary-color);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.about-title {
    color: var(--primary-color);
    font-size: 34px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-lead {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 18px;
}

.about-text {
    color: var(--text-light);
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.about-highlight-box {
    padding: 22px;
    background-color: #f7f5f0;
    border-left: 4px solid var(--secondary-color);
    border-radius: 0 6px 6px 0;
    margin: 25px 0;
}

.about-highlight-box h4 {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 0;
    line-height: 1.4;
}

.about-highlight-box p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

@media(max-width: 991px) {
    .about-title {
        font-size: 26px;
    }

    p {
        font-size: 14px !important;
    }
}


/* =========================================
   FEATURED PROPERTIES SECTION
========================================= */

.properties-section {
    background-color: var(--white-color);
}

.property-tabs {
    border-bottom: 2px solid #f1f1f1;
    gap: 10px;
}

.property-tabs .nav-item {
    margin-bottom: -2px;
}

.property-tabs .nav-link {
    border: none;
    background: transparent;
    color: #666666;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 25px;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.property-tabs .nav-link:hover {
    color: var(--primary-color);
    border-bottom-color: rgba(180, 151, 90, 0.3);
}

.property-tabs .nav-link.active {
    color: var(--primary-color);
    background-color: transparent;
    border-bottom-color: var(--secondary-color);
}

.property-tabs .nav-link.active i {
    color: var(--secondary-color);
}

.property-card {
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.property-card:hover {
    transform: translateY(-6px);
    /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07); */
}

.property-img-wrapper {
    position: relative;
    /* height: 220px; */
    overflow: hidden;
}

.property-img {
    width: 100%;
    /* height: 100%;
    object-fit: cover; */
    transition: transform 0.5s ease;
}

.property-card:hover .property-img {
    transform: scale(1.05);
}

.property-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    z-index: 2;
}

.property-badge.commercial {
    background-color: var(--secondary-color);
}

.property-badge.plots {
    background-color: #5d6c59;
}

.property-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.property-location {
    display: block;
    color: var(--secondary-color);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.property-card-title {
    color: var(--primary-color);
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
    margin-top: 0;
}

.property-card-text {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.property-meta {
    display: flex;
    gap: 20px;
    border-top: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
    padding: 12px 0;
    margin-bottom: 20px;
}

.property-meta span {
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.property-meta i {
    color: var(--secondary-color);
    font-size: 14px;
}

.property-btn {
    display: block;
    text-align: center;
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 10px 0;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    /* text-transform: uppercase; */
    letter-spacing: 0.5px;
    transition: var(--transition);
    text-decoration: none;
}

.property-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

@media(max-width: 991px) {
    .property-card-body {
        padding: 20px;
    }
}


/* =========================================
   PERSPECTIVE SECTION
========================================= */

.perspective-section {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.perspective-subtitle {
    display: block;
    color: var(--secondary-color);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.perspective-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--white-color);
    margin-bottom: 22px;
}

.perspective-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.perspective-quote-card {
    background-color: rgba(255, 255, 255, 0.04);
    border-left: 3px solid var(--secondary-color);
    padding: 24px;
    border-radius: 0 8px 8px 0;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.quote-icon {
    color: var(--secondary-color);
    font-size: 24px;
    margin-bottom: 12px;
    display: block;
}

.quote-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 14.5px;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.perspective-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
}

.perspective-card:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.perspective-card-icon {
    font-size: 26px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.perspective-card h3 {
    color: var(--white-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 0;
    line-height: 1.4;
}

.perspective-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0;
}



@media(max-width: 991px) {
    .perspective-title {
        font-size: 26px;
    }
}


/* =========================================
   LOCATIONS SECTION
========================================= */

.locations-section {
    background-color: var(--white-color);
}

.location-card {
    background-color: #fdfcf9;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(20, 37, 31, 0.08);
}

.location-img-wrapper {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.location-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.location-card:hover .location-img {
    transform: scale(1.04);
}

.location-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
}

.location-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.location-card-title {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    margin-top: 0;
    line-height: 1.3;
}

.location-project {
    color: var(--secondary-color);
    font-size: 13px;
    font-weight: 600;
    display: block;
    margin-bottom: 14px;
}

.location-card-text {
    color: var(--text-light);
    font-size: 13.5px;
    line-height: 1.55;
    margin-bottom: 18px;
    flex: 1;
}

.map-iframe-wrapper {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-bottom: 16px;
    line-height: 0;
}

.location-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 10px 18px;
    border-radius: 4px;
    font-size: 13.5px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    width: 100%;
}

.location-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}


/* =========================================
   LOCATIONS NO-IMAGE ADDITIONS
========================================= */

.location-card.no-img {
    padding-top: 8px;
}

.location-card-header {
    display: flex;
    align-items: center;
    padding: 24px 24px 0 24px;
    gap: 16px;
}

.location-icon-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    background-color: rgba(180, 151, 90, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    font-size: 22px;
    flex-shrink: 0;
}

.location-icon-badge.nature {
    background-color: rgba(20, 37, 31, 0.07);
    color: var(--primary-color);
}

.location-indicators {
    margin-bottom: 20px;
    background-color: rgba(20, 37, 31, 0.02);
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: 8px;
}

.indicators-title {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}

.indicator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
}

.indicator-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--text-color);
}

.indicator-item i {
    color: var(--secondary-color);
    font-size: 13px;
    width: 14px;
    text-align: center;
}


/* =========================================
   TEAM SECTION
========================================= */

.team-section {
    background: linear-gradient(135deg, #fdfcf9 0%, #f6f0df 50%, #ebdcb9 100%);
    border-top: 1px solid rgba(180, 151, 90, 0.15);
    border-bottom: 1px solid rgba(180, 151, 90, 0.15);
}

.team-card {
    background-color: var(--white-color);
    border: 1px solid rgba(180, 151, 90, 0.15);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(180, 151, 90, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(180, 151, 90, 0.12);
}

.team-img-wrapper {
    position: relative;
    overflow: hidden;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 30px auto 10px auto;
    background-color: #f0f0f0;
    border: 3px solid rgba(180, 151, 90, 0.2);
    transition: var(--transition);
}

.team-card:hover .team-img-wrapper {
    border-color: var(--secondary-color);
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img {
    transform: scale(1.04);
}

.team-info {
    padding: 22px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.team-name {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    margin-top: 0;
    line-height: 1.3;
}

.team-role {
    color: var(--secondary-color);
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.team-bio {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.team-cv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 14px;
    padding: 7px 18px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(180, 151, 90, 0.12);
    border: 1px solid rgba(180, 151, 90, 0.35);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: center;
    cursor: pointer;
}

.team-cv-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(20, 37, 31, 0.15);
}

.team-cv-btn i {
    color: var(--secondary-color);
    font-size: 12.5px;
    transition: color 0.3s ease;
}

.team-cv-btn:hover i {
    color: var(--white-color);
}

/* Executive CV Modal */
.cv-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 37, 31, 0.75);
    backdrop-filter: blur(5px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cv-modal-overlay.show {
    display: flex;
    opacity: 1;
}

.cv-modal-box {
    background: #ffffff;
    border-radius: 16px;
    max-width: 640px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(180, 151, 90, 0.3);
    transform: translateY(20px) scale(0.98);
    transition: transform 0.3s ease;
}

.cv-modal-overlay.show .cv-modal-box {
    transform: translateY(0) scale(1);
}

.cv-modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1c362c 100%);
    color: #ffffff;
    padding: 26px 24px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.cv-modal-avatar {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
    object-fit: cover;
    flex-shrink: 0;
}

.cv-modal-header-info {
    flex: 1;
}

.cv-modal-name {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.cv-modal-role {
    color: var(--secondary-color);
    font-size: 12.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: block;
    margin-bottom: 6px;
}

.cv-modal-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(180, 151, 90, 0.2);
    color: #f6f0df;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 12px;
    border: 1px solid rgba(180, 151, 90, 0.35);
}

.cv-modal-close-btn {
    position: absolute;
    top: 16px;
    right: 18px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #ffffff;
    font-size: 22px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
}

.cv-modal-close-btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.cv-modal-body {
    padding: 24px 28px;
}

.cv-section-title {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 18px 0 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(180, 151, 90, 0.2);
}

.cv-section-title:first-child {
    margin-top: 0;
}

.cv-section-title i {
    color: var(--secondary-color);
    font-size: 14px;
}

.cv-summary-text {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 0;
}

.cv-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cv-timeline-item {
    position: relative;
    padding-left: 20px;
    margin-bottom: 14px;
}

.cv-timeline-item::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--secondary-color);
}

.cv-timeline-item:last-child {
    margin-bottom: 0;
}

.cv-timeline-title {
    color: var(--primary-color);
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 2px;
}

.cv-timeline-sub {
    font-size: 12.5px;
    color: var(--text-light);
    line-height: 1.5;
}

.cv-skills-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.cv-skill-tag {
    background-color: #fdfcf9;
    border: 1px solid rgba(180, 151, 90, 0.25);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.cv-modal-footer {
    padding: 16px 28px 24px 28px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    border-top: 1px solid var(--border-color);
}

.cv-btn-close {
    padding: 8px 20px;
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cv-btn-close:hover {
    background-color: #f0ede6;
}

.cv-btn-print {
    padding: 8px 22px;
    background: var(--primary-color);
    color: #ffffff;
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    text-decoration: none;
}

.cv-btn-print:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-color);
}


/* =========================================
   TESTIMONIALS SECTION
========================================= */

.testimonials-section {
    background-color: var(--white-color);
}

.testimonial-card {
    background-color: #fdfcf9;
    border: 1px solid var(--border-color);
    padding: 35px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-card::before {
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 30px;
    right: 30px;
    color: rgba(180, 151, 90, 0.08);
    font-size: 32px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(20, 37, 31, 0.05);
    border-color: var(--secondary-color);
}

.rating-stars {
    color: var(--secondary-color);
    font-size: 13px;
    margin-bottom: 18px;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
    margin-top: 0;
    flex: 1;
}

.testimonial-client {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.client-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    flex-shrink: 0;
    border: 2px solid rgba(180, 151, 90, 0.2);
}

.client-name {
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 3px 0;
    line-height: 1.3;
}

.client-designation {
    color: var(--text-light);
    font-size: 12px;
    font-weight: 500;
    display: block;
}

/* Owl Carousel Dots Customization */
.testimonials-section .owl-theme .owl-dots {
    margin-top: 30px !important;
}

.testimonials-section .owl-theme .owl-dots .owl-dot span {
    background: rgba(20, 37, 31, 0.2) !important;
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    transition: all 0.3s ease;
}

.testimonials-section .owl-theme .owl-dots .owl-dot.active span,
.testimonials-section .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--secondary-color) !important;
    transform: scale(1.2);
}


/* =========================================
   BLOG SECTION
========================================= */

.blog-section {
    background-color: #fdfcf9;
}

.blog-card {
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(20, 37, 31, 0.08);
}

.blog-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background-color: #f0f0f0;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 10.5px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(180, 151, 90, 0.3);
}

.blog-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-date {
    color: var(--text-light);
    font-size: 12px;
    font-weight: 500;
    display: block;
    margin-bottom: 12px;
}

.blog-card-title {
    color: var(--primary-color);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 12px;
    margin-top: 0;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
    color: var(--secondary-color);
}

.blog-card-text {
    color: var(--text-light);
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 22px;
    margin-top: 0;
    flex: 1;
}

.blog-read-more {
    color: var(--primary-color);
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: var(--secondary-color);
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(4px);
}


/* =========================================
   FAQ SECTION
========================================= */

.faq-section {
    background-color: #fcfbfa;
    /* subtle warm off-white background to break sections */
    border-top: 1px solid var(--border-color);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
    border-color: rgba(180, 151, 90, 0.4);
    box-shadow: 0 8px 24px rgba(180, 151, 90, 0.06);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(180, 151, 90, 0.1);
}

.faq-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 24px 30px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    outline: none;
    gap: 20px;
}

.faq-question {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    transition: color 0.3s ease;
    line-height: 1.5;
}

.faq-item:hover .faq-question,
.faq-item.active .faq-question {
    color: var(--secondary-color);
}

.faq-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(180, 151, 90, 0.08);
    color: var(--secondary-color);
    font-size: 14px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon-wrapper {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.faq-icon-wrapper i {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon-wrapper i {
    transform: rotate(180deg);
}

/* Modern accordion collapse transition using CSS Grid */
.faq-collapse {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.faq-item.active .faq-collapse {
    grid-template-rows: 1fr;
}

.faq-body {
    min-height: 0;
}

.faq-body p {
    padding: 0 30px 24px 30px;
    margin: 0;
    font-size: 14.5px;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-link {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed var(--secondary-color);
    transition: border-color 0.3s ease;
}

.faq-link:hover {
    border-bottom-style: solid;
}

/* Mobile responsive styles */
@media (max-width: 767.98px) {
    .faq-toggle {
        padding: 20px;
    }

    .faq-question {
        font-size: 14.5px;
    }

    .faq-icon-wrapper {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .faq-body p {
        padding: 0 20px 20px 20px;
        font-size: 13.5px;
    }
}

/* Footer Styles */
.footer-section {
    background-color: #111111;
    color: #ffffff;
    padding: 80px 0 0;
    border-top: 1px solid rgba(180, 151, 90, 0.15);
    font-family: 'Poppins', sans-serif;
}

.footer-logo-desc {
    margin-bottom: 24px;
}

.footer-logo {
    height: 130px;
    margin-bottom: 18px;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-widget-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-item a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-link-item a::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.footer-link-item a:hover {
    color: var(--secondary-color);
    padding-left: 6px;
}

.footer-link-item a:hover::before {
    transform: translateX(3px);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 2;
}

.footer-contact-item i {
    font-size: 16px;
    color: var(--secondary-color);
    margin-top: 4px;
    width: 20px;
    text-align: center;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    margin-top: 60px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copy-text {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
}

.footer-bottom-link {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.footer-bottom-link:hover {
    color: var(--secondary-color);
}

/* Modals styles override */
.legal-modal .modal-content {
    background-color: #1c1c1c;
    color: #ffffff;
    border: 1px solid rgba(180, 151, 90, 0.25);
    border-radius: 16px;
    font-family: 'Poppins', sans-serif;
}

.legal-modal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 24px;
}

.legal-modal .modal-title {
    font-weight: 700;
    color: var(--secondary-color);
}

.legal-modal .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.legal-modal .modal-body {
    padding: 24px;
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-height: 60vh;
    overflow-y: auto;
}

.legal-modal .modal-body h6 {
    color: #ffffff;
    font-weight: 600;
    margin-top: 18px;
    margin-bottom: 8px;
}

.legal-modal .modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 24px;
}

.legal-modal-btn {
    background-color: var(--secondary-color);
    color: #ffffff;
    border: none;
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.legal-modal-btn:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

@media (max-width: 991.98px) {
    .footer-bottom-links {
        justify-content: center;
        margin-top: 12px;
    }

    .footer-logo {
        height: 80px;
    }
}




/* contact css */
.jm-contact-section {
    background: #1B1B1B linear-gradient(180deg, #1B1B1B 0%, #111111 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.contact-wrapper {
    background: linear-gradient(90deg, #1B1B1B 0%, rgba(27, 27, 27, 0.9) 35%, rgba(27, 27, 27, 0.75) 55%, rgba(27, 27, 27, 0.15) 100%), url('../img/properties/residential-featured.jpg') center/cover no-repeat;
    padding: 48px 48px;
    border-radius: 24px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-details-wrap {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    padding-right: 15px;
}

.contact-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.contact-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.5;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-list li {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-info-list li i {
    font-size: 20px;
    color: #ffffff;
    width: 24px;
    text-align: center;
}

.contact-info-list li div {
    font-size: 15px;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.4;
}

.contact-info-list li div a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.contact-info-list li div a:hover {
    opacity: 0.8;
}

.contact-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin: 0 0 24px;
}

.contact-social-icons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.social-btn:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
    color: #ffffff;
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.x-twitter {
    background: #000000;
}

.social-btn.youtube {
    background: #ff0000;
}

.social-btn.linkedin {
    background: #0a66c2;
}

/* Floating contact form card */
.contact-card-box {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    color: #17283e;
    width: 100%;
}

.contact-card-box label {
    font-weight: 700;
    color: #17283e;
    margin-bottom: 6px;
    font-size: 12px;
}

.contact-card-box .form-control {
    border: 1px solid #dcdfe6;
    border-radius: 12px !important;
    padding: 11px 16px;
    font-weight: 500;
    color: #17283e;
    font-size: 13px;
    background: #f8fafc;
    transition: all 0.2s ease;
}

.contact-card-box .form-control::placeholder {
    color: #a0aec0;
}

.contact-card-box .form-control:focus {
    border-color: var(--secondary-color);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(180, 151, 90, 0.2);
}

.contact-card-box textarea.form-control {
    height: auto;
    resize: none;
}

.contact-card-box .captcha-box {
    border-radius: 12px;
    overflow: hidden;
    height: 44px;
    background: #1B1B1B;
}

.contact-card-box #refreshCaptcha {
    border-radius: 6px;
}

.contact-card-box .submit-btn {
    border: none;
    background: var(--secondary-color);
    color: #ffffff;
    padding: 13px 20px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 24px;
    width: 100%;
    transition: all 0.2s ease;
    box-shadow: 0 10px 24px rgba(180, 151, 90, 0.25);
    cursor: pointer;
}

.contact-card-box .submit-btn:hover {
    background: var(--primary-color);
    box-shadow: 0 10px 24px rgba(27, 27, 27, 0.25);
}

@media (max-width: 991px) {
    .jm-contact-section {
        background: #1B1B1B;
        padding: 60px 0;
    }

    .contact-wrapper {
        background: #1B1B1B;
        padding: 36px 24px;
        border-radius: 16px;
        box-shadow: none;
        border: none;
    }

    .contact-subtitle {
        margin-bottom: 24px;
    }
}

.jm-contact-info-strip {
    position: relative;
    margin-top: 26px;
    padding: 8px 0 0;
    background: linear-gradient(180deg, #f1f4f9 0%, #eceff4 100%);
    overflow: hidden;
}

.jm-contact-info-strip::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    top: -280px;
    right: -120px;
    background: radial-gradient(circle, rgba(180, 151, 90, 0.18), rgba(180, 151, 90, 0));
    pointer-events: none;
}

.jm-contact-strip-shell {
    position: relative;
    padding: 24px 24px 22px;
    border-radius: 28px;
    background: linear-gradient(138deg, #ffffff 0%, #f3f7f6 100%);
    border: 1px solid rgba(180, 151, 90, 0.18);
    box-shadow: 0 20px 48px rgba(180, 151, 90, 0.08);
    overflow: hidden;
}

.jm-contact-strip-shell::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -80px;
    bottom: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(180, 151, 90, 0.12), rgba(180, 151, 90, 0));
    pointer-events: none;
}

.jm-contact-strip-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(23, 40, 62, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 40, 62, 0.04) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.5;
    pointer-events: none;
}

.jm-contact-strip-head {
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
}

.jm-contact-strip-kicker {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--secondary-color);
    border: 1px solid rgba(180, 151, 90, 0.28);
    background: rgba(180, 151, 90, 0.06);
}

.jm-contact-strip-head h2 {
    margin: 0;
    color: var(--primary-color);
    font-size: clamp(1.25rem, 1.02rem + 0.84vw, 2rem);
    line-height: 1.2;
    font-weight: 800;
    max-width: 520px;
}

.jm-contact-info-row {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

.jm-contact-info-card {
    --card-shift: 0px;
    position: relative;
    height: 100%;
    min-height: 170px;
    border-radius: 22px;
    border: 1px solid rgba(180, 151, 90, 0.12);
    background: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 10px 30px rgba(23, 40, 62, 0.05);
    padding: 20px 22px 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
    transform: translateY(var(--card-shift));
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    overflow: hidden;
}

.jm-contact-info-row>[class*="col-"]:nth-child(2) .jm-contact-info-card {
    --card-shift: 12px;
}

.jm-contact-info-row>[class*="col-"]:nth-child(3) .jm-contact-info-card {
    --card-shift: 6px;
}

.jm-contact-info-card::before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    top: -65px;
    left: -42px;
    background: radial-gradient(circle, rgba(180, 151, 90, 0.08), rgba(180, 151, 90, 0));
    pointer-events: none;
}

.jm-contact-info-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid transparent;
    background: linear-gradient(140deg, rgba(180, 151, 90, 0.2), rgba(27, 27, 27, 0.2)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.jm-contact-info-card:hover {
    transform: translateY(calc(var(--card-shift) - 8px));
    border-color: rgba(180, 151, 90, 0.35);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 16px 38px rgba(180, 151, 90, 0.12);
}

.jm-contact-info-index {
    position: absolute;
    right: 16px;
    top: 12px;
    font-size: 38px;
    line-height: 1;
    font-weight: 800;
    color: rgba(23, 40, 62, 0.06);
    pointer-events: none;
}

.jm-contact-info-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(150deg, rgba(180, 151, 90, 0.12), rgba(180, 151, 90, 0.04));
    border: 1px solid rgba(180, 151, 90, 0.25);
    color: var(--secondary-color);
    font-size: 22px;
}

.jm-contact-info-label {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
}

.jm-contact-info-value {
    margin: 0;
    color: var(--primary-color);
    font-size: clamp(1.14rem, 0.98rem + 0.44vw, 1.46rem);
    line-height: 1.32;
    font-weight: 700;
    text-decoration: none;
    word-break: break-word;
}

.jm-contact-info-value:hover {
    color: var(--secondary-color);
}

.jm-contact-info-meta {
    margin: 0;
    color: rgba(23, 40, 62, 0.65);
    font-size: 13px;
    font-weight: 500;
}


.contact-image-box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}


.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(180, 151, 90, 0.12);
    color: var(--secondary-color);
    padding: 10px 18px;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-form-box h3 {
    font-size: 35px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 18px;
}

.contact-form-box {
    padding: 45px 35px;
    background: #fff;
    border: 1px solid rgba(23, 40, 62, 0.08);
}

.contact-form-box label {
    font-weight: 700;
    color: #17283e;
    margin-bottom: 8px;
}

.contact-form-box .form-control,
.contact-form-box .form-select {
    /* height: 54px; */
    border: 1px solid #e0e6ef;
    padding: 12px 16px;
    font-weight: 500;
    color: #17283e;
    box-shadow: none;
    font-size: 12px;
}

.contact-form-box .form-control {
    border-radius: 0px;

}

.contact-form-box textarea.form-control {
    height: auto;
    resize: none;
}

.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(180, 151, 90, 0.12);
}

.captcha-box {
    height: 45px;
    background: #17283e;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px 0 20px;
}

#captchaText {
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 5px;
    user-select: none;
}

#refreshCaptcha {
    width: 38px;
    height: 38px;
    border: none;
    background: #b4975a;
    color: #ffffff;
}

#captchaMsg {
    margin: 0;
    font-weight: 700;
}

.submit-btn {
    border: none;
    background: var(--secondary-color);
    color: #ffffff;
    padding: 15px 34px;
    font-weight: 800;
    transition: 0.3s;
    box-shadow: 0 14px 30px rgba(180, 151, 90, 0.28);
}

.submit-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.map iframe {
    width: 100%;
    height: 450px;
}



@media (max-width: 991px) {
    .jm-contact-strip-shell {
        padding: 30px 22px 24px;
        border-radius: 24px;
    }

    .jm-contact-strip-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .jm-contact-strip-head h2 {
        max-width: 100%;
    }

    .jm-contact-info-card {
        min-height: 155px;
        padding: 18px 16px 16px;
        --card-shift: 0px;
    }

    .jm-contact-info-row>[class*="col-"]:nth-child(2) .jm-contact-info-card,
    .jm-contact-info-row>[class*="col-"]:nth-child(3) .jm-contact-info-card {
        --card-shift: 0px;
    }

    .contact-image-box img {
        min-height: 420px;
    }

    .contact-image-overlay,
    .contact-form-box {
        padding: 35px 25px;
    }
}

@media (max-width: 767px) {
    .jm-contact-info-strip {
        margin-top: 20px;
        padding-top: 0;
    }

    .jm-contact-strip-shell {
        padding: 24px 16px 18px;
        border-radius: 20px;
    }

    .jm-contact-strip-kicker {
        font-size: 11px;
        padding: 6px 12px;
    }

    .jm-contact-strip-head h2 {
        font-size: 1.35rem;
    }

    .jm-contact-info-card {
        min-height: 140px;
        padding: 16px 14px 14px;
    }

    .jm-contact-info-index {
        font-size: 30px;
        right: 12px;
        top: 10px;
    }

    .jm-contact-info-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .jm-contact-info-value {
        font-size: 18px;
    }


    .contact-image-overlay,
    .contact-form-box {
        padding: 30px 20px;
    }

    .contact-image-overlay h2,
    .contact-form-box h3 {
        font-size: 22px;
        line-height: 1.25;
    }

    #captchaText {
        font-size: 18px;
        letter-spacing: 3px;
    }

    .contact-form-box .form-control {
        font-size: 12px;
    }

    .map iframe {
        width: 100%;
        height: 250px;
    }
}

@media (max-width: 575px) {
    .contact-wrapper {
        padding: 20px 16px;
    }

    .contact-image-box img {
        min-height: 320px;
    }

    .contact-image-overlay,
    .contact-form-box {
        padding: 28px 18px;
    }

    .contact-image-overlay h2,
    .contact-form-box h3 {
        font-size: 19px;
    }

    .captcha-box {
        padding: 0 10px 0 12px;
    }

    #captchaText {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .submit-btn {
        width: 100%;
    }
}

/* contact css end */

/* =========================================
   FLOATING CONTACT BUTTONS
========================================= */

.floating-contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    color: #ffffff;
}

.whatsapp-float {
    background-color: #25D366;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.call-float {
    background-color: var(--secondary-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
    .floating-contact-buttons {
        bottom: 20px;
        right: 17px;
        gap: 10px;
    }

    .floating-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* =========================================
   SUBPAGE BANNERS
   ========================================= */
.page-banner {
    position: relative;
    padding: 200px 0 70px;
    background: url('../img/banner/inner-page-baner.webp') no-repeat center center / cover;
    text-align: start;
    color: var(--text-dark);
    isolation: isolate;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(253, 250, 246, 0.85) 0%,
        rgba(253, 250, 246, 0.6) 40%,
        rgba(253, 250, 246, 0.2) 75%,
        transparent 100%
    );
    z-index: 1;
    pointer-events: none;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 10px;
    color: var(--primary-color);
    letter-spacing: -0.3px;
    word-break: break-word;
}

.page-breadcrumbs {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.5;
    color: var(--secondary-color);
}

.page-breadcrumbs a {
    color: var(--secondary-color);
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
}

.page-breadcrumbs a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-breadcrumbs span {
    color: var(--primary-color) !important;
    font-weight: 600;
}

@media (max-width: 991px) {
    .page-banner {
        padding: 65px 0 45px;
        background-position: left center;
    }

    .page-banner::before {
        background: linear-gradient(
            90deg,
            rgba(253, 250, 246, 0.92) 0%,
            rgba(253, 250, 246, 0.85) 55%,
            rgba(253, 250, 246, 0.45) 85%,
            rgba(253, 250, 246, 0.15) 100%
        );
    }

    .page-banner h1 {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .page-breadcrumbs {
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .page-banner {
        padding: 48px 0 32px;
        background-position: 5% center;
    }

    .page-banner::before {
        background: linear-gradient(
            90deg,
            rgba(253, 250, 246, 0.94) 0%,
            rgba(253, 250, 246, 0.85) 60%,
            rgba(253, 250, 246, 0.5) 88%,
            rgba(253, 250, 246, 0.15) 100%
        );
    }

    .page-banner h1 {
        font-size: 21px;
        line-height: 1.3;
        margin-bottom: 6px;
    }

    .page-breadcrumbs {
        font-size: 12px;
        gap: 2px 4px;
    }
}

@media (max-width: 375px) {
    .page-banner {
        padding: 40px 0 28px;
        background-position: 0% center;
    }

    .page-banner h1 {
        font-size: 19px;
    }

    .page-breadcrumbs {
        font-size: 11.5px;
    }
}

/* =========================================
   VALUES CARD GRID ("What We Stand For")
   ========================================= */
.values-section {
    background-color: var(--white-color);
}

.value-card {
    background-color: #f7f5f0;
    border-radius: 8px;
    padding: 35px 30px;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(180, 151, 90, 0.1);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(27, 27, 27, 0.08);
    background-color: var(--white-color);
    border-color: var(--secondary-color);
}

.value-icon {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14.5px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   PILLARS SECTION ("Vision, Mission, Promise")
   ========================================= */
.pillars-section {
    background-color: #F7F5F0;
}

.pillar-card {
    background-color: var(--white-color);
    border-radius: 8px;
    padding: 40px 30px;
    height: 100%;
    transition: var(--transition);
    border-top: 4px solid var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(27, 27, 27, 0.1);
}

.pillar-icon {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 22px;
}

.pillar-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 18px;
}

.pillar-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 12px;
}

.pillar-card p:last-child {
    margin-bottom: 0;
}

/* =========================================
   CONTACT PAGE ENHANCEMENTS
   ========================================= */
.contact-map-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(180, 151, 90, 0.15);
    margin-top: 25px;
    transition: var(--transition);
}

.contact-map-wrapper:hover {
    box-shadow: 0 15px 35px rgba(180, 151, 90, 0.15);
    border-color: var(--secondary-color);
}

.contact-map-wrapper iframe {
    display: block;
}

.office-card {
    background-color: var(--white-color);
    border-radius: 12px;
    padding: 35px 30px;
    height: 100%;
    border: 1px solid rgba(27, 27, 27, 0.08);
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(27, 27, 27, 0.06);
    border-color: var(--secondary-color);
}

.office-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.office-card-title i {
    color: var(--secondary-color);
}

.office-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.office-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    color: var(--text-light);
    line-height: 1.5;
}

.office-card-list li i {
    color: var(--secondary-color);
    margin-top: 4px;
}

.office-card-list li a {
    color: var(--text-light);
    transition: var(--transition);
}

.office-card-list li a:hover {
    color: var(--secondary-color);
}

.contact-card-box .form-control:focus {
    border-color: var(--secondary-color) !important;
    box-shadow: 0 0 0 0.25rem rgba(180, 151, 90, 0.2) !important;
}

/* =========================================
   RESIDENTIAL PROPERTY PAGE STYLES
   ========================================= */
.property-filter-bar {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.filter-btn {
    background-color: var(--white-color);
    border: 1px solid rgba(180, 151, 90, 0.35);
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--secondary-color);
    color: var(--white-color);
    border-color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(180, 151, 90, 0.35);
}

.res-property-card {
    background-color: var(--white-color);
    border-radius: 14px;
    border: 1px solid #e9ecef;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}



.res-property-img-wrap {
    position: relative;
    /* aspect-ratio: 16 / 10; */
    overflow: hidden;
    background-color: #1a1a1a;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}

.res-prop-img {
    width: 100%;
    /* height: 100%;
    object-fit: cover; */
    display: block;
    transition: transform 0.5s ease;
}

.res-property-card:hover .res-prop-img {
    transform: scale(1.03);
}

.res-property-body {
    padding: 24px 22px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.res-location-tag {
    font-size: 14.5px;
    font-weight: 600;
    color: #b5975b;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.res-location-tag i {
    color: #b5975b;
}

.res-property-title {
    font-size: 21px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
    line-height: 1.35;
    transition: color 0.3s ease;
}



.res-property-desc {
    font-size: 14.5px;
    color: #374151;
    line-height: 1.65;
    /* margin-bottom: 22px; */
    flex-grow: 1;
}

.res-card-footer {
    padding-top: 18px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

.res-enquire-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: var(--secondary-color);
    color: #ffffff;
    font-size: 15.5px;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
}

.res-enquire-btn:hover {
    background-color: #9d8147;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(181, 151, 91, 0.35);
}

/* Why Section */
.res-why-card {
    background-color: var(--white-color);
    padding: 32px 22px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(180, 151, 90, 0.15);
    height: 100%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: var(--transition);
}

.res-why-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.res-why-icon {
    font-size: 34px;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.res-why-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.res-why-card p {
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.55;
    margin: 0;
}



.res-cta-btn-gold {
    display: inline-flex;
    align-items: center;
    background-color: var(--secondary-color);
    color: var(--white-color);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 6px;
    transition: var(--transition);
}

.res-cta-btn-gold:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.res-cta-btn-white {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: var(--white-color);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 6px;
    transition: var(--transition);
}

.res-cta-btn-white:hover {
    background-color: var(--white-color);
    color: #25D366;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

@media (max-width: 767.98px) {
    .res-property-title {
        font-size: 18px;
    }

    .res-specs-grid {
        grid-template-columns: 1fr;
    }

    .res-cta-wrapper {
        padding: 35px 20px;
    }

    .res-cta-wrapper h3 {
        font-size: 20px;
    }
}






/* vedio-section start here */

.youtube-video iframe {
    border: 10px solid var(--secondary-color);

}

.youtube-head {
    color: var(--black);
    text-align: center;
    padding-bottom: 20px;
}


.youtube-head span {
    color: var(--secondary-color);
}

@media (min-width:768px) and (max-width:992px) {
    .youtube-video iframe {
        height: 340px !important;
    }

}

/* vedio-section end here */

/* =========================================
   BLOG DETAIL PAGE
   ========================================= */

.blog-detail-section {
    background-color: #fcfbfa;
    padding: 70px 0 90px;
}

.blog-article-wrapper {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.03);
    margin-bottom: 40px;
}

/* Article Header */
.blog-detail-header {
    margin-bottom: 30px;
}

.blog-detail-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(180, 151, 90, 0.12);
    color: var(--secondary-color);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid rgba(180, 151, 90, 0.3);
    margin-bottom: 16px;
}

.blog-detail-title {
    font-size: 34px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.blog-detail-meta-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    padding: 14px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    font-size: 13.5px;
    color: #666666;
}

.blog-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-meta-item i {
    color: var(--secondary-color);
    font-size: 14px;
}

/* Featured Media */
.blog-featured-media {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 35px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.blog-featured-media img {
    width: 100%;
    height: auto;
        /* max-height: 480px;
        object-fit: cover; */
    display: block;
}

.blog-media-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, transparent 100%);
    color: #ffffff;
    padding: 20px 24px 12px;
    font-size: 12.5px;
    font-weight: 400;
}

/* Article Body Content */
.blog-article-content {
    font-size: 16px;
    line-height: 1.85;
    color: #3b3e42;
}

.blog-article-content p {
    margin-bottom: 22px;
}

.blog-lead-text {
    font-size: 18.5px;
    font-weight: 500;
    line-height: 1.7;
    color: var(--primary-color);
    border-left: 4px solid var(--secondary-color);
    padding-left: 20px;
    margin: 25px 0 30px;
    background: rgba(180, 151, 90, 0.04);
    padding: 18px 20px;
    border-radius: 0 8px 8px 0;
}

.blog-article-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 38px 0 18px;
    position: relative;
    padding-bottom: 10px;
}

.blog-article-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.blog-article-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 28px 0 14px;
}

/* Stat Grid Inside Blog */
.blog-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin: 30px 0;
}

.blog-stat-card {
    background: linear-gradient(135deg, #fdfaf6 0%, #f6f1e8 100%);
    border: 1px solid rgba(180, 151, 90, 0.25);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.blog-stat-card:hover {
    transform: translateY(-3px);
}

.blog-stat-number {
    font-size: 26px;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 4px;
}

.blog-stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Quote Callout */
.blog-quote-box {
    position: relative;
    background: #1B1B1B;
    color: #ffffff;
    border-radius: 14px;
    padding: 32px 36px 30px;
    margin: 35px 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.blog-quote-box::before {
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 24px;
    top: 15px;
    font-size: 70px;
    color: rgba(180, 151, 90, 0.12);
    pointer-events: none;
}

.blog-quote-text {
    font-size: 17.5px;
    font-style: italic;
    line-height: 1.65;
    margin-bottom: 14px;
    color: #f1f1f1;
    position: relative;
    z-index: 1;
}

.blog-quote-author {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Comparison Table */
.blog-table-responsive {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.blog-table {
    width: 100%;
    margin-bottom: 0;
    font-size: 14px;
}

.blog-table th {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 14px 18px;
    font-weight: 600;
    border: none;
}

.blog-table td {
    padding: 14px 18px;
    border-color: var(--border-color);
    color: #444;
}

.blog-table tr:nth-child(even) td {
    background-color: #faf8f5;
}

/* Bullet Lists */
.blog-feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 25px;
}

.blog-feature-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.blog-feature-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--secondary-color);
    font-size: 13px;
}

/* Highlight / Takeaway Box */
.blog-highlight-box {
    background: #fdfaf6;
    border: 1px solid rgba(180, 151, 90, 0.35);
    border-radius: 12px;
    padding: 26px 28px;
    margin: 35px 0;
}

.blog-highlight-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.blog-highlight-box h4 i {
    color: var(--secondary-color);
}

/* Tags & Share Bar */
.blog-footer-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 24px 0 0;
    margin-top: 35px;
    border-top: 1px solid var(--border-color);
}

.blog-tags-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.blog-tag-chip {
    font-size: 12px;
    font-weight: 600;
    color: #555555;
    background: #f1eee9;
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    transition: var(--transition);
}

.blog-tag-chip:hover {
    background: var(--secondary-color);
    color: #ffffff;
}

.blog-share-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-share-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.blog-share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    color: #ffffff;
}

.share-wa { background-color: #25D366; }
.share-li { background-color: #0077B5; }
.share-tw { background-color: #000000; }
.share-fb { background-color: #1877F2; }

/* Author Bio Card */
.blog-author-card {
    background: linear-gradient(135deg, #ffffff 0%, #fdfbf7 100%);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 35px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.02);
}

.blog-author-avatar {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
    flex-shrink: 0;
}

.blog-author-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3px;
}

.blog-author-role {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.blog-author-desc {
    font-size: 13.5px;
    line-height: 1.55;
    color: #666;
    margin-bottom: 0;
}

/* Post Navigation */
.blog-post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.blog-nav-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px 22px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-nav-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(180, 151, 90, 0.1);
}

.blog-nav-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-nav-title {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.4;
    margin: 0;
}

/* Blog In-Article Inquiry Form */
.blog-inquiry-box {
    background: #1B1B1B;
    color: #ffffff;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-inquiry-box h3 {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.blog-inquiry-box p {
    font-size: 13.5px;
    color: #c5c5c5;
    margin-bottom: 22px;
}

.blog-inquiry-box .form-control,
.blog-inquiry-box .form-select {
    background: #282828;
    border: 1px solid #3d3d3d;
    color: #ffffff;
    font-size: 13.5px;
    padding: 10px 14px;
    border-radius: 8px;
}

.blog-inquiry-box .form-control:focus,
.blog-inquiry-box .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(180, 151, 90, 0.25);
    background: #2d2d2d;
    color: #ffffff;
}

.blog-inquiry-box .form-control::placeholder {
    color: #888888;
}

.blog-inquiry-submit {
    background: var(--secondary-color);
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-inquiry-submit:hover {
    background: #c5aa6e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(180, 151, 90, 0.3);
}

/* =========================================
   SIDEBAR WIDGETS
   ========================================= */

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
}

.widget-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

/* Advisor Widget */
.sidebar-advisor-box {
    text-align: center;
    background: linear-gradient(135deg, #fbf8f2 0%, #f6f1e6 100%);
    border: 1px solid rgba(180, 151, 90, 0.3);
}

.sidebar-advisor-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
    margin-bottom: 14px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.sidebar-advisor-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3px;
}

.sidebar-advisor-designation {
    font-size: 12px;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.sidebar-advisor-contact-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 16px;
}

.sidebar-btn-wa {
    background-color: #25D366;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 12px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--transition);
}

.sidebar-btn-wa:hover {
    background-color: #20b858;
    color: #ffffff;
}

.sidebar-btn-call {
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 12px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--transition);
}

.sidebar-btn-call:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
}

/* Recent Posts Widget */
.sidebar-recent-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-recent-item {
    display: flex;
    gap: 14px;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.sidebar-recent-item:hover {
    transform: translateX(4px);
}

.sidebar-recent-thumb {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.sidebar-recent-content {
    flex: 1;
}

.sidebar-recent-date {
    font-size: 11px;
    color: #888;
    display: block;
    margin-bottom: 3px;
}

.sidebar-recent-title {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.35;
    margin: 0;
    transition: color 0.2s ease;
}

.sidebar-recent-item:hover .sidebar-recent-title {
    color: var(--secondary-color);
}

/* Category Widget */
.sidebar-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-category-item {
    border-bottom: 1px dashed var(--border-color);
}

.sidebar-category-item:last-child {
    border-bottom: none;
}

.sidebar-category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 13.5px;
    color: #444;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.sidebar-category-link:hover {
    color: var(--secondary-color);
}

.sidebar-category-count {
    background: #f0ede6;
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
}

/* Free Guide / Brochure Download Promo */
.sidebar-promo-card {
    background: #1B1B1B;
    color: #ffffff;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sidebar-promo-icon {
    font-size: 38px;
    color: var(--secondary-color);
    margin-bottom: 14px;
}

.sidebar-promo-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.sidebar-promo-desc {
    font-size: 13px;
    color: #b5b5b5;
    margin-bottom: 18px;
    line-height: 1.5;
}

.sidebar-promo-btn {
    background: var(--secondary-color);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 24px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.sidebar-promo-btn:hover {
    background: #ffffff;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Related Articles Section */
.blog-related-section {
    background-color: #ffffff;
    border-top: 1px solid var(--border-color);
    padding: 70px 0 85px;
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
    .blog-detail-section {
        padding: 45px 0 60px;
    }

    .blog-article-wrapper {
        padding: 28px 20px;
    }

    .blog-detail-title {
        font-size: 26px;
    }

    .blog-article-content h2 {
        font-size: 21px;
    }

    .blog-author-card {
        flex-direction: column;
        text-align: center;
        padding: 22px 18px;
    }

    .blog-post-nav {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .blog-article-wrapper {
        padding: 20px 15px;
        border-radius: 12px;
    }

    .blog-detail-title {
        font-size: 21px;
    }

    .blog-lead-text {
        font-size: 15.5px;
        padding: 14px 14px;
    }

    .blog-article-content {
        font-size: 15px;
    }

    .blog-quote-box {
        padding: 22px 18px;
    }

    .blog-quote-text {
        font-size: 15px;
    }

    .blog-footer-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* =========================================
   PROJECT DETAIL PAGE STYLES
   ========================================= */
.project-detail-section {
    background-color: #ffffff;
    padding: 70px 0 90px;
}

.project-showcase-wrapper {
    margin-bottom: 24px;
}

.project-showcase-card {
    background-color: var(--white-color);
    border-radius: 14px;
    border: 1px solid #e9ecef;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    overflow: hidden;
}

.project-showcase-img-wrap {
    position: relative;
    /* aspect-ratio: 16 / 9;
    max-height: 480px; */
    overflow: hidden;
    background-color: #1a1a1a;
    border-radius: 14px;
}

.project-showcase-img {
    width: 100%;
    /* height: 100%;
    object-fit: cover; */
    display: block;
    transition: transform 0.5s ease;
}

.project-showcase-card:hover .project-showcase-img {
    transform: scale(1.02);
}

.project-header-meta {
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e9ecef;
}

.project-location-badge {
    font-size: 16px;
    font-weight: 600;
    color: #b5975b;
    display: flex;
    align-items: center;
    margin: 0;
}

.project-rera-badge {
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    padding: 6px 14px;
    background-color: #198754;
    color: #ffffff;
}

.project-main-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    margin-top: 6px;
    margin-bottom: 8px;
    line-height: 1.3;
}

.project-subtitle {
    font-size: 15px;
    /* color: #6c757d; */
    margin-bottom: 0;
}

.project-key-stats {
    background-color: #f8f9fa;
    border: 1px solid #eef0f2;
    border-radius: 12px;
    padding: 24px 20px;
    margin-bottom: 28px;
}

.project-stat-label {
    display: block;
    font-size: 13px;
    /* color: #6c757d; */
    margin-bottom: 4px;
}

.project-stat-value {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}

.project-stat-value i {
    color: #b5975b;
    margin-right: 4px;
}

.project-section-heading {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.project-paragraph {
    /* color: #4b5563; */
    font-size: 15.5px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.project-amenity-card {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.project-amenity-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    border-color: #b5975b;
}

.project-amenity-icon {
    font-size: 26px;
    color: #b5975b;
    margin-right: 14px;
    flex-shrink: 0;
}

.project-amenity-title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2px;
}

.project-amenity-desc {
    font-size: 13px;
    /* color: #6c757d; */
}

.project-highlight-item {
    display: flex;
    align-items: center;
    font-size: 15px;
    /* color: #4b5563; */
    margin-bottom: 10px;
}

.project-highlight-item i {
    color: #198754;
    margin-right: 8px;
    flex-shrink: 0;
}

.project-sidebar-sticky {
    position: sticky;
    top: 100px;
    z-index: 5;
}

.project-form-card {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
}

.project-form-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}

.project-form-desc {
    font-size: 14px;
    /* color: #6c757d; */
    margin-bottom: 18px;
}

.project-form-label {
    font-size: 13.5px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
}

.project-advisor-card {
    background: linear-gradient(135deg, #161c2d 0%, #222b40 100%);
    border-radius: 12px;
    padding: 24px;
    color: #ffffff;
    border: none;
}

.project-advisor-icon-wrap {
    width: 48px;
    height: 48px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    flex-shrink: 0;
}

.project-advisor-icon {
    font-size: 20px;
    color: #b5975b;
}

.project-advisor-title {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

.project-advisor-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

.project-advisor-text {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 16px;
}

.project-advisor-btn-call {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: #ffffff;
    font-weight: 700;
    font-size: 14.5px;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.project-advisor-btn-call:hover {
    background-color: #ffffff;
    color: #161c2d;
}

.project-advisor-btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #25d366;
    color: #ffffff;
    font-weight: 700;
    font-size: 14.5px;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
}

.project-advisor-btn-whatsapp:hover {
    background-color: #20ba5a;
    color: #ffffff;
}

.footer-phone-item {
    align-items: flex-start !important;
}

.footer-phone-icon {
    margin-top: 4px;
}

.modal-prop-input {
    display: none;
    background-color: #f8f9fa;
    font-weight: 600;
    color: #b5975b;
}

@media (max-width: 991px) {
    .project-detail-section {
        padding: 45px 0 60px;
    }

    .project-sidebar-sticky {
        position: static;
        margin-top: 30px;
    }

    .project-main-title {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .project-main-title {
        font-size: 20px;
    }

    .project-key-stats .col-6 {
        margin-bottom: 10px;
    }
}

.project-price-badge {
    font-size: 15px;
    font-weight: 700;
    color: #b5975b;
    background-color: rgba(181, 151, 91, 0.12);
    border: 1px solid rgba(181, 151, 91, 0.3);
    padding: 6px 16px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
}

.project-config-card {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.project-config-card:hover {
    border-color: #b5975b;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.project-config-type {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.project-config-area {
    font-size: 14.5px;
    /* color: #6c757d; */
    margin-bottom: 12px;
}

.project-config-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary-color);
}

.project-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fdfaf6;
    color: #b5975b;
    font-weight: 600;
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid rgba(181, 151, 91, 0.25);
    margin-bottom: 12px;
}

/* =========================================
   RELATED PROJECTS SECTION & CAROUSEL
========================================= */
.related-projects-section {
    background-color: #fcfbf8;
    border-top: 1px solid rgba(180, 151, 90, 0.18);
    position: relative;
}

.related-projects-carousel {
    position: relative;
}

.related-projects-carousel .owl-stage {
    display: flex;
    padding: 10px 0 20px 0;
}

.related-projects-carousel .owl-item {
    display: flex;
    flex: 1 0 auto;
    height: auto;
}

.related-projects-carousel .item {
    width: 100%;
    display: flex;
}

.related-projects-carousel .res-property-card {
    width: 100%;
    background-color: var(--white-color);
    border-radius: 14px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.35s ease;
}

.related-projects-carousel .res-property-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(20, 37, 31, 0.12);
    border-color: rgba(180, 151, 90, 0.4);
}

.related-projects-carousel .res-property-img-wrap {
    height: 220px;
    overflow: hidden;
    position: relative;
    background-color: #1a1a1a;
}

.related-projects-carousel .res-prop-img {
    width: 100%;
    /* height: 100%;
    object-fit: cover; */
    transition: transform 0.5s ease;
}

.related-projects-carousel .res-property-card:hover .res-prop-img {
    transform: scale(1.06);
}

.related-projects-carousel .res-property-body {
    padding: 22px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.related-projects-carousel .res-property-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.35;
}

.related-projects-carousel .res-property-desc {
    font-size: 13.5px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
}

.related-projects-carousel .owl-nav {
    display: block;
    margin: 0;
}

.related-projects-carousel .owl-nav button.owl-prev,
.related-projects-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50% !important;
    background: #ffffff !important;
    border: 1px solid rgba(180, 151, 90, 0.35) !important;
    color: var(--primary-color) !important;
    font-size: 14px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
}

.related-projects-carousel .owl-nav button.owl-prev {
    left: -20px;
}

.related-projects-carousel .owl-nav button.owl-next {
    right: -20px;
}

.related-projects-carousel .owl-nav button.owl-prev:hover,
.related-projects-carousel .owl-nav button.owl-next:hover {
    background: var(--primary-color) !important;
    color: #ffffff !important;
    border-color: var(--primary-color) !important;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 8px 22px rgba(20, 37, 31, 0.25);
}

@media (max-width: 991.98px) {
    .related-projects-carousel .owl-nav button.owl-prev {
        left: 6px;
    }
    .related-projects-carousel .owl-nav button.owl-next {
        right: 6px;
    }
}

.related-projects-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.related-projects-carousel .owl-dots .owl-dot span {
    width: 9px;
    height: 9px;
    margin: 4px 6px;
    background: #d8ceb9;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-block;
}

.related-projects-carousel .owl-dots .owl-dot.active span,
.related-projects-carousel .owl-dots .owl-dot:hover span {
    background: var(--primary-color);
    width: 26px;
}