*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Jost',sans-serif;
    background:#fff;
    color:#111;
}

a{
    text-decoration:none;
    transition:.3s;
}

.container{
    width:92%;
    max-width:1380px;
    margin:auto;
}

/* TOP BAR */

.top-bar{
    background:#111827;
    color:#fff;
    font-size:14px;
    padding:10px 0;
}

.top-flex{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.top-left i{
    color:#D4A017;
    margin-right:6px;
}

.top-center{
    color:#D4A017;
    font-weight:500;
}

.top-right a{
    color:#fff;
    margin-left:15px;
    font-size:15px;
}

.top-right a:hover{
    color:#D4A017;
}

/* HEADER */

.header{
    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
}

.nav-bar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:88px;
}

/* LOGO */

.logo{
    display:flex;
    align-items:center;
    gap:14px;
}

.logo img{
    width:70px;
    height:70px;
    object-fit:contain;
}

.logo h2{
    font-size:38px;
    line-height:1;
    color:#111;
    letter-spacing:1px;
}

.logo span{
    color:#C99816;
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:16px;
    font-weight:600;
}

/* MENU */

.nav-menu{
    display:flex;
    gap:38px;
}

.nav-menu a{
    color:#222;
    font-size:17px;
    font-weight:500;
    position:relative;
}

.nav-menu a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:#D4A017;
    transition:.3s;
}

.nav-menu a:hover,
.nav-menu .active{
    color:#C99816;
}

.nav-menu a:hover::after,
.nav-menu .active::after{
    width:100%;
}

/* RIGHT */

.header-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.call-btn{
    background:linear-gradient(135deg,#C99816,#E4B73A);
    color:#fff;
    padding:12px 22px;
    border-radius:40px;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:8px;
    box-shadow:0 8px 20px rgba(201,152,22,.25);
}

.call-btn:hover{
    transform:translateY(-2px);
}

.menu-toggle{
    display:none;
    font-size:25px;
    cursor:pointer;
}

/* MOBILE */

@media(max-width:991px){

.top-center{
    display:none;
}

.nav-menu{
    position:fixed;
    top:88px;
    right:-100%;
    width:260px;
    height:100vh;
    background:#fff;
    flex-direction:column;
    padding:40px 30px;
    box-shadow:-10px 0 30px rgba(0,0,0,.08);
    transition:.4s;
}

.nav-menu.active{
    right:0;
}

.menu-toggle{
    display:block;
}

.call-btn{
    display:none;
}

.logo h2{
    font-size:28px;
}

.logo img{
    width:55px;
    height:55px;
}

}

@media(max-width:600px){

.top-left{
    font-size:12px;
}

.top-right{
    display:none;
}

}

/* ===========================
   PREMIUM FOOTER
=========================== */

.footer{
    background:#0f172a;
    color:#d1d5db;
    padding:70px 0 0;
    position:relative;
    overflow:hidden;
}

.footer::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:linear-gradient(90deg,#B8860B,#F4D03F,#B8860B);
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.4fr;
    gap:45px;
    padding-bottom:45px;
}

/* Logo */

.footer-logo{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:18px;
}

.footer-logo img{
    width:65px;
    height:65px;
    object-fit:contain;
    border-radius:12px;
    background:#fff;
    padding:4px;
}

.footer-logo h3{
    color:#fff;
    font-size:28px;
    line-height:1;
    font-weight:700;
    letter-spacing:1px;
}

.footer-logo span{
    color:#D4A017;
    letter-spacing:4px;
    text-transform:uppercase;
    font-size:14px;
    font-weight:600;
}

.tagline{
    color:#D4A017;
    font-weight:600;
    margin-bottom:12px;
    font-size:16px;
}

.footer-brand p{
    line-height:1.8;
    color:#cbd5e1;
}

/* Headings */

.footer h4{
    color:#fff;
    font-size:20px;
    margin-bottom:20px;
    position:relative;
    padding-bottom:10px;
}

.footer h4::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:45px;
    height:2px;
    background:#D4A017;
}

/* Links */

.footer-links{
    list-style:none;
}

.footer-links li{
    margin-bottom:14px;
    color:#cbd5e1;
    transition:.3s;
    cursor:pointer;
}

.footer-links a{
    color:#cbd5e1;
}

