/* =========================================================================================
   DOON HOME APPLIANCES REPAIR — MAIN STYLESHEET
   Fonts: Cabinet Grotesk (display/headings) + Switzer (body) via Fontshare
========================================================================================= */

:root{
    --blue:            #2f6bff;
    --blue-dark:        #1d4ed8;
    --blue-light:      #eaf1ff;
    --blue-soft:        #eef4ff;
    --green:            #22c55e;
    --green-light:      #e8faf0;
    --purple:           #8b5cf6;
    --purple-light:      #f4edfd;
    --navy:              #14213d;
    --text-dark:        #1c2333;
    --text-gray:        #64748b;
    --text-gray-light:  #94a3b8;
    --border-light:      #e7ecf3;
    --bg-soft:          #f7f9fc;
    --bg-hero:          #eef2f8;
    --white:            #ffffff;
    --gold:              #f5a623;
    --radius-sm:        10px;
    --radius-md:        16px;
    --radius-lg:        24px;
    --shadow-card:      0 10px 30px rgba(20,33,61,0.08);
    --shadow-card-sm:    0 6px 18px rgba(20,33,61,0.06);
    --font-display:      'Cabinet Grotesk', sans-serif;
    --font-body:        'Switzer', sans-serif;
    --container:        1200px;
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
    margin: 0;
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5{
    font-family: var(--font-display);
    color: var(--navy);
    margin: 0;
    line-height: 1.15;
}

p{ margin: 0; color: var(--text-gray); }
ul{ margin: 0; padding: 0; list-style: none; }
a{ text-decoration: none; color: inherit; }
img{ max-width: 100%; display: block; }
button{ font-family: var(--font-body); cursor: pointer; border: none; background: none; }

.container{
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section-eyebrow{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
}
.section-eyebrow i{ font-size: 6px; }

.section-title{
    font-size: 34px;
    font-weight: 700;
    color: var(--navy);
}

.section-subtitle{
    margin-top: 10px;
    color: var(--text-gray);
    font-size: 15px;
}

.section-heading-center{
    text-align: center;
    max-width: 640px;
    margin: 0 auto 46px;
}

.btn-theme{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue);
    color: var(--white);
    font-weight: 600;
    font-size: 14.5px;
    padding: 13px 24px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(47,107,255,0.28);
    transition: background .2s, transform .2s;
}
.btn-theme:hover{ background: var(--blue-dark); transform: translateY(-1px); }

.btn-outline{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14.5px;
    padding: 13px 24px;
    border-radius: 10px;
    border: 1px solid var(--border-light);
    transition: border-color .2s;
}
.btn-outline:hover{ border-color: var(--blue); color: var(--blue); }

/* =========================================================================================
   HEADER
========================================================================================= */
.site-header{
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--white);
}

/* Utility strip + ticker are not part of this design — kept in the DOM but hidden */
.utility-strip,
.header-ticker,
.mobile-menu-area{ display: none; }

.main-bar{
    border-bottom: 1px solid var(--border-light);
}
.main-bar__row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 78px;
}

.main-bar__logo{
    display: flex;
    align-items: center;
    gap: 10px;
}
.main-bar__logo img{ height: 62px; width: auto; }
.main-bar__logo-text{
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16.5px;
    line-height: 1.2;
    color: var(--navy);
    max-width: 150px;
}

.main-bar__nav-list{
    display: flex;
    align-items: center;
    gap: 34px;
}
.main-bar__nav-list a{
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-gray);
    position: relative;
    padding-bottom: 4px;
    transition: color .2s;
}
.main-bar__nav-list a:hover{ color: var(--blue); }
.main-bar__nav-list li:first-child a{ color: var(--text-dark); }

.main-bar__actions{
    display: flex;
    align-items: center;
    gap: 14px;
}

.main-bar__whatsapp{
    display: none; /* image shows only the call button in the header */
}

