:root{

    --primary:#0c2939;
    --accent:#f7b500;

    --light:#f8fafc;
    --soft:#eef4f8;

    --dark:#1f2937;
    --white:#ffffff;

}

/* ===================================================
   GLOBAL
=================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    overflow-x: hidden;
    max-width: 100%;

    font-family:Arial, Helvetica, sans-serif;

    color:var(--dark);

    background:
    radial-gradient(
        circle at top right,
        rgba(247,181,0,.04),
        transparent 500px
    ),
    var(--light);

    line-height:1.7;

}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

section{
    padding:90px 0;
    position:relative;
}

section::before{

    content:"";

    position:absolute;

    width:400px;
    height:400px;
    overflow: hidden;

    border-radius:50%;

    background:rgba(247,181,0,.03);

    top:-200px;
    right:-180px;

    pointer-events:none;

}

/* ===================================================
   TYPOGRAPHY
=================================================== */

.section-title{

    text-align:center;

    color:var(--primary);

    font-size:2.4rem;

    margin-bottom:15px;

}

.section-subtitle{

    text-align:center;

    max-width:850px;

    margin:0 auto 50px;

    color:#64748b;

}

/* ===================================================
   TOP BAR
=================================================== */

.top-banner{

    background:var(--accent);

    color:var(--primary);

    text-align:center;

    padding:10px;

    font-weight:bold;

}

/* ===================================================
   HEADER
=================================================== */

header{

    position:sticky;

    top:0;

    z-index:999;

    background:white;

    box-shadow:0 2px 12px rgba(0,0,0,.08);

}

.nav{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:15px 0;

}

.logo{
    height:75px;
}

.phone-btn{

    background:var(--accent);

    color:var(--primary);

    text-decoration:none;

    padding:12px 20px;

    border-radius:10px;

    font-weight:bold;

}

/* ===================================================
   HERO
=================================================== */

.hero{

    background:
    linear-gradient(
        rgba(12,41,57,.88),
        rgba(12,41,57,.82)
    ),
    url('images/hero/hero-main.jpg');

    background-size:cover;

    background-position:center;

    color:white;

    text-align:center;

    padding:140px 20px;

}

.hero-logo{

    max-width:220px;

    margin-bottom:25px;

}

.hero h1{

    font-size:3rem;

    margin-bottom:20px;

}

.hero p{

    max-width:850px;

    margin:auto;

    margin-bottom:30px;

    font-size:1.15rem;

}

.btn{

    background:var(--accent);

    color:var(--primary);

    border:none;

    padding:18px 40px;

    border-radius:10px;

    font-weight:bold;

    cursor:pointer;

    transition:.3s;

}

.btn:hover{

    transform:translateY(-3px);

}

.trust-bar{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:15px;

    margin-top:35px;

}

.trust-bar div{

    background:rgba(255,255,255,.12);

    padding:12px 20px;

    border-radius:50px;

    backdrop-filter:blur(10px);

}

/* ===================================================
   CARDS
=================================================== */

.cards{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));

    gap:25px;

}

.card{

    background:white;

    padding:30px;

    border-radius:15px;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    transition:.3s;

}

.card:hover{

    transform:translateY(-5px);

}

.card h3{

    color:var(--primary);

    margin-bottom:10px;

}

/* ===================================================
   APPLIANCES
=================================================== */

.services{
    background:white;
}

.icon{

    font-size:2rem;

    margin-bottom:10px;

}

/* ===================================================
   BRANDS
=================================================== */

.brands{

    background:var(--soft);

    overflow:hidden;

}

.logo-slider{

    overflow:hidden;

}

.logo-track{

    display:flex;

    width:max-content;

    animation:scrollBrands 25s linear infinite;

}

.brand-logo{

    width:180px;

    height:90px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 20px;

    flex-shrink:0;

}

.brand-logo img{

    max-width:100%;

    max-height:70px;

    opacity:.9;

    transition:.3s;

}

.brand-logo img:hover{

    transform:scale(1.08);

    opacity:1;

}

