*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    background:#F8FAFC;
}

.header{
    width:100%;
    background:#0F172A;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 15px rgba(0,0,0,0.15);
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 0;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    width:60px;
    height:60px;
    object-fit:contain;
    border-radius:50%;
    background:white;
    padding:4px;
}

.logo h2{
    color:white;
    font-size:26px;
    font-weight:700;
}

.navbar ul{
    display:flex;
    list-style:none;
    gap:35px;
}

.navbar ul li a{
    text-decoration:none;
    color:white;
    font-size:17px;
    font-weight:500;
    transition:0.3s;
    position:relative;
}

.navbar ul li a:hover,
.navbar ul li a.active{
    color:#F59E0B;
}

.navbar ul li a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#F59E0B;
    transition:0.3s;
}

.navbar ul li a:hover::after{
    width:100%;
}

.quote-btn{
    text-decoration:none;
    background:#2563EB;
    color:white;
    padding:12px 24px;
    border-radius:8px;
    font-weight:600;
    transition:0.3s;
}

.quote-btn:hover{
    background:#F59E0B;
    transform:translateY(-2px);
}
.hero{
    min-height:90vh;
    background:linear-gradient(
        135deg,
        #0F172A 0%,
        #1E3A8A 50%,
        #2563EB 100%
    );
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:80px 8%;
    overflow:hidden;
}

.hero-content{
    flex:1;
    max-width:650px;
}

.tagline{
    display:inline-block;
    background:rgba(245,158,11,0.15);
    color:#F59E0B;
    padding:10px 18px;
    border-radius:30px;
    font-size:15px;
    font-weight:600;
    margin-bottom:25px;
    border:1px solid rgba(245,158,11,0.3);
}

.hero-content h1{
    color:white;
    font-size:60px;
    line-height:1.15;
    margin-bottom:25px;
    font-weight:800;
}

.hero-content h1 span{
    color:#F59E0B;
}

.hero-content p{
    color:#D1D5DB;
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.btn-primary{
    text-decoration:none;
    background:#F59E0B;
    color:#0F172A;
    padding:15px 30px;
    border-radius:10px;
    font-weight:700;
    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(245,158,11,0.4);
}

.btn-secondary{
    text-decoration:none;
    border:2px solid white;
    color:white;
    padding:15px 30px;
    border-radius:10px;
    font-weight:700;
    transition:.3s;
}

.btn-secondary:hover{
    background:white;
    color:#0F172A;
}

.hero-image{
    flex:1;
    display:flex;
    justify-content:center;
}

.hero-image img{
    width:100%;
    max-width:550px;
    animation:float 4s ease-in-out infinite;
}

@keyframes float{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-15px);
    }
    100%{
        transform:translateY(0);
    }
}
.about{
    background:linear-gradient(
        135deg,
        #0F172A 0%,
        #1E3A8A 50%,
        #2563EB 100%
    );
    padding:120px 8%;
    position:relative;
}

.about-container{
    max-width:1300px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

.about-content{
    flex:1;
}

.section-tag{
    display:inline-block;
    padding:10px 22px;
    border-radius:30px;
    background:rgba(245,158,11,0.15);
    color:#F59E0B;
    border:1px solid rgba(245,158,11,0.3);
    font-weight:600;
    margin-bottom:25px;
}

.about-content h2{
    font-size:48px;
    color:#fff;
    line-height:1.2;
    margin-bottom:25px;
}

.about-content h2 span{
    color:#F59E0B;
}

.about-content p{
    color:#CBD5E1;
    font-size:17px;
    line-height:1.9;
    margin-bottom:20px;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin:40px 0;
}

.feature-card{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.1);
    padding:25px;
    border-radius:15px;
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-8px);
    border-color:#F59E0B;
}

.feature-card h3{
    color:#F59E0B;
    font-size:32px;
    margin-bottom:8px;
}

.feature-card p{
    color:white;
    margin:0;
}

.about-btn{
    display:inline-block;
    text-decoration:none;
    background:#F59E0B;
    color:#0F172A;
    padding:15px 35px;
    border-radius:10px;
    font-weight:700;
    transition:.3s;
}

