/* ========== SITE STYLES (merged) ========== */
/* ========== MAIN STYLES ========== */

/* ========== HEADER - Redesigned ========== */
/* Override Bootstrap navbar â€“ ensure our header design always shows */
.site-header.top-bar,
.site-header {
    background: #0a0a0a !important;
    box-shadow: none !important;
}
.site-header .navbar,
.site-header .navbar-light {
    background: transparent !important;
    padding: 0 !important;
    width: 100%;
}
/* Initial header (in flow) */
#header.site-header.header-initial {
    position: relative;
    z-index: 1025;
    background: #0a0a0a !important;
    border-bottom: 1px solid rgba(154, 123, 79, 0.2);
    box-shadow: 0 1px 0 0 rgba(154, 123, 79, 0.08);
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
#header.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #9a7b4f, #b8956a, #9a7b4f, transparent);
    opacity: 0.8;
}
body.scrolled #header.header-initial {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
/* Sticky header */
#header-sticky.site-header.header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1040;
    transform: translateY(-100%);
    background: rgba(10, 10, 10, 0.98) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(154, 123, 79, 0.2);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#header-sticky.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #9a7b4f, #b8956a);
    opacity: 1;
}
#header-sticky.site-header.header-scrolled {
    transform: translateY(0);
}
/* Header inner layout */
.site-header .header-inner {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 14px 40px !important;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}
/* Desktop: logo left, nav center, CTA right */
@media (min-width: 992px) {
    .site-header .header-nav-wrap {
        flex: 1;
        display: flex !important;
        align-items: center;
        justify-content: flex-end;
        position: relative;
    }
    .site-header .header-nav-list {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    .site-header .header-cta {
        margin-left: 0;
        flex-shrink: 0;
    }
}
.site-header .header-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}
.site-header .header-logo-img {
    max-height: 34px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.site-header .header-logo:hover .header-logo-img {
    transform: scale(1.02);
    opacity: 0.95;
}
.site-header .header-logo-secondary {
    max-height: 34px;
    width: auto;
    filter: invert(1);
    opacity: 0.9;
}
/* Nav list */
.site-header .navbar-nav,
.site-header .header-nav-list {
    display: flex !important;
    align-items: center;
    gap: 4px;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    flex-wrap: nowrap;
}
.site-header .header-nav-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 10px 18px !important;
    border-radius: 10px;
    text-decoration: none !important;
    transition: color 0.25s ease, background 0.25s ease;
}
.site-header .header-nav-link:hover {
    color: #b8956a !important;
    background: rgba(154, 123, 79, 0.12);
}
/* CTA / Phone button */
.site-header .header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    margin-left: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff !important;
    background: linear-gradient(135deg, #9a7b4f, #6d5a38);
    border-radius: 50px;
    text-decoration: none !important;
    box-shadow: 0 4px 20px rgba(154, 123, 79, 0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.site-header .header-cta:hover {
    background: linear-gradient(135deg, #b8956a, #9a7b4f);
    box-shadow: 0 6px 28px rgba(154, 123, 79, 0.5);
    transform: translateY(-1px);
    color: #fff !important;
}
/* Mobile menu â€“ applies when navbar is collapsed (below 992px) */
@media (max-width: 991px) {
    .site-header .header-inner {
        position: relative;
    }
    .site-header .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 12px;
        right: 12px;
        margin: 8px 12px 0;
        padding: 20px 0 24px;
        background: linear-gradient(180deg, #0f0f0f 0%, #0a0a0a 100%);
        border-radius: 16px;
        border: 1px solid rgba(154, 123, 79, 0.25);
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
        overflow: hidden;
        z-index: 100;
    }
    .site-header .navbar-collapse::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #9a7b4f, #b8956a);
    }
    .site-header .header-nav-list {
        flex-direction: column !important;
        gap: 0;
        padding: 0 16px;
    }
    .site-header .header-nav-list .nav-item {
        border: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    .site-header .header-nav-wrap .header-cta {
        margin: 12px 16px 0 !important;
        padding-top: 16px !important;
        border-top: 1px solid rgba(154, 123, 79, 0.3) !important;
    }
    .site-header .header-nav-link {
        display: flex !important;
        align-items: center;
        gap: 14px;
        padding: 16px 12px !important;
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.95) !important;
        border-radius: 10px;
        transition: background 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
    }
    .site-header .header-nav-link::before {
        content: '';
        width: 6px;
        height: 6px;
        background: #9a7b4f;
        border-radius: 50%;
        opacity: 0;
        transition: opacity 0.25s ease;
        flex-shrink: 0;
    }
    .site-header .header-nav-link:hover {
        background: rgba(154, 123, 79, 0.12);
        color: #b8956a !important;
        padding-left: 20px !important;
    }
    .site-header .header-nav-link:hover::before {
        opacity: 1;
    }
    .site-header .header-cta {
        display: flex !important;
        justify-content: center;
        align-items: center;
        width: 100% !important;
        padding: 16px 24px !important;
        font-size: 1rem;
        border-radius: 12px;
        background: linear-gradient(135deg, #9a7b4f, #6d5a38) !important;
        box-shadow: 0 8px 24px rgba(154, 123, 79, 0.4);
    }
    .site-header .header-cta:hover {
        background: linear-gradient(135deg, #b8956a, #9a7b4f) !important;
        box-shadow: 0 12px 32px rgba(154, 123, 79, 0.5);
    }
}

/* Mobile toggle */
.site-header .header-toggle {
    padding: 10px 14px;
    border: 1px solid rgba(154, 123, 79, 0.4);
    border-radius: 10px;
    background: transparent;
    transition: border-color 0.25s ease, background 0.25s ease;
}
.site-header .header-toggle:hover,
.site-header .header-toggle:focus {
    border-color: #9a7b4f;
    background: rgba(154, 123, 79, 0.1);
    box-shadow: 0 0 0 2px rgba(154, 123, 79, 0.2);
}

.g-0, .gy-0 {
    --bs-gutter-y: 0;
}
.head-title{
    margin-bottom: 30px;
}
.form-group p{
    margin-top: 10px;
    font-size: 10px;
}

@media (min-width: 750px) {
    .sayhello {
        padding: 120px 0px;
       
    }
    .separator:last-child{
        display: none;
    }
    .carousel-caption{
        background: transparent;
        z-index: 8;
        padding: 50px 0px;
        color: #9a7b4f;
        left: 64%;
        bottom: 10.25rem;
        right: 43%;
        width: 39%;
        background-image: linear-gradient(to right, #000000, rgba(0, 0, 0, 0.849), rgba(0, 0, 0, 0.623), rgba(245, 245, 245, 0));
       
    }
    .ongoing p,.Completed p{
        padding: 17px 0px!important;
    }
    .authorAvatar >p{
        padding: 13px 0px;
    }
    .carousel-item img{
        height: 650px;
        background-size: cover;
        width: 100%;
    }
.grid-item button {
    margin-right: 4px;
    margin-bottom: 4px;
    color: #e9e9e9;
    background: #ededed00;
    border-radius: 4px;
    padding: 0.16rem .3rem;
    transition: .25s cubic-bezier(.5,0,.5,1);
    border: unset;
    cursor: pointer;
    font-weight: 400;
    font-size: 12px;
}
    .grid-items {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr))!important;
        -webkit-box-align: start;
        -webkit-align-items: start;
        -ms-flex-align: start;
        align-items: start;
        justify-items: center;
        grid-gap: 4rem 0rem;
    }
    .grid-item {
      display: block;
      width: 100%;
      position: relative;
      cursor: pointer;
      padding: 10px;
      background-color: rgba(255, 255, 255, 0.199);
      border: 1px solid #ffffff3f;
    }
    .grid-item:hover{
        background-color: rgb(251 251 251);
        border: 1px solid #ecebea;
    }
    .grid-header .banner{
        height: 260px!important;
        width: 100%;
    }
    .grid-item:hover .footer-wrap {
        opacity: 1;
      }
      .grid-item .footer-wrap {
        opacity: 1;
        background: #000000;
        padding: 15px;
        transition: .25s cubic-bezier(.5,0,.5,1);
    }
    .content-wrap {
        display: grid;
        padding: 10px;
        align-items: center;
        /* justify-content: center; */
        background: black;
    }
.grid-item:after {
    content: '';
    position: absolute;
    border-radius: 10px;
    background: #000000;
}


.grid-item:hover::after {
    -webkit-clip-path: inset(0 0 0 0 round 10px);
    clip-path: inset(0 0 0 0 round 10px);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    bottom: 0; 
}
    .site-header .header-inner {
        padding: 14px 40px;
    }
    .mt-30 {
        margin-top: 78px;
    }
}
@media (min-width: 1024px){
    .carousel-item img {
        height: 650px!important;
        background-size: cover;
        width: 100%;
    }
    .grid-items {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr))!important;
        -webkit-box-align: start;
        -webkit-align-items: start;
        -ms-flex-align: start;
        align-items: start;
        justify-items: center;
        grid-gap: 4rem 0rem;
    }
}
@media (min-width: 1400px){
    .carousel-item img {
        height: 650px!important;
        background-size: cover;
        width: 100%;
    }
    .grid-items {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(400px, 1fr))!important;
        -webkit-box-align: start;
        -webkit-align-items: start;
        -ms-flex-align: start;
        align-items: start;
        justify-items: center;
        grid-gap: 4rem 0rem;
    }
}
@media (max-width: 749px){
    .grid-item .property-overlay {
        opacity: 0;
        overflow: auto!important;
    }
    .top-right span, .top-right b, .top-left span, .top-single .icon i {
        font-size: 12px!important;
    }
    .overlay-top .top-single {
        margin-bottom: 3px!important;
    }
    .grid-header .banner {
        height: 260px !important;
        width: 100%;
    }
    .arrow-btn{
        background-color: #9a7b4f;
    }
    .carousel-indicators [data-bs-target] {
       
        height: 4px;
        
        background-color: #363434c2!important;
    }
    .carousel-caption{
        position: relative;
        background: #000000;
        z-index: 9;
        right: 0%;
        bottom: 1.25rem;
        left: 0%;
        padding: 50px 0px;
        color: #9a7b4f;
        
        background-image: linear-gradient(to right, #000000, rgba(0, 0, 0, 0.849), rgba(0, 0, 0, 0.623), rgba(245, 245, 245, 0));
       
    }
    .site-header .header-logo-img {
        max-height: 42px;
        max-width: 125px;
    }
    .icon {
        width: 60px;
        height: 40px;
    }
    .carousel-item img{
        background-size: cover;
        width: 100%;
        height: 230px;
        
    }
    .loc {
        padding-left: 10px;
    }
.grid-item button {
    margin-right: 3px;
    margin-bottom: 4px;
    border-radius: 4px;
    padding: 0.16rem .6rem;
    transition: .25s cubic-bezier(.5,0,.5,1);
    border: unset;
    cursor: pointer;
    font-weight: 400;
    font-size: 12px;
    background: black;
    color: #ddd6d6;
}

    .grid-items {
        display:contents;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        -webkit-box-align: start;
        -webkit-align-items: start;
        -ms-flex-align: start;
        align-items: start;
        justify-items: center;
        grid-gap: 2rem 1rem;
    }
    .grid-item {
      display: block;
      width: 100%;
      position: relative;
      cursor: pointer;
    }
    

.grid-item {
    background: #000000;
    margin-bottom: 20px;
    padding: 0px 0px 30px 0px;
}
 .footer-wrap  {
    margin-top: 20px;
}
.content-wrap {
}
.authorAvatar >p {
    padding: 9px 5px;
}
.ongoing p,.Completed p{
    padding: 13px 0px!important;
}
.navbar-light .navbar-toggler-icon {
    filter: invert(1);
}
.Completed p {
    font-size: 7px!important;
}
.grid-item .title {
    padding-left: 10px!important;
}
.grid-item button > i {
    margin-right: 6px!important;
}
    .cHdgdK {
        padding: 40px 0px!important;
    }
    .dsFoiA{
        padding: 40px 25px!important;
    }
    .header-dark-row {
        padding: 5px 10px;
        background: rgb(2 2 2);
        z-index: 9;
        margin-top: 20px;
    }
    .site-header .header-inner {
        padding: 12px 16px;
    }
}

.col {
    flex: 1 0 0%;
}

/* ========== MODAL - Redesigned ========== */
.modal.form.modal-enquiry .modal-dialog {
    max-width: 440px;
    margin: 1rem auto;
}
.modal.form.modal-enquiry .modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background: #fff;
    border: none;
    border-radius: 20px;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(154, 123, 79, 0.08);
    overflow: hidden;
    outline: 0;
}
.modal.form.modal-enquiry .modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: flex-start;
    justify-content: space-between;
    padding: 28px 28px 0;
    border: none;
    background: transparent;
    position: relative;
    z-index: 2;
}
.modal-header-inner {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.modal.form.modal-enquiry .modal-badge {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #9a7b4f;
    text-transform: uppercase;
}
.modal.form.modal-enquiry .modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    line-height: 1.3;
}
.modal.form.modal-enquiry .btn-close {
    width: 40px;
    height: 40px;
    padding: 0;
    margin: -8px -8px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #64748b;
    opacity: 1;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: background 0.25s ease, color 0.25s ease;
    border: none;
    background-image: none !important;
}
.modal.form.modal-enquiry .btn-close:hover {
    background: #9a7b4f !important;
    color: #fff;
}
.modal.form.modal-enquiry .btn-close i {
    font-size: 1rem;
}
.modal.form.modal-enquiry .modal-body {
    position: relative;
    padding: 24px 28px 32px;
}
.modal-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.modal-form .form-field,
.modal-form .form-field-row {
    margin: 0;
}
.modal-form .form-field-row.contry-code-mb-number {
    display: flex;
    gap: 12px;
    align-items: stretch;
}
.modal-form .form-field-row .country-code {
    flex: 0 0 100px;
}
.modal-form .form-field-row .m-number-cont {
    flex: 1 1 auto;
    min-width: 0;
}
.modal-form .form-control {
    width: 100%;
    height: 50px;
    padding: 0 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: #1e293b;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.modal-form .form-control::placeholder {
    color: #94a3b8;
}
.modal-form .form-control:focus {
    outline: none;
    border-color: #9a7b4f;
    box-shadow: 0 0 0 3px rgba(154, 123, 79, 0.15);
    background: #fff;
}
.modal-form .form-field-row .country-code select {
    height: 50px;
    padding: 0 14px;
    cursor: pointer;
    appearance: auto;
}
.modal-form .form-field-row .m-number-cont input {
    border-radius: 12px;
}
.modal-form .modal-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 52px;
    margin-top: 8px;
    padding: 0 28px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff !important;
    background: linear-gradient(135deg, #9a7b4f, #6d5a38) !important;
    border: none !important;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(154, 123, 79, 0.35);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.modal-form .modal-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(154, 123, 79, 0.45);
    color: #fff !important;
}
.modal-form .modal-submit-btn i {
    font-size: 0.9rem;
    transition: transform 0.25s ease;
}
.modal-form .modal-submit-btn:hover i {
    transform: translateX(4px);
}
.modal-form .disc {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 20px;
    padding-top: 5px;
    border-top: 1px solid #e2e8f0;
}
.modal-form .disc input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    accent-color: #9a7b4f;
    cursor: pointer;
}
.modal-form .disc label {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    line-height: 1.6;
    color: #64748b;
}
.modal-form .disc a {
    color: #9a7b4f;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.modal-form .disc a:hover {
    color: #6d5a38;
}
/* Modal backdrop */
.modal.form.modal-enquiry.backdrop .modal-backdrop {
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
}
@media (max-width: 575px) {
    .modal.form.modal-enquiry .modal-dialog {
        max-width: calc(100% - 24px);
        margin: 12px auto;
    }
    .modal.form.modal-enquiry .modal-header,
    .modal.form.modal-enquiry .modal-body {
        padding-left: 20px;
        padding-right: 20px;
    }
    .modal.form.modal-enquiry .form-field-row .country-code {
        flex: 0 0 85px;
    }
}
.carousel-indicators button.active
{
    opacity: 1;
	background-color:#9a7b4f ;/* changes indicators color when it is active*/ 
}
.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: -18px;
}
.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 80px;
    height: 4px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid #e1e1e100;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease;
}
.carousel {
    position: relative;
}