@keyframes scrollBrands{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

/* ===================================================
   COMMON PROBLEMS
=================================================== */

.problems{
    background:white;
}

.problems-title::after{

    content:"";

    display:block;

    width:90px;

    height:4px;

    margin:15px auto 0;

    background:var(--accent);

    border-radius:50px;

}

.problem-card{

    background:white;

    padding:22px 25px 22px 60px;

    border-radius:12px;

    position:relative;

    color:var(--primary);

    font-weight:600;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

    transition:.3s;

}

.problem-card::before{

    content:"✓";

    position:absolute;

    left:20px;

    top:50%;

    transform:translateY(-50%);

    width:28px;

    height:28px;

    border-radius:50%;

    background:var(--accent);

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:bold;

}

.problem-card:hover{

    transform:translateY(-4px);

}

/* ===================================================
   GALLERY
=================================================== */

.gallery-section{

    background:
    linear-gradient(
        rgba(12,41,57,.96),
        rgba(12,41,57,.96)
    ),
    url('images/backgrounds/gallery-bg.jpg');

    background-size:cover;

    background-position:center;

}

.gallery-section .section-title,
.gallery-section .section-subtitle{

    color:white;

}

.gallery{

    columns:3 300px;

    column-gap:20px;

}

.gallery-item{

    margin-bottom:20px;

    break-inside:avoid;

    overflow:hidden;

    border-radius:15px;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

}

.gallery-item img{

    width:100%;

    display:block;

    transition:.4s;

}

.gallery-item img:hover{

    transform:scale(1.05);

}

/* ===================================================
   SERVICE AREA
=================================================== */

.service-area{
    background:var(--soft);
}

.map iframe{

    width:100%;
    max-width: 100%;

    height:450px;

    border:0;

    border-radius:15px;

}

/* ===================================================
   REVIEWS
=================================================== */

.reviews{

    background:white;

}

/* ===================================================
   FAQ
=================================================== */

.faq-section{

    background:var(--soft);

}

.faq-item{

    background:white;

    margin-bottom:15px;

    border-radius:12px;

    overflow:hidden;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.faq-item summary{

    padding:22px;

    cursor:pointer;

    font-weight:600;

    color:var(--primary);

    list-style:none;

}

.faq-item summary::-webkit-details-marker{
    display:none;
}

.faq-item summary::after{

    content:"+";

    float:right;

    color:var(--accent);

    font-size:1.4rem;

}

.faq-item[open] summary::after{
    content:"−";
}

.faq-item p{

    padding:0 22px 22px;

    color:#64748b;

}

/* =========================
   CONTACT SECTION
========================= */

.contact-section{
    background:var(--soft);
}

.contact-title::after{

    content:"";

    display:block;

    width:90px;
    height:4px;

    background:var(--accent);

    margin:15px auto 0;

    border-radius:50px;

}

.contact-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:25px;

}

.contact-card{

    background:white;

    padding:40px 30px;

    border-radius:15px;

    text-align:center;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    transition:.3s ease;

}

.contact-card:hover{

    transform:translateY(-5px);

    box-shadow:0 12px 30px rgba(0,0,0,.12);

}

.contact-icon{

    font-size:2.5rem;

    margin-bottom:15px;

}

.contact-card h3{

    color:var(--primary);

    margin-bottom:10px;

}

.contact-card a{

    color:var(--primary);

    text-decoration:none;

    font-weight:600;

}

/* ===================================================
   FOOTER
=================================================== */

footer{

    background:var(--primary);

    color:white;

    text-align:center;

    padding:50px 20px;

}

/* ===================================================
   FLOATING BUTTONS
=================================================== */

.floating-call{

    position:fixed;

    right:20px;

    bottom:20px;

    z-index:9999;

    background:var(--accent);

    color:var(--primary);

    padding:15px 25px;

    border-radius:50px;

    text-decoration:none;

    font-weight:bold;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

/* ===================================================
   MOBILE
=================================================== */

.mobile-book{
    display:none;
}

@media(max-width:768px){

    .hero h1{
        font-size:2rem;
    }

    .logo{
        height:60px;
    }

    .section-title{
        font-size:2rem;
    }

    .mobile-book{

        display:block;

        position:fixed;

        bottom:0;

        left:0;

        right:0;

        background:var(--primary);

        color:white;

        text-align:center;

        padding:15px;

        text-decoration:none;

        font-weight:bold;

        z-index:9998;

    }

}

/* =========================
   TRUST BADGES
========================= */

.trust-badges{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:40px;

    margin-bottom:60px;

}

.trust-badge{

    text-align:center;

    max-width:250px;

}

.badge-circle{

    width:100px;

    height:100px;

    margin:0 auto 15px;

    border-radius:50%;

    background:var(--accent);

    color:var(--primary);

    font-size:1.8rem;

    font-weight:800;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 10px 25px rgba(247,181,0,.25);

}

.trust-badge h3{

    color:var(--primary);

    margin-bottom:8px;

    font-size:1.1rem;

}

.trust-badge p{

    color:#64748b;

    font-size:.95rem;

}

/* =========================
   FOOTER LINKS
========================= */

.footer-links{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:20px;

    margin:25px 0;

}

.footer-links a{

    color:white;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:var(--accent);

}

/* =========================
   FOOTER LOGO
========================= */

.footer-logo{

    height:60px;

    width:auto;

    max-width:200px;

    display:block;

    margin:0 auto 20px;

}