.about-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(245,158,11,.4);
}

.about-image{
    flex:1;
    text-align:center;
}

.about-image img{
    width:100%;
    max-width:550px;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.3);
}
@media(max-width:992px){

    .about-container{
        flex-direction:column-reverse;
        text-align:center;
    }

    .about-content h2{
        font-size:38px;
    }

    .about-features{
        grid-template-columns:1fr;
    }
}

@media(max-width:576px){

    .about-content h2{
        font-size:30px;
    }

    .about{
        padding:80px 5%;
    }
}
/* ==========================
   PRODUCT SHOWCASE
========================== */

.showcase{
    padding:140px 8%;
    background:#ffffff;
}

.showcase-heading{
    text-align:center;
    max-width:700px;
    margin:0 auto 80px;
}

.showcase-heading span{
    display:inline-block;
    color:#2563EB;
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.showcase-heading h2{
    color:#0F172A;
    font-size:60px;
    font-weight:800;
    margin-bottom:20px;
    line-height:1.1;
}

.showcase-heading p{
    color:#64748B;
    font-size:17px;
    line-height:1.8;
}

/* GRID */

.showcase-grid{
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    grid-auto-rows:300px;
    gap:25px;
}

.large{
    grid-column:span 2;
    grid-row:span 2;
}

.wide{
    grid-column:span 2;
}

/* CARD */

.item{
    position:relative;
    overflow:hidden;
    border-radius:28px;
    cursor:pointer;
}

.item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s ease;
}

.item:hover img{
    transform:scale(1.12);
}

/* OVERLAY */

.content{
    position:absolute;
    inset:0;

    display:flex;
    flex-direction:column;
    justify-content:flex-end;

    padding:35px;

    background:
    linear-gradient(
        to top,
        rgba(15,23,42,.95) 5%,
        rgba(15,23,42,.55) 40%,
        transparent 100%
    );
}

.content h3{
    color:#fff;
    font-size:34px;
    font-weight:700;
    margin-bottom:10px;
    transform:translateY(20px);
    transition:.5s;
}

.content p{
    color:#E2E8F0;
    font-size:15px;
    line-height:1.7;
    transform:translateY(20px);
    opacity:0;
    transition:.5s;
}

.item:hover p{
    opacity:1;
    transform:translateY(0);
}

.item:hover h3{
    transform:translateY(0);
}

/* AMBER ACCENT */

.item::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:28px;
    border:3px solid transparent;
    transition:.4s;
}

.item:hover::after{
    border-color:#F59E0B;
}
@media(max-width:1100px){

    .showcase-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .large{
        grid-column:span 2;
    }

    .wide{
        grid-column:span 2;
    }

    .showcase-heading h2{
        font-size:46px;
    }
}

@media(max-width:768px){

    .showcase{
        padding:90px 5%;
    }

    .showcase-grid{
        grid-template-columns:1fr;
        grid-auto-rows:280px;
    }

    .large,
    .wide{
        grid-column:span 1;
        grid-row:span 1;
    }

    .showcase-heading h2{
        font-size:34px;
    }

    .content{
        padding:25px;
    }

    .content h3{
        font-size:26px;
    }

    .content p{
        opacity:1;
        transform:none;
    }
}
/* ==========================
   WHY CHOOSE US
========================== */

.why-us{
    background:#0F172A;
    padding:140px 8%;
    position:relative;
    overflow:hidden;
}

.why-us::before{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background:#2563EB;
    filter:blur(180px);
    opacity:.12;
    top:-100px;
    right:-100px;
}

.why-header{
    text-align:center;
    max-width:750px;
    margin:0 auto 80px;
}

.why-header span{
    color:#F59E0B;
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
}

.why-header h2{
    color:#fff;
    font-size:58px;
    font-weight:800;
    margin:20px 0;
}

.why-header p{
    color:#CBD5E1;
    line-height:1.8;
    font-size:17px;
}

.why-grid{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.why-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:40px 30px;
    transition:.4s ease;
    backdrop-filter:blur(10px);
}

