/* =====================================================
   ZOHAN APPLIANCE REPAIR DUBAI
   Premium Corporate Theme
   ===================================================== */

   :root{
    --primary:#0b2d5c;
    --secondary:#123d7a;
    --accent:#ff8c00;
    --white:#ffffff;
    --light:#f5f7fa;
    --gray:#6c757d;
    --dark:#1a1a1a;

    --shadow:0 10px 30px rgba(0,0,0,.10);
    --shadow-hover:0 15px 40px rgba(0,0,0,.15);

    --radius:16px;
    --transition:all .3s ease;
}

/* =====================================================
   GLOBAL
   ===================================================== */

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',sans-serif;
    color:var(--dark);
    background:#fff;
    overflow-x:hidden;
    line-height:1.7;
}

img{
    max-width:100%;
    height:auto;
}

a{
    text-decoration:none;
    transition:var(--transition);
}

section{
    position:relative;
}

.py-5{
    padding-top:90px!important;
    padding-bottom:90px!important;
}

/* =====================================================
   HEADER
   ===================================================== */

.navbar{
    padding:15px 0;
}

.navbar-brand{
    color:var(--primary)!important;
    font-size:1.3rem;
    font-weight:700;
}

.nav-link{
    font-weight:600;
    color:#333!important;
    margin:0 8px;
    position:relative;
}

.nav-link:hover,
.nav-link.active{
    color:var(--primary)!important;
}

.nav-link::after{
    content:'';
    position:absolute;
    bottom:-5px;
    left:0;
    width:0;
    height:2px;
    background:var(--accent);
    transition:.3s;
}

.nav-link:hover::after{
    width:100%;
}

/* =====================================================
   HERO SECTION
   ===================================================== */

.hero-section{
    min-height:100vh;
    background:url('../images/hero.jpg') center center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.60);
}

.hero-section h1{
    font-size:3.5rem;
    font-weight:800;
    line-height:1.2;
}

.hero-section p{
    font-size:1.2rem;
}

.hero-section .btn{
    padding:14px 28px;
    font-weight:600;
}

/* =====================================================
   PAGE BANNER
   ===================================================== */

.page-banner{
    background:
    linear-gradient(rgba(11,45,92,.85),
    rgba(11,45,92,.85)),
    url('../images/hero.jpg');

    background-size:cover;
    background-position:center;

    padding:120px 0;
}

/* =====================================================
   BUTTONS
   ===================================================== */

.btn-primary{
    background:var(--primary);
    border-color:var(--primary);
}

.btn-primary:hover{
    background:var(--secondary);
    border-color:var(--secondary);
}

.btn-warning{
    background:var(--accent);
    border-color:var(--accent);
    color:#fff;
}

.btn-warning:hover{
    background:#e67800;
    border-color:#e67800;
    color:#fff;
}

.btn-success{
    font-weight:600;
}

/* =====================================================
   TRUST BADGES
   ===================================================== */

.bg-light{
    background:#f8f9fc!important;
}

.counter-box{
    background:#fff;
    border-radius:var(--radius);
    padding:30px;
    box-shadow:var(--shadow);
}

.counter-box h2{
    color:var(--primary);
    font-weight:800;
}

/* =====================================================
   SERVICE CARDS
   ===================================================== */

.service-card{
    background:#fff;
    border-radius:var(--radius);
    padding:35px;
    box-shadow:var(--shadow);
    transition:var(--transition);
    height:100%;
    text-align:center;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-hover);
}

.service-icon{
    font-size:50px;
    color:var(--accent);
    margin-bottom:20px;
}

.service-card h4{
    color:var(--primary);
    margin-bottom:15px;
}

.service-mini-card{
    background:#fff;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    padding:25px;
}

.service-mini-card i{
    font-size:40px;
    color:var(--accent);
    margin-bottom:15px;
}

/* =====================================================
   FEATURES
   ===================================================== */

