/* =========================================
   A GOOD LOCKSMITH
   COMPLETE REBUILD
   PART 1
========================================= */

:root{

    --red:#d71920;
    --red-dark:#b31319;
    --black:#111;
    --black2:#1b1b1b;
    --white:#fff;
    --gray:#666;
    --light:#f6f6f6;
    --border:#e6e6e6;

    --radius:14px;

    --shadow:
        0 15px 35px rgba(0,0,0,.12);

    --transition:.25s ease;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;
    background:#fff;
    color:#222;
    line-height:1.7;
    overflow-x:hidden;

}

img{
    display:block;
    width:100%;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{

    width:min(1180px,92%);
    margin:auto;

}

/* ==========================
   TYPOGRAPHY
========================== */

h1,h2,h3,h4{

    font-family:'Montserrat',sans-serif;
    font-weight:800;
    line-height:1.05;

}

h1{

    font-size:4rem;

}

h2{

    font-size:2.8rem;

}

h3{

    font-size:1.5rem;

}

.section-heading{

    text-align:center;
    max-width:760px;
    margin:0 auto 70px;

}

.section-heading span{

    color:var(--red);
    font-size:.8rem;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    display:block;
    margin-bottom:18px;

}

.section-heading p{

    color:#666;
    margin-top:18px;
    font-size:1.05rem;

}

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

.btn-red{

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

    padding:15px 34px;

    background:var(--red);

    color:#fff;

    border-radius:999px;

    font-weight:700;

    transition:var(--transition);

    box-shadow:
    0 12px 30px rgba(215,25,32,.30);

}

.btn-red:hover{

    background:var(--red-dark);
    transform:translateY(-3px);

}

.btn-outline{

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

    padding:15px 34px;

    border:2px solid #fff;

    color:#fff;

    border-radius:999px;

    font-weight:700;

    transition:var(--transition);

}

.btn-outline:hover{

    background:#fff;
    color:#111;

}

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

header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    background:rgba(10,10,10,.93);

    backdrop-filter:blur(10px);

    z-index:999;

}

.nav{

    height:82px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.brand{

    color:#fff;

    font-family:'Montserrat';

    font-weight:800;

    font-size:1.35rem;

}

.nav-links{

    display:flex;

    gap:34px;

}

.nav-links a{

    color:#fff;

    font-size:.9rem;

    font-weight:600;

    transition:.2s;

}

.nav-links a:hover{

    color:var(--red);

}

.call-button{

    background:var(--red);

    color:#fff;

    padding:12px 26px;

    border-radius:999px;

    font-weight:700;

    transition:var(--transition);

}

.call-button:hover{

    background:var(--red-dark);

}

.menu-toggle{

    display:none;

}

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

.hero{

    position:relative;

    min-height:92vh;

    display:flex;

    align-items:center;

    background:url("HERO.webp") center/cover;

    overflow:hidden;

}

.overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    rgba(0,0,0,.72),
    rgba(0,0,0,.72));

}

.hero-content{

    position:relative;

    color:#fff;

    max-width:760px;

    z-index:2;

}

.review-badge{

    display:inline-block;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.18);

    color:#fff;

    padding:10px 18px;

    border-radius:999px;

    font-size:.85rem;

    margin-bottom:28px;

}

.hero h1{

    margin-bottom:26px;

}

.hero p{

    max-width:650px;

    font-size:1.2rem;

    color:#ddd;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

/* ==========================
   TRUST STRIP
========================== */

.trust-strip{

    background:#111;

    padding:42px 0;

}

.trust-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    text-align:center;

}

.trust-grid h2{

    color:var(--red);

    font-size:2rem;

    margin-bottom:8px;

}

.trust-grid p{

    color:#bbb;

    font-size:.95rem;

}
/* =========================================
   PART 2
   SERVICES
========================================= */

.services{

    background:#fafafa;

    padding:120px 0;

}

.service-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

    margin-bottom:120px;

}

.service-row:last-child{

    margin-bottom:0;

}

.service-row.reverse{

    direction:rtl;

}

.service-row.reverse>*{

    direction:ltr;

}

.service-image{

    border-radius:18px;

    overflow:hidden;

    box-shadow:var(--shadow);

}

.service-image img{

    aspect-ratio:4/5;

    object-fit:cover;

    transition:.4s;

}