.main-bar__phone-badge{
    display: none; /* replaced visually by main-bar__cta to match the single call button in the image */
}

.main-bar__cta{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue);
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    padding: 11px 20px;
    border-radius: 8px;
}
.main-bar__cta::before{
    content: "\f095";
    font-family: "Font Awesome 6 Pro","Font Awesome 6 Free";
    font-weight: 900;
    font-size: 13px;
}

.main-bar__burger{
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 26px;
}
.main-bar__burger span{
    display: block;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
}

/* Off-canvas drawer */
.site-drawer{
    position: fixed;
    inset: 0;
    z-index: 1200;
    visibility: hidden;
    pointer-events: none;
}
.site-drawer.is-open{ visibility: visible; pointer-events: auto; }
.site-drawer__overlay{
    position: absolute;
    inset: 0;
    background: rgba(15,23,42,0.5);
    opacity: 0;
    transition: opacity .25s;
    z-index: -1;
}
.site-drawer.is-open .site-drawer__overlay{ opacity: 1; }
.site-drawer__panel{
    position: absolute;
    top: 0; right: 0;
    height: 100%;
    width: min(320px, 85vw);
    background: var(--white);
    padding: 24px;
    transform: translateX(100%);
    transition: transform .3s ease;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.site-drawer.is-open .site-drawer__panel{ transform: translateX(0); }
.site-drawer__top{ display: flex; align-items: center; justify-content: space-between; }
.site-drawer__logo{ display: flex; align-items: center; gap: 10px; font-weight: 700; }
.site-drawer__close{ font-size: 18px; color: var(--text-gray); }
.site-drawer__nav li{ border-bottom: 1px solid var(--border-light); }
.site-drawer__nav a{ display: block; padding: 14px 0; font-weight: 500; color: var(--text-dark); }
.site-drawer__contact{ display: flex; flex-direction: column; gap: 12px; margin-top: auto; }
.site-drawer__contact a{ font-size: 14px; color: var(--text-gray); display: flex; align-items: center; gap: 8px; }
.site-drawer__whatsapp-btn{
    background: #25D366; color: var(--white); justify-content: center;
    padding: 12px; border-radius: 10px; font-weight: 600;
}
body.drawer-open-lock{ overflow: hidden; }

/* =========================================================================================
   HERO
========================================================================================= */
.hero-section{
    background: var(--bg-hero);
    overflow: hidden;
}
.hero-section__grid{
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 20px;
    position: relative;
}
@media(min-width:768px){
    .hero-booking-card{
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 8%;
        z-index: 5;
        margin: 0  !important;
    }
}
.hero-swiper{ overflow: visible; }
.hero-slide{
    min-height: 400px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    position: relative;
}
.hero_content{
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 15px;
    position: relative;
    width: 100%;
}
.hero-slide__badge{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    font-size: 12.5px;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 40px;
    margin-bottom: 20px;
}
.hero-slide__badge i{ font-size: 6px; color: var(--blue); }

.hero-slide__title{
    font-size: 42px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 18px;
}
.hero-slide__title span{ color: var(--blue); }

.hero-slide__text{
    font-size: 15px;
    color: var(--text-gray);
    max-width: 430px;
    margin-bottom: 26px;
}

.hero-slide__features{
    display: flex;
    align-items: center;
    gap: 26px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.hero-slide__features li{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
}
.hero-slide__features i{
    width: 30px; height: 30px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--blue-light);
    color: var(--blue);
    border-radius: 8px;
    font-size: 13px;
}

.hero-slide__actions{
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-slide__media{
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-slide__media img{
    max-height: 360px;
    width: auto;
    margin: 0 auto;
    filter: drop-shadow(0 30px 40px rgba(20,33,61,0.15));
}

/* Swiper controls */
.hero-swiper__pagination{
    position: absolute;
    bottom: 51px !important;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.hero-swiper .swiper-pagination-bullet{
    width: 8px; height: 8px; background: #cbd5e1; opacity: 1;
}
.hero-swiper .swiper-pagination-bullet-active{ background: var(--blue); width: 22px; border-radius: 5px; }
.hero-swiper__prev, .hero-swiper__next{ display: none; }

/* Floating booking card */
.hero-booking-card{
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    padding: 26px;
    width: 100%;
    max-width: 320px;
    justify-self: end;
    align-self: start;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hero-booking-card__title{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}
.hero-booking-card__group input,
.hero-booking-card__group select,
.hero-booking-card__group textarea{
    width: 100%;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 13.5px;
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--bg-soft);
}
.hero-booking-card__group textarea{ min-height: 64px; resize: vertical; }
.hero-booking-card__group select{ color: var(--text-gray-light); appearance: none; }
.hero-booking-card__submit{
    width: 100%;
    justify-content: center;
    margin-top: 4px;
}
.hero-booking-card__privacy{
    font-size: 11.5px;
    color: var(--text-gray-light);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 2px;
}

/* =========================================================================================
   TRUST STRIP (feature badges)
========================================================================================= */
.trust-strip{
    margin-top: -30px;
    position: relative;
    z-index: 5;
    padding: 0 0 20px;
}
.trust-strip__grid{
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card-sm);
    padding: 26px 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.trust-strip__item{
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.trust-strip__item span{
    width: 42px; height: 42px;
    flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--blue-light);
    color: var(--blue);
    border-radius: 10px;
    font-size: 17px;
}
.trust-strip__item h4{
    font-size: 14.5px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3px;
}
.trust-strip__item p{
    font-size: 12.5px;
    color: var(--text-gray);
    line-height: 1.4;
}

/* =========================================================================================
   ABOUT
========================================================================================= */
.about-block{ padding: 30px 0; }
.about-block__grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-block__media{ position: relative; }
.about-block__media img{
    border-radius: var(--radius-lg);
    width: 100%;
    object-fit: cover;
    max-height: 420px;
}
.about-block__experience{
    position: absolute;
    bottom: -20px;
    left: 24px;
    background: var(--blue);
    color: var(--white);
    padding: 18px 22px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
}
.about-block__experience-num{ font-family: var(--font-display); font-size: 28px; font-weight: 700; }
.about-block__experience-label{ font-size: 12px; max-width: 140px; }
.about-block__copy p{ margin-bottom: 16px; font-size: 14.5px; }
.about-block__list{ margin: 20px 0 26px; display: flex; flex-direction: column; gap: 10px; }
.about-block__list li{ display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-dark); font-weight: 500; }
.about-block__list i{ color: var(--blue); }

/* =========================================================================================
   SERVICE CARDS
========================================================================================= */
.service-cards{ padding: 35px 0 ; }
.service-cards__grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.service-card{
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card-sm);
    transition: transform .25s, box-shadow .25s;
}
.service-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-card); }

