/* ==========================================
   AUTO GARAGE WEBSITE
   STYLE.CSS (PART 1)
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7f7f7;
    color:#222;
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

section{
    padding:80px 8%;
}

/* ==========================================
   NAVBAR
========================================== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:18px 8%;
    background:rgba(0,0,0,.85);
    backdrop-filter:blur(10px);
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:999;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    width:55px;
}

.logo h2{
    color:#fff;
    font-size:24px;
    font-weight:700;
}

nav{
    display:flex;
    gap:30px;
}

nav a{
    color:#fff;
    font-size:15px;
    transition:.3s;
}

nav a:hover{
    color:#e53935;
}

.nav-buttons{
    display:flex;
    gap:12px;
}

.call-btn,
.whatsapp-btn{
    padding:12px 22px;
    border-radius:50px;
    color:#fff;
    font-weight:600;
    transition:.3s;
}

.call-btn{
    background:#111;
    border:2px solid #fff;
}

.call-btn:hover{
    background:#fff;
    color:#111;
}

.whatsapp-btn{
    background:#25D366;
}

.whatsapp-btn:hover{
    transform:translateY(-3px);
}

/*==========================================
HAMBURGER MENU
==========================================*/

.menu-toggle{
    display:none;
    font-size:30px;
    color:#fff;
    cursor:pointer;
}

/* ==========================================
   HERO
========================================== */

.hero{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

.hero video{
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

.hero-content{
    position:absolute;
    top:50%;
    left:8%;
    transform:translateY(-50%);
    max-width:700px;
    color:#fff;
}

.hero-content h1{
    font-size:60px;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-content p{
    font-size:20px;
    color:#ddd;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.primary-btn,
.secondary-btn{
    padding:16px 34px;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
}

.primary-btn{
    background:#d62828;
    color:#fff;
}

.primary-btn:hover{
    background:#b71c1c;
}

.secondary-btn{
    background:#fff;
    color:#111;
}

.secondary-btn:hover{
    transform:translateY(-4px);
}

/* ==========================================
   FEATURES
========================================== */

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
    background:#fff;
}

.feature{
    background:#fafafa;
    padding:40px 25px;
    text-align:center;
    border-radius:12px;
    transition:.3s;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.feature:hover{
    transform:translateY(-8px);
}

.feature i{
    font-size:48px;
    color:#d62828;
    margin-bottom:20px;
}

.feature h3{
    font-size:22px;
}

/* ==========================================
   SERVICES
========================================== */

#services{
    background:#f5f5f5;
}

#services h2{
    text-align:center;
    font-size:40px;
    margin-bottom:50px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.services-grid div{
    background:#fff;
    padding:35px;
    text-align:center;
    border-radius:12px;
    font-size:20px;
    font-weight:600;
    transition:.3s;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.services-grid div:hover{
    background:#d62828;
    color:#fff;
    transform:translateY(-8px);
}

/* ==========================================
   SECTION TITLES
========================================== */

section h2{
    font-size:40px;
    text-align:center;
    margin-bottom:18px;
    color:#111;
}

section p{
    text-align:center;
    color:#666;
    line-height:1.8;
}

/*==========================================
FREE HOME INSPECTION
==========================================*/

#inspection{
    background:#ffffff;
}

#inspection p{
    margin-bottom:40px;
}

#inspection form{
    max-width:850px;
    margin:auto;
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 8px 30px rgba(0,0,0,.08);

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

#inspection input,
#inspection select,
#inspection textarea{
    width:100%;
    padding:15px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:15px;
    outline:none;
    transition:.3s;
    font-family:Poppins,sans-serif;
}

#inspection input:focus,
#inspection select:focus,
#inspection textarea:focus{

    border-color:#d62828;
    box-shadow:0 0 8px rgba(214,40,40,.25);

}

#inspection textarea{

    min-height:130px;
    resize:vertical;
}

#inspection textarea:nth-child(6){

    grid-column:1/3;

}

#inspection button{

    grid-column:1/3;

    padding:18px;
    border:none;
    background:#d62828;
    color:#fff;
    font-size:17px;
    font-weight:600;
    border-radius:8px;
    cursor:pointer;
    transition:.3s;

}

#inspection button:hover{

    background:#111;

}


/*==========================================
PRODUCT SECTION
==========================================*/

.products{

    background:#f7f7f7;

}

