/* =====================================================
   RESET
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f5f8fc;
    color:#1d2733;
}


/* =====================================================
   HEADER
===================================================== */

header{
    min-height:80px;
    background:rgba(255,255,255,.97);
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:10px 6%;
    box-shadow:0 4px 20px rgba(0,0,0,.07);
    position:sticky;
    top:0;
    z-index:1000;
    backdrop-filter:blur(10px);
}

.logo{
    display:flex;
    align-items:center;
}

.logo a{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.logo img{
    width:160px;
    height:60px;
    display:block;
    object-fit:contain;
}


/* ================= NAV ================= */

nav ul{
    display:flex;
    align-items:center;
    list-style:none;
    gap:28px;
}

nav ul li a{
    text-decoration:none;
    color:#30343b;
    font-size:14px;
    font-weight:500;
    transition:.3s;
    position:relative;
}

nav ul li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-7px;
    width:0;
    height:2px;
    background:#0066cc;
    transition:.3s;
}

nav ul li a:hover{
    color:#0066cc;
}

nav ul li a:hover::after{
    width:100%;
}


/* ================= HEADER ICONS ================= */

.header-icons{
    display:flex;
    align-items:center;
    gap:14px;
}

.header-icons > a{
    text-decoration:none;
    color:#333;
    position:relative;
    transition:.3s;
}

.header-icons > a:not(.call-btn):not(.whatsapp-btn){
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    background:#f4f7fb;
}

.header-icons > a:not(.call-btn):not(.whatsapp-btn):hover{
    color:#0066cc;
    background:#eaf4ff;
    transform:translateY(-2px);
}

.header-icons i{
    font-size:17px;
}


/* ================= CART ================= */

.cart-icon{
    position:relative;
}

.cart-count{
    position:absolute;
    top:-7px;
    right:-7px;
    min-width:19px;
    height:19px;
    padding:2px 5px;
    background:#0066cc;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:10px;
    font-weight:600;
}


/* ================= HEADER BUTTONS ================= */

.call-btn,
.whatsapp-btn{
    padding:10px 15px;
    border-radius:9px;
    color:#fff !important;
    font-size:12px;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:7px;
    transition:.3s;
}

.call-btn{
    background:#0066cc;
    box-shadow:0 5px 15px rgba(0,102,204,.18);
}

.call-btn:hover{
    background:#0054a8;
    transform:translateY(-2px);
}

.whatsapp-btn{
    background:#25d366;
    box-shadow:0 5px 15px rgba(37,211,102,.18);
}

.whatsapp-btn:hover{
    background:#1ebc59;
    transform:translateY(-2px);
}


/* =====================================================
   PAGE HERO
===================================================== */

.page-hero{
    position:relative;
    overflow:hidden;
    padding:45px 6% 70px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(0,102,204,.13),
            transparent 30%
        ),

        radial-gradient(
            circle at 10% 80%,
            rgba(37,211,102,.07),
            transparent 25%
        ),

        linear-gradient(
            135deg,
            #f8fbff,
            #eef6ff
        );
}

.page-hero::before{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    border-radius:50%;
    background:rgba(0,102,204,.06);
    top:-120px;
    right:-70px;
}

.page-hero::after{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(37,211,102,.04);
    bottom:-90px;
    left:-60px;
}

.hero-inner{
    max-width:1200px;
    margin:auto;
    position:relative;
    z-index:2;
}

.breadcrumb{
    color:#697586;
    font-size:13px;
    margin-bottom:22px;
}

.breadcrumb a{
    color:#0066cc;
    text-decoration:none;
    font-weight:500;
}

.hero-content{
    max-width:780px;
}

.hero-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 15px;
    border-radius:30px;
    background:#e7f3ff;
    color:#0066cc;
    font-size:12px;
    font-weight:600;
    margin-bottom:15px;
}

.hero-content h1{
    font-size:42px;
    line-height:1.15;
    color:#162333;
    margin-bottom:14px;
    font-weight:800;
}

.hero-content h1 span{
    color:#0066cc;
}

.hero-content p{
    max-width:650px;
    color:#607080;
    line-height:1.8;
    font-size:15px;
}


/* =====================================================
   CONTACT WRAPPER
===================================================== */

