
/* =========================================================
   AL JADEED KEY LOCK
   Premium Mobile Car Locksmith — Dubai
   ========================================================= */

:root{
    --ink:#0B1220;
    --ink-2:#111A29;
    --ink-3:#182335;
    --gold:#D6A84F;
    --gold-light:#F1D38E;
    --cream:#F7F3EA;
    --paper:#FCFAF5;
    --text:#18202C;
    --muted:#697383;
    --line:rgba(11,18,32,.10);
    --white:#fff;
    --whatsapp:#20C978;
    --radius:22px;
    --transition:.35s cubic-bezier(.2,.8,.2,1);
    --shadow:0 18px 50px rgba(11,18,32,.09);
    --shadow-dark:0 22px 60px rgba(0,0,0,.28);
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;overflow-x:hidden}
body{
    font-family:"Inter",Arial,sans-serif;
    background:var(--paper);
    color:var(--text);
    line-height:1.7;
    overflow-x:hidden;
    direction:ltr;
    text-align:left;
}
body:before{
    content:"";
    position:fixed;
    inset:0;
    pointer-events:none;
    z-index:-1;
    background:
      radial-gradient(circle at 8% 8%,rgba(214,168,79,.06),transparent 28%),
      radial-gradient(circle at 92% 60%,rgba(11,18,32,.035),transparent 32%);
}
img{display:block;max-width:100%;height:auto}
a{text-decoration:none;color:inherit}
button,a{-webkit-tap-highlight-color:transparent}
::selection{background:var(--gold);color:var(--ink)}
.container{width:min(92%,1240px);margin:0 auto}

/* =========================================================
   HEADER
   ========================================================= */
.header{
    position:sticky;
    top:0;
    z-index:999;
    background:rgba(11,18,32,.96);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(214,168,79,.20);
    box-shadow:0 12px 35px rgba(0,0,0,.16);
}
.header .container{
    display:grid;
    grid-template-columns:220px 1fr 220px;
    align-items:center;
    height:88px;
    gap:22px;
}
.logo{display:flex;justify-content:center;align-items:center}
.logo img{
    height:60px;
    width:auto;
    max-width:210px;
    object-fit:contain;
    transition:var(--transition);
}
.logo img:hover{transform:translateY(-1px) scale(1.025)}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    min-width:180px;
    height:56px;
    padding:0 21px;
    border-radius:14px;
    border:1px solid transparent;
    font-size:14px;
    font-weight:800;
    letter-spacing:.25px;
    line-height:1;
    white-space:nowrap;
    transition:var(--transition);
}
.btn.green{
    background:var(--whatsapp);
    color:#06170F;
    box-shadow:0 10px 25px rgba(32,201,120,.18);
}
.btn.green:hover{
    background:#31D98A;
    transform:translateY(-3px);
    box-shadow:0 16px 32px rgba(32,201,120,.28);
}
.btn.dark{
    background:var(--gold);
    color:var(--ink);
    box-shadow:0 10px 25px rgba(214,168,79,.18);
}
.btn.dark:hover{
    background:var(--gold-light);
    transform:translateY(-3px);
    box-shadow:0 16px 32px rgba(214,168,79,.28);
}

/* =========================================================
   TOP TRUST BAR
   ========================================================= */
.top-trust-bar{
    width:100%;
    background:#080E18;
    border-bottom:1px solid rgba(214,168,79,.25);
    overflow:hidden;
    position:relative;
    z-index:100;
}
.top-trust-track{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:58px;
    min-height:38px;
    white-space:nowrap;
    color:#E9E4D8;
    font-size:11px;
    font-weight:700;
    letter-spacing:1.15px;
    text-transform:uppercase;
}
.top-trust-track span{display:inline-flex;align-items:center;gap:8px}
.top-trust-track i{color:var(--gold);font-size:13px}

/* =========================================================
   HERO
   ========================================================= */