.product-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
    margin-top:40px;

}

.product{

    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.35s;

}

.product:hover{

    transform:translateY(-10px);

}

.product img{

    height:220px;
    object-fit:cover;

}

.product h3{

    padding:15px;
    font-size:22px;

}

.product p{

    color:#d62828;
    font-size:22px;
    font-weight:700;
    padding:0 15px;

}

.product button{

    width:calc(100% - 30px);
    margin:20px 15px;
    padding:14px;
    border:none;
    background:#d62828;
    color:#fff;
    border-radius:8px;
    cursor:pointer;
    font-size:15px;
    font-weight:600;
    transition:.3s;

}

.product button:hover{

    background:#111;

}

.view-products{

    display:block;
    width:260px;
    margin:60px auto 0;
    text-align:center;
    padding:18px;
    background:#111;
    color:#fff;
    border-radius:50px;
    transition:.3s;

}

.view-products:hover{

    background:#d62828;

}


/*==========================================
SHOP HERO
==========================================*/

.shop-hero{

    padding:170px 8% 80px;
    background:#111;
    color:#fff;
    text-align:center;

}

.shop-hero h1{

    font-size:55px;
    margin-bottom:20px;

}

.shop-hero p{

    color:#ddd;
    font-size:18px;

}


/*==========================================
SEARCH BAR
==========================================*/

.search-box{

    max-width:700px;
    margin:40px auto;

}

.search-box input{

    width:100%;
    padding:18px 25px;
    border-radius:50px;
    border:2px solid #ddd;
    font-size:16px;
    outline:none;
    transition:.3s;

}

.search-box input:focus{

    border-color:#d62828;

}


/*==========================================
CATEGORY BUTTONS
==========================================*/

.categories{

    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:45px;

}

.categories button{

    padding:12px 25px;
    border:none;
    border-radius:50px;
    background:#fff;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
    box-shadow:0 3px 10px rgba(0,0,0,.08);

}

.categories button:hover{

    background:#d62828;
    color:#fff;

}

.categories .active{

    background:#d62828;
    color:#fff;

}


/*==========================================
PRODUCT BADGES
==========================================*/

.badge{

    position:absolute;
    top:15px;
    left:15px;
    background:#d62828;
    color:#fff;
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;

}

.product{

    position:relative;

}


/*==========================================
RATINGS
==========================================*/

.rating{

    padding:0 15px;
    color:#ffb400;
    margin-top:10px;

}


/*==========================================
PRICE
==========================================*/

.price{

    font-size:24px;
    font-weight:700;
    color:#d62828;

}


/*==========================================
QUANTITY
==========================================*/

.quantity{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    margin-top:15px;

}

.quantity button{

    width:40px;
    height:40px;
    margin:0;
    border-radius:50%;
    padding:0;
    font-size:18px;
    background:#111;

}

.quantity span{

    font-size:20px;
    font-weight:600;

}

/*==========================================
EMERGENCY BREAKDOWN
==========================================*/

.breakdown{
    background:#111;
    color:#fff;
    text-align:center;
}

.breakdown h2{
    color:#fff;
    font-size:42px;
    margin-bottom:20px;
}

.breakdown p{
    color:#ddd;
    max-width:700px;
    margin:0 auto 35px;
}