.why-card:hover{
    transform:translateY(-10px);
    border-color:#F59E0B;
}

.number{
    font-size:52px;
    font-weight:800;
    color:#F59E0B;
    opacity:.8;
    margin-bottom:20px;
}

.why-card h3{
    color:#fff;
    font-size:24px;
    margin-bottom:15px;
}

.why-card p{
    color:#CBD5E1;
    line-height:1.8;
    font-size:15px;
}
@media(max-width:1100px){

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .why-header h2{
        font-size:44px;
    }
}

@media(max-width:768px){

    .why-us{
        padding:90px 5%;
    }

    .why-grid{
        grid-template-columns:1fr;
    }

    .why-header h2{
        font-size:34px;
    }

    .why-card{
        padding:30px 25px;
    }
}
/* ==========================
   FOOTER
========================== */

.footer{
    background:#08111F;
    color:white;
}

.footer-container{
    max-width:1400px;
    margin:auto;
    padding:80px 8% 50px;

    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.2fr;
    gap:50px;
}

/* LOGO / COMPANY */

.footer-col h3{
    font-size:30px;
    margin-bottom:20px;
    color:#ffffff;
}

.footer-col p{
    color:#94A3B8;
    line-height:1.9;
}

/* HEADINGS */

.footer-col h4{
    color:#ffffff;
    margin-bottom:25px;
    font-size:20px;
    position:relative;
}

.footer-col h4::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:50px;
    height:3px;
    background:#F59E0B;
    border-radius:20px;
}

/* LINKS */

.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:14px;
}

.footer-col ul li a{
    text-decoration:none;
    color:#94A3B8;
    transition:.3s;
}

.footer-col ul li a:hover{
    color:#F59E0B;
    padding-left:5px;
}

/* CONTACT */

.contact-list li{
    color:#94A3B8;
    line-height:1.8;
}

/* BOTTOM BAR */

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    padding:25px 10px;
}

.footer-bottom p{
    color:#94A3B8;
    font-size:14px;
}
@media(max-width:992px){

    .footer-container{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .footer-container{
        grid-template-columns:1fr;
        gap:40px;
        text-align:center;
    }

    .footer-col h4::after{
        left:50%;
        transform:translateX(-50%);
    }
}
/* ==========================
   PRODUCTS PAGE BANNER
========================== */

.products-banner{
    min-height:60vh;

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

    text-align:center;

    padding:120px 8%;

    background:
    linear-gradient(
        rgba(15,23,42,.88),
        rgba(15,23,42,.88)
    ),
    url("images/products-banner.jpg");

    background-size:cover;
    background-position:center;
    background-attachment:fixed;

    position:relative;
}

.banner-content{
    max-width:850px;
}

.banner-tag{
    display:inline-block;

    background:rgba(245,158,11,.15);
    color:#F59E0B;

    border:1px solid rgba(245,158,11,.25);

    padding:12px 22px;

    border-radius:40px;

    font-size:14px;
    font-weight:600;

    margin-bottom:25px;
}

.banner-content h1{
    color:white;
    font-size:70px;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:800;
}

.banner-content h1 span{
    color:#F59E0B;
}

.banner-content p{
    color:#CBD5E1;
    font-size:18px;
    line-height:1.9;
    max-width:750px;
    margin:auto;
}
@media(max-width:992px){

    .banner-content h1{
        font-size:52px;
    }
}

@media(max-width:768px){

    .products-banner{
        min-height:50vh;
        padding:90px 5%;
    }

    .banner-content h1{
        font-size:40px;
    }

    .banner-content p{
        font-size:16px;
    }
}
/* =========================
   PRODUCT FILTER SECTION
========================= */

.product-filter-section{
    background:#ffffff;
    padding:100px 8% 70px;
}

.filter-header{
    max-width:800px;
    margin:auto;
    text-align:center;
}

.filter-header span{
    display:inline-block;

    color:#2563EB;

    font-size:14px;
    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:15px;
}

.filter-header h2{
    color:#0F172A;
    font-size:58px;
    font-weight:800;
    margin-bottom:20px;
}

.filter-header p{
    color:#64748B;
    font-size:17px;
    line-height:1.9;
}

/* FILTERS */

.filter-wrapper{

    margin-top:50px;

    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
}

/* BUTTON */

.filter-btn{

    border:none;
    outline:none;

    padding:16px 32px;

    border-radius:60px;

    background:#F8FAFC;

    color:#0F172A;

    font-size:15px;
    font-weight:600;

    cursor:pointer;

    transition:.4s ease;

    box-shadow:
    0 8px 20px rgba(15,23,42,.06);
}

/* ACTIVE */

.filter-btn.active{

    background:#0F172A;

    color:#ffffff;

    box-shadow:
    0 15px 35px rgba(15,23,42,.15);
}

/* HOVER */

.filter-btn:hover{

    transform:translateY(-4px);

    background:#F59E0B;

    color:#0F172A;
}
@media(max-width:992px){

    .filter-header h2{
        font-size:44px;
    }
}

@media(max-width:768px){

    .product-filter-section{
        padding:80px 5% 50px;
    }

    .filter-header h2{
        font-size:34px;
    }

    .filter-header p{
        font-size:15px;
    }

    .filter-wrapper{
        gap:12px;
    }

    .filter-btn{
        padding:14px 22px;
        font-size:14px;
    }
}
/* ==========================
   PRODUCTS SECTION
========================== */

.products-section{
    background:#F8FAFC;
    padding:40px 8% 120px;
}

/* CATEGORY BLOCK */

.product-category-section{
    margin-bottom:120px;
}

.category-header{
    margin-bottom:50px;
}

.category-header span{
    display:inline-block;

    color:#F59E0B;

    font-size:14px;
    font-weight:700;

    letter-spacing:2px;
    text-transform:uppercase;

    margin-bottom:12px;
}

.category-header h2{
    color:#0F172A;
    font-size:42px;
    font-weight:800;
}

/* GRID */

.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
}

