* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #111;
    background: #fff;
}


.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #252525;

    border-bottom: 1px solid rgba(0, 0, 0, 0.15);

    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.3s ease;
}

/* Scroll Down → Hide */
.site-header.nav-hide {
    transform: translateY(-100%);
}

/* Scroll Up → Show */
.site-header.nav-show {
    transform: translateY(0);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;

}

.navbar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.nav-logo img {
    height: 64px;
}

/* Menu */
.nav-menu ul {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    /* not pure black */
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #efc342;
}

/* CTA */

.btn-contact,
.mobile-btn {
    padding: 14px 28px;

    background: linear-gradient(135deg,
            #e2b650,
            #f8dea2,
            #e2b650);
    color: #2b2b2b;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(230, 199, 125, 0.35);
    transition: all 0.35s ease;
    border-radius: 6px;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(230, 199, 125, 0.45);
}



.mobile-contactnow {
    background: #ffffff;
    border: 1px solid #d4af37;
    color: #c08600 !important;
    display: flex;
    justify-content: center;
}




/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #ffffff;
}

/* ---------- banner section style */

.banner-section {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.banner-image {
    position: absolute;
    inset: 0;
    background: url('../images/banner/banner.png') center/cover no-repeat;
    z-index: 0;
    filter: brightness(0.85);
}

.banner-content {
    position: relative;
    width: 100%;
    color: #fff;
    top: 60px;
}

.banner-content .nav-container {
    text-align: left;
    padding: 20px;
}

.banner-content h1 {
    font-size: clamp(1.2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1;
    max-width: 520px;
    margin-bottom: 10px;
    opacity: 0.95;
}


.banner-content .btn-contact {
    display: inline-block;
    margin-top: 35px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #e2b650, #f8dea2, #e2b650);
    color: #2b2b2b;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(230, 199, 125, 0.35);
    transition: all 0.35s ease;
    border-radius: 4px;
}

.banner-content .btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(230, 199, 125, 0.45);
}


/* ----------------------------------about us ----------------------------------*/

.about-us-section {
    padding: 60px 20px;
    background: #fdfdfd;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
}

.about-us-container {
    display: flex;

    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

/* Left images */
.about-images {
    position: relative;
    flex: 1 1 500px;
    min-width: 300px;
}

.image-front img {
    width: 80%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    top: 100px;
}

.image-back img {
    width: 80%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    position: absolute;
    top: -80px;
    left: 120px;
    z-index: 2;
}

/* Right text */
.about-text {
    flex: 1 1 500px;
    min-width: 300px;
}

.about-text .about-text-details {
    text-align: justify;
    font-size: 1rem;
    line-height: 1.5;
    color: #222;

}

.about-text .about-text-details .br {
    margin: 10px 0;
}

.about-text-detailssecond {
    margin-top: 10px;
}


/* ===== About Stats Cards ===== */

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 40px;
    text-align: center;
}

.stat-card {
    position: relative;
    background: #f4f1ea;
    padding: 10px 10px;
    border-radius: 10px;
    border: 1px solid rgba(190, 160, 90, 0.4);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    overflow: hidden;

    z-index: 1;
}

.stat-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.stat-card h2 {
    font-size: 32px;
    font-weight: 700;
    color: #c4a35d;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.4;
    text-align: center;

}

.stat-card h2,
.stat-card p {
    position: relative;
    z-index: 2;
    /* ADD THIS */
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.25;
    animation: rotateBall 15s linear infinite;
    z-index: 0;
}

/* Different size, color, starting position, and speed for each circle */
.circle1 {
    width: 120px;
    height: 120px;
    background: #f8dea2;
    top: -30px;
    left: -30px;
    animation-duration: 18s;
}

.circle2 {
    width: 80px;
    height: 80px;
    background: #e2b650;
    bottom: -20px;
    right: -20px;
    animation-duration: 22s;
}

.circle3 {
    width: 60px;
    height: 60px;
    background: #d8c48f;
    top: 40%;
    left: -30px;
    animation-duration: 20s;
}

.circle4 {
    width: 100px;
    height: 100px;
    background: #f1e4b8;
    bottom: 20%;
    right: -40px;
    animation-duration: 25s;
}


@keyframes rotateBall {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, -20px) rotate(90deg);
    }

    50% {
        transform: translate(0, -40px) rotate(180deg);
    }

    75% {
        transform: translate(-20px, -20px) rotate(270deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}



/* About Us Heading */
.about-us-heading {
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-us-heading h2 {
    font-size: 2.8rem;
    font-weight: 700;

    /* Gradient color */
    background: linear-gradient(90deg, #916808, #c7a728, #9d7109);
    /* change colors as needed */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    position: relative;
}

.about-us-heading p::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #e2b650, #f8dea2);
    margin: 22px auto 0 auto;
    border-radius: 2px;
}

.about-us-heading p {
    font-size: 16px;
    color: #555;
    line-height: 1.2;
    max-width: 650px;
    margin: 0 auto;
    color: #755509;
}

/* --------------------------------------- Testimonials ----------------------------- */

/* ===== Testimonials Full Width ===== */

.testimonials-section {
    position: relative;
    width: 100%;
    padding: 90px 0;
    text-align: center;
    overflow-x: hidden;

    /* 🔥 Parallax Background */
    background-image: url('../images/testimonials/Ultra_premium_real_estate_website_testimonials_sec_delpmaspu.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.testimonials-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    /* adjust darkness */
    z-index: 0;
}

.testimonials-section>* {
    position: relative;
    z-index: 2;
}

/* Heading color fix on dark bg */
.testimonials-section .about-us-heading h2 {
    background: linear-gradient(90deg, #f8dea2, #e2b650, #f8dea2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonials-section .about-us-heading p {
    color: #f1e4b8;
}



/* Slider */
.testimonial-slider {
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 20px;
}

/* track */
.testimonial-track {
    display: flex;
    gap: 30px;
    transition: transform 0.4s ease;
    will-change: transform;
}



.testimonial-card {
    min-width: 340px;
    background: #fffffe;
    border-radius: 22px;
    padding: 20px 25px;
    /* box-shadow: 0 20px 40px rgba(0,0,0,0.08); */
    text-align: center;
    position: relative;
    border: 1px solid #c9a45498;
    flex: 0 0 340px;
}

/* Quote Icon */
.quote-icon {
    position: absolute;
    top: 25px;
    left: 30px;
    font-size: 4rem;
    color: #d4af37;
    opacity: 0.9;
}

.client-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 10px auto 20px;
    border: 6px solid #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f8f5ef;
}

.client-image-icon {
    font-size: 40px;
    color: #d4af37;
}

/* Name */
.testimonial-card h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #111;
}

/* Role */
.role {
    font-size: 14px;
    color: #777;
    margin-bottom: 18px;
}

/* Stars */
.stars {
    color: #d4af37;
    font-size: 18px;
    letter-spacing: 3px;
    /* margin-bottom: 20px; */
    text-align: left;
}

/* Feedback */
.feedback {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    max-width: 280px;
    margin: 0;
    text-align: left;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.ts-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #d4af37;
    background: #fff;
    color: #d4af37;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ts-btn:hover {
    background: #d4af37;
    color: #fff;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/*  -----------------  Buy & Sell & Rental ------------- */


.services-section {
    position: relative;
    padding: 90px 20px;

    background-image: url("../images/services/services.jpeg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    overflow: hidden;
}

.services-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.712),
            rgba(0, 0, 0, 0.141));

    z-index: 1;
    pointer-events: none;
}

.services-section>* {
    position: relative;
    z-index: 2;
}


.services-heading {
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.services-heading h2 {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, #c39c3f, #e2b650, #e2b650);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.services-heading p::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #e2b650, #af7e0e);
    margin: 22px auto 0 auto;
    border-radius: 2px;
}

.services-heading p {
    font-size: 14px;
    color: #555;
    line-height: 1.2;
    max-width: 650px;
    margin: 0 auto;
    color: #ffffff;

}



/* Grid */
.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ===================== SERVICE CARD ===================== */

.service-card {
    position: relative;
    background: #2b2b2b;

    border-radius: 22px;
    padding: 40px 30px;
    border: 1px solid rgba(190, 160, 90, 0.35);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    z-index: 1;
    display: flex;
    flex-direction: column;

}

/* 🔥 Sliding solid background (bottom → top) */
.service-card::after {
    content: "";
    position: absolute;
    background: #ffffff;

    inset: 0;
    /* solid hover color */
    transform: translateY(100%);
    transition: transform 0.45s ease;
    z-index: 0;
}

.service-card:hover::after {
    transform: translateY(0);
}

/* Lift on hover */
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Keep all content above background */
.service-card * {
    position: relative;
    z-index: 2;
}

/* Highlight middle card */
.service-card.featured {
    border: 2px solid #e2b650;
    transform: translateY(-10px);
}

/* ===================== ICON ===================== */

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d1a63f, #cc9e32);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    /* box-shadow: 0 12px 28px rgba(226, 182, 80, 0.45); */
    transition: transform 0.35s ease;
}

.service-icon i {
    font-size: 28px;
    color: #ffffff;
}

.service-card:hover .service-icon {
    transform: scale(1.05) rotate(6deg);
}

/* ===================== TEXT ===================== */

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #e2b650;
    transition: color 0.3s ease;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 22px;
    transition: color 0.3s ease;
}