.breakdown-btn{
    display:inline-block;
    background:#d62828;
    color:#fff;
    padding:18px 40px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.breakdown-btn:hover{
    background:#fff;
    color:#111;
}

/*==========================================
REVIEWS
==========================================*/

.reviews{
    background:#f7f7f7;
}

.review-slider{
    max-width:900px;
    margin:50px auto 0;
    display:flex;
    gap:25px;
    overflow-x:auto;
    scroll-behavior:smooth;
}

.review-slider::-webkit-scrollbar{
    display:none;
}

.review-card{
    min-width:300px;
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.review-card h3{
    margin-bottom:10px;
}

.review-card span{
    color:#ffb400;
    font-size:18px;
}

.review-card p{
    margin-top:15px;
    text-align:left;
    color:#666;
}

/*==========================================
CONTACT
==========================================*/

#contact{
    background:#fff;
}

.contact-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:40px;
    margin-top:50px;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.contact-box{
    display:flex;
    align-items:center;
    gap:20px;
    background:#f7f7f7;
    padding:20px;
    border-radius:10px;
}

.contact-box i{
    font-size:30px;
    color:#d62828;
}

.contact-box h4{
    margin-bottom:5px;
}

.contact-box p{
    text-align:left;
    margin:0;
}

.contact-map iframe{
    width:100%;
    height:100%;
    min-height:420px;
    border:none;
    border-radius:12px;
}

/*==========================================
FLOATING WHATSAPP
==========================================*/

.floating-whatsapp{
    position:fixed;
    bottom:25px;
    left:25px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    box-shadow:0 10px 20px rgba(0,0,0,.2);
    z-index:999;
    transition:.3s;
}

.floating-whatsapp:hover{
    transform:scale(1.08);
}

/*==========================================
FLOATING CART
==========================================*/

.floating-cart{
    position:fixed;
    bottom:25px;
    right:25px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#d62828;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    box-shadow:0 10px 20px rgba(0,0,0,.2);
    z-index:999;
    transition:.3s;
}

.floating-cart:hover{
    transform:scale(1.08);
}

.floating-cart span{
    position:absolute;
    top:-5px;
    right:-5px;
    background:#111;
    color:#fff;
    width:24px;
    height:24px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:12px;
    font-weight:700;
}

/*==========================================
CART SIDEBAR
==========================================*/

.cart-sidebar{
    position:fixed;
    top:0;
    right:-420px;
    width:400px;
    max-width:100%;
    height:100vh;
    background:#fff;
    box-shadow:-5px 0 20px rgba(0,0,0,.15);
    z-index:1000;
    transition:.4s;
    display:flex;
    flex-direction:column;
}

.cart-sidebar.active{
    right:0;
}

.cart-header{
    background:#111;
    color:#fff;
    padding:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.cart-header h2{
    color:#fff;
    margin:0;
    font-size:24px;
}

.close-cart{
    cursor:pointer;
    font-size:28px;
}

.cart-items{
    flex:1;
    overflow-y:auto;
    padding:20px;
}

.cart-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px solid #eee;
    padding:15px 0;
}

.cart-item h4{
    margin-bottom:5px;
}

.cart-item p{
    text-align:left;
    margin:0;
}

.remove-item{
    color:#d62828;
    cursor:pointer;
    font-size:18px;
}

.cart-footer{
    border-top:1px solid #ddd;
    padding:20px;
}

.cart-total{
    display:flex;
    justify-content:space-between;
    font-size:20px;
    font-weight:700;
    margin-bottom:20px;
}

.checkout-btn,
.whatsapp-order{
    width:100%;
    padding:15px;
    border:none;
    border-radius:8px;
    cursor:pointer;
    font-weight:600;
    margin-bottom:10px;
}

.checkout-btn{
    background:#111;
    color:#fff;
}

.checkout-btn:hover{
    background:#333;
}

.whatsapp-order{
    background:#25D366;
    color:#fff;
}

.whatsapp-order:hover{
    background:#1ea952;
}

/*==========================================
FOOTER
==========================================*/

footer{
    background:#111;
    color:#fff;
    padding:60px 8% 25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;
    margin-bottom:40px;
}

.footer-grid h3{
    margin-bottom:18px;
}

.footer-grid a{
    display:block;
    color:#ccc;
    margin-bottom:10px;
    transition:.3s;
}

.footer-grid a:hover{
    color:#d62828;
}

.social-icons{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.social-icons a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#222;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    transition:.3s;
}

.social-icons a:hover{
    background:#d62828;
}

.copyright{
    text-align:center;
    color:#aaa;
    border-top:1px solid #333;
    padding-top:20px;
    font-size:14px;
}

/*==========================================
ANIMATIONS
==========================================*/

.product,
.feature,
.services-grid div,
.review-card,
.contact-box{
    transition:.35s ease;
}

.product:hover,
.feature:hover,
.services-grid div:hover,
.review-card:hover,
.contact-box:hover{
    transform:translateY(-8px);
}

.fade-up{
    animation:fadeUp .8s ease forwards;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/*==========================================
RESPONSIVE DESIGN
==========================================*/

/* ---------- Large Laptop ---------- */

@media (max-width:1200px){

.hero-content h1{
    font-size:50px;
}

.shop-hero h1{
    font-size:48px;
}

section{
    padding:70px 6%;
}

header{
    padding:18px 6%;
}

}


/* ---------- Tablet ---------- */

@media (max-width:992px){

header{
    flex-wrap:wrap;
    gap:20px;
}

nav{
    width:100%;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
}

.hero{
    height:90vh;
}

.hero-content{
    left:6%;
    right:6%;
    max-width:100%;
}

.hero-content h1{
    font-size:42px;
}

.hero-content p{
    font-size:18px;
}

.services-grid{
    grid-template-columns:repeat(2,1fr);
}

.product-grid{
    grid-template-columns:repeat(2,1fr);
}

.contact-container{
    grid-template-columns:1fr;
}

.footer-grid{
    grid-template-columns:repeat(2,1fr);
}

#inspection form{
    grid-template-columns:1fr;
}

#inspection textarea:nth-child(6){
    grid-column:auto;
}

#inspection button{
    grid-column:auto;
}