/* ========== BANNER CAROUSEL - Curved overlay ========== */
#demo.carousel .carousel-item {
    position: relative;
}
/* Wrapper for image + overlay so we can flex on mobile without breaking Bootstrap carousel */
.carousel-slide-wrap {
    position: relative;
    width: 100%;
}
/* Hide dots below banner */
/* ========== Carousel indicators & arrows - Redesigned ========== */
/* Indicators - pill style, bottom center */
#demo.carousel .carousel-indicators {
    position: absolute;
    left: 50%;
    right: auto;
    bottom: 36px;
    margin: 0;
    padding: 8px 16px;
    gap: 8px;
    z-index: 20;
    display: flex !important;
    justify-content: center;
    align-items: center;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
#demo.carousel .carousel-indicators [data-bs-target] {
    width: 28px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    padding: 0;
    margin: 0;
    text-indent: -999px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}
#demo.carousel .carousel-indicators [data-bs-target]:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scaleY(1.5);
}
#demo.carousel .carousel-indicators [data-bs-target].active {
    background: #b8956a;
    transform: scaleY(1.5);
    box-shadow: 0 0 12px rgba(20, 184, 166, 0.6);
}

/* Arrows - bottom right (right of caption), side by side */
#demo.carousel .carousel-control-prev,
#demo.carousel .carousel-control-next {
    z-index: 20;
    width: 48px;
    height: 48px;
    top: auto;
    bottom: 32px;
    opacity: 1;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(20, 184, 166, 0.6);
    border-radius: 12px;
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
}
#demo.carousel .carousel-control-prev {
    left: auto;
    right: 90px;
}
#demo.carousel .carousel-control-next {
    left: auto;
    right: 28px;
}
#demo.carousel .carousel-control-prev:hover,
#demo.carousel .carousel-control-next:hover {
    background: rgba(154, 123, 79, 0.85);
    border-color: #b8956a;
    box-shadow: 0 8px 24px rgba(154, 123, 79, 0.4);
    transform: scale(1.05);
}
#demo.carousel .carousel-control-prev-icon,
#demo.carousel .carousel-control-next-icon {
    width: 100%;
    height: 100%;
    margin: 0;
    background: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
}
#demo.carousel .carousel-control-prev-icon i,
#demo.carousel .carousel-control-next-icon i {
    font-size: 1.4rem;
    color: #b8956a;
    font-weight: bold;
}
#demo.carousel .carousel-control-prev:hover .carousel-control-prev-icon i,
#demo.carousel .carousel-control-next:hover .carousel-control-next-icon i {
    color: #fff;
}
#demo.carousel .carousel-control-prev:hover .carousel-control-prev-icon {
    transform: translateX(-3px);
}
#demo.carousel .carousel-control-next:hover .carousel-control-next-icon {
    transform: translateX(3px);
}

@media (max-width: 767px) {
    #demo.carousel .carousel-indicators {
        bottom: 10px;
        padding: 6px 12px;
        gap: 6px;
        display: none!important;
    }
    #demo.carousel .carousel-indicators [data-bs-target] {
        width: 20px;
        height: 3px;
    }
    #demo.carousel .carousel-control-prev,
    #demo.carousel .carousel-control-next {
        width: 40px;
        height: 40px;
        bottom: 12px;
    }
    #demo.carousel .carousel-control-prev { left: 12px; right: auto; }
    #demo.carousel .carousel-control-next { left: auto; right: 12px; }
    #demo.carousel .carousel-control-prev-icon i,
    #demo.carousel .carousel-control-next-icon i {
        font-size: 1.1rem;
    }
}
/* Banner animations */
@keyframes bannerFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes bannerImageZoom {
    from { transform: scale(1.08); }
    to { transform: scale(1); }
}
@keyframes bannerOverlayReveal {
    from { opacity: 0; }
    to { opacity: 1; }
}
#demo.carousel .carousel-item.active .banner-slide-img {
    animation: bannerImageZoom 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
#demo.carousel .carousel-item.active .banner-overlay-wrap {
    animation: bannerOverlayReveal 0.6s ease-out forwards;
}
#demo.carousel .carousel-item.active .banner-new-launch { animation: bannerFadeUp 0.6s ease-out 0s both; }
#demo.carousel .carousel-item.active .banner-project-name { animation: bannerFadeUp 0.6s ease-out 0.1s both; }
#demo.carousel .carousel-item.active .banner-config-block { animation: bannerFadeUp 0.6s ease-out 0.2s both; }
#demo.carousel .carousel-item.active .banner-divider { animation: bannerFadeUp 0.6s ease-out 0.3s both; }
#demo.carousel .carousel-item.active .banner-price-box { animation: bannerFadeUp 0.6s ease-out 0.4s both; }
#demo.carousel .carousel-item.active .banner-price-box + .banner-divider { animation: bannerFadeUp 0.6s ease-out 0.45s both; }
#demo.carousel .carousel-item.active .banner-amenities { animation: bannerFadeUp 0.6s ease-out 0.5s both; }
#demo.carousel .carousel-item.active .banner-amenities + .banner-divider { animation: bannerFadeUp 0.6s ease-out 0.55s both; }
#demo.carousel .carousel-item.active .banner-location { animation: bannerFadeUp 0.6s ease-out 0.6s both; }
#demo.carousel .carousel-item.active .banner-cta-btn { animation: bannerFadeUp 0.6s ease-out 0.65s both; }

.banner-slide-img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    object-position: center;
}
.banner-overlay-wrap {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 45%;
    min-width: 420px;
    max-width: 520px;
    z-index: 5;
    overflow: visible;
}
.banner-overlay-border {
    position: absolute;
    left: 0;
    top: -10px;
    bottom: 0;
    right: 0;
    background: rgba(8, 8, 8, 0.781);
    border-top-right-radius: 93% 93%;
    border-bottom-right-radius: 0% 0%;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, rgba(0,0,0,0.85) 20%, rgba(0,0,0,0.5) 45%, rgba(0,0,0,0.2) 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 0%, rgba(0,0,0,0.85) 20%, rgba(0,0,0,0.5) 45%, rgba(0,0,0,0.2) 70%, transparent 100%);
    -webkit-mask-mode: luminance;
    /* mask-mode: luminance; */
}
.banner-curved-overlay {
    position: absolute;
    left: 0;
    top: -10px;
    right: 10px;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    border-top-right-radius: 93% 93%;
    border-bottom-right-radius: 0% 0%;
    border-left: 2px solid #9a7b4f;
    box-shadow: 4px 0 24px #9e9118cb;
    display: flex;
    align-items: flex-start;
    padding: 48px 40px 48px 56px;
    z-index: 1;
    overflow-x: hidden;
    overflow-y: auto;
}
.banner-overlay-inner {
    max-width: min(420px, 100%);
    width: 100%;
    min-width: 0;
    position: relative;
    z-index: 2;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    padding: 70px 0px 0px 0px;
}
.banner-curved-overlay .banner-project-name,
.banner-curved-overlay .banner-config,
.banner-curved-overlay .banner-script,
.banner-curved-overlay .banner-type,
.banner-curved-overlay .banner-amenities-label,
.banner-curved-overlay .banner-amenities-main,
.banner-curved-overlay .banner-amenities-sub,
.banner-curved-overlay .banner-location,
.banner-curved-overlay .banner-price {
    white-space: normal;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}
.banner-new-launch {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    background: #9a7b4f;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 12px;
}
.banner-project-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.15em;
    margin: 0 0 16px 0;
    line-height: 1.2;
    text-transform: uppercase;
}
.banner-config-block {
    position: relative;
    margin-bottom: 16px;
}
.banner-config {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 2.00rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
    margin-bottom: -4px;
}
.banner-script {
    position: relative;
    font-family: 'Great Vibes', cursive;
    font-size: 2.75rem;
    color: #b8956a;
    line-height: 1;
    display: block;
    margin: -8px 0 4px 0;
}
.banner-type {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: block;
}
.banner-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.15));
    margin: 14px 0;
}
.banner-price-box {
    display: inline-block;
    background: rgba(154, 123, 79, 0.9);
    padding: 10px 20px;
    border-radius: 10px;
}
.banner-price-box .banner-price {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}
.banner-amenities {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
}
.banner-amenities-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: #b8956a;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.banner-amenities-main {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.banner-amenities-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.banner-location {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.banner-location i {
    color: #fff;
    font-size: 1rem;
}

.banner-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-top: 22px;
    padding: 14px 32px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #9a7b4f, #6d5a38);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(154, 123, 79, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
    z-index: 0;
}
.banner-cta-btn::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: #6d5a38;
    border-radius: 50px;
    transform: translateX(-101%);
    transition: transform 0.25s ease-in-out;
}
.banner-cta-btn:hover {
    box-shadow: 0 6px 28px rgba(154, 123, 79, 0.45);
    transform: translateY(-2px);
    color: #fff;
}
.banner-cta-btn:hover::before {
    transform: translateX(0);
}
.banner-cta-btn:active {
    transform: translateY(0);
}