/* Text color on hover */

.service-card:hover p {
    color: #2b2b2b;
}

.service-card:hover h3 {
    color: #e2b650;
}

/* ===================== BUTTONS ===================== */

.service-actions {
    margin-top: auto;

    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-outline {
    padding: 12px 22px;
    border-radius: 30px;
    border: 2px solid #e2b650;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #111;

}

.btn-outline:hover {
    background: #e2b650;
    color: #2b2b2b;
}

/* Button contrast on card hover */
.service-card:hover .btn-outline {
    background: #2b2b2b;
    color: #ffffff;
    border-color: #2b2b2b;

}

.btn-gold {
    padding: 12px 24px;
    border-radius: 30px;
    color: #2b2b2b;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(230, 199, 125, 0.35);
    transition: all 0.35s ease;
    background: #ffffff;

}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(230, 199, 125, 0.45);
}

.service-card:hover .btn-gold {
    background: linear-gradient(135deg, #e2b650, #f8dea2, #e2b650);

    color: #2b2b2b;
}


/* ================= FAQ SECTION ================= */



/* GREEN ICON */
/* ================= FAQ SECTION ================= */



.about-us-heading {
    text-align: center;
    margin-bottom: 50px;
}

.about-us-heading h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.about-us-heading p {
    color: #555;
}

.faq-main {
    padding: 90px 20px;
    background: linear-gradient(135deg,
            #eef8f6 0%,
            #efe9f8 25%,
            #fde8f0 45%,
            #f7f1da 65%,
            #fad9ff 120%);
}



/* ===== WRAPPER ===== */
.faq-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.faq-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* ===== ITEM ===== */
.faq-item {
    background: #ca9e003d;
    border-radius: 40px;
    border: 1px solid #d8ece8;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* ===== QUESTION ===== */
.faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 26px;
    cursor: pointer;
}

.faq-question h4 {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
    color: #1c1c1c;
}

/* ICON */
.faq-icon {
    width: 26px;
    height: 26px;

    border-radius: 50%;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    line-height: 1;
    transition: transform 0.4s ease;
}

/* NUMBER */
.faq-no {
    font-size: 20px;
    font-weight: 600;
    color: #1c1c1c;
}

/* ===== ANSWER ===== */
.faq-answer {
    background: #0f1720;
    color: #fff;

    padding: 0 26px;
    max-height: 0;
    overflow: hidden;

    transition:
        max-height 0.45s ease,
        padding 0.35s ease;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.9;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    padding: 20px 26px 26px;
}

.faq-item.active .faq-icon {
    transform: rotate(90deg);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .faq-wrapper {
        flex-direction: column;
        gap: 14px;
    }

    .faq-main {
        padding: 50px 15px;
    }

    .faq-question {
        padding: 16px 22px;
    }

    .faq-icon {
        width: 24px;
        height: 24px;
        font-size: 15px;
    }

    .faq-question h4 {
        font-size: 14px;
    }

    .faq-answer p {
        font-size: 13px;
    }
}



/* ===================== CONTACT SECTION ===================== */

.contact-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, #fff, #fbeec6);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

/* ===================== MAP ===================== */

.contact-map {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    padding: 16px 20px;
    border-radius: 14px;
    color: #fff;
}

.map-overlay h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.map-overlay p {
    font-size: 13px;
    opacity: 0.85;
}




.form-subtext {
    font-size: 14px;
    color: #555;
    margin-bottom: 30px;
}



/* ===================== CONTACT SECTION ===================== */

/* .contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
} */


/* ===================== MAP ===================== */

.contact-map {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    padding: 16px 20px;
    border-radius: 14px;
    color: #fff;
}

.map-overlay h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.map-overlay p {
    font-size: 13px;
    opacity: 0.85;
}

/* ===================== FORM CARD ===================== */

.contact-form-card {
    background: #ffffff;
    border-radius: 22px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);

    border: 1px solid rgba(190, 160, 90, 0.35);
}

.contact-form-card h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #755509, #d8b62d, #755509);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-subtext {
    font-size: 14px;
    color: #555;
    margin-bottom: 30px;
}