.service-image:hover img{

    transform:scale(1.04);

}

.service-content{

    max-width:520px;

}

.service-tag{

    display:inline-block;

    color:var(--red);

    font-size:.8rem;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.service-content h2{

    margin-bottom:22px;

    font-size:2.4rem;

    color:#111;

}

.service-content p{

    color:#666;

    margin-bottom:26px;

    font-size:1.05rem;

    line-height:1.8;

}

.service-content ul{

    display:grid;

    gap:14px;

    margin-bottom:34px;

}

.service-content li{

    display:flex;

    align-items:center;

    gap:12px;

    color:#333;

    font-weight:600;

}

.service-content li::before{

    content:"✓";

    width:26px;
    height:26px;

    display:flex;

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

    background:rgba(215,25,32,.1);

    color:var(--red);

    border-radius:50%;

    font-size:.8rem;

    flex-shrink:0;

}

.service-content .btn-red{

    margin-top:8px;

}

/* ==========================
   TABLET
========================== */

@media(max-width:1000px){

    .service-row{

        grid-template-columns:1fr;

        gap:40px;

        margin-bottom:90px;

    }

    .service-row.reverse{

        direction:ltr;

    }

    .service-content{

        max-width:100%;

    }

}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .services{

        padding:90px 0;

    }

    .service-row{

        gap:30px;

        margin-bottom:70px;

    }

    .service-content h2{

        font-size:2rem;

    }

    .service-image img{

        aspect-ratio:4/3;

    }

}
/* =========================================
   PART 3
   ABOUT
========================================= */

.about-section{

    background:#111;

    color:#fff;

    padding:120px 0;

}

.about-section .section-heading{

    margin-bottom:70px;

}

.about-section .section-heading h2{

    color:#fff;

}

.about-section .section-heading p{

    color:#bcbcbc;

}

.about-grid{

    display:grid;

    grid-template-columns:1.05fr .95fr;

    gap:60px;

    align-items:center;

}

.about-image{

    border-radius:18px;

    overflow:hidden;

    box-shadow:var(--shadow);

}

.about-image img{

    width:100%;

    height:auto;

    display:block;

}

.about-content{

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.about-content p{

    color:#d3d3d3;

    line-height:1.9;

    font-size:1.05rem;

    margin-bottom:28px;

}

.about-stats{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin:18px 0 35px;

}

.stat-card{

    background:#1d1d1d;

    border:1px solid #2f2f2f;

    border-radius:14px;

    padding:28px 20px;

    text-align:center;

    transition:.25s;

}

.stat-card:hover{

    border-color:var(--red);

    transform:translateY(-4px);

}

.stat-card h3{

    color:var(--red);

    font-size:2rem;

    margin-bottom:8px;

}

.stat-card p{

    color:#cfcfcf;

    font-size:.95rem;

    margin:0;

}

.about-content .btn-red{

    align-self:flex-start;

}

/* ==========================
   TABLET
========================== */

@media(max-width:1000px){

    .about-grid{

        grid-template-columns:1fr;

        gap:45px;

    }

    .about-image{

        max-width:760px;

        margin:auto;

    }

    .about-content{

        max-width:760px;

        margin:auto;

    }

}

/* ==========================
   MOBILE
========================== */

@media(max-width:700px){

    .about-section{

        padding:90px 0;

    }

    .about-stats{

        grid-template-columns:1fr 1fr;

        gap:14px;

    }

    .stat-card{

        padding:20px 14px;

    }

    .stat-card h3{

        font-size:1.6rem;

    }

    .about-content .btn-red{

        width:100%;

        justify-content:center;

    }

}
/* =========================================
   PART 4
   REVIEWS
   SERVICE AREA
   WHY CHOOSE US
========================================= */

/* ---------- REVIEWS ---------- */

.reviews-section{

    background:#fafafa;
    padding:120px 0;

}

.review-summary{

    background:#fff;

    border-radius:18px;

    box-shadow:var(--shadow);

    padding:70px;

    display:grid;

    grid-template-columns:320px 1fr;

    gap:60px;

    align-items:center;

}

.rating-left{

    text-align:center;

    border-right:1px solid var(--border);

    padding-right:50px;

}

.rating-left h2{

    font-size:5rem;
    color:var(--red);

}

.stars{

    color:#f5b301;

    font-size:1.8rem;

    margin:10px 0 20px;

}

.rating-left p{

    color:#666;

}

.rating-right h3{

    margin-bottom:22px;

}

.rating-right p{

    color:#666;

    line-height:1.8;

    margin-bottom:32px;

}

/* ---------- SERVICE AREA ---------- */

.coverage-section{

    background:#111;

    color:#fff;

    padding:120px 0;

}

.coverage-section .section-heading{

    margin-bottom:55px;

}

.coverage-section .section-heading h2{

    color:#fff;

}

.coverage-section .section-heading p{

    color:#bdbdbd;

}

.coverage-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:24px;

}