/* Tablet & desktop: one banner layout (left curved overlay on image) */
@media (min-width: 768px) {
    #demo.carousel .carousel-slide-wrap {
        display: block;
        position: relative;
    }
    #demo.carousel .carousel-slide-wrap .banner-slide-img {
        height: 650px !important;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }
    #demo.carousel .carousel-slide-wrap .banner-overlay-border {
        display: block;
    }
    #demo.carousel .carousel-slide-wrap .banner-overlay-wrap {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 45%;
        min-width: 420px;
        max-width: 520px;
        padding: 0;
    }
    #demo.carousel .carousel-slide-wrap .banner-curved-overlay {
        position: absolute;
        left: 0;
        top: -10px;
        right: 10px;
        bottom: 0;
        background: rgba(0, 0, 0, 0.65);
        border-top-right-radius: 93% 93%;
        border-bottom-right-radius: 0% 0%;
        border-left: 2px solid #9a7b4f;
        border-top: none;
        border-bottom: none;
        padding: 48px 40px 48px 56px;
        align-items: flex-start;
        margin-top: 0;
        box-shadow: 4px 0 24px #9e9118cb;
        overflow-x: hidden;
        overflow-y: auto;
    }
    #demo.carousel .banner-overlay-inner {
        max-width: min(420px, 100%);
        width: 100%;
        text-align: left;
        display: block;
        align-items: unset;
        padding: 70px 0 0;
    }
    #demo.carousel .banner-new-launch,
    #demo.carousel .banner-project-name,
    #demo.carousel .banner-config-block,
    #demo.carousel .banner-script,
    #demo.carousel .banner-type { text-align: left; }
    #demo.carousel .banner-amenities { text-align: left; align-items: flex-start; }
    #demo.carousel .banner-price-box { display: inline-block; text-align: left; }
    #demo.carousel .banner-location { justify-content: flex-start; }
    .banner-project-name { font-size: 1.5rem; }
    .banner-script { font-size: 2.75rem; }
    .banner-type { font-size: 0.85rem; letter-spacing: 0.12em; }
    .banner-price-box .banner-price { font-size: 1.75rem; }
    .banner-cta-btn { margin-top: 22px; padding: 14px 32px; font-size: 0.95rem; }
    /* Banner first, then header in flow; fixed header when scrolling */
    .body-content { display: flex; flex-direction: column; }
    #demo.carousel { order: -1; }
    #header.header-initial {
        order: 1;
        position: relative;
        z-index: 1035;
    }
}
@media (max-width: 767px) {
    /* Mobile: first header at top, then banner below; on scroll sticky header becomes fixed at top */
    .body-content { display: flex; flex-direction: column; }
    #header.header-initial { order: -1; }
   
    /* Allow full caption to show â€“ override Bootstrap's overflow:hidden */
    #demo.carousel {
        overflow: visible;
    }
    #demo.carousel .carousel-inner {
        overflow-x: hidden;
        overflow-y: visible;
    }
    #demo.carousel .carousel-item,
    #demo.carousel .carousel-slide-wrap {
        overflow: visible;
    }
    /* Mobile: details below banner â€“ use inner wrapper for column layout so .carousel-item is never overridden */
    #demo.carousel .carousel-slide-wrap {
        display: flex;
        flex-direction: column;
    }
    #demo.carousel .carousel-slide-wrap .banner-slide-img {
        order: 1;
        flex: 0 0 auto;
        width: 100%;
        height: 280px !important;
        object-fit: cover;
    }
    #demo.carousel .carousel-slide-wrap .banner-overlay-border {
        display: none;
    }
    #demo.carousel .carousel-slide-wrap .banner-overlay-wrap {
        order: 2;
        position: relative;
        top: auto;
        left: auto;
        bottom: auto;
        width: 100%;
        max-width: none;
        min-width: 0;
        overflow: visible;
        border-radius: 0 0 50% 50% / 0 0 80px 80px;
        -webkit-border-radius: 0 0 50% 50% / 0 0 80px 80px;
    }
    #demo.carousel .carousel-slide-wrap .banner-curved-overlay {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        border-left: none;
        border-top: 3px solid #9a7b4f;
        border-bottom: 3px solid #b8956a;
        padding: 32px 16px 44px;
        box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.08);
        margin-top: -1px;
        border-radius: 0 0 50% 50% / 0 0 80px 80px;
        -webkit-border-radius: 0 0 50% 50% / 0 0 80px 80px;
    }
    /* Mobile: full-width content, centered heading and content */
    #demo.carousel .banner-overlay-inner {
        max-width: none;
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0px 0px 0px 0px;
    }
    #demo.carousel .banner-new-launch,
    #demo.carousel .banner-project-name,
    #demo.carousel .banner-config-block,
    #demo.carousel .banner-script,
    #demo.carousel .banner-type { text-align: center; }
    #demo.carousel .banner-amenities { text-align: center; align-items: center; }
    #demo.carousel .banner-divider { width: 100%; }
    #demo.carousel .banner-price-box { display: block; text-align: center; }
    #demo.carousel .banner-location { justify-content: center; }
    #demo.carousel .banner-cta-btn { margin-top: 18px; padding: 12px 26px; font-size: 0.85rem; }
    .banner-project-name { font-size: 1.4rem; }
    .banner-script { font-size: 2rem; }
    .banner-type { font-size: 0.7rem; letter-spacing: 0.08em; }
    .banner-price-box .banner-price { font-size: 1.35rem; }
    .banner-cta-btn { margin-top: 18px; padding: 12px 26px; font-size: 0.85rem; }
}

.home{
    position: relative;
    display: block;
    background-size: contain;
    background-repeat: repeat repeat;
    z-index: 1;
    padding: 30px 0 40px;
}
/* ========== ABOUT KOHINOOR GROUP - Redesigned ========== */
.about {
    padding: 64px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Parallax background image */
.about-parallax-bg {
    position: absolute;
    inset: 0;
    background-image: url(../img/bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 0;
}

/* Gradient overlay - dark grey/black */
.about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.75) 0%, rgba(40, 40, 40, 0.7) 50%, rgba(15, 15, 15, 0.8) 100%);
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.4), transparent);
    z-index: 3;
}
.about-inner {
    max-width: 900px;
    margin: 0 auto;
}
.about-header {
    text-align: center;
    margin-bottom: 44px;
}
.about-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #b8956a;
    margin: 0 0 12px 0;
}
.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}
.about-title span {
    color: #b8956a;
}
.about-underline {
    width: 64px;
    height: 4px;
    background: linear-gradient(90deg, #9a7b4f, #b8956a);
    margin: 0 auto;
    border-radius: 2px;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}
.about-stat {
    background: #fff;
    border: 1px solid rgba(154, 123, 79, 0.2);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(154, 123, 79, 0.12);
    border-color: rgba(154, 123, 79, 0.35);
}
.about-stat-value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #9a7b4f;
    margin-bottom: 8px;
    line-height: 1.1;
}
.about-stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #4a6b63;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.about-content {
    background: #fff;
    border-radius: 20px;
    padding: 40px 44px 48px;
    border: 1px solid rgba(154, 123, 79, 0.12);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}
.about-text p {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #334d47;
    margin: 0 0 20px 0;
}
.about-text p:last-child {
    margin-bottom: 0;
}
.about-text strong {
    color: #1e293b;
    font-weight: 600;
}
@media (max-width: 767px) {
    .about { padding: 48px 0 60px; }
    .about-parallax-bg { background-attachment: scroll; }
    .about-header { margin-bottom: 32px; }
    .about-subtitle { font-size: 11px; letter-spacing: 3px; }
    .about-title { font-size: 1.6rem; }
    .about-stats { grid-template-columns: 1fr; gap: 14px; margin-bottom: 36px; }
    .about-stat { padding: 22px 20px; }
    .about-stat-value { font-size: 1.85rem; }
    .about-content { padding: 28px 20px 32px; border-radius: 16px; }
    .about-text p { font-size: 0.95rem; }
}

/* Contact */

.iDPpBi {
    position: relative;
    margin-bottom: 0px;
}
.cHdgdK {
    position: static;
    display: flex;
    padding: 40px 16px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-attachment: initial;
    background-image: url(../img/card-bg.webp);
}
.NtIXI {
    width: 100%;
    margin: auto;
    background-color: transparent;
}

.dsFoiA {
    -webkit-box-pack: justify;
    justify-content: space-between;
    grid-template-columns: repeat(12, 1fr);
    padding: 40px 50px;
    margin-top: 10px;
    background-size: initial;
    background-color: rgb(12 12 12 / 70%);
    color: #d7d2d2;
    background-repeat: repeat;
    background-position: 50% 50%;
    border-radius: 10px;
    background-attachment: initial;
    background-image: none;
    column-gap: unset !important;
}
.cvuqY {
    display: flex;
    flex-direction: column;
    grid-column: 1 / 13;
}
.jvazft {
    position: relative;
    text-align: initial;
    margin: 16px 0px;
}
.goXrDW {
    word-break: break-word;
    transition: box-shadow 0.1s ease-in-out 0s;
    font-size: 40px;
    color: #9a7b4f;
    font-family: Montserrat;
    font-weight: 700;
    font-style: normal;
    text-align: center;
    line-height: 48px;
}
 .form-control {
    height: calc(2.3em + 0.75rem + 0px);
    width: 100%;
    font-size: 0.875em;
    border-radius: 0;
    margin-bottom: 0px;
    color: #495057;
}


/* home cards */

.authorAvatar {
   border-radius: 100%!important;
}
.content-wrap a,.content-wrap a:hover{
    color: orange;
    text-decoration: none;
}
.authorAvatar >p{
    font-size: 9px;
    line-height: 12px;
    font-weight: 700;
    color: white;
    border: 1px solid;
    background: #9a7b4f;
    border-radius: 100%!important;
    text-align: center;
    margin-bottom: 0px;
}

.Completed p{
    background: #2fa002;
    font-size: 8px;
}

.ongoing p{
    background: #d1b41e;
    font-size: 9px;
}
.grid-item .banner {
  width: 100%;
  max-width: 100%;
}
.ribbon{
    position: absolute;
    top: 10px;
    left: 10px;
   
}
.grid-item .logo {
    width: 100%;
    padding: 2px;
    display: block;
    vertical-align: middle;
  }
  .grid-item .logo1{
    width: 150px;
  }
.grid-header {
    padding-bottom: 12px;
    background: black;
}

.carousel-inner::after {
    display: block;
    clear: both;
    content: "";
}

.grid-item .title > h2 {
    font-size: 19px;
    text-align: left;
    margin-bottom: 7px;
    color: #9a7b4f;
}
.grid-item span {
    color: #ffffff;
    font-weight: 100;
}
.top-right .icon i{
    font-size: 14px; 
    color: #2fa002;
}
.top-right span,.top-right b,.top-left span,.top-single .icon i{
    font-size: 14px;
}
.mt-10{
    margin-top: 10px;
}

.grid-item button > i {
  margin-right: 1px;
}
.grid-item:hover button i {
  color: #d18d0c;
}

.grid-item .footer-wrap button{
    background-color: #9a7b4f;
    color: white;
    display: block;
    margin: 0 auto;
}
.grid-item .arrow-btn {
    max-width: 142px;
    min-width: 83px;
    position: relative;
    height: 36px;
}
.icon {
    position: relative;
    overflow: hidden;
    text-decoration: none;
    text-align: center;
    line-height: 35px;
    font-size: 12px;
  }
  
  
  .icon:active:after {
    opacity: 0;
  }

  .loc{
    color: #666;
    font-size: 14px !important;
 
  }
  .grid .icon {
    height: 30px;
    width: 30px;
    cursor: pointer;
}
.flex{
    display: flex;
}
.justify-between {
    justify-content: space-between;
}
.items-center {
    align-items: center;
}
.fa-plus-circle{
    font-size: 20px!important;
      
}
.grid-item .icon-plus:hover i {
    transform: rotate(225deg);
}

.ml-1 {
    margin-left: .25rem;
}
.mx-4 {
    margin-left: .5rem!important;
    margin-right: .5rem!important;
}

.grid-items b {
    font-weight: 600;
}
.flex-wrap {
    flex-wrap: wrap;
}
.mt-4 {
    margin-top: 1rem;
}
.property-details .mt-1{
    font-size: 13px!important;
    color: rgb(236, 235, 235);
}
.p-6 {
    padding: 1.5rem;
}
.grid-item .property-overlay .fa{
    display: block;
    vertical-align: middle;
    color: rgb(209, 209, 209);
    line-height: 20px;
}
figure {
    margin: 0 0 0rem;
}
.grid-item .property-overlay {
    opacity: 0;  
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
    transition: all .25s ease-in-out 0s;
}
.grid-item .property-single:hover .property-overlay,.grid-item:hover .property-overlay{
    background-clip: padding-box;
    background-color: rgba(0, 0, 0, .84);
   
    bottom: 0;
    left: 0;
    right: 0;
    top: -50px;
    opacity: 1;
    position: absolute;
    z-index: 8;
    transition: all .25s ease-in-out 0s;
    transform: translate(0%, 3%);
    
}
.grid-item:hover .icon-plus i{
    transform: rotate(225deg);
    margin-left: 2px;
    transition: all .25s ease-in-out 0s;
}