/* CARD */

.product-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;

    transition:.4s ease;

    box-shadow:
    0 15px 40px rgba(15,23,42,.08);
}

.product-card:hover{
    transform:translateY(-10px);
}

/* IMAGE */

.product-card img{
    width:100%;
    height:260px;
    object-fit:cover;

    transition:.7s;
}

.product-card:hover img{
    transform:scale(1.08);
}

/* CONTENT */

.product-content{
    padding:28px;
}

.product-content h3{
    color:#0F172A;
    font-size:24px;
    margin-bottom:12px;
}

.product-content p{
    color:#64748B;
    line-height:1.8;
    margin-bottom:22px;
}

/* BUTTON */

.product-content a{
    display:inline-block;

    text-decoration:none;

    background:#0F172A;
    color:#fff;

    padding:14px 24px;

    border-radius:12px;

    font-weight:600;

    transition:.3s;
}

.product-content a:hover{
    background:#F59E0B;
    color:#0F172A;
}
@media(max-width:992px){

    .category-header h2{
        font-size:34px;
    }
}

@media(max-width:768px){

    .products-section{
        padding:30px 5% 80px;
    }

    .product-category-section{
        margin-bottom:80px;
    }

    .category-header h2{
        font-size:28px;
    }

    .product-card img{
        height:220px;
    }
}
/* ==========================
   BULK ORDER SECTION
========================== */

.bulk-order{

    padding:120px 8%;

    background:
    linear-gradient(
        135deg,
        #0F172A 0%,
        #1E293B 50%,
        #2563EB 100%
    );

    position:relative;
    overflow:hidden;
}

.bulk-order::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    background:#F59E0B;

    border-radius:50%;

    top:-250px;
    right:-250px;

    opacity:.08;
}

.bulk-content{

    max-width:850px;

    margin:auto;

    text-align:center;

    position:relative;
    z-index:2;
}

.bulk-tag{

    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    background:rgba(245,158,11,.15);

    color:#F59E0B;

    font-size:14px;
    font-weight:700;

    letter-spacing:2px;

    margin-bottom:25px;
}

.bulk-content h2{

    color:#ffffff;

    font-size:58px;

    line-height:1.2;

    margin-bottom:25px;

    font-weight:800;
}