.contact-wrapper{
    max-width:1200px;
    margin:-30px auto 70px;
    padding:0 20px;
    position:relative;
    z-index:5;
}

.contact-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
}


/* =====================================================
   CONTACT CARDS
===================================================== */

.contact-info,
.contact-form{
    background:#fff;
    padding:30px;
    border-radius:22px;
    box-shadow:0 12px 40px rgba(31,55,80,.10);
    border:1px solid #edf1f6;
}

.contact-info h2,
.contact-form h2{
    font-size:24px;
    color:#182433;
    font-weight:800;
    margin-bottom:9px;
}

.card-subtitle{
    color:#637080;
    font-size:13px;
    line-height:1.8;
    margin-bottom:23px;
}


/* =====================================================
   INFO BOXES
===================================================== */

.info-list{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.info-box{
    display:flex;
    align-items:center;
    gap:14px;
    padding:15px;
    border-radius:13px;
    background:#f8fafc;
    border:1px solid #edf1f5;
    transition:.3s;
}

.info-box:hover{
    border-color:#d6e8fa;
    background:#f5faff;
    transform:translateY(-2px);
}

.info-box i{
    width:44px;
    height:44px;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eaf5ff;
    color:#0066cc;
    border-radius:11px;
    font-size:17px;
}

.info-box:nth-child(2) i{
    background:#eafaf0;
    color:#25b95a;
}

.info-box:nth-child(3) i{
    background:#fff4e5;
    color:#f39a18;
}

.info-box:nth-child(4) i{
    background:#f0ecff;
    color:#7654d6;
}

.info-box h4{
    font-size:13px;
    color:#263444;
    margin-bottom:3px;
}

.info-box p{
    margin:0;
    color:#697586;
    font-size:12px;
}


/* =====================================================
   CONTACT FORM
===================================================== */

.form-group{
    margin-bottom:16px;
}

.form-group label{
    display:block;
    margin-bottom:7px;
    color:#263444;
    font-size:13px;
    font-weight:600;
}

.form-group label i{
    color:#0066cc;
    margin-right:4px;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:12px 14px;
    border:1px solid #dce2e9;
    border-radius:10px;
    outline:none;
    font-size:13px;
    color:#333;
    background:#fff;
    transition:.25s;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover{
    border-color:#c4d4e5;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:#0066cc;
    box-shadow:0 0 0 3px rgba(0,102,204,.07);
}

.form-group textarea{
    height:115px;
    resize:vertical;
}


/* =====================================================
   UPLOAD
===================================================== */

.upload-box{
    margin-top:2px;
}

#designFile{
    cursor:pointer;
    border:1px dashed #cbd6e2;
    background:#f9fbfd;
}

#designFile:hover{
    border-color:#0066cc;
    background:#f5faff;
}

.file-info{
    font-size:11px;
    color:#778391;
    line-height:1.6;
    margin-top:6px;
}

.upload-status{
    font-size:12px;
    margin-top:7px;
    display:none;
}

.upload-success{
    color:#16803c;
}

.upload-error{
    color:#d62828;
}


/* =====================================================
   SEND BUTTON
===================================================== */

.send-btn{
    width:100%;
    min-height:50px;
    padding:13px 18px;
    margin-top:4px;
    border:none;
    border-radius:11px;
    background:#0066cc;
    color:#fff;
    font-size:14px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
    box-shadow:0 6px 15px rgba(0,102,204,.20);
}

.send-btn:hover{
    background:#0055aa;
    transform:translateY(-2px);
}

.send-btn:disabled{
    opacity:.7;
    cursor:not-allowed;
    transform:none;
}


/* =====================================================
   MAP
===================================================== */

.map-section{
    max-width:1200px;
    margin:0 auto 70px;
    padding:0 20px;
}

.map-card{
    background:#fff;
    padding:22px;
    border-radius:22px;
    box-shadow:0 12px 40px rgba(31,55,80,.10);
    border:1px solid #edf1f6;
}

.map-heading{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:16px;
}

.map-icon{
    width:43px;
    height:43px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:11px;
    background:#eaf5ff;
    color:#0066cc;
}

.map-heading h2{
    font-size:20px;
    color:#182433;
    font-weight:800;
}

.map-heading p{
    color:#778391;
    font-size:11px;
    margin-top:2px;
}

