@media (max-width: 991px) {
    .nav-menu {
        display: none;
    }

    .navbar {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 24px;

    }

    /* ☰ TOGGLE — LEFT */
    .nav-toggle {
        display: flex;
        align-items: center;
        order: 1;
    }

    /* LOGO — CENTER (REAL CENTER) */
    .nav-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        order: 2;
    }

    /* 📞 CONTACT — RIGHT */
    .nav-cta {
        display: flex;
        align-items: center;
        order: 3;
    }
}

@media (max-width: 600px) {
    .nav-cta {
        display: none;
    }

    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0px 24px;

    }

    /* 🖼 LOGO — LEFT */
    .nav-logo {
        position: static;
        transform: none;
        order: 1;
        display: flex;
        align-items: center;
    }

    /* ☰ TOGGLE — RIGHT */
    .nav-toggle {
        order: 2;
        display: flex;
        align-items: center;
    }


}

/* ================== PREMIUM MOBILE SIDEBAR ================== */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    padding: 90px 28px;
    background: linear-gradient(180deg, #1c1c1c, #0f0f0f);
    backdrop-filter: blur(12px);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
    transition: right 0.45s cubic-bezier(0.77, 0, 0.18, 1);
    z-index: 1200;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* 🔗 Menu Links */
.mobile-menu a {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #eaeaea;
    text-decoration: none;
    position: relative;
    transition: all 0.35s ease;
}

/* Hover */
.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #f8dea2;
    transform: translateX(4px);
}

/* ✅ ACTIVE / SELECTED LINK */
.mobile-menu a.active {
    background: linear-gradient(135deg,
            rgba(226, 182, 80, 0.25),
            rgba(248, 222, 162, 0.18));
    color: #f8dea2;
    box-shadow: inset 0 0 0 1px rgba(226, 182, 80, 0.35);
}

/* ✨ Active Indicator Line */
.mobile-menu a.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12%;
    height: 76%;
    width: 4px;
    border-radius: 4px;
    background: linear-gradient(180deg, #e2b650, #f8dea2);
}

/* 📞 CTA Button */
.mobile-menu .mobile-btn {
    margin-top: 18px;
    justify-content: center;
    background: linear-gradient(135deg, #e2b650, #f8dea2);
    color: #1a1a1a;
    font-weight: 600;
    box-shadow: 0 10px 28px rgba(226, 182, 80, 0.4);
}

.mobile-menu .mobile-btn:hover {
    transform: translateY(-2px);
}




/* Overlay */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 1100;
}


.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* for banner ------- responsive */

@media (max-width: 991px) {
    .banner-content h1 {
        font-size: 2.5rem;
    }

    .banner-section {
        min-height: 80vh;
    }

    .banner-content p {
        font-size: 1.1rem;
    }

    .banner-content .nav-container {
        padding: 0 20px;
    }
}

@media (max-width: 550px) {
    .banner-section {
        min-height: 65vh;
    }

    .banner-content h1 {
        margin-bottom: 14px;
        text-align: center;

    }

    .banner-content p {
        font-size: 13px;
        max-width: 100%;
        margin-bottom: 4px;
        text-align: center;

    }

    .banner-content .btn-contact {
        margin-top: 25px;
        padding: 12px 26px;
        display: flex;
        justify-content: center;
        align-items: center;
        min-width: 150px;
        max-width: 40%;
        margin: 0 auto;
        margin-top: 40px;

    }

    .banner-content {

        top: 20px;
    }

    .mobile-menu a {
        display: flex;
        align-items: center;
        padding: 10px 18px;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 500;
        color: #eaeaea;
        text-decoration: none;
        position: relative;
        transition: all 0.35s ease;
    }

}


/* ----------------- About Us Responsive ------------------- */
/* ===================== ABOUT US RESPONSIVE ===================== */

/* ---------- TABLET (≤ 991px) ---------- */
@media (max-width: 1024px) {

    .about-us-container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    /* 🔑 IMAGE FIX */
    .about-images-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        position: static;
    }

    .image-front img,
    .image-back img {
        width: 100%;
        position: static;

    }

    /* TEXT */
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.4;
        text-align: center;

    }

    .about-us-heading h2 {
        font-size: 2.2rem;
    }

    .about-us-heading p {
        font-size: 0.7rem;
    }

    .about-images {

        flex: none;
    }

    .about-text {
        flex: none;
    }

    .about-text .about-text-details {
        text-align: justify;
        font-size: 0.95rem;
        line-height: 1.4;
    }

}