.footer-links li:hover,
.footer-links a:hover{
    color:#D4A017;
    padding-left:6px;
}

/* Contact */

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:18px;
}

.contact-item i{
    color:#D4A017;
    font-size:17px;
    margin-top:5px;
    min-width:18px;
}

.contact-item span,
.contact-info a{
    color:#cbd5e1;
    line-height:1.7;
    display:block;
    transition:.3s;
}

.contact-info a:hover{
    color:#D4A017;
}

/* Social */

.social-icons{
    display:flex;
    gap:12px;
    margin-top:25px;
}

.social-icons a{
    width:42px;
    height:42px;
    border:1px solid rgba(212,160,23,.35);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#D4A017;
    transition:.35s;
}

.social-icons a:hover{
    background:#D4A017;
    color:#fff;
    transform:translateY(-5px);
    box-shadow:0 10px 20px rgba(212,160,23,.25);
}

/* Bottom */

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding:22px 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
}

.footer-bottom p{
    color:#94a3b8;
    margin:0;
}

.footer-bottom strong{
    color:#fff;
}

.credit{
    color:#94a3b8;
}

.credit span{
    color:#D4A017;
    font-weight:700;
}

/* Responsive */

@media (max-width:992px){

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media (max-width:768px){

    .footer{
        padding-top:55px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

    .footer-logo h3{
        font-size:24px;
    }

}

/*=========================
      PREMIUM HERO
=========================*/

.hero{
    position:relative;
    overflow:hidden;
    padding:70px 0;
    background:linear-gradient(135deg,#fafafa,#ffffff 55%,#f5f5f5);
}

.hero-bg{
    position:absolute;
    inset:0;
    background:url('../images/pattern.png');
    opacity:.03;
}

.gold-circle{
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    background:rgba(212,160,23,.15);
}

.circle1{
    width:320px;
    height:320px;
    left:-80px;
    top:100px;
}

.circle2{
    width:280px;
    height:280px;
    right:-40px;
    bottom:50px;
}

/* LEFT */

.quote-box{
    background:rgba(255,255,255,.75);
    backdrop-filter:blur(22px);
    border:1px solid rgba(212,160,23,.15);
    border-radius:28px;
    padding:35px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    animation:slideLeft 1s ease;
}

.mini-title{
    color:#C99716;
    font-weight:600;
    letter-spacing:1px;
    font-size:13px;
}

.quote-box h2{
    margin:10px 0;
    font-size:36px;
    line-height:1.2;
}

.quote-box h2 span{
    color:#C99716;
}

.quote-box p{
    color:#666;
    margin-bottom:25px;
}

.form-group{
    margin-bottom:18px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    font-size:14px;
}

.form-group input,
.form-group select{
    width:100%;
    height:54px;
    border:1px solid #ddd;
    border-radius:14px;
    padding:0 18px;
    font-family:'Jost',sans-serif;
    font-size:15px;
    background:#fff;
    transition:.3s;
}

.form-group input:focus,
.form-group select:focus{
    outline:none;
    border-color:#D4A017;
    box-shadow:0 0 0 4px rgba(212,160,23,.15);
}

.quote-btn{
    width:100%;
    height:56px;
    border:none;
    border-radius:16px;
    background:linear-gradient(135deg,#C99716,#E5BA42);
    color:#fff;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.35s;
}

.quote-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(212,160,23,.3);
}

.quote-stats{
    display:flex;
    justify-content:space-between;
    margin-top:25px;
    padding-top:20px;
    border-top:1px solid #eee;
}

.quote-stats h3{
    color:#111;
    font-size:28px;
}

.quote-stats span{
    font-size:13px;
    color:#777;
}

/* RIGHT */

.hero-right{
    animation:slideRight 1s ease;
}

.hero-tag{
    color:#C99716;
    font-weight:600;
    letter-spacing:1px;
}

.hero-right h1{
    font-size:68px;
    line-height:1.05;
    margin:15px 0;
    color:#111827;
}

.hero-right h1 span{
    background:linear-gradient(90deg,#B8860B,#E5BA42);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-right p{
    max-width:560px;
    color:#555;
    font-size:18px;
    line-height:1.8;
}

.hero-features{
    display:flex;
    gap:18px;
    margin:35px 0;
    flex-wrap:wrap;
}

.feature{
    background:#fff;
    border-radius:50px;
    padding:14px 18px;
    display:flex;
    align-items:center;
    gap:10px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    transition:.3s;
}

.feature:hover{
    transform:translateY(-5px);
}

.feature i{
    color:#D4A017;
}

/* PHONES */

.phone-stage{
    position:relative;
    height:460px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.ring{
    position:absolute;
    width:420px;
    height:420px;
    border:3px solid #D4A017;
    border-radius:50%;
    opacity:.3;
    animation:rotateRing 18s linear infinite;
}

.phone{
    position:absolute;
    filter:drop-shadow(0 25px 30px rgba(0,0,0,.18));
    transition:.4s;
}

.iphone{
    width:220px;
    left:120px;
    z-index:3;
    animation:float1 4s ease-in-out infinite;
}

.samsung{
    width:210px;
    right:110px;
    top:30px;
    animation:float2 5s ease-in-out infinite;
}

.watch{
    width:120px;
    bottom:20px;
    animation:float3 6s ease-in-out infinite;
}

.phone:hover{
    transform:scale(1.08) rotate(-5deg);
}

/* Animations */

@keyframes float1{
    50%{transform:translateY(-18px);}
}
@keyframes float2{
    50%{transform:translateY(20px);}
}
@keyframes float3{
    50%{transform:translateY(-12px) rotate(8deg);}
}
@keyframes rotateRing{
    from{transform:rotate(0deg);}
    to{transform:rotate(360deg);}
}
@keyframes slideLeft{
    from{opacity:0;transform:translateX(-40px);}
    to{opacity:1;transform:none;}
}
@keyframes slideRight{
    from{opacity:0;transform:translateX(40px);}
    to{opacity:1;transform:none;}
}

/* Responsive */

@media(max-width:992px){

.hero-wrapper{
    grid-template-columns:1fr;
}

.hero-right{
    text-align:center;
}

.hero-right h1{
    font-size:48px;
}

.phone-stage{
    height:340px;
}

.iphone{width:170px;left:80px;}
.samsung{width:160px;right:70px;}
.watch{width:90px;}

.hero-features{
    justify-content:center;
}

}
/* HERO LAYOUT */
.hero-wrapper{
    display:grid;
    grid-template-columns: 430px 1fr;   /* Left form | Right content */
    align-items:center;
    gap:70px;
    position:relative;
    z-index:2;
}

/* LEFT FORM */
.quote-box{
    order:1;
}

/* RIGHT CONTENT */
.hero-right{
    order:2;
    text-align:left;
}

.hero-right p{
    max-width:560px;
}

.hero-features{
    justify-content:flex-start;
}

/* PHONE STAGE */
.phone-stage{
    margin-top:20px;
    position:relative;
    height:440px;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* RESPONSIVE */
@media (max-width:992px){

    .hero-wrapper{
        grid-template-columns:1fr;
        gap:40px;
    }

    .quote-box{
        order:1;
    }

    .hero-right{
        order:2;
        text-align:center;
    }

    .hero-right p{
        margin:auto;
    }

    .hero-features{
        justify-content:center;
    }

}

/*==================================
    PREMIUM DEVICE CATEGORY
===================================*/

.device-section{
    position:relative;
    background:linear-gradient(135deg,#0F172A 0%,#111827 45%,#1E293B 100%);
    padding:120px 0;
    overflow:hidden;
}

/* Gold glow */
.device-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(circle,rgba(212,160,23,.18),transparent 70%);
    top:-180px;
    right:-100px;
    animation:floatGlow 8s ease-in-out infinite;
}

.device-section::after{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:radial-gradient(circle,rgba(255,255,255,.06),transparent 70%);
    bottom:-120px;
    left:-120px;
}

.wave-top,
.wave-bottom{
    position:absolute;
    left:0;
    width:100%;
    line-height:0;
}

.wave-top{ top:0; }
.wave-bottom{ bottom:0; }

.section-title{
    text-align:center;
    margin-bottom:55px;
    position:relative;
    z-index:2;
}

.section-title span{
    color:#F4D03F;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    font-size:14px;
}

.section-title h2{
    color:#fff;
    font-size:48px;
    margin-top:10px;
    font-weight:700;
}

.device-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
    position:relative;
    z-index:2;
}

.device-card{
    text-decoration:none;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:26px;
    padding:35px 25px;
    text-align:center;
    transition:.45s;
    position:relative;
    overflow:hidden;
    transform-style:preserve-3d;
    box-shadow:0 20px 40px rgba(0,0,0,.18);
}

/* Shine animation */

.device-card::before{
    content:'';
    position:absolute;
    top:-120%;
    left:-40%;
    width:60%;
    height:260%;
    background:linear-gradient(120deg,
        transparent,
        rgba(255,255,255,.45),
        transparent);
    transform:rotate(25deg);
    transition:.6s;
}

.device-card:hover::before{
    left:120%;
}

.device-card:hover{
    transform:translateY(-14px) rotateX(8deg);
    border-color:#D4A017;
    box-shadow:
        0 35px 60px rgba(0,0,0,.35),
        0 0 30px rgba(212,160,23,.25);
}

.icon-box{
    width:120px;
    height:120px;
    margin:auto;
    border-radius:24px;
    background:linear-gradient(145deg,#ffffff,#f3f4f6);
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:
        inset 0 1px 2px rgba(255,255,255,.8),
        0 12px 25px rgba(0,0,0,.15);
    transition:.4s;
}

.icon-box img{
    width:70px;
    transition:.4s;
}

.device-card:hover .icon-box{
    transform:translateY(-8px) rotate(-6deg);
    box-shadow:0 20px 35px rgba(212,160,23,.35);
}

.device-card:hover img{
    transform:scale(1.12);
}

.device-card h3{
    color:#fff;
    margin-top:22px;
    font-size:24px;
    font-weight:600;
}

.device-card p{
    color:#cbd5e1;
    font-size:14px;
    margin:8px 0 18px;
}

.arrow{
    width:42px;
    height:42px;
    margin:auto;
    border-radius:50%;
    background:rgba(212,160,23,.12);
    color:#F4D03F;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.35s;
}

.device-card:hover .arrow{
    background:#D4A017;
    color:#fff;
    transform:translateX(6px);
}

@keyframes floatGlow{
    50%{
        transform:translateY(35px) scale(1.08);
    }
}

/* Responsive */

@media(max-width:992px){

    .device-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .section-title h2{
        font-size:38px;
    }

}

@media(max-width:600px){

    .device-grid{
        grid-template-columns:1fr;
    }

    .device-section{
        padding:90px 0;
    }

    .section-title h2{
        font-size:30px;
    }

}

/*==============================
    HOW IT WORKS SECTION
==============================*/

.repair-process{
    padding:90px 0;
    background:#fff;
    position:relative;
}

.process-title{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
}

.process-title span{
    color:#C99716;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:14px;
}

.process-title h2{
    font-size:42px;
    color:#111827;
    margin:12px 0;
}

.process-title p{
    color:#6b7280;
    line-height:1.8;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.process-card{
    position:relative;
    background:#fff;
    border:1px solid #ececec;
    border-radius:22px;
    padding:35px 28px;
    transition:.4s ease;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.process-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#C99716,#F4D03F);
    transform:scaleX(0);
    transform-origin:left;
    transition:.4s;
}

.process-card:hover::before{
    transform:scaleX(1);
}

.process-card:hover{
    transform:translateY(-10px);
    border-color:#D4A017;
    box-shadow:0 25px 45px rgba(212,160,23,.15);
}

.step-number{
    position:absolute;
    top:18px;
    right:20px;
    font-size:42px;
    font-weight:700;
    color:rgba(212,160,23,.12);
}

.process-icon{
    width:78px;
    height:78px;
    border-radius:20px;
    background:linear-gradient(135deg,#C99716,#E5BA42);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:34px;
    margin-bottom:22px;
    transition:.35s;
}

.process-card:hover .process-icon{
    transform:rotate(-8deg) scale(1.08);
}

.process-card h3{
    font-size:24px;
    margin-bottom:12px;
    color:#111827;
}

.process-card p{
    color:#6b7280;
    line-height:1.8;
    font-size:15px;
}

/* Tablet */

@media(max-width:992px){

.process-grid{
    grid-template-columns:1fr;
}

.process-title h2{
    font-size:34px;
}

}

/*==============================
     BRAND SELECTION
==============================*/

.brand-section{
    padding:90px 0;
    background:#f8fafc;
    position:relative;
}

.brand-heading{
    margin-bottom:40px;
}

.brand-heading span{
    color:#C99716;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
}

.brand-heading h2{
    margin-top:8px;
    font-size:42px;
    color:#111827;
    display:flex;
    align-items:center;
    gap:15px;
}

.brand-heading h2 i{
    color:#D4A017;
}

.brand-heading p{
    color:#6b7280;
    margin-top:10px;
}

.brand-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:22px;
}

.brand-card{
    background:#fff;
    border-radius:20px;
    height:160px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    border:1px solid #ececec;
    transition:.35s ease;
    position:relative;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.brand-card::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,
        rgba(212,160,23,.08),
        transparent 60%);
    opacity:0;
    transition:.35s;
}

.brand-card:hover::before{
    opacity:1;
}

.brand-card:hover{
    transform:translateY(-8px) scale(1.03);
    border-color:#D4A017;
    box-shadow:0 20px 40px rgba(212,160,23,.18);
}

.brand-card img{
    max-width:95px;
    max-height:48px;
    object-fit:contain;
    transition:.35s;
}

.brand-card:hover img{
    transform:scale(1.08);
}

.brand-card span{
    margin-top:16px;
    color:#374151;
    font-weight:600;
    font-size:15px;
    transition:.3s;
}

.brand-card:hover span{
    color:#C99716;
}

/* Responsive */

@media(max-width:1100px){
    .brand-grid{
        grid-template-columns:repeat(4,1fr);
    }
}

@media(max-width:768px){

    .brand-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .brand-heading h2{
        font-size:32px;
    }

    .brand-card{
        height:140px;
    }

}

@media(max-width:480px){

    .brand-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/*==================================
      WHY CHOOSE US
===================================*/

.why-us{
    padding:100px 0;
    background:#fff;
    position:relative;
    overflow:hidden;
}

.why-us::before{
    content:'';
    position:absolute;
    top:-120px;
    right:-120px;
    width:340px;
    height:340px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(212,160,23,.12),transparent 70%);
}

.why-title{
    text-align:center;
    max-width:720px;
    margin:0 auto 60px;
}

.why-title span{
    color:#C99716;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.why-title h2{
    font-size:46px;
    color:#111827;
    margin:12px 0;
    font-weight:700;
}

.why-title p{
    color:#6B7280;
    line-height:1.8;
    font-size:16px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
    margin-bottom:60px;
}

.why-card{
    background:#fff;
    border:1px solid #ECECEC;
    border-radius:24px;
    padding:35px 30px;
    text-align:center;
    transition:.4s ease;
    position:relative;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.05);
}

.why-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#C99716,#F4D03F);
    transform:scaleX(0);
    transition:.35s;
    transform-origin:left;
}

.why-card:hover::before,
.why-card.active::before{
    transform:scaleX(1);
}

.why-card:hover,
.why-card.active{
    transform:translateY(-10px);
    border-color:#D4A017;
    box-shadow:0 25px 50px rgba(212,160,23,.18);
}

.why-icon{
    width:82px;
    height:82px;
    margin:0 auto 22px;
    border-radius:22px;
    background:linear-gradient(135deg,#C99716,#E5BA42);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:34px;
    transition:.35s;
}

.why-card:hover .why-icon{
    transform:rotate(-8deg) scale(1.08);
}

.why-card h3{
    font-size:23px;
    color:#111827;
    margin-bottom:12px;
    font-weight:600;
}

.why-card p{
    color:#6B7280;
    line-height:1.8;
    font-size:15px;
}

.why-bottom{
    background:linear-gradient(135deg,#0F172A,#111827);
    border-radius:28px;
    padding:35px 25px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    position:relative;
    overflow:hidden;
}

.why-bottom::before{
    content:'';
    position:absolute;
    inset:0;
    background:radial-gradient(circle at top right,
    rgba(212,160,23,.18),transparent 55%);
}

.stat{
    text-align:center;
    position:relative;
    z-index:2;
}

.stat h3{
    color:#F4D03F;
    font-size:42px;
    margin-bottom:8px;
    font-weight:700;
}

.stat span{
    color:#E5E7EB;
    font-size:15px;
}

/* Responsive */

@media(max-width:992px){

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .why-bottom{
        grid-template-columns:repeat(2,1fr);
    }

    .why-title h2{
        font-size:36px;
    }
}

@media(max-width:600px){

    .why-grid,
    .why-bottom{
        grid-template-columns:1fr;
    }

    .why-us{
        padding:80px 0;
    }

    .why-title h2{
        font-size:30px;
    }
}
/* =========================
      TESTIMONIALS
========================= */

.testimonial-section{
    padding:100px 0;
    background:linear-gradient(180deg,#fff 0%,#fafafa 100%);
    position:relative;
}

.section-heading{
    text-align:center;
    max-width:700px;
    margin:0 auto 55px;
}

.section-heading span{
    color:#C99716;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
}

.section-heading h2{
    font-size:46px;
    color:#111827;
    margin:12px 0;
}

.section-heading p{
    color:#6B7280;
    line-height:1.8;
}

.testimonial-slider{
    position:relative;
    display:flex;
    align-items:center;
    gap:18px;
}

.testimonial-track-wrap{
    overflow:hidden;
    width:100%;
}

.testimonial-track{
    display:flex;
        gap:24px;          
    transition:transform .6s ease;
}

.testimonial-card{
    min-width:calc(100% / 4 - 18px);
   
    background:#fff;
    border:1px solid #ECECEC;
    border-radius:24px;
    padding:28px;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
    transition:.35s;
}

.testimonial-card:hover{
    transform:translateY(-8px);
    border-color:#D4A017;
    box-shadow:0 25px 45px rgba(212,160,23,.15);
}

.user-info{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:18px;
}

.user-info img{
    width:62px;
    height:62px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #F4D03F;
}

.user-info h4{
    color:#111827;
    font-size:18px;
    margin-bottom:2px;
}

.user-info span{
    color:#6B7280;
    font-size:14px;
}

.stars{
    color:#F4D03F;
    font-size:18px;
    letter-spacing:2px;
    margin-bottom:15px;
}

.testimonial-card p{
    color:#4B5563;
    line-height:1.8;
    font-size:15px;
}

.t-btn{
    width:48px;
    height:48px;
    border:none;
    border-radius:50%;
    background:#111827;
    color:#fff;
    cursor:pointer;
    transition:.3s;
    flex-shrink:0;
}

.t-btn:hover{
    background:#D4A017;
    transform:scale(1.08);
}

/* Tablet */
@media(max-width:991px){
    .testimonial-card{
        min-width:calc(100% / 2 - 12px);
    }

    .section-heading h2{
        font-size:36px;
    }
}

/* Mobile */
@media(max-width:600px){

    .testimonial-card{
        min-width:100%;
        margin-right:18px;
    }

    .t-btn{
        display:none;
    }

    .section-heading h2{
        font-size:30px;
    }
}

/* ===============================
      TOP RESOLVING FAULTS
================================= */

.faults-section{
    padding:90px 0;
    background:#fff;
}

.faults-header{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:40px;
}

.faults-header span{
    width:6px;
    height:42px;
    border-radius:10px;
    background:linear-gradient(180deg,#C99716,#F4D03F);
}

.faults-header h2{
    font-size:42px;
    color:#111827;
    font-weight:700;
}

.faults-slider{
    position:relative;
    display:flex;
    align-items:center;
}

.faults-wrapper{
    overflow:hidden;
    width:100%;
}

.faults-track{
    display:flex;
    gap:22px;
    transition:transform .55s ease;
}

.fault-card{
    min-width:190px;
    height:190px;
    background:#fff;
    border-radius:24px;
    border:1px solid #ECECEC;
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
    transition:.35s;
    position:relative;
    overflow:hidden;
}

.fault-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#C99716,#F4D03F);
    transform:scaleX(0);
    transition:.35s;
}

.fault-card:hover::before{
    transform:scaleX(1);
}

.fault-card:hover{
    transform:translateY(-8px);
    border-color:#D4A017;
    box-shadow:0 25px 45px rgba(212,160,23,.18);
}

.fault-card img{
    width:70px;
    height:70px;
    object-fit:contain;
    margin-bottom:18px;
    transition:.35s;
}

.fault-card:hover img{
    transform:scale(1.12) rotate(-5deg);
}

.fault-card h4{
    color:#111827;
    font-size:18px;
    font-weight:600;
}

.fault-btn{
    position:absolute;
    width:52px;
    height:52px;
    border:none;
    border-radius:50%;
    background:#fff;
    color:#C99716;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    cursor:pointer;
    z-index:10;
    transition:.3s;
}

.fault-btn:hover{
    background:#D4A017;
    color:#fff;
}

.fault-btn.prev{ left:-25px; }
.fault-btn.next{ right:-25px; }

.faults-action{
    text-align:center;
    margin-top:45px;
}

.fault-book-btn{
    display:inline-block;
    background:linear-gradient(135deg,#C99716,#E5BA42);
    color:#fff;
    padding:16px 40px;
    border-radius:50px;
    font-weight:600;
    text-decoration:none;
    box-shadow:0 12px 25px rgba(201,152,22,.25);
    transition:.3s;
}

.fault-book-btn:hover{
    transform:translateY(-3px);
}

@media(max-width:768px){
    .fault-btn{ display:none; }
    .fault-card{
        min-width:160px;
        height:170px;
    }
    .faults-header h2{
        font-size:30px;
    }
}
/* =========================================================
   CUSTOMER AUTH
========================================================= */

.customer-auth-page {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px 20px;

    background: #f6f6f6;
}

.customer-auth-card {
    width: 100%;
    max-width: 500px;

    padding: 40px;

    background: #ffffff;

    border: 1px solid #e5e5e5;
    border-radius: 18px;

    box-shadow: 0 20px 60px rgba(17,24,39,.08);
}

.customer-auth-logo {
    text-align: center;
    margin-bottom: 25px;
}

.customer-auth-logo img {
    width: 90px;
    height: 90px;

    object-fit: contain;

    border-radius: 12px;
}

.customer-auth-heading {
    text-align: center;
    margin-bottom: 28px;
}

.customer-auth-heading span {
    color: #c99716;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.customer-auth-heading h1 {
    margin: 8px 0;

    font-size: 30px;

    color: #111827;
}

.customer-auth-heading p {
    margin: 0;

    color: #777777;

    font-size: 14px;
    line-height: 1.6;
}


/* ALERT */

.auth-alert {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 12px 15px;

    margin-bottom: 20px;

    border-radius: 8px;

    font-size: 13px;
}

.auth-alert.error {
    background: #fff4f4;
    border: 1px solid #f0caca;
    color: #9b3030;
}


/* FORM */

.customer-auth-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group label {
    display: block;

    margin-bottom: 7px;

    font-size: 13px;
    font-weight: 600;

    color: #111827;
}

.form-group label small {
    color: #999999;
    font-weight: 400;
}

.input-wrap {
    position: relative;
}

.input-wrap > i {
    position: absolute;

    left: 15px;
    top: 50%;

    transform: translateY(-50%);

    color: #c99716;

    font-size: 14px;

    z-index: 1;
}

.input-wrap input,
.input-wrap textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 13px 15px 13px 43px;

    border: 1px solid #dddddd;

    border-radius: 8px;

    background: #ffffff;

    color: #111827;

    font-family: inherit;
    font-size: 14px;

    outline: none;

    transition: border-color .2s ease,
                box-shadow .2s ease;
}

.input-wrap textarea {
    resize: vertical;

    min-height: 90px;
}

.textarea-wrap > i {
    top: 18px;
    transform: none;
}

.input-wrap input:focus,
.input-wrap textarea:focus {
    border-color: #c99716;

    box-shadow: 0 0 0 3px rgba(201,151,22,.10);
}


/* BUTTON */

.customer-auth-btn {
    width: 100%;

    margin-top: 5px;

    padding: 14px 20px;

    border: 0;
    border-radius: 8px;

    background: #111827;

    color: #ffffff;

    font-family: inherit;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    transition: all .25s ease;
}

.customer-auth-btn i {
    color: #c99716;
}

.customer-auth-btn:hover {
    background: #c99716;
}

.customer-auth-btn:hover i {
    color: #ffffff;
}


/* SWITCH */

.auth-switch {
    margin-top: 25px;

    text-align: center;

    color: #777777;

    font-size: 13px;
}

.auth-switch a {
    color: #c99716;

    font-weight: 700;

    text-decoration: none;
}

.auth-switch a:hover {
    color: #111827;
}


/* BACK */

.back-home {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    margin-top: 20px;

    color: #777777;

    font-size: 12px;

    text-decoration: none;
}

.back-home:hover {
    color: #c99716;
}


/* =========================================================
   CUSTOMER ACCOUNT
========================================================= */

.customer-account-page {
    min-height: 100vh;

    padding: 50px 20px;

    background: #f6f6f6;
}

.customer-account-container {
    max-width: 1200px;

    margin: auto;
}


/* HEADER */

.account-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 30px;
}

.account-eyebrow {
    color: #c99716;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.account-header h1 {
    margin: 7px 0;

    color: #111827;

    font-size: 34px;
}

.account-header p {
    margin: 0;

    color: #777777;

    font-size: 14px;
}

.account-actions {
    display: flex;
    gap: 10px;
}

.account-actions a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 11px 15px;

    border-radius: 8px;

    background: #111827;

    color: #ffffff;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;
}

.account-actions a i {
    color: #c99716;
}

.account-actions .logout-btn {
    background: #ffffff;

    border: 1px solid #dddddd;

    color: #555555;
}

.account-actions .logout-btn i {
    color: #c99716;
}


/* GRID */

.account-grid {
    display: grid;

    grid-template-columns: 330px 1fr;

    gap: 25px;
}

.account-card {
    background: #ffffff;

    border: 1px solid #e5e5e5;

    border-radius: 15px;

    padding: 25px;
}

.account-card-heading {
    display: flex;
    align-items: center;
    gap: 10px;

    padding-bottom: 18px;

    margin-bottom: 5px;

    border-bottom: 1px solid #eeeeee;
}

.account-card-heading i {
    color: #c99716;
}

.account-card-heading h2 {
    margin: 0;

    color: #111827;

    font-size: 18px;
}


/* PROFILE */

.profile-row {
    padding: 15px 0;

    border-bottom: 1px solid #eeeeee;
}

.profile-row:last-child {
    border-bottom: 0;
}

.profile-row span {
    display: block;

    margin-bottom: 4px;

    color: #999999;

    font-size: 11px;
}

.profile-row strong {
    display: block;

    color: #111827;

    font-size: 13px;

    line-height: 1.5;
}


/* REQUEST */

.requests-list {
    display: flex;
    flex-direction: column;
}

.request-item {
    display: flex;
    align-items: center;

    gap: 15px;

    padding: 18px 0;

    border-bottom: 1px solid #eeeeee;
}

.request-item:last-child {
    border-bottom: 0;
}

.request-icon {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #f8f3e4;

    color: #c99716;
}

.request-details {
    flex: 1;

    min-width: 0;
}

.request-details strong {
    display: block;

    margin-bottom: 3px;

    color: #111827;

    font-size: 14px;
}

.request-details span {
    display: block;

    color: #777777;

    font-size: 12px;
}

.request-details small {
    display: block;

    margin-top: 5px;

    color: #999999;

    font-size: 10px;
}

.status {
    display: inline-flex;

    padding: 5px 10px;

    border-radius: 20px;

    background: #f5f5f5;

    color: #666666;

    font-size: 10px;
    font-weight: 700;
}


/* NO REQUESTS */

.no-requests {
    text-align: center;

    padding: 50px 20px;
}

.no-requests > i {
    font-size: 35px;

    color: #c99716;
}

.no-requests h3 {
    margin: 15px 0 5px;

    color: #111827;
}

.no-requests p {
    margin: 0 0 20px;

    color: #888888;

    font-size: 13px;
}

.no-requests a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 11px 16px;

    border-radius: 8px;

    background: #111827;

    color: #ffffff;

    text-decoration: none;

    font-size: 12px;
    font-weight: 600;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .customer-auth-card {
        padding: 30px 22px;
    }

    .account-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .account-grid {
        grid-template-columns: 1fr;
    }

    .account-actions {
        width: 100%;
    }

    .account-actions a {
        flex: 1;
        justify-content: center;
    }

}

@media (max-width: 500px) {

    .customer-auth-page {
        padding: 20px 12px;
    }

    .customer-auth-card {
        padding: 25px 18px;
    }

    .customer-auth-heading h1 {
        font-size: 26px;
    }

    .customer-account-page {
        padding: 30px 12px;
    }

    .account-header h1 {
        font-size: 27px;
    }

    .account-actions {
        flex-direction: column;
    }

    .request-item {
        align-items: flex-start;
    }

    .request-status {
        margin-left: auto;
    }

}