.bulk-content p{

    color:#CBD5E1;

    font-size:18px;

    line-height:1.9;

    margin-bottom:40px;
}

/* BUTTONS */

.bulk-buttons{

    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.primary-btn{

    text-decoration:none;

    background:#F59E0B;
    color:#0F172A;

    padding:16px 34px;

    border-radius:12px;

    font-weight:700;

    transition:.3s;
}

.primary-btn:hover{

    transform:translateY(-4px);

    background:#ffffff;
}

.secondary-btn{

    text-decoration:none;

    color:#ffffff;

    border:2px solid rgba(255,255,255,.2);

    padding:16px 34px;

    border-radius:12px;

    font-weight:700;

    transition:.3s;
}

.secondary-btn:hover{

    background:#ffffff;

    color:#0F172A;
}
@media(max-width:992px){

    .bulk-content h2{
        font-size:44px;
    }
}

@media(max-width:768px){

    .bulk-order{
        padding:90px 5%;
    }

    .bulk-content h2{
        font-size:34px;
    }

    .bulk-content p{
        font-size:16px;
    }

    .bulk-buttons{
        flex-direction:column;
        align-items:center;
    }

    .primary-btn,
    .secondary-btn{
        width:100%;
        max-width:300px;
        text-align:center;
    }
}
/* ==========================
   CONTACT PAGE BANNER
========================== */

.contact-banner{

    min-height:60vh;

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

    text-align:center;

    padding:120px 8%;

    background:
    linear-gradient(
        rgba(15,23,42,.88),
        rgba(15,23,42,.88)
    ),
    url("images/contact-banner.jpg");

    background-size:cover;
    background-position:center;
    background-attachment:fixed;

    position:relative;
    overflow:hidden;
}

.contact-banner::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:#2563EB;

    filter:blur(180px);

    opacity:.15;

    top:-200px;
    right:-200px;
}

.contact-banner-content{

    max-width:850px;

    position:relative;
    z-index:2;
}

.banner-tag{

    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    background:rgba(245,158,11,.15);

    border:1px solid rgba(245,158,11,.25);

    color:#F59E0B;

    font-size:14px;
    font-weight:700;

    letter-spacing:2px;

    margin-bottom:25px;
}

.contact-banner-content h1{

    color:#ffffff;

    font-size:72px;

    line-height:1.1;

    margin-bottom:25px;

    font-weight:800;
}

.contact-banner-content h1 span{
    color:#F59E0B;
}

.contact-banner-content p{

    color:#CBD5E1;

    font-size:18px;

    line-height:1.9;

    max-width:750px;

    margin:auto;
}
@media(max-width:992px){

    .contact-banner-content h1{
        font-size:52px;
    }
}

@media(max-width:768px){

    .contact-banner{
        min-height:50vh;
        padding:90px 5%;
    }

    .contact-banner-content h1{
        font-size:38px;
    }

    .contact-banner-content p{
        font-size:16px;
    }
}
/* ==========================
   CONTACT SECTION
========================== */

.contact-section{
    padding:120px 8%;
    background:#F8FAFC;
}

.contact-container{

    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1.1fr;
    gap:60px;
    align-items:start;
}

/* LEFT SIDE */

.contact-tag{

    display:inline-block;

    color:#2563EB;

    font-size:14px;
    font-weight:700;

    letter-spacing:2px;
    text-transform:uppercase;

    margin-bottom:15px;
}

.contact-info h2{

    color:#0F172A;

    font-size:48px;
    font-weight:800;

    margin-bottom:20px;
}

.contact-info > p{

    color:#64748B;

    line-height:1.9;

    margin-bottom:40px;
}

/* INFO BOX */

.info-box{

    display:flex;
    align-items:flex-start;

    gap:18px;

    background:#ffffff;

    padding:25px;

    border-radius:18px;

    margin-bottom:20px;

    box-shadow:
    0 10px 25px rgba(15,23,42,.05);

    transition:.3s;
}

.info-box:hover{

    transform:translateY(-5px);
}

.icon{

    width:55px;
    height:55px;

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

    border-radius:14px;

    background:#EFF6FF;

    font-size:22px;
}