.hero{
    position:relative;
    overflow:hidden;
    padding:88px 0 78px;
    background:
      linear-gradient(135deg,#0B1220 0%,#111A29 62%,#151E2E 100%);
    color:var(--white);
}
.hero:before{
    content:"";
    position:absolute;
    width:560px;
    height:560px;
    border-radius:50%;
    right:-220px;
    top:-280px;
    background:radial-gradient(circle,rgba(214,168,79,.18),transparent 67%);
}
.hero:after{
    content:"";
    position:absolute;
    left:-180px;
    bottom:-300px;
    width:520px;
    height:520px;
    border:1px solid rgba(214,168,79,.14);
    border-radius:50%;
}
.hero-container{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
    align-items:center;
    gap:68px;
}
.hero-content{text-align:left}
.mobile-company-name{display:none}
.badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:rgba(214,168,79,.12);
    color:var(--gold-light);
    border:1px solid rgba(214,168,79,.35);
    padding:9px 17px;
    border-radius:999px;
    font-size:11px;
    font-weight:800;
    letter-spacing:1.25px;
    text-transform:uppercase;
    line-height:1.2;
    margin-bottom:24px;
}
.hero h1{
    font-size:clamp(43px,5vw,70px);
    line-height:1.03;
    font-weight:800;
    letter-spacing:-2.7px;
    color:#fff;
    margin-bottom:24px;
}
.hero h1:after{
    content:"";
    display:block;
    width:74px;
    height:4px;
    margin-top:25px;
    border-radius:10px;
    background:linear-gradient(90deg,var(--gold),transparent);
}
.hero p{
    max-width:620px;
    font-size:17px;
    line-height:1.85;
    color:#B8C0CD;
    margin-bottom:30px;
}
.hero-buttons{display:flex;align-items:center;gap:13px;flex-wrap:wrap}
.hero-image{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}
.hero-image:before{
    content:"";
    position:absolute;
    inset:-12px;
    border:1px solid rgba(214,168,79,.30);
    border-radius:28px;
    transform:translate(10px,10px);
    pointer-events:none;
}
.hero-image:after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:24px;
    background:linear-gradient(180deg,rgba(0,0,0,.04),rgba(11,18,32,.32));
    pointer-events:none;
}
.hero-image img{
    position:relative;
    z-index:1;
    width:100%;
    height:500px;
    max-width:650px;
    border-radius:24px;
    object-fit:cover;
    object-position:center;
    box-shadow:var(--shadow-dark);
    border:1px solid rgba(255,255,255,.10);
}

/* =========================================================
   TRUST STATS
   ========================================================= */
.trust{
    position:relative;
    z-index:4;
    margin-top:54px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
}
.trust-item{
    background:rgba(255,255,255,.055);
    border:1px solid rgba(255,255,255,.10);
    border-radius:18px;
    padding:22px 15px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.10);
    transition:var(--transition);
}
.trust-item:hover{
    transform:translateY(-5px);
    background:rgba(255,255,255,.085);
    border-color:rgba(214,168,79,.30);
}
.trust-item h3{
    color:var(--gold-light);
    font-size:25px;
    line-height:1.2;
    margin-bottom:6px;
    font-weight:800;
}
.trust-item p{
    color:#AEB7C5;
    font-size:12px;
    line-height:1.5;
    letter-spacing:.3px;
}

/* =========================================================
   GENERAL SECTION TITLE
   ========================================================= */