.property-single {
    position: relative;
    width: 100%;
}
.property-single:before {
    background: #fff;
    border: 1px solid #ddd;
    bottom: -16px;
    box-shadow: 0 25px 50px 3px rgba(0, 0, 0, .08);
    content: "";
    left: -16px;
    opacity: 0;
    padding: 16px;
    position: absolute;
    right: -16px;
    top: -16px;
    visibility: hidden;
}
.property-single .property-picture {
    background-color: #fbfbfb;
    overflow: hidden;
    position: relative;
}
.property-single .property-picture .banner {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
.grid-item.active .property-overlay {
    animation: linearinfinite alternate;
    animation-name: BottomToTop;
    opacity: 1;
    top: 0;
    duration: .25s;
}

.grid-item:hover:before {
    opacity: 1;
    visibility: visible;
}

.mt-2{
    margin-top: 10px;
}
.pb-2{
    margin-bottom: 10px;
}

.overlay-top,.overlay-bottom{
    width: 100%;
    display: block;
}
.overlay-top .top-single{
    margin-bottom: 10px;
}
.grid-item .grid-header .property-overlay .overlay-bottom {
    border-top: 1px solid #fff;
}
.projects-section .property-overlay .overlay-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
}
.projects-section .property-overlay .overlay-bottom .bottom-single {
  margin-bottom: 0;
  flex: 0 0 calc(50% - 6px);
  justify-content: center;
}
/* First two actions as prominent pill buttons */
.projects-section .property-overlay .overlay-bottom .bottom-single:nth-child(-n+2) {
  border-radius: 999px;
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.65);
  background: transparent;
  transition: all 0.25s ease;
}
.projects-section .property-overlay .overlay-bottom .bottom-single:nth-child(1) {
  background: linear-gradient(135deg, #9a7b4f, #6d5a38);
  border-color: rgba(232, 184, 74, 0.9);
  box-shadow: 0 4px 16px rgba(154, 123, 79, 0.55);
}
.projects-section .property-overlay .overlay-bottom .bottom-single:nth-child(1) span,
.projects-section .property-overlay .overlay-bottom .bottom-single:nth-child(1) span a {
  color: #fff !important;
}
.projects-section .property-overlay .overlay-bottom .bottom-single:nth-child(1) .icon i {
  color: #fff !important;
}
.projects-section .property-overlay .overlay-bottom .bottom-single:nth-child(-n+2):hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
}
.projects-section .property-overlay .overlay-bottom .bottom-single:nth-child(2):hover {
  background: rgba(255,255,255,0.06);
}
.projects-section .property-overlay .overlay-bottom .bottom-single:nth-child(n+3):nth-child(-n+4) {
  border-radius: 999px;
  padding: 8px 18px;
  border: 1px solid rgba(154,123,79,0.7);
  background: rgba(0,0,0,0.35);
  transition: all 0.25s ease;
}
.projects-section .property-overlay .overlay-bottom .bottom-single:nth-child(3) span,
.projects-section .property-overlay .overlay-bottom .bottom-single:nth-child(3) span a {
  color: #f8f3e6 !important;
}
.projects-section .property-overlay .overlay-bottom .bottom-single:nth-child(3) .icon i {
  color: #5eead4 !important;
}
.projects-section .property-overlay .overlay-bottom .bottom-single:nth-child(4) span,
.projects-section .property-overlay .overlay-bottom .bottom-single:nth-child(4) span a {
  color: #c2f3b3 !important;
}
.projects-section .property-overlay .overlay-bottom .bottom-single:nth-child(4) .icon i {
  color: #5fb233 !important;
}
.projects-section .property-overlay .overlay-bottom .bottom-single:nth-child(n+3):nth-child(-n+4):hover {
  background: rgba(154,123,79,0.18);
  transform: translateY(-1px);
}

/* Card bottom call / WhatsApp actions */
.projects-section .content-wrap .card-actions {
  margin-top: 4px;
  gap: 10px;
}
.projects-section .content-wrap .card-action-btn {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  z-index: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
}
.projects-section .content-wrap .card-action-call {
  background: linear-gradient(135deg, #9a7b4f, #6d5a38);
  border: 1px solid rgba(232,184,74,0.9);
  color: #fff;
  box-shadow: 0 4px 16px rgba(154, 123, 79, 0.55);
}
.projects-section .content-wrap .card-action-call::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: #6d5a38;
  border-radius: 999px;
  transform: translateX(-101%);
  transition: transform 0.25s ease-in-out;
}
.projects-section .content-wrap .card-action-call:hover::before {
  transform: translateX(0);
}
.projects-section .content-wrap .card-action-whatsapp {
  background: linear-gradient(135deg, #3bb54a, #208e3a);
  border: 1px solid rgba(91,178,51,0.9);
  color: #fff;
  box-shadow: 0 4px 16px rgba(33, 119, 52, 0.55);
}
.projects-section .content-wrap .card-action-whatsapp::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: #20bd5a;
  border-radius: 999px;
  transform: translateX(-101%);
  transition: transform 0.25s ease-in-out;
}
.projects-section .content-wrap .card-action-whatsapp:hover::before {
  transform: translateX(0);
}
.projects-section .content-wrap .card-action-call i,
.projects-section .content-wrap .card-action-whatsapp i {
  color: #fff;
}
/* Generic interactive animation for buttons/CTAs */
button,
.btn,
.banner-cta-btn,
.projects-section .content-wrap .card-action-btn,
.grid-item .grid-header .property-overlay .overlay-bottom .bottom-single {
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}
button:hover,
button:focus,
.btn:hover,
.btn:focus,
.banner-cta-btn:hover,
.banner-cta-btn:focus,
.projects-section .content-wrap .card-action-btn:hover,
.grid-item .grid-header .property-overlay .overlay-bottom .bottom-single:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}
.grid-header{
    position: relative;
}

.mb-1{
    margin-bottom: 10px;
}
.grid-item .grid-header .property-overlay .overlay-bottom span,
.grid-item .grid-header .property-overlay .overlay-bottom a {
    color: #5fb233;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 1.025px;
    text-decoration: none;
}
.grid-item .grid-header .property-overlay .overlay-bottom .icon i{
    color: #5fb233;
    font-size: 14px;
}
.mr-6 {
    margin-right: 1.5rem;
}
.grid-item .grid-header .property-overlay .overlay-top .top-right {
    width: 100%;
}
.projects-section .property-overlay .overlay-top .top-single:last-child .top-right span {
    display: inline-block;
    padding-bottom: 2px;
    border-bottom: 2px solid rgba(154, 123, 79, 0.8);
    color: #e8d5a3 !important;
    font-weight: 600;
    letter-spacing: 0.04em;
    font-size: 14px;
}
.grid-item .grid-header .property-overlay .overlay-top .top-left {
    flex-shrink: 0;
    font-weight: 500;
    letter-spacing: 1.025px;
    max-width: 106px;
    width: 100%;
}
.grid-item .grid-header .property-overlay .icon {
    height: 32px;
    width: 32px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(154, 123, 79, 0.6);
}

@media (max-width: 767px) {
    .sayhello .row {
        width: 100%;
        text-align: center;
        margin: auto;
    }
}