.feature-box{
    background:#fff;
    border-radius:var(--radius);
    padding:30px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.feature-box:hover{
    transform:translateY(-5px);
}

.feature-box i{
    font-size:40px;
    color:var(--accent);
    margin-bottom:15px;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */

.testimonial-card{
    background:#fff;
    border-radius:var(--radius);
    padding:30px;
    box-shadow:var(--shadow);
    margin-bottom:20px;
}

.testimonial-card strong{
    color:var(--primary);
}

/* =====================================================
   ABOUT PAGE
   ===================================================== */

.glass-card{
    background:rgba(255,255,255,.35);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.25);
    border-radius:var(--radius);
    box-shadow:var(--shadow);
}

.team-card{
    background:#fff;
    text-align:center;
    padding:30px;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
}

.coverage-box{
    text-align:center;
    background:#fff;
    padding:25px;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
}

.coverage-box i{
    color:var(--accent);
    font-size:28px;
    margin-bottom:10px;
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */

.contact-card,
.contact-info-card{
    background:#fff;
    padding:35px;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
}

.contact-info-card p{
    margin-bottom:20px;
}

.location-box{
    background:#fff;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    padding:30px;
}

.map-wrapper{
    border-radius:var(--radius);
    overflow:hidden;
}

/* =====================================================
   FAQ
   ===================================================== */

.accordion-item{
    border:none;
    margin-bottom:15px;
    border-radius:12px!important;
    overflow:hidden;
    box-shadow:var(--shadow);
}

.accordion-button{
    font-weight:600;
}

.accordion-button:not(.collapsed){
    background:var(--primary);
    color:#fff;
}

/* =====================================================
   CTA SECTION
   ===================================================== */

.cta-section{
    background:
    linear-gradient(rgba(11,45,92,.92),
    rgba(11,45,92,.92)),
    url('../images/hero.jpg');

    background-size:cover;
    background-position:center;

    padding:80px 0;
}

.cta-section h2{
    font-size:2.5rem;
    margin-bottom:15px;
}

/* =====================================================
   FOOTER
   ===================================================== */

.footer-section{
    background:#071f40;
    color:#fff;
    padding:70px 0 25px;
}

.footer-section h5{
    margin-bottom:20px;
}

.footer-section a{
    color:#ddd;
}

.footer-section a:hover{
    color:#fff;
}

.footer-section ul li{
    margin-bottom:10px;
}

/* =====================================================
   FLOATING WHATSAPP
   ===================================================== */

.whatsapp-float{
    position:fixed;
    right:20px;
    bottom:20px;

    width:60px;
    height:60px;

    background:#25d366;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    font-size:28px;

    z-index:9999;

    box-shadow:0 10px 25px rgba(0,0,0,.25);
}

.whatsapp-float:hover{
    color:#fff;
    transform:scale(1.08);
}

/* =====================================================
   BACK TO TOP
   ===================================================== */

#backToTop{
    position:fixed;
    right:20px;
    bottom:95px;

    width:50px;
    height:50px;

    border:none;
    border-radius:50%;

    background:var(--primary);
    color:#fff;

    display:none;

    cursor:pointer;
    z-index:999;
}

#backToTop:hover{
    background:var(--accent);
}

/* =====================================================
   FORM STYLING
   ===================================================== */

.form-control,
.form-select{
    min-height:50px;
    border-radius:10px;
}

.form-control:focus,
.form-select:focus{
    border-color:var(--primary);
    box-shadow:none;
}

/* =====================================================
   ANIMATIONS
   ===================================================== */

.fade-up{
    animation:fadeUp .8s ease;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media(max-width:991px){

    .hero-section h1{
        font-size:2.7rem;
    }

    .page-banner{
        padding:90px 0;
    }

    .py-5{
        padding-top:70px!important;
        padding-bottom:70px!important;
    }

}

@media(max-width:768px){

    .hero-section{
        text-align:center;
    }

    .hero-section h1{
        font-size:2.2rem;
    }

    .hero-section p{
        font-size:1rem;
    }

    .cta-section h2{
        font-size:1.8rem;
    }

    .navbar-brand{
        font-size:1rem;
    }

}

@media(max-width:576px){

    .hero-section h1{
        font-size:1.9rem;
    }

    .service-card{
        padding:25px;
    }

    .contact-card,
    .contact-info-card{
        padding:25px;
    }

}