.section-title{text-align:center;margin-bottom:52px}
.section-title span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#8D6728;
    background:rgba(214,168,79,.12);
    border:1px solid rgba(214,168,79,.30);
    padding:7px 16px;
    border-radius:999px;
    font-size:10px;
    font-weight:800;
    line-height:1.2;
    letter-spacing:1.4px;
    text-transform:uppercase;
    margin-bottom:16px;
}
.section-title h2{
    font-size:clamp(30px,4vw,45px);
    line-height:1.16;
    color:var(--ink);
    font-weight:800;
    letter-spacing:-1.3px;
    margin-bottom:14px;
}
.section-title p{
    max-width:760px;
    margin:0 auto;
    font-size:16px;
    line-height:1.8;
    color:var(--muted);
}
.section-title.white h2,.section-title.white p{color:var(--white)}
.section-title.white span{
    color:var(--gold-light);
    background:rgba(214,168,79,.10);
    border-color:rgba(214,168,79,.30);
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials{
    padding:94px 0;
    background:var(--cream);
    position:relative;
}
.testimonials:before{
    content:"“";
    position:absolute;
    right:7%;
    top:35px;
    font-family:Georgia,serif;
    font-size:180px;
    line-height:1;
    color:rgba(214,168,79,.08);
}
.testimonialsSwiper{overflow:hidden}
.testimonial-card{
    height:100%;
    background:rgba(255,255,255,.76);
    border:1px solid rgba(11,18,32,.08);
    border-radius:20px;
    padding:32px 30px;
    text-align:left;
    box-shadow:0 14px 40px rgba(11,18,32,.06);
    transition:var(--transition);
}
.testimonial-card:hover{
    transform:translateY(-7px);
    box-shadow:var(--shadow);
    border-color:rgba(214,168,79,.34);
}
.stars{color:var(--gold);font-size:19px;letter-spacing:3px;margin-bottom:17px}
.testimonial-card p{
    color:#596474;
    font-size:15px;
    line-height:1.85;
    margin-bottom:20px;
}
.testimonial-card h4{
    color:var(--ink);
    font-size:16px;
    font-weight:800;
    letter-spacing:.3px;
}
@media (min-width:768px){
    .testimonialsSwiper .swiper-wrapper{
        display:grid!important;
        grid-template-columns:repeat(3,1fr);
        gap:22px;
        transform:none!important;
    }
    .testimonialsSwiper .swiper-slide{width:auto!important}
}
@media (max-width:767px){
    .testimonialsSwiper{overflow:hidden}
    .testimonialsSwiper .swiper-slide{width:85%}
}

/* =========================================================
   FEATURES
   ========================================================= */
.features{
    padding:94px 0;
    background:var(--paper);
}
.features .container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}
.feature-card{
    position:relative;
    overflow:hidden;
    background:var(--white);
    border:1px solid var(--line);
    border-radius:20px;
    padding:32px 24px;
    text-align:center;
    box-shadow:0 12px 35px rgba(11,18,32,.055);
    transition:var(--transition);
}
.feature-card:before{
    content:"";
    position:absolute;
    top:0;left:0;right:0;
    height:3px;
    background:linear-gradient(90deg,transparent,var(--gold),transparent);
}
.feature-card:hover{
    transform:translateY(-7px);
    box-shadow:var(--shadow);
    border-color:rgba(214,168,79,.35);
}
.feature-card .icon{
    font-size:39px;
    line-height:1;
    margin-bottom:19px;
    filter:grayscale(.2);
}
.feature-card h3{
    font-size:19px;
    line-height:1.3;
    color:var(--ink);
    margin-bottom:11px;
    font-weight:800;
}
.feature-card p{
    font-size:14px;
    color:var(--muted);
    line-height:1.75;
}

/* =========================================================
   SERVICES
   ========================================================= */
.services{
    padding:98px 0;
    background:#F0EBDD;
}
.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}
.service-card{
    position:relative;
    background:var(--paper);
    border:1px solid rgba(11,18,32,.09);
    border-radius:20px;
    padding:34px 28px;
    text-align:left;
    transition:var(--transition);
}
.service-card:hover{
    transform:translateY(-7px);
    box-shadow:var(--shadow);
    background:#fff;
    border-color:rgba(214,168,79,.40);
}
.service-icon{
    width:62px;
    height:62px;
    margin:0 0 22px;
    border-radius:16px;
    background:var(--ink);
    color:var(--gold-light);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    box-shadow:0 12px 25px rgba(11,18,32,.16);
}
.service-card h3{
    font-size:20px;
    line-height:1.3;
    color:var(--ink);
    margin-bottom:12px;
    font-weight:800;
}
.service-card p{
    font-size:14px;
    color:var(--muted);
    line-height:1.8;
}

/* =========================================================
   WHY US
   ========================================================= */