.map-frame{
    overflow:hidden;
    border-radius:16px;
    border:1px solid #e7edf3;
}

.map-section iframe{
    display:block;
    width:100%;
    height:350px;
    border:0;
}


/* =====================================================
   TRUST STRIP
===================================================== */

.trust-strip{
    max-width:1200px;
    margin:0 auto 70px;
    padding:0 20px;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
}

.trust-card{
    background:#fff;
    border:1px solid #edf1f5;
    border-radius:15px;
    padding:18px;
    display:flex;
    align-items:center;
    gap:13px;
    box-shadow:0 7px 25px rgba(31,55,80,.06);
    transition:.3s;
}

.trust-card:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(31,55,80,.09);
}

.trust-icon{
    width:43px;
    height:43px;
    flex-shrink:0;
    border-radius:11px;
    background:#eaf5ff;
    color:#0066cc;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:17px;
}

.trust-card h4{
    font-size:13px;
    color:#263444;
    margin-bottom:3px;
}

.trust-card p{
    font-size:11px;
    color:#778391;
}


/* =====================================================
   FOOTER
===================================================== */

footer{
    background:#111820;
    color:#fff;
    padding:50px 8% 20px;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.footer-container h3{
    margin-bottom:15px;
    font-size:17px;
}

.footer-container p{
    color:#b9c1ca;
    line-height:1.7;
    font-size:12px;
}

.footer-container ul{
    list-style:none;
}

.footer-container li{
    margin:10px 0;
}

.footer-container a{
    text-decoration:none;
    color:#d9dee4;
    font-size:12px;
    transition:.3s;
}

.footer-container a:hover{
    color:#00aaff;
}

.social-icons{
    display:flex;
    gap:10px;
}

.social-icons a{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#1d2731;
    border-radius:10px;
    font-size:18px;
    color:#fff;
}

.social-icons a:hover{
    color:#00aaff;
    transform:translateY(-2px);
}

.copyright{
    max-width:1200px;
    margin:30px auto 0;
    padding-top:20px;
    border-top:1px solid #303840;
    text-align:center;
    color:#8e98a3;
    font-size:11px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:1100px){

    header{
        padding:10px 4%;
    }

    nav ul{
        gap:17px;
    }

    .header-icons{
        gap:8px;
    }

    .call-btn,
    .whatsapp-btn{
        padding:9px 10px;
    }

    .page-hero{
        padding-left:4%;
        padding-right:4%;
    }

    .footer-container{
        padding:0 10px;
    }

}


@media(max-width:900px){

    nav{
        display:none;
    }

    .contact-container{
        grid-template-columns:1fr;
    }

    .trust-grid{
        grid-template-columns:1fr;
    }

    .footer-container{
        grid-template-columns:1fr 1fr;
    }

}


@media(max-width:650px){

    header{
        min-height:72px;
        padding:8px 4%;
    }

    .logo img{
        width:140px;
        height:52px;
    }

    .header-icons{
        gap:6px;
    }

    .header-icons > a:not(.call-btn):not(.whatsapp-btn){
        width:35px;
        height:35px;
    }

    .call-btn,
    .whatsapp-btn{
        display:none;
    }

    .page-hero{
        padding:28px 4% 60px;
    }

    .hero-content h1{
        font-size:29px;
    }

    .hero-content p{
        font-size:12px;
        line-height:1.7;
    }

    .breadcrumb{
        font-size:11px;
        margin-bottom:15px;
    }

    .contact-wrapper{
        padding:0 12px;
        margin-top:-25px;
    }

    .contact-info,
    .contact-form{
        padding:22px 18px;
        border-radius:18px;
    }

    .contact-info h2,
    .contact-form h2{
        font-size:21px;
    }

    .map-section{
        padding:0 12px;
    }

    .map-card{
        padding:14px;
        border-radius:18px;
    }

    .map-section iframe{
        height:280px;
    }

    .trust-strip{
        padding:0 12px;
    }

    .footer-container{
        grid-template-columns:1fr;
    }

}


@media(max-width:400px){

    .logo img{
        width:125px;
    }

    .header-icons > a:not(.call-btn):not(.whatsapp-btn){
        width:32px;
        height:32px;
    }

    .hero-content h1{
        font-size:26px;
    }

}