.coverage-card{

    background:#1d1d1d;

    border:1px solid #2d2d2d;

    border-radius:16px;

    padding:34px 20px;

    text-align:center;

    font-weight:700;

    font-size:1.05rem;

    transition:.25s;

}

.coverage-card:hover{

    transform:translateY(-5px);

    border-color:var(--red);

    background:#242424;

}

/* ---------- WHY CHOOSE US ---------- */

.why-section{

    background:#fff;

    padding:120px 0;

}

.why-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:start;

}

.why-content span{

    display:block;

    color:var(--red);

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:.8rem;

    font-weight:700;

    margin-bottom:18px;

}

.why-content h2{

    margin-bottom:25px;

}

.why-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:35px;

}

.why-list{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

}

.why-card{

    background:#fff;

    border:1px solid var(--border);

    border-left:5px solid var(--red);

    border-radius:14px;

    padding:22px;

    font-weight:700;

    box-shadow:0 8px 24px rgba(0,0,0,.06);

    transition:.25s;

}

.why-card:hover{

    transform:translateY(-4px);

    box-shadow:0 14px 30px rgba(0,0,0,.10);

}

/* ---------- RESPONSIVE ---------- */

@media(max-width:1000px){

    .review-summary{

        grid-template-columns:1fr;

        text-align:center;

        gap:40px;

        padding:50px;

    }

    .rating-left{

        border:none;

        padding:0;

    }

    .coverage-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .why-grid{

        grid-template-columns:1fr;

        gap:45px;

    }

}

@media(max-width:700px){

    .reviews-section,
    .coverage-section,
    .why-section{

        padding:90px 0;

    }

    .review-summary{

        padding:35px 25px;

    }

    .coverage-grid{

        grid-template-columns:1fr;

        gap:18px;

    }

    .coverage-card{

        padding:28px;

    }

    .why-list{

        grid-template-columns:1fr;

    }

}
/* =========================================
   PART 5
   FOOTER + GLOBAL SPACING + MOBILE
========================================= */

/* ---------- FOOTER ---------- */

footer{

    background:#0b0b0b;

    color:#d5d5d5;

    padding:90px 0 35px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:55px;

    margin-bottom:55px;

}

.footer-grid h3,
.footer-grid h4{

    color:#fff;

    margin-bottom:20px;

}

.footer-grid p{

    color:#b8b8b8;

    line-height:1.8;

}

.footer-grid ul{

    display:grid;

    gap:14px;

}

.footer-grid li{

    color:#b8b8b8;

}

.footer-grid a{

    color:#fff;

    transition:.25s;

}

.footer-grid a:hover{

    color:var(--red);

}

.footer-bottom{

    border-top:1px solid #222;

    padding-top:30px;

    text-align:center;

    color:#888;

    font-size:.9rem;

}

/* ---------- GLOBAL SECTION SPACING ---------- */

section{

    position:relative;

}

.hero{

    padding-top:82px;

}

.services,
.about-section,
.reviews-section,
.coverage-section,
.why-section{

    overflow:hidden;

}

.btn-red,
.btn-outline,
.call-button{

    cursor:pointer;

}

/* ---------- LARGE DESKTOP ---------- */

@media(max-width:1200px){

    h1{

        font-size:3.5rem;

    }

    h2{

        font-size:2.5rem;

    }

}

/* ---------- TABLET ---------- */

@media(max-width:992px){

    .nav-links{

        display:none;

    }

    .menu-toggle{

        display:flex;

        flex-direction:column;

        gap:5px;

    }

    .menu-toggle span{

        width:28px;

        height:3px;

        background:#fff;

        border-radius:20px;

    }

    .trust-grid{

        grid-template-columns:repeat(2,1fr);

        gap:35px;

    }

    .footer-grid{

        grid-template-columns:1fr 1fr;

        gap:40px;

    }

}