/* ===================== FORM GRID ===================== */

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

/* Half & Full columns */
.form-group.half {
    grid-column: span 1;
}

.form-group.full {
    grid-column: span 2;
}

/* ===================== FORM ELEMENTS ===================== */

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #ccc;
    font-size: 14px;
    outline: none;
    background: transparent;
    box-sizing: border-box;
}

/* 🔒 Textarea resize lock */
.form-group textarea {
    resize: none;
    max-width: 100%;
}

/* Floating Labels */
.form-group label {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 0 6px;
    font-size: 13px;
    color: #777;
    pointer-events: none;
    transition: 0.3s ease;
}

.form-group textarea+label {
    top: 18px;
    transform: none;
}

/* Floating effect */
.form-group input:focus+label,
.form-group textarea:focus+label,
.form-group select:focus+label,
.form-group input:valid+label,
.form-group textarea:valid+label,
.form-group select:valid+label {
    top: -8px;
    font-size: 12px;
    color: #755509;
}

/* ===================== SUBMIT BUTTON ===================== */

.btn-submit {
    grid-column: span 2;
    width: fit-content;
    margin-top: 10px;
    padding: 12px 28px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(135deg, #e2b650, #f8dea2, #e2b650);
    color: #2b2b2b;
    box-shadow: 0 10px 28px rgba(230, 199, 125, 0.4);
    transition: all 0.35s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(230, 199, 125, 0.5);
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-form {
        grid-template-columns: 1fr;
    }

    .form-group.half,
    .form-group.full,
    .btn-submit {
        grid-column: span 1;
        width: 100%;
    }

    .contact-form-card {
        padding: 40px 26px;
    }
}


/* ===================== FOOTER ===================== */

.site-footer {
    position: relative;
    background-image: url('../images/footer/Ultramodern_real_estate_website_footer_background__delpmaspu.png');
    /* 🔁 whisk image */
    /* background-size: cover;
  background-position: center;
  background-repeat: no-repeat; */
    background-attachment: fixed;
    color: #f5f5f5;
    overflow: hidden;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.429),
            rgba(0, 0, 0, 0.57));
    z-index: 0;
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 24px 60px;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 50px;
}