.cart-sidebar{
    width:360px;
}

}


/* ---------- Mobile ---------- */

@media (max-width:768px){

section{
    padding:60px 20px;
}

header{
    padding:15px 20px;
    flex-direction:column;
}

.logo{
    margin-bottom:10px;
}

nav{
    gap:15px;
}

nav a{
    font-size:14px;
}

.nav-buttons{
    flex-wrap:wrap;
    justify-content:center;
}

.hero{
    height:85vh;
}

.hero-content{
    text-align:center;
    left:20px;
    right:20px;
}

.hero-content h1{
    font-size:34px;
}

.hero-content p{
    font-size:16px;
}

.hero-buttons{
    justify-content:center;
}

.primary-btn,
.secondary-btn{
    width:100%;
    text-align:center;
}

.features{
    grid-template-columns:1fr;
}

.services-grid{
    grid-template-columns:1fr;
}

.product-grid{
    grid-template-columns:1fr;
}

.shop-hero{
    padding:150px 20px 70px;
}

.shop-hero h1{
    font-size:36px;
}

.search-box{
    margin:30px auto;
}

.categories{
    justify-content:flex-start;
    overflow-x:auto;
    padding-bottom:10px;
}

.categories::-webkit-scrollbar{
    display:none;
}

.categories button{
    white-space:nowrap;
}

.review-card{
    min-width:280px;
}

.footer-grid{
    grid-template-columns:1fr;
}

.floating-cart{
    width:58px;
    height:58px;
}

.floating-whatsapp{
    width:58px;
    height:58px;
}

.cart-sidebar{
    width:100%;
}

.contact-map iframe{
    min-height:300px;
}

}


/* ---------- Small Mobile ---------- */

@media (max-width:480px){

.hero-content h1{
    font-size:28px;
}

.hero-content p{
    font-size:15px;
}

section h2{
    font-size:30px;
}

.shop-hero h1{
    font-size:30px;
}

.logo h2{
    font-size:20px;
}

.logo img{
    width:45px;
}

.call-btn,
.whatsapp-btn{
    width:100%;
    text-align:center;
}

.product img{
    height:200px;
}

.product h3{
    font-size:20px;
}

.price{
    font-size:22px;
}

.quantity button{
    width:35px;
    height:35px;
}

.review-card{
    min-width:250px;
}

}


/*==========================================
UTILITY CLASSES
==========================================*/

.text-center{
    text-align:center;
}

.mt-20{
    margin-top:20px;
}

.mt-30{
    margin-top:30px;
}

.mt-40{
    margin-top:40px;
}

.mt-60{
    margin-top:60px;
}

.mb-20{
    margin-bottom:20px;
}

.mb-40{
    margin-bottom:40px;
}

.rounded{
    border-radius:12px;
}

.shadow{
    box-shadow:0 8px 25px rgba(0,0,0,.10);
}


/*==========================================
SCROLLBAR
==========================================*/

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#f2f2f2;
}

::-webkit-scrollbar-thumb{
    background:#d62828;
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#b71c1c;
}


/*==========================================
SELECTION
==========================================*/

::selection{
    background:#d62828;
    color:#fff;
}


/*==========================================
LOADER (OPTIONAL)
==========================================*/

.loader{
    position:fixed;
    inset:0;
    background:#111;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.loader::after{

    content:"";

    width:60px;
    height:60px;

    border:6px solid #fff;
    border-top:6px solid #d62828;

    border-radius:50%;

    animation:spin 1s linear infinite;

}