/* ---------- MOBILE ---------- */

@media(max-width:768px){

    h1{

        font-size:2.8rem;

    }

    h2{

        font-size:2rem;

    }

    .hero{

        min-height:85vh;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .btn-red,
    .btn-outline{

        width:100%;

    }

    .section-heading{

        margin-bottom:45px;

    }

    .trust-grid{

        grid-template-columns:1fr 1fr;

    }

}

/* ---------- SMALL PHONES ---------- */

@media(max-width:540px){

    .container{

        width:94%;

    }

    .call-button{

        display:none;

    }

    .trust-grid{

        grid-template-columns:1fr;

        gap:25px;

    }

    .about-stats{

        grid-template-columns:1fr;

    }

    .footer-grid{

        grid-template-columns:1fr;

        gap:35px;

    }

    footer{

        text-align:center;

    }

}
/* ==========================
   JAVASCRIPT CLASSES
========================== */

header.scrolled{

    background:#0a0a0a;

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

}

.hidden{

    opacity:0;

    transform:translateY(50px);

    transition:.7s ease;

}

.show{

    opacity:1;

    transform:translateY(0);

}

.nav-links a.active-link{

    color:var(--red);

}

@media(max-width:992px){

    .nav-links{

        position:absolute;

        top:82px;

        left:0;

        width:100%;

        background:#111;

        display:none;

        flex-direction:column;

        padding:30px;

        gap:20px;

        text-align:center;

    }

    .nav-links.active{

        display:flex;

    }

}
/* =======================================
   FLOATING CALL BUTTON
======================================= */

.floating-call{

position:fixed;

right:25px;

bottom:25px;

background:#D62828;

color:#fff;

padding:16px 24px;

border-radius:18px;

font-weight:700;

font-size:1rem;

line-height:1.35;

text-align:center;

text-decoration:none;

box-shadow:0 12px 30px rgba(214,40,40,.35);

z-index:9999;

transition:.3s;

animation:pulse 2.2s infinite;

}

.floating-call span{

display:block;

margin-top:4px;

font-size:1.15rem;

font-weight:800;

letter-spacing:.5px;

}

.floating-call:hover{

transform:translateY(-4px);

background:#B71C1C;

color:#fff;

}

@keyframes pulse{

0%{

box-shadow:0 0 0 0 rgba(214,40,40,.45);

}

70%{

box-shadow:0 0 0 18px rgba(214,40,40,0);

}

100%{

box-shadow:0 0 0 0 rgba(214,40,40,0);

}

}

@media(max-width:768px){

.floating-call{

left:15px;

right:15px;

bottom:18px;

padding:18px;

font-size:1.05rem;

border-radius:16px;

}

.floating-call span{

font-size:1.2rem;

}

}

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

.faq-section{

background:#f7f7f7;

padding:100px 0;

}

.faq-list{

max-width:900px;

margin:auto;

display:flex;

flex-direction:column;

gap:18px;

}

.faq-item{

background:#fff;

border-radius:18px;

overflow:hidden;

box-shadow:0 10px 28px rgba(0,0,0,.08);

border-left:5px solid #D62828;

transition:.3s ease;

}

.faq-item:hover{

transform:translateY(-3px);

box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.faq-question{

width:100%;

display:flex;

justify-content:space-between;

align-items:center;

padding:24px 28px;

border:none;

background:#fff;

cursor:pointer;

font-size:1.15rem;

font-weight:700;

color:#222;

text-align:left;

transition:.25s;

}

.faq-question:hover{

background:#fafafa;

}

.faq-icon{

font-size:1.8rem;

font-weight:700;

color:#D62828;

transition:.3s ease;

flex-shrink:0;

margin-left:20px;

}

.faq-answer{

max-height:0;

overflow:hidden;

transition:max-height .35s ease;

background:#fff;

}

.faq-answer p{

padding:0 28px 26px;

margin:0;

line-height:1.8;

color:#555;

font-size:1rem;

}

.faq-item.active .faq-answer{

max-height:250px;

}

.faq-item.active .faq-icon{

transform:rotate(45deg);

}

@media(max-width:768px){

.faq-question{

font-size:1rem;

padding:20px;

}

.faq-answer p{

padding:0 20px 22px;

}

}