/* Brand */
.footer-col.brand img {
    height: 46px;
    margin-bottom: 20px;
}

.footer-col.brand p {
    font-size: 14px;
    line-height: 1.7;
    color: #ddd;
    max-width: 340px;
}

.footer-socials {
    display: flex;
    gap: 14px;
    margin-top: 22px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e2b650;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: #e2b650;
    color: #2b2b2b;
    transform: translateY(-2px);
}

/* Headings */
.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 22px;
    color: #f8dea2;
    position: relative;
}

.footer-col h4::after {
    content: "";
    width: 36px;
    height: 3px;
    background: linear-gradient(135deg, #e2b650, #f8dea2);
    display: block;
    margin-top: 8px;
    border-radius: 2px;
}

/* Lists */
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    text-decoration: none;
    font-size: 14px;
    color: #ddd;
    transition: all 0.3s ease;
}

.footer-col ul a:hover {
    color: #e2b650;
    padding-left: 4px;
}

/* Contact */
.footer-col.contact p {
    font-size: 14px;
    margin-bottom: 14px;
    display: flex;
    gap: 10px;
    align-items: center;
    color: #ddd;
}

.footer-col.contact i {
    color: #e2b650;
}

/* Bottom bar */
.footer-bottom {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 18px 20px;
    background: rgba(0, 0, 0, 0.85);
    font-size: 13px;
    color: #bbb;
}

.address-sartaj i {
    margin-bottom: 16px;
}






/* ===================== SCROLL TO TOP (PROGRESS) ===================== */

#scrollToTop {
    position: fixed;
    right: 20px;
    bottom: 20px;

    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    z-index: 2000;

    background: #000;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.35s ease;

    box-shadow: 0 10px 28px rgba(230, 199, 125, 0.45);
}

#scrollToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* icon */
#scrollToTop i {
    position: relative;
    z-index: 2;
    font-size: 16px;
}

/* SVG ring responsive */
.progress-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-ring__circle {
    stroke-dasharray: 151;
    stroke-dashoffset: 151;
    transition: stroke-dashoffset 0.1s linear;
}

/* 📱 Mobile fix */
@media (max-width: 600px) {
    #scrollToTop {
        width: 40px;
        height: 40px;
        right: 12px;
        bottom: 12px;
    }

    #scrollToTop i {
        font-size: 14px;
    }

    .progress-ring__circle {
        stroke-width: 2.5;
    }
}