@keyframes spin{

    100%{
        transform:rotate(360deg);
    }

}


/*==========================================
BACK TO TOP BUTTON
==========================================*/

.back-top{

    position:fixed;

    right:25px;
    bottom:100px;

    width:55px;
    height:55px;

    background:#111;
    color:#fff;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    cursor:pointer;

    transition:.3s;

    z-index:998;

}

.back-top:hover{

    background:#d62828;

}

/*==========================================
CART QUANTITY CONTROLS
==========================================*/

.cart-controls{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
}

.cart-controls .plus,
.cart-controls .minus{
    width:34px;
    height:34px;
    border:none;
    border-radius:10px;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:#fff;
    font-size:22px;
    font-weight:800;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.25s;
    box-shadow:0 5px 15px rgba(37,99,235,.35);
}

.cart-controls .plus:hover,
.cart-controls .minus:hover{
    background:linear-gradient(135deg,#3b82f6,#2563eb);
    transform:translateY(-2px) scale(1.08);
}

.cart-controls .plus:active,
.cart-controls .minus:active{
    transform:scale(.92);
}

.cart-controls span{
    min-width:40px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eff6ff;
    color:#1d4ed8;
    font-size:20px;
    font-weight:800;
    border:2px solid #bfdbfe;
    border-radius:10px;
    box-shadow:0 4px 12px rgba(37,99,235,.15);
}

.remove-item{
    margin-top:10px;
    width:100%;
    padding:8px 12px;
    border:none;
    border-radius:8px;
    background:#ef4444;
    color:#fff;
    font-size:14px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.remove-item:hover{
    background:#dc2626;
}

/*==========================================
CLEAR CART BUTTON
==========================================*/

.clear-cart{
    width:100%;
    padding:14px;
    margin-top:10px;
    border:none;
    border-radius:8px;
    background:#e70808;
    color:#fff;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
    box-shadow:0 8px 20px rgba(34,197,94,.25);
}

.clear-cart:hover{
    background:#16a34a;
    transform:translateY(-2px);
}

.clear-cart:active{
    transform:scale(.98);
}

/*==========================================
PROFESSIONAL MOBILE NAVBAR
==========================================*/

@media (max-width:768px){

header{
    padding:12px 20px;
    display:flex;
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo img{
    width:45px;
}

.logo h2{
    font-size:20px;
}

nav{
    width:100%;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:14px;
    margin-top:12px;
}

nav a{
    font-size:15px;
}

.nav-buttons{
    width:100%;
    display:flex;
    gap:10px;
    margin-top:12px;
}

.call-btn,
.whatsapp-btn{
    flex:1;
    padding:12px;
    font-size:16px;
}

.hero{
    margin-top:145px;
    height:calc(100vh - 145px);
}

.hero-content{
    left:20px;
    right:20px;
    max-width:100%;
    text-align:center;
}

.hero-content h1{
    font-size:34px;
}

.hero-content p{
    font-size:16px;
}

.hero-buttons{
    justify-content:center;
}
}

/*==========================================
PROFESSIONAL MOBILE NAVBAR
==========================================*/

@media (max-width:768px){

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:12px 18px;
    background:#111;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    z-index:9999;
    box-shadow:0 5px 20px rgba(0,0,0,.3);
}

.logo img{
    width:45px;
}

.logo h2{
    font-size:18px;
}

.menu-toggle{
    display:block;
}

nav{
    display:none;
    width:100%;
    flex-direction:column;
    text-align:center;
    margin-top:15px;
    gap:18px;
    background:#111;
    padding:20px 0;
    border-top:1px solid rgba(255,255,255,.1);
}

nav.active{
    display:flex;
}

nav a{
    color:#fff;
    font-size:17px;
    font-weight:600;
}

.nav-buttons{
    width:100%;
    display:flex;
    gap:10px;
    margin-top:15px;
}

.call-btn,
.whatsapp-btn{
    flex:1;
    justify-content:center;
    padding:12px;
}

.hero{
    margin-top:120px;
}

.hero-content{
    left:20px;
    right:20px;
    max-width:100%;
    text-align:center;
}

.hero-content h1{
    font-size:34px;
}

.hero-content p{
    font-size:16px;
}

.hero-buttons{
    justify-content:center;
}

}

/*==========================================
END OF STYLE.CSS
==========================================*/