.service-card__media{
    position: relative;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-card:nth-child(1) .service-card__media,
.service-cards__grid .service-card:nth-of-type(1) .service-card__media{ background: var(--blue-light); }
.service-cards__grid .service-card:nth-of-type(2) .service-card__media{ background: var(--green-light); }
.service-cards__grid .service-card:nth-of-type(3) .service-card__media{ background: var(--purple-light); }
.service-card__media img{ max-height: 165px; width: auto; margin: 0 auto; }

.service-card__icon{
    position: absolute;
    bottom: -22px;
    left: 30px;
    width: 46px; height: 46px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 18px;
    border: 4px solid var(--white);
}
.service-card__icon--blue{ background: var(--blue); }
.service-card__icon--green{ background: var(--green); }
.service-card__icon--purple{ background: var(--purple); }

.service-card__body{ padding: 34px 28px 26px; }
.service-card__body h3{ font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.service-card__body > p{ font-size: 13.5px; margin-bottom: 16px; }

.service-card__list{ display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.service-card__list li{ display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--text-dark); }
.service-card__list i{
    width: 18px; height: 18px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    font-size: 9px;
    color: var(--white);
}
.service-cards__grid .service-card:nth-of-type(1) .service-card__list i{ background: var(--blue); }
.service-cards__grid .service-card:nth-of-type(2) .service-card__list i{ background: var(--green); }
.service-cards__grid .service-card:nth-of-type(3) .service-card__list i{ background: var(--purple); }

.service-card__actions{ display: flex; align-items: center; gap: 4%; }
.btn-call-sm{
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-size: 13.5px; font-weight: 600;
    padding: 11px 16px;
    border-radius: 8px;
    background: var(--blue-light);
    color: var(--blue);
    transition: background .2s, color .2s;
    width: 48%;
}
.service-cards__grid .service-card:nth-of-type(2) .btn-call-sm{ background: var(--green-light); color: #16a34a; }
.service-cards__grid .service-card:nth-of-type(3) .btn-call-sm{ background: var(--purple-light); color: var(--purple); }
.btn-call-sm:hover{ background: var(--blue); color: var(--white); }
.service-cards__grid .service-card:nth-of-type(2) .btn-call-sm:hover{ background: var(--green); color: var(--white); }
.service-cards__grid .service-card:nth-of-type(3) .btn-call-sm:hover{ background: var(--purple); color: var(--white); }

.btn-whatsapp-sm{
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-size: 13.5px; font-weight: 600;
    padding: 11px 16px;
    border-radius: 8px;
    background: var(--blue-light);
    color: var(--blue);
    transition: background .2s, color .2s;
    flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 8px;
    width: 48%;
    background: #e9fbf1;
    color: #25D366;
    font-size: 16px;
    transition: background .2s, color .2s;
}
.btn-whatsapp-sm:hover{ background: #25D366; color: var(--white); }

/* =========================================================================================
   STATS STRIP
========================================================================================= */
.stats-strip{ padding-bottom: 35px; }
.stats-strip__grid{
    background: var(--blue-soft);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 32px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}
.stats-strip__item{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border-right: 1px solid #dbe6fb;
}
.stats-strip__item:last-child{ border-right: none; }
.stats-strip__item span.fa{ font-size: 20px; color: var(--blue); }
.stats-strip__num{
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 700;
    color: var(--navy);
}
.stats-strip__item p{ font-size: 13px; color: var(--text-gray); font-weight: 500; }

/* =========================================================================================
   WHY CHOOSE US
========================================================================================= */
.why-choose{ background: var(--bg-soft); padding: 35px 0; }
.why-choose__grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.why-choose__card{
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px 26px;
    border: 1px solid var(--border-light);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s, transform .5s;
}
.why-choose__card.is-visible{ opacity: 1; transform: translateY(0); }
.why-choose__card span.fa{
    width: 48px; height: 48px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--blue-light);
    color: var(--blue);
    border-radius: 10px;
    font-size: 19px;
    margin-bottom: 16px;
}
.why-choose__card h3{ font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.why-choose__card p{ font-size: 13.5px; }

/* =========================================================================================
   BRANDS MARQUEE
========================================================================================= */
.brand-marquee{ padding: 35px 0; }
.brand-marquee__viewport{ overflow: hidden; margin-top: 10px; }
.brand-marquee__track{ display: flex; gap: 16px; width: max-content; }
.brand-marquee__key{
    background: var(--bg-soft);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 18px 34px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    color: var(--text-dark);
    white-space: nowrap;
}

/* =========================================================================================
   TESTIMONIALS
========================================================================================= */
.testimonial-block{ padding: 35px 0;  background-color: var(--bg-soft);}
.testimonial-card{
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 26px;
    height: 100%;
}
.testimonial-card__top{ display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.testimonial-card__quote{ font-size: 20px; color: var(--blue-light); }
.testimonial-card__rating .fa{ color: var(--gold); font-size: 12px; margin-left: 2px; }
.testimonial-card > p{ font-size: 14px; color: var(--text-gray); margin-bottom: 22px; }
.testimonial-card__bottom{ display: flex; align-items: center; gap: 12px; }
.testimonial-card__bottom img{ width: 42px !important; height: 42px; border-radius: 50%; object-fit: cover; }
.testimonial-card__bottom h4{ font-size: 14px; font-weight: 700; }
.testimonial-card__bottom span{ font-size: 12px; color: var(--text-gray-light); }

.owl-carousel .owl-dots{ text-align: center; margin-top: 26px; }
.owl-carousel .owl-dot span{
    width: 8px; height: 8px;
    margin: 0 4px;
    background: #d7dee9;
    border-radius: 50%;
    display: inline-block;
}
.owl-carousel .owl-dot.active span{ background: var(--blue); width: 22px; border-radius: 5px; }
.owl-carousel .owl-stage{ display: flex; }
.owl-carousel .owl-item{ display: flex; }

/* =========================================================================================
   FAQ
========================================================================================= */
.faq-block{ padding:30px 0; }
.faq-block__grid{
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}
.faq-block__media img{
    border-radius: var(--radius-lg);
    width: 100%;
    object-fit: cover;
    max-height: 460px;
}
.faq-block__body .section-title{ margin-bottom: 26px; }

.accrodion{
    background: var(--bg-soft);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
}
.accrodion-title{
    padding: 16px 20px;
    cursor: pointer;
    position: relative;
}
.accrodion-title h4{
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-dark);
    padding-right: 30px;
}
.accrodion-title::after{
    content: "\f078";
    font-family: "Font Awesome 6 Pro","Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
    color: var(--text-gray);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform .25s;
}
.accrodion.active .accrodion-title::after{ transform: translateY(-50%) rotate(180deg); color: var(--blue); }
.accrodion.active .accrodion-title h4{ color: var(--blue); }
.accrodion-content{
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}
.accrodion.active .accrodion-content{ max-height: 220px; }
.accrodion-content .inner{ padding: 0 20px 18px; }
.accrodion-content p{ font-size: 13.5px; }

.faq-block__bottom{
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-light);
    padding-top: 26px;
}
.faq-block__bottom p{ font-size: 14px; font-weight: 500; color: var(--text-dark); }
.thm-btn{
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--blue); font-weight: 600; font-size: 14px;
}

/* =========================================================================================
   FOOTER
========================================================================================= */
.site-footer{ background: var(--bg-soft); border-top: 1px solid var(--border-light); }
.footer-columns{ padding: 60px 0 40px; }
.footer-columns__grid{
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.9fr 1.6fr;
    gap: 34px;
}
.footer-col h3{ font-size: 15px; font-weight: 700; margin-bottom: 18px; color: var(--navy); }
.footer-col__logo{ display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-col__logo img{ height: 90px; }
.footer-col__logo span{ font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--navy); }
.footer-col--brand p{ font-size: 13.5px; margin-bottom: 20px; }

.social-section h4{ font-size: 12.5px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .5px; }
.social-icons{ display: flex; gap: 10px; }
.social-icon{
    width: 34px; height: 34px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    color: var(--text-gray);
    font-size: 13px;
    transition: background .2s, color .2s;
}
.social-icon:hover{ background: var(--blue); color: var(--white); border-color: var(--blue); }

.footer-col__links li{ margin-bottom: 11px; }
.footer-col__links a{ font-size: 13.5px; color: var(--text-gray); transition: color .2s; }
.footer-col__links a:hover{ color: var(--blue); }

.footer-contact li{ display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px; }
.footer-contact i{ color: var(--blue); font-size: 14px; margin-top: 2px; }
.footer-contact a{ font-size: 13px; color: var(--text-gray); line-height: 1.5; }

.footer-col--booking .custom-form{
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 22px;
    box-shadow: var(--shadow-card-sm);
}
.footer-col--booking h3{ margin-bottom: 16px; }
.footer-col--booking .form_group{ margin-bottom: 12px; }
.footer-col--booking input,
.footer-col--booking select{
    width: 100%;
    border: 1px solid var(--border-light);
    background: var(--bg-soft);
    border-radius: 8px;
    padding: 10px 13px;
    font-size: 13px;
    font-family: var(--font-body);
    color: var(--text-dark);
}
.footer-col--booking select{ color: var(--text-gray-light); appearance: none; }
.submit-btn{
    width: 100%;
    background: var(--blue);
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    padding: 12px;
    border-radius: 8px;
    margin-top: 4px;
    transition: background .2s;
}
.submit-btn:hover{ background: var(--blue-dark); }

.footerbottom{ border-top: 1px solid var(--border-light); }
.disclaimer{ background: var(--white); padding: 16px 0; border-bottom: 1px solid var(--border-light);}
.disclaimer p{ font-size: 11.5px; color: var(--text-gray-light); text-align: center; max-width: 900px; margin: 0 auto; }
.footer-bottom-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}
.whitetext{ font-size: 13px; color: var(--text-gray); }

.back-to-top{
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .25s, transform .25s;
    z-index: 500;
}
.back-to-top.is-visible{ opacity: 1; visibility: visible; transform: translateY(0); }

/* =========================================================================================
   FLOATING CONTACT RAIL + POPUP (kept functional, minimally styled)
========================================================================================= */
.contant-no-area{ display: none; } /* redundant with header CTA + floating whatsapp in this layout */

.main-popup{
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(15,23,42,0.55);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.main-popup.active{ display: flex; }
.popup-wrapper{
    position: relative;
    background: var(--white);
    border-radius: var(--radius-md);
    max-width: 720px;
    width: 100%;
    overflow: hidden;
}
.popup-container{ display: grid; grid-template-columns: 1fr 1fr; }
.popup-image-section{ background: var(--blue-light); }
.popup-image-wrapper img{ 
    height: 100%;
    object-fit: cover;
    /* margin-bottom: -21px; */
    position: relative;
    bottom: -30px; }
.popup-form-section{ padding: 34px; }
.popup-form-section h4{ font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.form-subtitle{ font-size: 13px; margin-bottom: 20px; }
.popup-form-section .form-group{ margin-bottom: 14px; }
.popup-form-section label{ font-size: 12.5px; font-weight: 600; color: var(--text-dark); display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }
.popup-form-section .form-control{
    width: 100%;
    border: 1px solid var(--border-light);
    background: var(--bg-soft);
    border-radius: 8px;
    padding: 11px 13px;
    font-size: 13px;
    font-family: var(--font-body);
}
.popup-form-section .btn-primary{
    width: 100%;
    background: var(--blue);
    color: var(--white);
    font-weight: 600;
    padding: 12px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin-top: 6px;
}
.close-popup-span{
    position: absolute;
    top: 14px; right: 14px;
    width: 32px; height: 32px;
    background: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-card-sm);
    cursor: pointer;
    z-index: 5;
}
/* ============================================================================
   DOON HOME APPLIANCES REPAIR - CSS UPDATES
   Add these CSS rules to your existing style.css file
   ============================================================================ */

/* ============================================================================
   1. BRAND MARQUEE - LOGO SUPPORT
   Update the brand-marquee__key styling (around line 815-835)
   ============================================================================ */

.brand-marquee__key {
    background: var(--bg-soft);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 18px 34px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    color: var(--text-dark);
    white-space: nowrap;
    /* NEW: Flex for image centering */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    transition: all 0.3s ease;
}

/* NEW: Brand logo images */
.brand-marquee__key img {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.brand-marquee__key:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/* Hide text if present (fallback for old HTML) */
.brand-marquee__key span {
    display: none;
}


/* ============================================================================
   2. FLOATING CONTACT BUTTONS
   Replace display: none with these styles (around line 1208)
   ============================================================================ */

/* OPTION A: Enable existing .contant-no-area buttons */
.contant-no-area {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    position: fixed;
    right: 24px;
    bottom: 100px;
    z-index: 500;
}

.contact-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(20, 33, 61, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.contact-number:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(20, 33, 61, 0.4);
}

.contact-number i {
    color: white;
    font-size: 18px;
}

.contact-number span {
    display: none; /* Hide text labels */
}

/* Button colors */
.contact-number {
    background: #2f6bff; /* Default blue for call */
}

.contact-number.whatsapp {
    background: #25D366;
}

.contact-number.inquiry {
    background: #f5a623;
}


/* ============================================================================
   3. ALTERNATIVE: CUSTOM FLOATING BUTTON BAR (Better UX)
   Use this if you're adding new floating-contact-bar HTML
   ============================================================================ */

.floating-contact-bar {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 500;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 12px rgba(20, 33, 61, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(20, 33, 61, 0.4);
}

.floating-btn.whatsapp {
    background: #25D366;
}

.floating-btn.whatsapp:hover {
    background: #1fb853;
}

.floating-btn.call {
    background: #2f6bff;
}

.floating-btn.call:hover {
    background: #1d4ed8;
}

.floating-btn.enquiry {
    background: #f5a623;
}

.floating-btn.enquiry:hover {
    background: #d68801;
}

/* Floating button active state (for links) */
.floating-btn:active {
    transform: scale(0.95);
}


/* ============================================================================
   4. RESPONSIVE ADJUSTMENTS
   Update existing mobile media queries or add new ones
   ============================================================================ */

@media (max-width: 1100px) {
    .brand-marquee__key {
        padding: 14px 24px;
        min-height: 70px;
    }

    .brand-marquee__key img {
        height: 35px;
        max-width: 100px;
    }
}

@media (max-width: 768px) {
    .contant-no-area,
    .floating-contact-bar {
        right: 16px;
        bottom: 80px;
        gap: 10px;
    }

    .contact-number,
    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .brand-marquee__key {
        padding: 12px 20px;
        min-height: 65px;
    }

    .brand-marquee__key img {
        height: 32px;
        max-width: 90px;
    }
}

@media (max-width: 480px) {
    .contant-no-area,
    .floating-contact-bar {
        right: 12px;
        bottom: 70px;
    }

    .contact-number,
    .floating-btn {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .brand-marquee__key {
        padding: 10px 16px;
        min-height: 60px;
    }

    .brand-marquee__key img {
        height: 28px;
        max-width: 80px;
    }
}


/* ============================================================================
   5. ANIMATION ENHANCEMENTS (Optional)
   Smooth transitions and hover effects
   ============================================================================ */

/* Pulse effect on floating buttons on page load */
@keyframes float-pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(20, 33, 61, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(20, 33, 61, 0.5);
    }
}

/* Apply pulse to WhatsApp button (optional) */
.floating-btn.whatsapp {
    animation: float-pulse 2s infinite;
}

/* Disable animation on hover */
.floating-btn:hover {
    animation: none;
}

/* Smooth brand logo fade-in on scroll */
.brand-marquee__key {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.brand-marquee__key:nth-child(1) { animation-delay: 0.1s; }
.brand-marquee__key:nth-child(2) { animation-delay: 0.15s; }
.brand-marquee__key:nth-child(3) { animation-delay: 0.2s; }
.brand-marquee__key:nth-child(4) { animation-delay: 0.25s; }
.brand-marquee__key:nth-child(5) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ============================================================================
   6. ACCESSIBILITY IMPROVEMENTS
   ============================================================================ */

/* Focus states for keyboard navigation */
.floating-btn:focus-visible,
.contact-number:focus-visible {
    outline: 2px solid #2f6bff;
    outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .floating-btn,
    .contact-number,
    .brand-marquee__key,
    .brand-marquee__key img {
        animation: none;
        transition: none;
    }
}

/* Hero Swiper fixes */
.hero-swiper {
    width: 100%;
    position: relative;
}

.hero-swiper.swiper-initialized .swiper-wrapper {
    transition-duration: 800ms !important;
}

.hero-slide {
    min-height: 400px;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
}

.swiper-slide {
    opacity: 1 !important;
    visibility: visible !important;
}

.swiper-slide-active {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 10;
}

.swiper-slide:not(.swiper-slide-active) {
    position: absolute;
    opacity: 0 !important;
    visibility: hidden !important;
}

.hero-swiper__next,
.hero-swiper__prev {
    display: flex !important;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    background: rgba(47, 107, 255, 0.9);
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background 0.3s;
}

.hero-swiper__next:hover,
.hero-swiper__prev:hover {
    background: var(--blue);
}

.hero-swiper__prev {
    left: 20px;
}

.hero-swiper__next {
    right: 20px;
}
/* =========================================================================================
   RESPONSIVE
========================================================================================= */
@media (max-width: 1100px){
    .footer-columns__grid{ grid-template-columns: 1fr 1fr 1fr; }
    .footer-col--booking{ grid-column: span 3; max-width: 360px; }
}

@media (max-width: 992px){
    .main-bar__nav-list{ display: none; }
    .main-bar__burger{ display: flex; }
    .main-bar__whatsapp, .main-bar__phone-badge{ display: none; }

    .hero-section__grid{ grid-template-columns: 1fr; }
    .hero-slide{  text-align: center; }
    .hero-slide__features{ justify-content: center; }
    .hero-slide__actions{ justify-content: center; }
    .hero-booking-card{ justify-self: center; margin-top: 26px; max-width: 420px; }

    .trust-strip__grid{ grid-template-columns: repeat(2, 1fr); }
    .about-block__grid,
    .faq-block__grid{ grid-template-columns: 1fr; }
    .service-cards__grid,
    .why-choose__grid{ grid-template-columns: repeat(2, 1fr); }
    .stats-strip__grid{ grid-template-columns: repeat(2, 1fr); }
    .stats-strip__item:nth-child(2){ border-right: none; }
    .footer-columns__grid{ grid-template-columns: 1fr 1fr; }
    .footer-col--booking{ grid-column: span 2; }
}

@media (max-width: 620px){
    .hero-slide__title{ font-size: 30px; }
    .service-cards__grid,
    .why-choose__grid,
    .trust-strip__grid,
    .stats-strip__grid{ grid-template-columns: 1fr; }
    .stats-strip__item{ border-right: none !important; border-bottom: 1px solid #dbe6fb; padding-bottom: 14px; }
    .stats-strip__item:last-child{ border-bottom: none; }
    .popup-container{ grid-template-columns: 1fr; }
    .popup-image-section{ display: none; }
    .footer-columns__grid{ grid-template-columns: 1fr; }
    .footer-col--booking{ grid-column: span 1; max-width: none; }
    .faq-block__bottom{ flex-direction: column; gap: 14px; align-items: flex-start; }
    .main-bar__logo-text{
        display: none;
    }
}
@media (max-width: 768px){
    .hero_content{
        padding: 30px 15px;
    }
    .hero-slide{
        z-index: 1;
    }
    .hero-slide::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #000;
        opacity: 0.2;
        z-index: -1;
    }
    .hero-slide__text{
        display: none;
    }
    .hero-slide__features li{
        color: #fff;
    }
    .hero-slide__features{
        gap: 5px 10px;
    }
    .hero-booking-card{
        margin-top: -10px;
        max-width: 96%;
        margin-inline-start: auto;
        z-index: 2;
        position: relative;
        margin-bottom: 15px;
    }
    .trust-strip{
        margin-top: 10px;
        padding-inline: 15px;
    }
    .stats-strip__item{
        padding-top: 14px;
    }
    .footer-columns{
        padding: 30px 15px;
    }
    .footer-bottom-row{
        padding-inline: 15px;
        text-align: center;
    }
}