/* ==================== PROJECTS SECTION ==================== */
.projects-section.home {  padding: 60px 0 80px; position: relative; overflow: hidden; }
.projects-head { text-align: center; margin-bottom: 50px !important; }
.projects-head .projects-subtitle { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: #9a7b4f; margin-bottom: 12px; }
.projects-head .sub-title { justify-content: center; }
.projects-head .sub-title h2 { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 600; color: #1a1a1a; margin-bottom: 0; }
.projects-head .sub-title span { color: #9a7b4f; font-weight: 600; }
.projects-head .title-underline { width: 80px; height: 4px; background: linear-gradient(90deg, #9a7b4f, #b8956a); margin: 16px auto 0; border-radius: 2px; }
.projects-head h3 { display: none !important; }
.projects-section .grid-items { display: grid !important; grid-template-columns: repeat(2, 1fr) !important; gap: 2rem 1.5rem !important; align-items: start; max-width: 1140px; margin-left: auto; margin-right: auto; }
.projects-section .grid-item:nth-child(3n+2) { transform: scale(1.05); }
.projects-section .grid-item:nth-child(3n+2):hover { transform: scale(1.05) translateY(-10px); }
.projects-section .grid-item { border: 1px solid rgba(0,0,0,0.06) !important; border-radius: 20px !important; padding: 0 !important; overflow: hidden; transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s ease, border-color 0.3s ease; box-shadow: 0 4px 20px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.02); position: relative; }
.projects-section .grid-item::before { display: none; }
.projects-section .grid-item:hover { transform: translateY(-10px); box-shadow: 0 32px 64px rgba(0,0,0,0.12), 0 12px 24px rgba(0,0,0,0.08), 0 0 0 1px rgba(154, 123, 79, 0.2); border-color: rgba(154, 123, 79, 0.25) !important; }
.projects-section .grid-item.overlay-visible:hover { transform: none; }
.projects-section .grid-item::after, .projects-section .grid-item:hover::after { display: none !important; }
.projects-section .property-single::before { display: none !important; }
.projects-section .grid-header { background: #000 !important; padding-bottom: 0 !important; }
.projects-section .grid-item { background: #F9F6F1;border-radius: 2px; overflow: visible;  padding: 6px !important;margin-bottom: 20px;
    border: 2px solid #ccc !important; transition: box-shadow 0.3s ease, transform 0.3s ease; }
.projects-section .grid-item .property-single { border-radius: 10px; overflow: hidden; }
.projects-section .grid-item:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.projects-section .property-picture { overflow: hidden; position: relative; border-radius: 8px 8px 0 0; }
.projects-section .property-picture::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px; background: linear-gradient(to top, rgba(0,0,0,0.3), transparent); pointer-events: none; }
.projects-section .property-picture .banner { width: 100%; height: 380px; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.projects-section .grid-item:hover .property-picture .banner { transform: scale(1.06); }
.projects-section .card-hover-actions { position: absolute; bottom: 0; left: 0; right: 0; z-index: 10; display: flex; justify-content: center; gap: 12px; padding: 16px 20px; background: linear-gradient(to top, rgba(0,0,0,0.75), transparent); transform: translateY(100%); opacity: 0; transition: transform 0.35s ease, opacity 0.35s ease; }
.projects-section .grid-item:hover .card-hover-actions { transform: translateY(0); opacity: 1; }
.projects-section .card-hover-actions .card-action-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; position: relative; overflow: hidden; color: #fff !important; border: none; border-radius: 8px; font-weight: 600; font-size: 14px; text-decoration: none; transition: transform 0.2s ease; box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
.projects-section .card-hover-actions .card-action-btn::before { content: ""; width: 100%; height: 100%; position: absolute; left: 0; top: 0; z-index: 0; border-radius: 8px; transform: translateX(-101%); transition: transform 0.25s ease-in-out; }
.projects-section .card-hover-actions .card-action-btn span,
.projects-section .card-hover-actions .card-action-btn i { position: relative; z-index: 1; }
.projects-section .card-hover-actions .card-action-btn:hover { transform: translateY(-2px); }
.projects-section .card-hover-actions .card-action-btn:hover::before { transform: translateX(0); }
.projects-section .card-hover-actions .card-action-btn span { color: #fff !important; }
.projects-section .card-hover-actions .card-action-btn i { color: #fff !important; }
.projects-section .card-hover-actions .card-action-call { background: #000 !important; }
.projects-section .card-hover-actions .card-action-call::before { background: #303030; }
.projects-section .card-hover-actions .card-action-call i,
.projects-section .card-hover-actions .card-action-call span { color: #fff !important; }
.projects-section .card-hover-actions .card-action-whatsapp { background: #25D366 !important; }
.projects-section .card-hover-actions .card-action-whatsapp::before { background: #20bd5a; }
.projects-section .card-hover-actions .card-action-whatsapp i,
.projects-section .card-hover-actions .card-action-whatsapp span { color: #fff !important; }
.projects-section .ribbon { background: #000000d4; border-radius: 12px; top: 16px !important; left: 16px !important; z-index: 10; box-shadow: 0 4px 12px rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1); }
.projects-section .grid-item:hover .ribbon { transform: scale(1.02); }
.projects-section .title span { display: inline-flex; align-items: center; gap: 6px; font-size: 11px !important; font-weight: 600; letter-spacing: 1.5px; color: #9a7b4f !important; background: rgba(154,123,79,0.15); padding: 6px 14px; border-radius: 24px; margin-bottom: 12px; border: 1px solid rgba(154,123,79,0.3); }
.projects-section .title span .fa-star { font-size: 10px; opacity: 0.9; }
.projects-section .ribbon span { display: inline-flex; align-items: center; gap: 6px; font-size: 11px !important; font-weight: 600; letter-spacing: 1.5px; color: #ccfbf1 !important; background: rgba(154,123,79,0.25); padding: 4px 12px; border-radius: 24px; border: 1px solid rgba(154,123,79,0.6); }
.projects-section .card-launch-ribbon { position: absolute; top: 0; left: 0; z-index: 10; background: #c41e3a; color: #fff !important; font-size: 11px !important; font-weight: 700; letter-spacing: 1.5px; padding: 10px 28px 10px 20px; clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%); line-height: 1; }
.projects-section .card-artistic { position: absolute; bottom: 12px; right: 12px; z-index: 10; font-size: 10px !important; font-weight: 500; letter-spacing: 0.3px; color: rgba(255,255,255,0.95) !important; text-shadow: 0 1px 2px rgba(0,0,0,0.5); }
.projects-section .projects-tagline { font-size: 15px; color: #999; margin-top: 8px; margin-bottom: 24px; font-weight: 400; }
.projects-section .content-wrap { background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%) !important; padding: 18px 14px !important; border-top: 1px solid rgba(154,123,79,0.15); }
.projects-section .content-wrap.kohinoor-style { background: none !important; padding: 0; margin-top: 2px; border: none; border-radius: 0; }
.projects-section .content-wrap.kohinoor-style.card-minimal { padding: 0; }
.projects-section .content-wrap.kohinoor-style .card-price {
    color: #9a7b4f !important;
    background: linear-gradient(135deg, rgba(154, 123, 79, 0.18), rgba(109, 90, 56, 0.12)) !important;
    border: 1px solid rgba(154, 123, 79, 0.35) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    padding: 8px 14px !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 12px rgba(154, 123, 79, 0.15) !important;
}
.projects-section .content-wrap.kohinoor-style .card-price i { color: #9a7b4f !important; }
.projects-section .content-wrap.kohinoor-style .card-action-btn { background: transparent; color: #333 !important; border: 1px solid #ddd; padding: 6px 10px; }
.projects-section .content-wrap.kohinoor-style .card-action-btn:hover { background: #f5f5f5; color: #000 !important; }
.projects-section .grid-item:hover .content-wrap { background: linear-gradient(180deg, #0d0d0d 0%, #080808 100%) !important; border-top-color: rgba(154,123,79,0.25); }
.projects-section .grid-item:hover .content-wrap.kohinoor-style { background: none !important; box-shadow: none; }
.projects-section .card-config-label { font-size: 12px !important; font-weight: 500; color: #888 !important; margin-bottom: 6px; letter-spacing: 0.3px; }
.projects-section .card-location { font-size: 14px !important; color: #333 !important; margin-bottom: 0; font-family: 'DM Sans', sans-serif; font-weight: 400; display: flex; align-items: center; gap: 8px; }
.projects-section .card-location i { color: #9a7b4f; font-size: 15px; flex-shrink: 0; }
.projects-section .content-wrap.card-minimal .card-location { margin-bottom: 0px; }
.projects-section .content-wrap.card-minimal .card-details-row { margin-bottom: 0px; }
.projects-section .content-wrap.card-minimal .card-config-label { margin-bottom: 0px; }
.projects-section .card-config-possession { flex: 1; }
.projects-section .card-details-row { margin-bottom: 14px; }
.projects-section .card-actions-minimal { display: flex; align-items: center; padding-top: 12px; border-top: 2px solid rgba(154, 123, 79, 0.5); margin-top: 12px; }
.projects-section .card-actions-minimal .card-price { margin: 0; padding: 12px 18px !important; font-size: 16px !important; font-weight: 800 !important; color: #9a7b4f !important; background: linear-gradient(135deg, rgba(154, 123, 79, 0.18), rgba(109, 90, 56, 0.12)) !important; border: 2px solid rgba(154, 123, 79, 0.45) !important; border-radius: 10px !important; letter-spacing: 0.02em; box-shadow: 0 2px 12px rgba(154, 123, 79, 0.2); }
.projects-section .grid-item .title h2 { font-family: 'Playfair Display', serif; font-size: 22px !important; font-weight: 600; color: #9a7b4f !important; margin-bottom: 10px; letter-spacing: -0.02em; line-height: 1.25; }
.projects-section .content-wrap.kohinoor-style .title h2 { color: #1a1a1a !important; margin-bottom: 4px; font-size: 22px !important; font-weight: 700; }
.projects-section .content-wrap.card-minimal .title h2 { font-size: 22px !important; margin-bottom: 4px; }
.projects-section .grid-item:hover .title h2 { color: #b8956a !important; }
.projects-section .grid-item:hover .content-wrap.kohinoor-style .title h2 { color: #1a1a1a !important; }

.projects-section .loc p { display: inline-flex; align-items: center; gap: 8px; background: rgba(154,123,79,0.2); color: #9a7b4f !important; font-size: 14px !important; font-weight: 600; padding: 8px 14px; border-radius: 8px; border-left: 3px solid #9a7b4f;margin-bottom: 0rem; }
.projects-section .loc p::before { content: '\f041'; font-family: 'FontAwesome'; font-size: 15px; color: #9a7b4f; opacity: 1; }
.projects-section .loc span { color: #b8956a !important; font-weight: 600; }
.projects-section .card-config-wrap { display: flex; align-items: stretch; gap: 10px; margin-top: 8px; margin-bottom: 12px; }
.projects-section .card-config { flex: 1; padding: 8px 14px; background: rgba(154,123,79,0.12); color: #b8956a !important; font-size: 13px !important; font-weight: 600; border-radius: 8px; border: 1px solid rgba(154,123,79,0.25); display: flex; align-items: center; gap: 8px; }
.projects-section .card-config i { color: #9a7b4f; font-size: 14px; }
.projects-section .card-price { padding: 8px 14px; background: linear-gradient(135deg, rgba(154,123,79,0.25), rgba(15,118,110,0.2)); color: #fff !important; font-size: 14px !important; font-weight: 700; border-radius: 8px; border: 1px solid rgba(154,123,79,0.4); white-space: nowrap; display: flex; align-items: center; gap: 8px; }
.projects-section .card-price i { color: #b8956a; font-size: 14px; }
.projects-section .property-details { flex-direction: column; }
.projects-section .property-details .mt-1 { color: #999 !important; font-size: 12px !important; width: 100%; }
.projects-section .property-details .mt-1:first-child { color: #b8956a !important; border-radius: 8px; }
.projects-section .property-details .mt-1:first-child b { color: #fff !important; font-weight: 700; font-size: 14px; }
.projects-section .property-details .mt-1:not(:first-child) b { color: #d0d0d0 !important; font-weight: 600; }
.projects-section .property-details .separator { display: none; }

.projects-section .footer-wrap { background: linear-gradient(180deg, #050505 0%, #0a0a0a 100%) !important; padding: 20px 24px !important; border-top: 1px solid rgba(255,255,255,0.06); }
.projects-section .grid-item .arrow-btn { background: linear-gradient(135deg, #9a7b4f, #6d5a38) !important; border-radius: 10px; font-weight: 600; letter-spacing: 0.8px; max-width: 200px; border: none !important; box-shadow: 0 4px 16px rgba(154,123,79,0.25); transition: transform 0.35s ease, box-shadow 0.35s ease; position: relative; overflow: hidden; z-index: 0; }
.projects-section .grid-item .arrow-btn::before { content: ""; width: 100%; height: 100%; position: absolute; left: 0; top: 0; z-index: -1; background: #6d5a38; border-radius: 10px; transform: translateX(-101%); transition: transform 0.25s ease-in-out; }
.projects-section .grid-item .arrow-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(154,123,79,0.45); }
.projects-section .grid-item .arrow-btn:hover::before { transform: translateX(0); }
@media (max-width:749px) { .projects-section.home { padding: 40px 0 50px; } .projects-head .projects-subtitle { font-size: 11px; letter-spacing: 3px; } .projects-head .sub-title h2 { font-size: 24px; } .projects-section .grid-items { grid-template-columns: 1fr !important; } .projects-section .grid-item:nth-child(3n+2) { margin-top: 0; transform: none; } .projects-section .grid-item:nth-child(3n+2):hover { transform: translateY(-10px); } .projects-section .grid-item .title h2, .projects-section .content-wrap.kohinoor-style .title h2, .projects-section .content-wrap.card-minimal .title h2 { font-size: 18px !important; } .projects-section .grid-item { border-radius: 12px !important; } .projects-section .property-picture .banner { height: 300px !important; } .projects-section .card-hover-actions { transform: translateY(0); opacity: 1; } }
@media (min-width:1400px) { .projects-section .grid-items { gap: 3rem 2.5rem !important; } }
/* ========== CONTACT SECTION - Redesigned ========== */
.contact-section {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
  padding: 80px 0 100px;
  position: relative;
}

.contact-inner {
  width: 100%;
  max-width: 100%;
}

.contact-header {
  text-align: center;
  margin-bottom: 52px;
}

.contact-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #9a7b4f;
  margin: 0 0 12px 0;
}

.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 16px 0;
}

.contact-underline {
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, #9a7b4f, #b8956a);
  margin: 0 auto;
  border-radius: 2px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-form-wrap {
  width: 100%;
}

.contact-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 28px;
  flex: 1;
  min-width: 280px;
  background: #fff;
  border: 1px solid rgba(154, 123, 79, 0.2);
  border-radius: 16px;
  text-decoration: none !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(154, 123, 79, 0.15);
  border-color: rgba(154, 123, 79, 0.4);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  flex-shrink: 0;
}

.contact-card-call .contact-card-icon {
  background: linear-gradient(135deg, #9a7b4f, #6d5a38);
  color: #fff;
}

.contact-card-whatsapp .contact-card-icon {
  background: linear-gradient(135deg, #25D366, #20bd5a);
  color: #fff;
}

.contact-card-icon i {
  font-size: 1.5rem;
}

.contact-card-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-card-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5b7c6d;
}

.contact-card-value {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
}

.contact-card:hover .contact-card-value {
  color: #9a7b4f;
}


/* Request form - compact inline design */
.contact-form-block {
  background: linear-gradient(145deg, #6d5a38 0%, #9a7b4f 100%);
  border-radius: 16px;
  padding: 32px 36px 28px;
  box-shadow: 0 12px 40px rgba(154, 123, 79, 0.25);
  position: relative;
  overflow: hidden;
}

.contact-form-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.2);
}

.contact-form-head {
  margin-bottom: 24px;
}

.contact-form-badge {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 6px;
}

.contact-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.contact-form-inline .contact-form-row-main {
  display: grid;
  grid-template-columns: 1fr 2.2fr 1fr auto;
  gap: 12px;
  align-items: stretch;
}

.contact-form-inline .contact-form-group {
  margin: 0;
}

.contact-form-phone {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.95);
}

.contact-phone-prefix {
  flex-shrink: 0;
  width: 72px;
  min-width: 72px;
}

.contact-phone-prefix select,
.contact-phone-prefix .contact-country {
  width: 100%;
  height: 100%;
  min-height: 48px;
  padding: 0 6px 0 10px;
  border: none;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: #1e293b;
  appearance: none;
  cursor: pointer;
  border-right: 1px solid rgba(154, 123, 79, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
}

.contact-form-phone .contact-input {
  flex: 1;
  min-width: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

.contact-form-inline .contact-input {
  height: 48px;
  padding: 0 16px;
  border: none;
  border-radius: 10px;
  background: rgba(255,255,255,0.95);
  color: #1e293b;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-inline .contact-input::placeholder {
  color: #64748b;
}

.contact-form-inline .contact-input:focus {
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.5);
}

.contact-form-inline .contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 28px;
  background: #fff!important;
  color: #9a7b4f;
  border: none;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.contact-form-inline .contact-submit i {
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}

.contact-form-inline .contact-submit:hover {
  background: #f0fdfa;
  transform: translateY(-1px);
}

.contact-form-inline .contact-submit:hover i {
  transform: translateX(4px);
}

.contact-disc {
  margin-top: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-disc input[type="checkbox"] {
  width: 14px;
  height: 14px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #fff;
  cursor: pointer;
}

.contact-disc label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  cursor: pointer;
  flex: 1;
}

.contact-disc a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-disc a:hover {
  color: rgba(255,255,255,0.95);
}
.contact-form-block .field-error {
  color: #ffe8e8;
  font-weight: 500;
}
.contact-form-block .form-error-summary {
  margin-bottom: 12px;
}
.contact-form-block .form-error-summary:not(.is-visible) {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

@media (max-width: 991px) {
  .contact-card {
    min-width: 240px;
  }
  .contact-form-inline .contact-form-row-main {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "name phone" "email send";
  }
  .contact-form-inline .contact-form-group:first-child { grid-area: name; }
  .contact-form-inline .contact-form-phone { grid-area: phone; }
  .contact-form-inline .contact-form-group:nth-child(3) { grid-area: email; }
  .contact-form-inline .contact-submit { grid-area: send; }
}

@media (max-width: 767px) {
  .contact-section { padding: 56px 0 72px; }
  .contact-header { margin-bottom: 40px; }
  .contact-title { font-size: 1.75rem; }
  .contact-cards {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
  .contact-card {
    width: 100%;
    min-width: 0;
    flex: none;
    padding: 22px 20px;
  }
  .contact-form-block { padding: 24px 20px 22px; }
  .contact-form-inline .contact-form-row-main {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .contact-form-inline .contact-form-group,
  .contact-form-inline .contact-form-phone {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .contact-form-inline .contact-form-group .contact-input,
  .contact-form-inline .contact-form-group input[type="text"],
  .contact-form-inline .contact-form-group input[type="email"] {
    width: 100%;
    box-sizing: border-box;
  }
  .contact-form-inline .contact-form-phone {
    display: flex;
    width: 100%;
  }
  .contact-form-inline .contact-form-phone .contact-input {
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
  }
  .contact-form-inline .contact-submit {
    width: 100%;
  }
}

/* Legacy .disc â€“ modal-form overrides with specific styles */
.modal-form .disc label {
  display: block;
  font-size: 12px !important;
  color: #64748b !important;
  line-height: 1.6;
}
.modal-form .disc input {
  display: block;
  width: 18px;
  height: 18px;
}

/* ========== Footer ========== */
.footer-section {
    background: url(../img/Lines-bg.png), linear-gradient(to bottom right, #181818, #000000);
    background-size: cover;
  padding: 48px 24px 32px !important;
 position: relative;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: black;
  background: linear-gradient(90deg, transparent, #9a7b4f, #b8956a, #9a7b4f, transparent);
  opacity: 0.6;
}

.footer-container {

  margin: 0 auto;
}

.footer-section .footer-container > center {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-section .footer-container img {
  transition: transform 0.3s ease;
}

.footer-section .footer-container img:hover {
  transform: scale(1.05);
}

.footer-section .footer-text-content {
  color: #888 !important;
  font-size: 12px !important;
  line-height: 1.7 !important;
  margin: 0 auto 20px !important;
  text-align: center;
}
.footer-section .footer-text-content:first-of-type {
  text-align: justify;
}
.footer-section .footer-text-content b {
  color: #aaa !important;
}

.footer-section .footer-text-content a {
  color: #9a7b4f !important;
  transition: color 0.3s ease;
}

.footer-section .footer-text-content a:hover {
  color: #b8956a !important;
}

.footer-section .footer-text-content:last-child {
  padding-top: 16px;
  margin-bottom: 50px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #666 !important;
  font-size: 11px !important;
  text-align: center;
}

@media (max-width: 767px) {
  .footer-section {
    padding: 36px 16px 24px !important;
  }
}
.navbar-light .navbar-nav .nav-link {
    color: rgb(255 255 255 / 55%);
}

/* Global: remove underline from all links */
a,
a:hover,
a:focus,
a:active {
  text-decoration: none !important;
}

/* ========== FLOATING CALL & WHATSAPP ========== */
/* Hidden until scrolled past banner â€“ slides in from right to left */
.fixed-social-icon {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1020;
    font-family: 'DM Sans', sans-serif;
    transform: translateX(calc(100vw + 100%));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 1s ease,
                visibility 1s ease;
}
.fixed-social-icon.fixed-social-visible {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.fixed-social-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}
.fixed-social-item {
    margin: 0;
    flex: none;
}
.fixed-social-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px 12px 14px;
    border-radius: 50px;
    text-decoration: none !important;
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.fixed-social-link:hover {
    transform: translateX(-4px);
    color: #fff !important;
}
.fixed-social-icon-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease;
}
.fixed-social-link:hover .fixed-social-icon-inner {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.3);
}
.fixed-social-icon-inner img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
}
.fixed-social-label {
    white-space: nowrap;
}
.fixed-social-call .fixed-social-link {
    background: linear-gradient(135deg, #9a7b4f, #6d5a38);
}
.fixed-social-call .fixed-social-link:hover {
    box-shadow: 0 12px 32px rgba(154, 123, 79, 0.45);
    background: linear-gradient(135deg, #b8956a, #9a7b4f);
}
.fixed-social-whatsapp .fixed-social-link {
    background: linear-gradient(135deg, #25d366, #1da851);
}
.fixed-social-whatsapp .fixed-social-link:hover {
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
    background: linear-gradient(135deg, #2ee06d, #22b858);
}

/* Mobile: full-width bottom bar */
@media (max-width: 991px) {
.fixed-social-icon {
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
}
.fixed-social-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    width: 100%;
}
.fixed-social-item {
    margin: 0;
    flex: 1;
    min-width: 0;
}
.fixed-social-link {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 56px;
    padding: 12px 16px;
    border-radius: 0;
    text-decoration: none !important;
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: none;
    transition: background 0.3s ease, box-shadow 0.3s ease, opacity 0.25s ease;
}
.fixed-social-link:hover {
    opacity: 0.95;
    color: #fff !important;
}
.fixed-social-link:active {
    opacity: 0.9;
}
.fixed-social-icon-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    transition: transform 0.25s ease, background 0.25s ease;
}
.fixed-social-link:hover .fixed-social-icon-inner {
    transform: scale(1.06);
    background: rgba(255, 255, 255, 0.3);
}
.fixed-social-icon-inner img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}
.fixed-social-label {
    white-space: nowrap;
    font-size: 0.8rem;
}
/* Call â€“ teal brand color */
.fixed-social-call .fixed-social-link {
    background: linear-gradient(135deg, #9a7b4f, #6d5a38);
}
.fixed-social-call .fixed-social-link:hover {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, #b8956a, #9a7b4f);
}
/* WhatsApp â€“ green */
.fixed-social-whatsapp .fixed-social-link {
    background: linear-gradient(135deg, #25d366, #1da851);
}
.fixed-social-whatsapp .fixed-social-link:hover {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, #2ee06d, #22b858);
}
}

@media (max-width: 575px) {
    .fixed-social-link {
        padding: 10px 8px;
        gap: 8px;
        min-height: 52px;
    }
    .fixed-social-icon-inner {
        width: 34px;
        height: 34px;
    }
    .fixed-social-icon-inner img {
        width: 18px;
        height: 18px;
    }
    .fixed-social-label {
        font-size: 0.75rem;
    }
}

/* ========== COMPREHENSIVE RESPONSIVE STYLES ========== */

/* Extra Small Devices (phones, < 576px) */
@media (max-width: 575px) {
    /* Header */
    .site-header .header-inner {
        padding: 10px 12px;
    }
    .site-header .header-logo-img {
        max-height: 36px;
        max-width: 100px;
    }
    .site-header .header-cta {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
    
    /* Overlay â€“ keep buttons in a row same as desktop */
    .projects-section .property-overlay .overlay-bottom {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }
    .projects-section .property-overlay .overlay-bottom .bottom-single {
        flex: 0 0 calc(50% - 5px);
        margin-bottom: 0;
    }
    .projects-section .property-overlay .icon {
        width: 28px !important;
        height: 28px !important;
    }
    .projects-section .property-overlay .icon i {
        font-size: 14px !important;
    }
    
    /* Projects Section */
    .projects-section.home {
        padding: 30px 0 40px !important;
    }
    .projects-head .projects-subtitle {
        font-size: 10px !important;
        letter-spacing: 2px !important;
    }
    .projects-head .sub-title h2 {
        font-size: 20px !important;
    }
    .projects-section .grid-items { gap: 1.5rem 0.75rem !important; }
    .projects-section .property-picture .banner {
        height: 260px !important;
    }
    .projects-section .content-wrap {
        padding: 14px 12px !important;
    }
    .projects-section .grid-item .title h2 {
        font-size: 18px !important;
    }
    .projects-section .content-wrap .card-action-btn {
        padding: 8px 12px;
        font-size: 11px;
    }
    
  
    .projects-section .card-hover-actions .card-action-btn {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    /* Footer */
    .footer-section {
        padding: 28px 12px 20px !important;
    }
    .footer-section .footer-text-content {
        font-size: 10px !important;
    }
}

/* Small Devices (large phones, small tablets, 576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    /* Header */
    .site-header .header-inner {
        padding: 12px 16px;
    }
    
    /* Projects */
    .projects-section.home {
        padding: 40px 0 50px !important;
    }
    .projects-head .sub-title h2 {
        font-size: 24px !important;
    }
    .projects-section .grid-items { gap: 2rem 1rem !important; }
    .projects-section .property-overlay .overlay-bottom .bottom-single {
        flex: 0 0 calc(50% - 5px) !important;
    }
    
    /* Contact */
    .contact-section-title {
        font-size: 24px !important;
    }
}

/* Medium Devices (tablets, 768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    /* Header */
    .site-header .header-inner {
        padding: 12px 24px;
    }
    
    /* Projects */
    .projects-section.home {
        padding: 50px 0 60px !important;
    }
    .projects-head .sub-title h2 {
        font-size: 28px !important;
    }
    .projects-section .grid-items { gap: 2.5rem 1.5rem !important; }
    .projects-section .property-picture .banner {
        height: 320px !important;
    }
    
    /* Contact */
    
    /* Footer */
    .footer-section {
        padding: 40px 20px 28px !important;
    }
}

/* Large Devices (desktops, 992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    /* Header */
    .site-header .header-inner {
        padding: 12px 32px;
    }
    
    /* Projects */
    .projects-section .grid-items { gap: 2.5rem 1.75rem !important; }
    
    /* Contact */
}

/* Extra Large Devices (large desktops, â‰¥ 1200px) */
@media (min-width: 1200px) {
    /* Header */
    .site-header .header-inner {
        padding: 12px 40px;
    }
    
    /* Projects */
    .projects-section .grid-items { gap: 2.5rem 2rem !important; }
    
    /* Contact */
}

/* Tablet Portrait (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .projects-section .grid-items { gap: 2rem 1.5rem !important; }
}

/* Tablet Landscape (1024px - 1366px) */
@media (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {
    .projects-section .grid-items { gap: 2rem 1.5rem !important; }
}

/* ========== Back to top button â€“ redesigned ========== */

.back-to-top {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #9a7b4f, #6d5a38);
    color: #fff !important;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    z-index: 1025;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none !important;
}
.back-to-top i {
    font-size: 24px;
    line-height: 1;
}
.back-to-top.back-to-top-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.back-to-top:hover {
    color: #fff !important;
    background: linear-gradient(135deg, #b8956a, #9a7b4f);
    box-shadow: 0 8px 28px rgba(154, 123, 79, 0.5);
    transform: translateY(-4px);
}
.back-to-top:active {
    transform: translateY(-1px);
}

/* Mobile: above Call/WhatsApp bar */
@media (max-width: 991px) {
    .back-to-top {
        bottom: calc(88px + env(safe-area-inset-bottom, 0));
        right: 20px;
        width: 46px;
        height: 46px;
    }
    .back-to-top i {
        font-size: 22px;
    }
}
@media (max-width: 575px) {
    .back-to-top {
        right: 16px;
        width: 44px;
        height: 44px;
    }
    .back-to-top i {
        font-size: 20px;
    }
}

/* ========== PREMIUM THEME ========== */
/* ========== PREMIUM THEME â€” Godrej Hyderabad ========== */
:root {
  --color-navy: #0c1222;
  --color-navy-soft: #151d2e;
  --color-charcoal: #1a2332;
  --color-gold: #c9a962;
  --color-gold-light: #e8d5a3;
  --color-gold-dark: #9a7b3a;
  /* Warm bronze accent (replaces blue-teal; pairs with gold + cream) */
  --color-accent: #9a7b4f;
  --color-accent-bright: #c4a574;
  --color-accent-deep: #6d5a38;
  --color-teal: var(--color-accent);
  --color-teal-bright: var(--color-accent-bright);
  --color-teal-deep: var(--color-accent-deep);
  --color-cream: #faf7f2;
  --color-cream-dark: #f0ebe3;
  --color-text: #2a2622;
  --color-text-muted: #6b6560;
  --shadow-card: 0 4px 6px rgba(12, 18, 34, 0.04), 0 20px 50px rgba(12, 18, 34, 0.08);
  --shadow-card-hover: 0 8px 16px rgba(12, 18, 34, 0.06), 0 32px 64px rgba(12, 18, 34, 0.14);
  --radius-card: 20px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

body {
  background: var(--color-cream);
  color: var(--color-text);
}

/* â€”â€” Header: white bar, black logos & nav â€”â€” */
.site-header,
.site-header.top-bar,
#header.site-header.header-initial,
#header-sticky.site-header.header-sticky {
  background: #ffffff !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06) !important;
}
#header-sticky.site-header.header-sticky {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
#header.site-header::before,
#header-sticky.site-header::before {
  background: linear-gradient(90deg, transparent, var(--color-gold), var(--color-teal), var(--color-gold), transparent) !important;
  height: 2px;
  opacity: 1;
}
.site-header .header-logo-img {
  filter: none !important;
}
.site-header .header-logo-secondary {
  filter: none !important;
  opacity: 1 !important;
}
.site-header .header-nav-link,
.site-header .header-nav-link.nav-link,
.site-header .navbar-nav .nav-link {
  color: #1a1a1a !important;
}
.site-header .header-nav-link:hover,
.site-header .header-nav-link.nav-link:hover {
  color: var(--color-accent-deep) !important;
  background: rgba(154, 123, 79, 0.1) !important;
}
.site-header .header-cta {
  background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold)) !important;
  color: var(--color-navy) !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(201, 169, 98, 0.35);
  font-weight: 700;
}
.site-header .header-cta:hover {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light)) !important;
  color: var(--color-navy) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(201, 169, 98, 0.45);
}
.site-header .header-toggle {
  border-color: rgba(0, 0, 0, 0.15) !important;
  background: #fff !important;
}
.site-header .header-toggle:hover,
.site-header .header-toggle:focus {
  border-color: var(--color-teal) !important;
  background: rgba(154, 123, 79, 0.06) !important;
}
.site-header .navbar-toggler-icon,
.site-header .icon-menu {
  filter: none !important;
  opacity: 0.85;
}

/* Mobile menu â€” white panel, black links */
@media (max-width: 991px) {
  .site-header .navbar-collapse,
  .site-header .header-nav-wrap.navbar-collapse {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12) !important;
  }
  .site-header .navbar-collapse::before {
    background: linear-gradient(90deg, var(--color-gold), var(--color-teal), var(--color-gold)) !important;
  }
  .site-header .header-nav-list .nav-item {
    border-bottom-color: rgba(0, 0, 0, 0.08) !important;
  }
  .site-header .header-nav-link,
  .site-header .header-nav-link.nav-link {
    color: #1a1a1a !important;
  }
  .site-header .header-nav-link:hover {
    color: var(--color-teal-deep) !important;
    background: rgba(154, 123, 79, 0.08) !important;
    padding-left: 20px !important;
  }
  .site-header .header-nav-link::before {
    background: var(--color-teal) !important;
  }
  .site-header .header-nav-wrap .header-cta {
    border-top-color: rgba(0, 0, 0, 0.08) !important;
  }
}

/* â€”â€” Projects section backdrop â€”â€” */
.projects-section.home {
  padding: 80px 0 100px !important;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(154, 123, 79, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(201, 169, 98, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
  position: relative;
}
.projects-section.home::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a962' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}
.projects-section .container {
  position: relative;
  z-index: 1;
}
.projects-head .projects-subtitle {
  color: var(--color-gold-dark) !important;
  letter-spacing: 5px !important;
}
.projects-head .sub-title h2 {
  color: var(--color-navy) !important;
  font-size: clamp(2rem, 4vw, 2.75rem) !important;
}
.projects-head .sub-title span {
  background: linear-gradient(135deg, var(--color-teal-deep), var(--color-teal-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}
.projects-head .title-underline {
  width: 100px !important;
  height: 3px !important;
  background: linear-gradient(90deg, var(--color-gold), var(--color-teal), var(--color-gold)) !important;
}
.projects-head .projects-tagline {
  color: var(--color-text-muted) !important;
  font-size: 1.05rem !important;
}

/* —— Grid: 3 premium cards (2 top, 3rd centered) —— */
.projects-section .grid-items {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 2.5rem 2rem !important;
  max-width: 1140px;
  margin: 0 auto;
  justify-items: stretch;
}
.projects-section .grid-items > .grid-item:nth-child(3) {
  grid-column: 1 / -1;
  justify-self: center;
  width: 100%;
  max-width: calc((100% - 2rem) / 2);
}
.projects-section .grid-item:nth-child(3n+2) {
  transform: none !important;
}
.projects-section .grid-item:nth-child(3n+2):hover {
  transform: translateY(-12px) !important;
}

/* Premium property card shell */
.projects-section .premium-property-card {
  background: #fff !important;
  border: 1px solid rgba(201, 169, 98, 0.2) !important;
  border-radius: var(--radius-card) !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.45s ease, border-color 0.3s ease;
}
.projects-section .premium-property-card::after,
.projects-section .premium-property-card::before {
  display: none !important;
}
.projects-section .premium-property-card:hover {
  transform: translateY(-12px) !important;
  box-shadow: var(--shadow-card-hover) !important;
  border-color: rgba(154, 123, 79, 0.35) !important;
}
.projects-section .premium-property-card .property-single {
  position: relative;
}
.projects-section .premium-property-card .property-picture {
  border-radius: 0 !important;
  margin: 0;
}
.projects-section .premium-property-card .property-picture::after {
  height: 45% !important;
  background: linear-gradient(to top, rgba(12, 18, 34, 0.85) 0%, rgba(12, 18, 34, 0.2) 50%, transparent 100%) !important;
}
.projects-section .premium-property-card .property-picture .banner {
  height: 320px !important;
  object-fit: cover;
}
.projects-section .premium-property-card:hover .property-picture .banner {
  transform: scale(1.08);
}

/* Image corner accents */
.projects-section .card-image-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, transparent 50%, rgba(201, 169, 98, 0.15) 50%);
  z-index: 5;
  pointer-events: none;
}
.projects-section .card-launch-ribbon {
  background: linear-gradient(135deg, #b91c1c, #dc2626) !important;
  clip-path: none !important;
  border-radius: 0 0 12px 0 !important;
  padding: 10px 18px !important;
  font-size: 10px !important;
  letter-spacing: 2px !important;
  box-shadow: 0 4px 16px rgba(185, 28, 28, 0.4);
}
.projects-section .premium-property-card .card-launch-ribbon.ribbon-construction {
  background: linear-gradient(135deg, var(--color-navy-soft), var(--color-charcoal)) !important;
  box-shadow: 0 4px 16px rgba(12, 18, 34, 0.35);
}
.projects-section .premium-property-card .card-launch-ribbon.ribbon-prelaunch {
  background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold)) !important;
  color: var(--color-navy) !important;
  box-shadow: 0 4px 16px rgba(201, 169, 98, 0.45);
}
.banner-new-launch.banner-pre-launch {
  background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold)) !important;
  color: var(--color-navy) !important;
}
.projects-section .card-artistic {
  bottom: auto !important;
  top: 14px !important;
  right: 14px !important;
  background: rgba(12, 18, 34, 0.55);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 9px !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.projects-section .card-location-chip {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 8;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 12px !important;
  font-weight: 600;
  color: var(--color-navy) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  max-width: calc(100% - 32px);
}
.projects-section .card-location-chip i {
  color: var(--color-teal) !important;
  font-size: 13px;
}

/* Card body */
.projects-section .card-body-premium {
  padding: 1.5rem 1.35rem 1.35rem !important;
  background: #fff !important;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--color-gold), var(--color-teal), var(--color-gold)) 1;
}
.projects-section .card-title-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0.35rem;
}
.projects-section .card-project-index {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-navy);
  background: linear-gradient(135deg, var(--color-gold-light), rgba(201, 169, 98, 0.35));
  border-radius: 10px;
  border: 1px solid rgba(201, 169, 98, 0.4);
}
.projects-section .card-body-premium .title {
  flex: 1;
  min-width: 0;
}
.projects-section .card-body-premium .title h2 {
  font-family: var(--font-display) !important;
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  color: var(--color-navy) !important;
  margin: 0 !important;
  line-height: 1.3 !important;
}
.projects-section .premium-property-card:hover .title h2 {
  color: var(--color-teal-deep) !important;
}
.projects-section .card-body-premium .card-location,
.projects-section .premium-property-card .card-location {
  display: flex !important;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px !important;
  padding: 0 !important;
  font-family: var(--font-body);
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  color: var(--color-teal-deep) !important;
  line-height: 1.4;
}
.projects-section .card-body-premium .card-location i,
.projects-section .premium-property-card .card-location i {
  color: var(--color-gold-dark) !important;
  font-size: 1rem;
}
.projects-section .card-description {
  margin: 0 0 1.1rem;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.65;
  color: #3d4658;
  background: linear-gradient(135deg, rgba(250, 248, 244, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-left: 3px solid var(--color-gold);
  border-radius: 0 12px 12px 0;
  box-shadow: 0 2px 12px rgba(26, 35, 50, 0.04);
}
.projects-section .premium-property-card:hover .card-description {
  border-left-color: var(--color-teal);
  color: #2a3344;
}
.projects-section .card-config-label {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase;
  color: var(--color-navy) !important;
  margin-bottom: 10px !important;
  opacity: 0.85;
}
.projects-section .card-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 1rem;
}
.projects-section .card-spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  background: linear-gradient(145deg, var(--color-cream) 0%, #fff 100%);
  border: 1px solid rgba(154, 123, 79, 0.12);
  border-radius: 12px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.projects-section .premium-property-card:hover .card-spec-item {
  border-color: rgba(154, 123, 79, 0.25);
  box-shadow: 0 4px 12px rgba(154, 123, 79, 0.08);
}
.projects-section .card-spec-item .spec-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-teal-deep), var(--color-teal));
  color: #fff;
  border-radius: 8px;
  font-size: 12px;
}
.projects-section .card-spec-item .spec-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
}
.projects-section .card-spec-item .spec-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.3;
}
.projects-section .card-footer-premium {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 1rem;
  border-top: 1px dashed rgba(201, 169, 98, 0.35);
  margin-top: 0.25rem;
}
.projects-section .card-footer-premium .card-price {
  /* uses .card-price-featured rules above */
}
.projects-section .card-footer-premium .card-price small {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 2px;
}
.projects-section .card-enquire-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-charcoal) 100%);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(12, 18, 34, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.projects-section .card-enquire-btn i {
  transition: transform 0.25s ease;
}
.projects-section .card-enquire-btn:hover {
  background: linear-gradient(135deg, var(--color-teal-deep), var(--color-teal));
  box-shadow: 0 8px 24px rgba(154, 123, 79, 0.4);
  transform: translateY(-2px);
}
.projects-section .card-enquire-btn:hover i {
  transform: translateX(4px);
}
/* Spec chips â€” works with existing card-config-wrap markup */
.projects-section .card-body-premium .card-details-row,
.projects-section .premium-property-card .card-details-row {
  margin-bottom: 0.75rem;
}
.projects-section .card-body-premium .card-config-label,
.projects-section .premium-property-card .card-config-label {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase;
  color: var(--color-navy) !important;
  margin-bottom: 12px !important;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201, 169, 98, 0.35);
}
.projects-section .grid-items > .grid-item .card-config-wrap,
.projects-section .premium-property-card .card-config-wrap {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 0 1rem !important;
}
.projects-section .grid-items > .grid-item .card-config,
.projects-section .premium-property-card .card-config {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 14px 16px !important;
  background: linear-gradient(145deg, #fff9ef 0%, #fff 100%) !important;
  border: 1px solid rgba(201, 169, 98, 0.28) !important;
  border-radius: 12px !important;
  position: static !important;
  box-shadow: 0 2px 10px rgba(26, 35, 50, 0.04);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.projects-section .premium-property-card:hover .card-config {
  border-color: rgba(201, 169, 98, 0.45) !important;
  box-shadow: 0 4px 16px rgba(154, 123, 79, 0.12);
}
.projects-section .grid-items > .grid-item .spec-icon-wrap,
.projects-section .premium-property-card .spec-icon-wrap {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-teal-deep), var(--color-teal));
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(154, 123, 79, 0.25);
}
.projects-section .grid-items > .grid-item .spec-icon-wrap i,
.projects-section .premium-property-card .spec-icon-wrap i {
  position: static !important;
  width: auto !important;
  height: auto !important;
  background: none !important;
  font-size: 16px;
  color: #fff !important;
}
.projects-section .grid-items > .grid-item .spec-copy,
.projects-section .premium-property-card .spec-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}
.projects-section .grid-items > .grid-item .spec-label,
.projects-section .premium-property-card .spec-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--color-gold-dark);
  font-family: var(--font-body);
  line-height: 1.3;
}
.projects-section .grid-items > .grid-item .spec-value,
.projects-section .premium-property-card .spec-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.projects-section .grid-items > .grid-item .card-config::before,
.projects-section .premium-property-card .card-config::before {
  display: none !important;
  content: none !important;
}
/* Card pricing â€” large & animated */
@keyframes cardPriceGlow {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(154, 123, 79, 0.2), 0 0 0 0 rgba(201, 169, 98, 0.2);
  }
  50% {
    box-shadow: 0 8px 32px rgba(154, 123, 79, 0.35), 0 0 24px 2px rgba(201, 169, 98, 0.25);
  }
}
@keyframes cardPriceShine {
  0% { transform: translateX(-120%) skewX(-20deg); }
  100% { transform: translateX(220%) skewX(-20deg); }
}
@keyframes cardPricePop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.projects-section .grid-items > .grid-item .card-actions-minimal,
.projects-section .premium-property-card .card-actions-minimal {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 14px !important;
  padding-top: .15rem !important;
  margin-top: 0.5rem !important;
  border-top: none !important;
  background: transparent !important;
}
.projects-section .card-price-featured,
.projects-section .grid-items > .grid-item .card-actions-minimal .card-price,
.projects-section .premium-property-card .card-actions-minimal .card-price {
  flex: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 18px 20px 16px !important;
  text-align: center !important;
  position: relative !important;
  overflow: hidden !important;
  border-radius: 14px !important;
  border: 2px solid rgba(201, 169, 98, 0.45) !important;
  background: linear-gradient(145deg, #fff9ef 0%, #fff 40%, #faf5eb 100%) !important;
  box-shadow: 0 6px 24px rgba(154, 123, 79, 0.18) !important;
  animation: cardPriceGlow 2.8s ease-in-out infinite, cardPricePop 3.5s ease-in-out infinite !important;
  transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.35s ease !important;
}
.projects-section .card-price-featured::after,
.projects-section .grid-items > .grid-item .card-actions-minimal .card-price::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  animation: cardPriceShine 3.5s ease-in-out infinite;
  pointer-events: none;
}
.projects-section .premium-property-card:hover .card-price-featured,
.projects-section .grid-items > .grid-item:hover .card-actions-minimal .card-price {
  transform: scale(1.04) !important;
  border-color: rgba(201, 169, 98, 0.7) !important;
  animation: cardPriceGlow 1.6s ease-in-out infinite, cardPricePop 2s ease-in-out infinite !important;
}
.projects-section .card-price-featured small,
.projects-section .grid-items > .grid-item .card-price small,
.projects-section .premium-property-card .card-price small {
  display: block !important;
  font-family: var(--font-body) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  color: var(--color-gold-dark) !important;
  margin-bottom: 8px !important;
}
.projects-section .card-price-featured .price-amount,
.projects-section .grid-items > .grid-item .card-price .price-amount {
  display: block !important;
  font-family: var(--font-display) !important;
  font-size: clamp(1.75rem, 4.5vw, 2.35rem) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.03em !important;
  background: linear-gradient(135deg, var(--color-accent-deep) 0%, var(--color-gold-dark) 45%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}
.projects-section .card-cta-row {
  display: flex;
  align-items: stretch;
  gap: 10px;
  width: 100%;
}
.projects-section .card-cta-row .card-enquire-btn {
  flex: 1;
  min-width: 0;
  justify-content: center !important;
}
.projects-section .card-whatsapp-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: #fff !important;
  text-decoration: none;
  background: linear-gradient(135deg, #1da851 0%, #25d366 100%);
  border: none;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.projects-section .card-whatsapp-btn i {
  font-size: 1.15em;
}
.projects-section .card-whatsapp-btn:hover {
  background: linear-gradient(135deg, #25d366 0%, #2ee66f 100%);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
  color: #fff !important;
}
.projects-section .grid-items > .grid-item .card-actions-minimal .card-enquire-btn {
  width: auto !important;
}
.projects-section .grid-items > .grid-item .card-title-row,
.projects-section .premium-property-card .card-title-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}
.projects-section .grid-items > .grid-item .card-project-index,
.projects-section .premium-property-card .card-project-index {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-navy);
  background: linear-gradient(135deg, var(--color-gold-light), rgba(201, 169, 98, 0.35));
  border-radius: 10px;
  border: 1px solid rgba(201, 169, 98, 0.4);
}
.projects-section .grid-items > .grid-item .property-picture .banner,
.projects-section .premium-property-card .property-picture .banner {
  height: 320px !important;
}
.projects-section .grid-item:not(.premium-property-card) {
  /* fallback: still apply premium shell to all project cards */
}
.projects-section .grid-items > .grid-item {
  background: #fff !important;
  border: 1px solid rgba(201, 169, 98, 0.2) !important;
  border-radius: var(--radius-card) !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.projects-section .grid-items > .grid-item::after {
  display: none !important;
}
.projects-section .grid-items > .grid-item .content-wrap.card-minimal {
  padding: 1.35rem 1.25rem 1.25rem !important;
  background: #fff !important;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--color-gold), var(--color-teal), var(--color-gold)) 1;
}
.projects-section .grid-items > .grid-item .card-enquire-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 700;
  color: #fff !important;
  background: linear-gradient(135deg, var(--color-navy), var(--color-charcoal));
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}
.projects-section .grid-items > .grid-item .card-enquire-btn:hover {
  background: linear-gradient(135deg, var(--color-teal-deep), var(--color-teal));
  transform: translateY(-2px);
}

/* Hover actions on image */
.projects-section .premium-property-card .card-hover-actions {
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(12, 18, 34, 0.92) 0%, rgba(12, 18, 34, 0.55) 55%, transparent 100%) !important;
  padding: 24px 20px 20px !important;
  gap: 0 !important;
}
.projects-section .premium-property-card .card-hover-actions p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
  max-width: 100%;
}
.projects-section .premium-property-card .card-hover-actions .card-action-call {
  background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold)) !important;
  color: var(--color-navy) !important;
}
.projects-section .premium-property-card .card-hover-actions .card-action-call span,
.projects-section .premium-property-card .card-hover-actions .card-action-call i {
  color: var(--color-navy) !important;
}

/* â€”â€” About section â€”â€” */
.about {
  background: linear-gradient(165deg, var(--color-navy) 0%, var(--color-charcoal) 50%, #0f172a 100%) !important;
}
.about-title span {
  color: var(--color-gold-light) !important;
}
.about-stat-value {
  color: var(--color-gold) !important;
}
.about-stat-label {
  color: rgba(3, 3, 3, 0.7) !important;
}

/* â€”â€” Contact â€”â€” */
.contact-section {
  background: linear-gradient(180deg, #fff 0%, var(--color-cream) 50%, var(--color-cream-dark) 100%) !important;
}
.contact-label {
  color: var(--color-gold-dark) !important;
}
.contact-title {
  color: var(--color-navy) !important;
}
.contact-underline {
  background: linear-gradient(90deg, var(--color-gold), var(--color-teal)) !important;
}
.contact-submit {
  background: linear-gradient(135deg, var(--color-teal-deep), var(--color-teal)) !important;
}
.contact-card-call {
  border-color: rgba(201, 169, 98, 0.3) !important;
}
.contact-card-call .contact-card-icon {
  background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold)) !important;
}

/* â€”â€” Forms: wider on desktop â€”â€” */
@media (min-width: 992px) {
  .contact-section .container {
    max-width: 1280px;
  }
  .contact-form-wrap {
    width: 100%;
    max-width: 100%;
  }
  .contact-form-block {
    padding: 40px 48px 34px;
  }
  .contact-form-inline .contact-form-row-main {
    grid-template-columns: 1.15fr 2.5fr 1.2fr auto;
    gap: 16px;
  }
  .contact-form-inline .contact-input,
  .contact-form-phone .contact-input,
  .contact-phone-prefix select,
  .contact-phone-prefix .contact-country {
    min-height: 52px;
    height: 52px;
    font-size: 0.95rem;
  }
  .contact-form-inline .contact-submit {
    height: 52px;
    padding: 0 32px;
    font-size: 1rem;
  }
  .contact-phone-prefix {
    width: 84px;
    min-width: 84px;
  }
  .modal.form.modal-enquiry .modal-dialog {
    max-width: 620px;
  }
  .modal.form.modal-enquiry .modal-content {
    border-radius: 22px;
  }
  .modal.form.modal-enquiry .modal-header,
  .modal.form.modal-enquiry .modal-body {
    padding-left: 36px;
    padding-right: 36px;
  }
  .modal-form .form-control {
    min-height: 52px;
    font-size: 0.95rem;
  }
  .modal-form .modal-submit-btn {
    min-height: 52px;
    padding: 14px 28px;
    font-size: 1rem;
  }
}

@media (min-width: 1200px) {
  .contact-section .container {
    max-width: 1160px;
  }
  .contact-form-block {
    padding: 44px 56px 38px;
  }
  .contact-form-inline .contact-form-row-main {
    grid-template-columns: 1.2fr 2.8fr 1.35fr auto;
    gap: 18px;
  }
  .modal.form.modal-enquiry .modal-dialog {
    max-width: 680px;
  }
}

/* â€”â€” Footer â€”â€” */
.footer-section {
  background: var(--color-navy) !important;
  border-top: 2px solid rgba(201, 169, 98, 0.25);
}

/* â€”â€” Fixed social + back to top â€”â€” */
.fixed-social-call .fixed-social-link {
  background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold)) !important;
}
.back-to-top {
  background: linear-gradient(135deg, var(--color-navy), var(--color-charcoal)) !important;
  border-color: rgba(201, 169, 98, 0.4) !important;
}
.back-to-top:hover {
  background: linear-gradient(135deg, var(--color-teal-deep), var(--color-teal)) !important;
}

/* â€”â€” Banner carousel accents â€”â€” */
.banner-new-launch {
  background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold)) !important;
  color: var(--color-navy) !important;
}
.banner-price {
  color: var(--color-gold-light) !important;
}
.banner-cta-btn {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light)) !important;
  color: var(--color-navy) !important;
  font-weight: 700 !important;
}
.banner-cta-btn:hover {
  box-shadow: 0 8px 28px rgba(201, 169, 98, 0.45) !important;
}

@media (max-width: 991px) {
  .projects-section .grid-items {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .projects-section .grid-items > .grid-item:nth-child(3) {
    grid-column: auto;
    justify-self: stretch;
    max-width: none;
  }
  .projects-section .premium-property-card .property-picture .banner {
    height: 280px !important;
  }
}
@media (max-width: 767px) {
  .projects-section .grid-items > .grid-item .card-config-wrap,
  .projects-section .premium-property-card .card-config-wrap {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .projects-section .grid-items > .grid-item .card-config,
  .projects-section .premium-property-card .card-config {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    box-sizing: border-box;
  }
  .projects-section .grid-items > .grid-item .spec-copy,
  .projects-section .premium-property-card .spec-copy {
    flex: 1;
    min-width: 0;
  }
  .projects-section .grid-items > .grid-item .spec-value,
  .projects-section .premium-property-card .spec-value {
    font-size: 16px;
    line-height: 1.4;
    word-break: break-word;
  }
}

@media (max-width: 575px) {
  .projects-section .card-specs-grid {
    grid-template-columns: 1fr;
  }
  .projects-section .card-footer-premium {
    flex-direction: column;
    align-items: stretch;
  }
  .projects-section .card-cta-row {
    flex-direction: column;
  }
  .projects-section .card-cta-row .card-enquire-btn,
  .projects-section .card-whatsapp-btn {
    width: 100%;
  }
  .projects-section .card-enquire-btn {
    justify-content: center;
  }
  .projects-section .card-price-featured .price-amount {
    font-size: 1.65rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .projects-section .card-price-featured,
  .projects-section .grid-items > .grid-item .card-actions-minimal .card-price {
    animation: none !important;
  }
  .projects-section .card-price-featured::after,
  .projects-section .grid-items > .grid-item .card-actions-minimal .card-price::after {
    animation: none !important;
    display: none;
  }
}

/* â€”â€” Premium footer â€”â€” */
.site-footer-premium {
  position: relative;
  padding: 0 0 28px;
  color: rgba(255, 255, 255, 0.88);
}
.site-footer-premium .footer-gold-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-light), var(--color-gold));
  margin-bottom: 48px;
}
.site-footer-premium .footer-grid {
  display: block;
  margin-bottom: 36px;
}
.site-footer-premium .footer-brand-col {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.site-footer-premium .footer-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}
.site-footer-premium .footer-logo-main {
  height: 42px;
  width: auto;
 
}
.site-footer-premium .footer-logo-partner {
  height: 38px;
  width: auto;
  border-radius: 6px;
  filter: invert(1);
  padding: 4px 8px;
}
.site-footer-premium .footer-tagline {
  font-size: 0.95rem;
  color: var(--color-gold-light);
  margin: 0 0 12px;
  max-width: 520px;
  line-height: 1.5;
}
.site-footer-premium .footer-rera {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 auto;
  line-height: 1.5;
  max-width: 480px;
}
.site-footer-premium .footer-rera-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 4px;
}
.site-footer-premium .footer-col-title {
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: 1.1rem;
  color: var(--color-gold-light);
  margin: 0 0 16px;
}
.site-footer-premium .footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer-premium .footer-nav li + li {
  margin-top: 10px;
}
.site-footer-premium .footer-nav a,
.site-footer-premium .footer-contact-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}
.site-footer-premium .footer-nav a:hover,
.site-footer-premium .footer-contact-link:hover {
  color: var(--color-gold);
}
.site-footer-premium .footer-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.site-footer-premium .footer-contact-link i {
  color: var(--color-gold);
  width: 18px;
  text-align: center;
}
.site-footer-premium .footer-disclaimer {
  border-top: 1px solid rgba(201, 169, 98, 0.2);
  padding-top: 24px;
  margin-bottom: 20px;
}
.site-footer-premium .footer-disclaimer p {
  font-size: 0.75rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}
.site-footer-premium .footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}
.site-footer-premium .footer-bottom p {
  margin: 0;
  width: 100%;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}
.site-footer-premium .footer-dev-mark {
  opacity: 0.7;
}

/* â€”â€” Form validation â€”â€” */
.field-error {
  display: block;
  font-size: 0.78rem;
  color: #c0392b;
  margin-top: 6px;
}
.form-error-summary {
  display: none;
  background: #fdecea;
  border: 1px solid #f5c6cb;
  color: #721c24;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  margin-bottom: 14px;
}
.form-error-summary.is-visible,
.form-error-summary:not([hidden]):not(:empty) {
  display: block;
}
#enquiry-alert[hidden] {
  display: none !important;
}
.contact-input.is-invalid,
.form-control.is-invalid {
  border-color: #c0392b !important;
  box-shadow: 0 0 0 2px rgba(192, 57, 43, 0.15);
}
.contact-submit:disabled,
.modal-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* â€”â€” Legal & thank-you pages â€”â€” */
.legal-page,
.thankyou-page {
  background: var(--color-cream, #faf8f4);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.legal-page .site-header,
.thankyou-page .site-header {
  background: #fff;
  box-shadow: 0 2px 20px rgba(26, 35, 50, 0.06);
}
.legal-page .header-logo-secondary,
.thankyou-page .header-logo-secondary {
  filter: none !important;
  height: 36px;
  width: auto;
  border-radius: 4px;
}
.legal-main {
  flex: 1;
  padding: 48px 0 64px;
}
.legal-hero {
  text-align: center;
  margin-bottom: 40px;
}
.legal-hero h1 {
  font-family: var(--font-display, "Playfair Display", serif);
  color: var(--color-navy, #1a2332);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 8px;
}
.legal-hero p {
  color: rgba(26, 35, 50, 0.65);
  max-width: 560px;
  margin: 0 auto;
}
.legal-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 36px;
  box-shadow: 0 8px 40px rgba(26, 35, 50, 0.08);
  border: 1px solid rgba(201, 169, 98, 0.15);
}
.legal-card h2 {
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: 1.35rem;
  color: var(--color-navy);
  margin: 32px 0 12px;
}
.legal-card h2:first-child {
  margin-top: 0;
}
.legal-card h3 {
  font-size: 1rem;
  color: var(--color-gold-dark, #9a7b3a);
  margin: 24px 0 10px;
}
.legal-card p,
.legal-card li {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(26, 35, 50, 0.8);
}
.legal-card ul {
  padding-left: 1.25rem;
}
.legal-card a {
  color: var(--color-teal-deep, #6d5a38);
  font-weight: 600;
}
.legal-card hr {
  border-color: rgba(201, 169, 98, 0.25);
  margin: 28px 0;
}
.thankyou-main {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  padding: 60px 0 80px;
}
.thankyou-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 169, 98, 0.12), transparent),
    linear-gradient(180deg, var(--color-cream) 0%, #fff 100%);
  pointer-events: none;
}
.thankyou-card {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  padding: 48px 40px;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(26, 35, 50, 0.1);
  border: 1px solid rgba(201, 169, 98, 0.2);
}
.thankyou-icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  animation: thankyou-pulse 2s ease-in-out infinite;
}
.thankyou-icon-wrap i {
  font-size: 42px;
  color: var(--color-navy);
}
@keyframes thankyou-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(201, 169, 98, 0.4); }
  50% { transform: scale(1.03); box-shadow: 0 0 0 12px rgba(201, 169, 98, 0); }
}
.thankyou-title {
  font-family: var(--font-display, "Playfair Display", serif);
  color: var(--color-navy);
  font-size: 2rem;
  margin-bottom: 8px;
}
.thankyou-tagline {
  color: var(--color-gold-dark);
  font-weight: 600;
  margin-bottom: 12px;
}
.thankyou-message {
  color: rgba(26, 35, 50, 0.7);
  margin-bottom: 24px;
}
.thankyou-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-teal));
  margin: 0 auto 24px;
  border-radius: 2px;
}
.thankyou-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-navy);
  text-decoration: none;
  margin-bottom: 28px;
}
.thankyou-phone:hover {
  color: var(--color-gold-dark);
}
.thankyou-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--color-teal-deep), var(--color-teal));
  color: #fff !important;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.thankyou-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(109, 90, 56, 0.35);
  color: #fff;
}

@media (max-width: 767px) {
  .legal-card {
    padding: 24px 20px;
  }
  .thankyou-card {
    padding: 36px 24px;
  }
}