/* ---------- MOBILE (≤ 600px) ---------- */
@media (max-width: 600px) {

    .about-us-section {
        padding: 40px 15px;
    }


    .about-images-inner {
        grid-template-columns: 1fr 1fr;
        gap: 8px;

    }

    .image-front img,
    .image-back img {
        width: 100%;
        border-radius: 12px;
    }

    /* TEXT */
    .about-text p {
        font-size: 0.8rem;
        line-height: 1.25;
        text-align: center;

    }

    /* STATS */
    .about-stats {
        /* grid-template-columns: 1fr; */
        gap: 6px;
        margin-top: 20px;
    }

    .stat-card {
        text-align: center;
        padding: 6px;
    }

    .stat-card h2 {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 0px;
    }

    .stat-card p {
        font-size: 12px;


    }

    /* HEADING */
    .about-us-heading h2 {
        font-size: 1.6rem;
    }

    .about-us-heading p {
        font-size: 0.7rem;
        width: 70%;
    }

    .about-us-heading {

        margin-bottom: 25px;

    }

    .about-text .about-text-details {
        text-align: justify;
        font-size: 0.8rem;
        line-height: 1.25;
    }

    .about-us-container {

        gap: 20px;

    }


}

/* Testimonials */


@media(max-width:768px) {
    .testimonial-track {
        padding: 0 10px;
        gap: 15px;
    }

    .testimonial-card {
        min-width: 350px;
        flex: 0 0 260px;
        padding: 20px;
    }

    .testimonials-section {
        /* background-attachment: scroll; */
        padding: 40px 0;
    }

    .testimonial-slider {

        padding: 0;
    }

    .about-us-heading p::after {

        margin: 12px auto 0 auto;
    }

    .quote-icon {
        top: 10px;
        left: 20px;
        font-size: 2.5rem;

    }

    .client-image {
        width: 70px;
        height: 70px;
        margin: 5px auto 5px;
    }

    .client-image-icon {
        font-size: 32px;
    }


    .testimonial-card h3 {
        font-size: 20px;
        font-weight: 500;
        margin-bottom: 0px;
    }

    .role {
        margin-bottom: 6px;
    }

    .feedback {
        font-size: 14px;
        line-height: 1.2;
        color: #555;
        max-width: 280px;
        margin: 0;
        text-align: left;
    }

    .testimonial-controls {

        margin-top: 30px;
    }

    .ts-btn {
        width: 36px;
        height: 36px;
    }
}




/* ===================== - Buy & Sell & Rental  RESPONSIVE ===================== */

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card.featured {
        transform: none;
    }

    .services-section {
        padding: 50px 15px;

    }
    

    .services-heading {
    text-align: center;
    margin-bottom: 40px;
    
}

.services-heading h2 {
    font-size: 2.1rem;
    font-weight: 600;
    line-height: 35px;

  
}



.services-heading p {
    font-size: 12px;
    margin-top: 10px;

}

}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 24px 24px;
    }

    .service-card h3 {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .service-card p {
        font-size: 13px;
        line-height: 1.4;
        color: #ffffff;
        margin-bottom: 22px;
        transition: color 0.3s ease;
    }

    .service-actions {

        justify-content: center;
        gap: 30px;

    }

    .services-grid {
        gap: 15px
    }

}

/* ===================== F & Q RESPONSIVE ===================== */

@media (max-width: 1100px) {


    .contact-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-section {
        padding: 60px 15px;

    }


}

@media (max-width: 900px) {


    .contact-map iframe {
        min-height: 300px;
    }

    .contact-form-card {
        padding: 40px 28px;
    }

    .contact-form-card h2 {
        font-size: 1.6rem;
        font-weight: 600;
        margin-bottom: 4px;
        text-align: center;
        line-height: 25px;


    }

    .contact-form-card p {
        text-align: center;
        font-size: 12px;
    }

    .contact-form {
        gap: 12px;
    }

}


@media (max-width: 600px) {


    .contact-map iframe {
        min-height: 300px;
    }

    .contact-form-card {
        padding: 20px 15px;
    }

    .contact-form-card h2 {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 4px;
        text-align: center;
        line-height: 25px;


    }

    .contact-form-card p {
        text-align: center;
        font-size: 12px;
        width: 70%;
        margin: 0 auto 10px auto;
    }


    .contact-form {
        gap: 12px;
    }
}


/* ===================== FOOTER RESPONSIVE ===================== */

@media (max-width: 1000px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .address-sartaj i {
        margin-bottom: 0px;
    }
}

@media (max-width: 560px) {
    .footer-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 60px 16px 50px;
    }

    /* 1️⃣ Brand – Full Width (Row 1) */
    .footer-col.brand {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-col.brand img {
        margin: 0 auto 16px;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-col.brand p {
        max-width: 100%;
    }

    /* 2️⃣ Quick Links + Services – Side by Side (Row 2) */
    .footer-container .footer-col:nth-child(2),
    .footer-container .footer-col:nth-child(3) {
        grid-column: span 1;
    }

    /* 3️⃣ Contact – Full Width (Row 3) */
    .footer-col.contact {
        grid-column: 1 / -1;
    }

    .footer-col.contact p {

        margin-bottom: 6px;

    }

    .footer-col h4 {

        margin-bottom: 16px;

    }

    .footer-col ul li {
        margin-bottom: 4px;
    }
}

/* scroll up arrow button */

/* Mobile slightly smaller */
@media (max-width: 600px) {
    #scrollToTop {
        width: 36px;
        height: 36px;
        right: 12px;
        bottom: 12px;
        font-size: 14px;
    }
}