.why-us{
    padding:100px 0;
    background:var(--ink);
    color:var(--white);
    position:relative;
    overflow:hidden;
}
.why-us:before{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    border:1px solid rgba(214,168,79,.10);
    border-radius:50%;
    right:-390px;
    top:-280px;
}
.why-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}
.why-card{
    background:linear-gradient(145deg,rgba(255,255,255,.065),rgba(255,255,255,.025));
    border:1px solid rgba(255,255,255,.09);
    border-radius:20px;
    padding:30px 25px;
    text-align:left;
    transition:var(--transition);
}
.why-card:hover{
    transform:translateY(-7px);
    background:linear-gradient(145deg,rgba(214,168,79,.12),rgba(255,255,255,.035));
    border-color:rgba(214,168,79,.30);
}
.why-icon{
    width:58px;
    height:58px;
    margin:0 0 20px;
    border-radius:15px;
    background:rgba(214,168,79,.12);
    color:var(--gold-light);
    border:1px solid rgba(214,168,79,.25);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:25px;
}
.why-card h3{
    color:var(--white);
    font-size:19px;
    line-height:1.3;
    margin-bottom:11px;
    font-weight:800;
}
.why-card p{
    color:#AEB7C5;
    font-size:14px;
    line-height:1.8;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact{
    padding:96px 0;
    background:
      radial-gradient(circle at 50% -30%,rgba(255,255,255,.15),transparent 36%),
      linear-gradient(135deg,#C99740,#E3BC68);
    color:var(--ink);
    position:relative;
    overflow:hidden;
}
.contact:after{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border:1px solid rgba(11,18,32,.10);
    border-radius:50%;
    left:-250px;
    bottom:-260px;
}
.contact .container{position:relative;z-index:2}
.contact .section-title h2,.contact .section-title p{color:var(--ink)}
.contact .section-title span{
    background:rgba(11,18,32,.08);
    color:var(--ink);
    border-color:rgba(11,18,32,.14);
}
.contact-box{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:16px;
    flex-wrap:wrap;
    margin-top:36px;
}
.contact-btn{
    width:250px;
    min-height:60px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    border-radius:14px;
    background:var(--ink);
    color:#fff;
    font-size:16px;
    font-weight:800;
    border:1px solid rgba(255,255,255,.18);
    box-shadow:0 15px 30px rgba(11,18,32,.16);
    transition:var(--transition);
}
.contact-btn.whatsapp{
    background:var(--whatsapp);
    color:#06170F;
}
.contact-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 38px rgba(11,18,32,.22);
}
.service-area{
    margin-top:45px;
    text-align:center;
}
.service-area h3{
    font-size:21px;
    line-height:1.3;
    margin-bottom:7px;
    font-weight:800;
}
.service-area p{font-size:16px;line-height:1.6}

/* =========================================================
   FOOTER
   ========================================================= */
.footer{
    background:#070C14;
    color:var(--white);
    text-align:center;
    padding:58px 0;
    border-top:1px solid rgba(214,168,79,.18);
}
.footer-logo{
    width:250px;
    max-height:70px;
    object-fit:contain;
    margin:0 auto 22px;
}
.footer h3{
    font-size:24px;
    line-height:1.3;
    margin-bottom:12px;
    font-weight:800;
}
.footer p{
    max-width:850px;
    margin:0 auto 9px;
    color:#9FA9B8;
    font-size:14px;
    line-height:1.7;
}
.footer .copyright{
    margin-top:24px;
    font-size:12px;
    color:#667080;
}

/* =========================================================
   FLOATING BUTTONS
   ========================================================= */
.floating-call,.floating-whatsapp{
    position:fixed;
    right:20px;
    width:58px;
    height:58px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    color:var(--white);
    font-size:22px;
    box-shadow:0 12px 30px rgba(0,0,0,.25);
    transition:var(--transition);
    z-index:999;
    border:2px solid rgba(255,255,255,.75);
}
.floating-call{bottom:92px;background:var(--ink)}
.floating-whatsapp{bottom:20px;background:var(--whatsapp);color:#06170F}
.floating-call:hover,.floating-whatsapp:hover{transform:translateY(-3px) scale(1.07)}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width:1100px){
    .hero-container{gap:45px}
    .hero h1{font-size:53px}
    .features .container{grid-template-columns:repeat(2,1fr)}
    .services-grid{grid-template-columns:repeat(2,1fr)}
    .why-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:768px){
    .container{width:min(92%,600px)}
    .header{padding:6px 0}
    .header .container{
        display:grid;
        grid-template-columns:1fr auto 1fr;
        align-items:center;
        gap:8px;
        height:60px;
        padding:0;
    }
    .logo{order:0}
    .logo img{height:38px;max-width:145px}
    .header .btn{
        min-width:unset;
        width:100%;
        height:38px;
        padding:0 8px;
        border-radius:10px;
        font-size:10px;
    }

    .top-trust-bar{height:34px}
    .top-trust-track{
        justify-content:flex-start;
        width:max-content;
        gap:40px;
        min-height:34px;
        height:34px;
        font-size:9px;
        animation:trustBar 22s linear infinite;
    }
    .top-trust-track i{font-size:11px}

    .hero{padding:50px 0 58px}
    .hero-container{grid-template-columns:1fr;gap:36px}
    .hero-content{text-align:center}
    .mobile-company-name{
        position:relative;
        display:flex;
        align-items:center;
        justify-content:center;
        gap:10px;
        min-height:92px;
        margin:0 auto 18px;
        text-align:left;
        line-height:1;
        overflow:visible;
    }
    .mobile-company-text{
        position:relative;
        z-index:2;
        display:flex;
        flex-direction:column;
        align-items:flex-start;
        justify-content:center;
    }
    .mobile-company-name span{
        font-size:30px;
        font-weight:800;
        letter-spacing:3px;
        color:#fff;
        line-height:.95;
        text-shadow:0 3px 16px rgba(0,0,0,.45);
    }
    .mobile-company-name strong{
        margin-top:7px;
        font-size:14px;
        font-weight:800;
        letter-spacing:4px;
        color:var(--gold-light);
        line-height:1;
        text-shadow:0 2px 12px rgba(0,0,0,.55);
    }
    .mobile-key-art{
        position:relative;
        z-index:1;
        width:86px;
        height:78px;
        object-fit:contain;
        object-position:center;
        margin-right:-4px;
        opacity:.72;
        mix-blend-mode:screen;
        filter:drop-shadow(0 8px 16px rgba(0,0,0,.55)) drop-shadow(0 0 14px rgba(214,168,79,.10));
        transform:translateY(1px);
    }
    .badge{font-size:9px;padding:8px 13px;margin-bottom:17px}
    .hero h1{
        font-size:36px;
        line-height:1.08;
        letter-spacing:-1.1px;
        margin-bottom:18px;
    }
    .hero h1:after{margin:19px auto 0;width:62px}
    .hero p{
        font-size:15px;
        line-height:1.8;
        margin:0 auto 24px;
    }
    .hero-buttons{
        justify-content:center;
        flex-direction:column;
        align-items:center;
        gap:11px;
    }
    .hero-buttons .btn{width:100%;max-width:310px;height:50px;font-size:14px}
    .hero-image:before{inset:-7px;transform:translate(6px,6px);border-radius:23px}
    .hero-image img{height:360px;max-width:100%;border-radius:20px}

    .trust{grid-template-columns:repeat(2,1fr);gap:11px;margin-top:38px}
    .trust-item{padding:17px 10px;border-radius:15px}
    .trust-item h3{font-size:20px}
    .trust-item p{font-size:10px}

    .section-title{margin-bottom:38px}
    .section-title span{font-size:9px;padding:7px 13px}
    .section-title h2{font-size:28px;line-height:1.22}
    .section-title p{font-size:14px;line-height:1.75}

    .features,.services,.why-us,.testimonials,.contact{padding:68px 0}
    .features .container,.services-grid,.why-grid{grid-template-columns:1fr;gap:16px}
    .feature-card,.service-card{padding:27px 20px}
    .feature-card{text-align:center}
    .service-card,.why-card{text-align:left}
    .feature-card .icon{font-size:36px;margin-bottom:15px}
    .feature-card h3,.service-card h3,.why-card h3{font-size:18px}
    .feature-card p,.service-card p,.why-card p,.testimonial-card p{font-size:13.5px;line-height:1.75}
    .service-icon,.why-icon{width:58px;height:58px;font-size:26px;margin-bottom:18px}

    .testimonial-card{padding:25px 20px}
    .stars{font-size:18px}
    .testimonial-card h4{font-size:16px}

    .contact-box{flex-direction:column;gap:12px;margin-top:28px}
    .contact-btn{width:100%;max-width:310px;min-height:52px;font-size:15px}
    .service-area{margin-top:32px}
    .service-area h3{font-size:20px}
    .service-area p{font-size:14px}

    .footer{padding:46px 0}
    .footer-logo{width:210px;max-height:62px}
    .footer h3{font-size:21px}
    .footer p{font-size:12.5px}
    .footer .copyright{font-size:11px}

    .floating-call,.floating-whatsapp{width:52px;height:52px;right:14px;font-size:20px}
    .floating-call{bottom:80px}
    .floating-whatsapp{bottom:14px}
}
@media (max-width:420px){
    .header .container{gap:5px}
    .header .btn{font-size:9px;padding:0 5px}
    .logo img{height:31px;max-width:115px}
    .mobile-key-art{width:68px;height:62px;opacity:.68}
    .mobile-company-name{gap:7px;min-height:78px}
    .mobile-company-name span{font-size:27px}
    .mobile-company-name strong{font-size:12px;letter-spacing:3px}
    .hero h1{font-size:31px}
    .hero p{font-size:14px}
    .hero-image img{height:320px}
    .trust-item h3{font-size:18px}
    .trust-item p{font-size:9.5px}
    .section-title h2{font-size:25px}
}
@keyframes trustBar{
    0%{transform:translateX(-20%)}
    100%{transform:translateX(100%)}
}
@media (min-width:769px){
    .top-trust-track{animation:none}
}