.info-box h4{

    color:#0F172A;

    margin-bottom:8px;
}

.info-box p{

    color:#64748B;
}

/* FORM */

.contact-form-wrapper{

    background:#ffffff;

    padding:40px;

    border-radius:28px;

    box-shadow:
    0 20px 40px rgba(15,23,42,.08);
}

.form-group{
    margin-bottom:20px;
}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:18px 20px;

    border:1px solid #E2E8F0;

    border-radius:14px;

    outline:none;

    font-size:15px;

    transition:.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:#2563EB;
}

.contact-form textarea{
    resize:none;
}

.contact-form button{

    width:100%;

    border:none;

    padding:18px;

    border-radius:14px;

    background:#0F172A;

    color:white;

    font-size:16px;
    font-weight:600;

    cursor:pointer;

    transition:.3s;
}

.contact-form button:hover{

    background:#F59E0B;
    color:#0F172A;
}
@media(max-width:992px){

    .contact-container{

        grid-template-columns:1fr;
    }

    .contact-info h2{
        font-size:38px;
    }
}

@media(max-width:768px){

    .contact-section{
        padding:90px 5%;
    }

    .contact-info h2{
        font-size:32px;
    }

    .contact-form-wrapper{
        padding:25px;
    }
}
#success-message{
    margin-top:20px;
    padding:15px;
    border-radius:10px;
    background:#DCFCE7;
    color:#166534;
    font-weight:600;
    display:none;
}
/* ===================================
   RESPONSIVE DESIGN
=================================== */

@media screen and (max-width:768px){

.logo{
    flex-direction:column;
}

.navbar ul{
    gap:20px;
    flex-wrap:wrap;
    justify-content:center;
}

.hero{
    flex-direction:column-reverse;
    text-align:center;
    padding:70px 5%;
}

.hero-content{
    max-width:100%;
}

.hero-content h1{
    font-size:45px;
}

.hero-buttons{
    justify-content:center;
    flex-wrap:wrap;
}

.hero-image img{
    max-width:450px;
}

.logo h2{
    font-size:22px;
}

.quote-btn{
    padding:10px 20px;
}

.showcase-heading h2,
.filter-header h2,
.bulk-content h2,
.contact-info h2,
.banner-content h1,
.contact-banner-content h1{
    font-size:42px;
}

.footer-container{
    grid-template-columns:repeat(2,1fr);
}

}

@media screen and (max-width:768px){

.container{
    width:95%;
}

.logo{
    flex-direction:column;
}

.logo img{
    width:55px;
    height:55px;
}

.logo h2{
    font-size:20px;
    text-align:center;
}

.navbar ul{
    flex-direction:column;
    gap:12px;
    align-items:center;
}

.quote-btn{
    width:180px;
    text-align:center;
}

.hero{
    min-height:auto;
    padding:60px 20px;
}

.hero-content h1{
    font-size:34px;
}

.hero-content p{
    font-size:16px;
}

.hero-buttons{
    flex-direction:column;
    align-items:center;
}

.btn-primary,
.btn-secondary{
    width:100%;
    max-width:260px;
    text-align:center;
}

.hero-image img{
    max-width:100%;
}

.about{
    padding:80px 20px;
}

.about-container{
    flex-direction:column-reverse;
}

.about-content{
    text-align:center;
}

.about-content h2{
    font-size:32px;
}

.about-image img{
    max-width:100%;
}

.showcase{
    padding:80px 20px;
}

.showcase-heading h2{
    font-size:34px;
}

.showcase-grid{
    grid-template-columns:1fr;
    grid-auto-rows:250px;
}

.large,
.wide{
    grid-column:span 1;
    grid-row:span 1;
}

.content h3{
    font-size:24px;
}

.content p{
    opacity:1;
    transform:none;
}

.why-us{
    padding:80px 20px;
}

.why-grid{
    grid-template-columns:1fr;
}

.why-header h2{
    font-size:34px;
}

.products-banner,
.contact-banner{
    min-height:auto;
    padding:80px 20px;
    background-attachment:scroll;
}

.banner-content h1,
.contact-banner-content h1{
    font-size:34px;
}

.product-filter-section{
    padding:70px 20px;
}

.filter-header h2{
    font-size:32px;
}

.filter-wrapper{
    flex-direction:column;
    align-items:center;
}

.filter-btn{
    width:100%;
    max-width:280px;
}

.products-section{
    padding:20px;
}

.category-header h2{
    font-size:28px;
}

.products-grid{
    grid-template-columns:1fr;
}

.bulk-order{
    padding:80px 20px;
}

.bulk-content h2{
    font-size:32px;
}

.bulk-buttons{
    flex-direction:column;
}

.primary-btn,
.secondary-btn{
    width:100%;
    max-width:260px;
    text-align:center;
}

.contact-section{
    padding:80px 20px;
}

.contact-container{
    grid-template-columns:1fr;
}

.contact-info{
    text-align:center;
}

.info-box{
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.contact-form-wrapper{
    padding:25px;
}

.footer-container{
    grid-template-columns:1fr;
    text-align:center;
}

.footer-col h4::after{
    left:50%;
    transform:translateX(-50%);
}

.footer-col{
    margin-bottom:20px;
}

}

/* Small phones */

@media screen and (max-width:480px){

.hero-content h1{
    font-size:28px;
}

.about-content h2{
    font-size:28px;
}

.showcase-heading h2{
    font-size:28px;
}

.why-header h2{
    font-size:28px;
}

.banner-content h1,
.contact-banner-content h1{
    font-size:28px;
}

.bulk-content h2{
    font-size:28px;
}

.filter-header h2{
    font-size:28px;
}

.category-header h2{
    font-size:24px;
}

.contact-info h2{
    font-size:28px;
}

.logo h2{
    font-size:18px;
}

.hero-content p,
.banner-content p,
.contact-banner-content p,
.bulk-content p{
    font-size:15px;
}

}.menu-toggle{
    display:none;
    font-size:28px;
    background:none;
    border:none;
    color:white;
    cursor:pointer;
}

@media(max-width:768px){

.menu-toggle{
    display:block;
}

.navbar{
    display:none;
    width:100%;
}

.navbar.active{
    display:block;
}

.navbar ul{
    flex-direction:column;
    text-align:center;
    padding-top:20px;
}

}

/* =====================================
   FINAL MOBILE HEADER FIX
===================================== */
@media (max-width:768px){

.header .container{
    display:flex;
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
    position:relative;
    padding:12px 15px;
}

.logo{
    display:flex;
    flex-direction:row;
    align-items:center;
    gap:10px;
}

.logo img{
    width:45px;
    height:45px;
}

.logo h2{
    font-size:16px;
    margin:0;
    text-align:left;
}

.quote-btn{
    display:none;
}

.menu-toggle{
    display:block;
    font-size:30px;
    cursor:pointer;
    background:none;
    border:none;
    color:#fff;
}

.navbar{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#0F172A;
    border-top:1px solid rgba(255,255,255,0.1);
    box-shadow:0 10px 20px rgba(0,0,0,0.2);
}

.navbar.active{
    display:block;
}

.navbar ul{
    display:flex;
    flex-direction:column;
    gap:0;
    padding:10px 0;
    margin:0;
}

.navbar ul li{
    width:100%;
    text-align:center;
}

.navbar ul li a{
    display:block;
    padding:15px;
}

}
/* Mobile Header */
@media (max-width:768px){

.header .container{
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
    padding:12px 0;
    position:relative;
}

.logo{
    flex-direction:row;
    gap:10px;
}

.logo img{
    width:45px;
    height:45px;
}

.logo h2{
    font-size:16px;
    text-align:left;
}

.menu-toggle{
    display:block;
    font-size:30px;
}

.quote-btn{
    display:none;
}

/* Mobile Menu */

.navbar{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#0F172A;
    padding:20px 0;
    box-shadow:0 10px 20px rgba(0,0,0,0.2);
}

.navbar.active{
    display:block;
}

.navbar ul{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:18px;
}

.navbar ul li a{
    font-size:18px;
}
}
