/* =======================
   Header
======================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f8fc;
}

.container{
    width:92%;
    max-width:1350px;
    margin:auto;
}

.header{
    position:sticky;
    top:0;
    z-index:999;
    background:#ffffff;
    border-bottom:1px solid #e8edf5;
    box-shadow:0 2px 12px rgba(0,0,0,.04);
}

.header .container{

    height:78px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.brand{

    text-decoration:none;

    color:#003399;

    font-size:30px;

    font-weight:700;

    letter-spacing:.4px;

}

.brand span{

    color:#0096db;

}

.nav-menu{

    display:flex;

    list-style:none;

    gap:45px;

}

.nav-menu a{

    text-decoration:none;

    color:#222;

    font-size:15px;

    font-weight:500;

    transition:.3s;

    position:relative;

}

.nav-menu a:hover{

    color:#003399;

}

.nav-menu a::after{

    content:'';

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:#003399;

    transition:.3s;

}

.nav-menu a:hover::after{

    width:100%;

}

.contact-btn{

    text-decoration:none;

    background:#003399;

    color:#fff;

    padding:13px 28px;

    border-radius:8px;

    font-weight:600;

    transition:.3s;

}

.contact-btn:hover{

    background:#0058d4;

    transform:translateY(-2px);

}

.footer{
    background:#0b1f4d;
    color:#fff;
    padding:60px 0 20px;
    margin-top:80px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.2fr;
    gap:50px;
}

.footer h3,
.footer h4{
    margin-bottom:18px;
    color:#fff;
}

.footer p,
.footer span{
    color:#cfd8e6;
    line-height:1.8;
    font-size:15px;
}

.footer ul{
    list-style:none;
    padding:0;
}

.footer ul li{
    margin-bottom:12px;
}

.footer a{
    color:#cfd8e6;
    text-decoration:none;
    transition:.3s;
}

.footer a:hover{
    color:#ffffff;
}

.social-icons{
    display:flex;
    gap:12px;
    margin-top:20px;
}

.social-icons a{
    width:40px;
    height:40px;
    background:#1f4fa3;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:.3s;
}

.social-icons a:hover{
    background:#ff9900;
    color:#111;
}

.affiliate-disclosure{
    border-top:1px solid rgba(255,255,255,.12);
    margin-top:40px;
    padding-top:25px;
}

.affiliate-disclosure p{
    font-size:14px;
    color:#cfd8e6;
    line-height:1.7;
}

.copyright{
    text-align:center;
    margin-top:25px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.12);
}

.copyright p{
    color:#aebbd3;
    font-size:14px;
}

@media(max-width:992px){
    .footer-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:768px){
    .footer-grid{
        grid-template-columns:1fr;
    }
}


    .page-hero{
    background:linear-gradient(135deg,#003399,#0059b3);
    color:#fff;
    padding:90px 0;
    margin-bottom:60px;
}

.page-tag{
    display:inline-block;
    background:rgba(255,255,255,.15);
    padding:8px 18px;
    border-radius:30px;
    margin-bottom:20px;
    font-size:14px;
}

.page-hero h1{
    font-size:46px;
    margin-bottom:18px;
}

.page-hero p{
    max-width:700px;
    line-height:1.8;
    opacity:.95;
}

.products-section{
    padding-bottom:80px;
}

.section-heading{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:40px;
}

.section-heading h2{
    font-size:34px;
    color:#222;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
    gap:30px;
}

.product-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.product-card:hover{
    transform:translateY(-6px);
}

.product-image{
    padding:30px;
    text-align:center;
}

.product-image img{
    max-width:100%;
    height:220px;
    object-fit:contain;
}

.product-body{
    padding:25px;
}

.rating{
    color:#ff9800;
    font-weight:600;
    margin-bottom:10px;
}

.product-body h3{
    font-size:22px;
    margin-bottom:10px;
}

.description{
    color:#666;
    margin-bottom:20px;
    line-height:1.6;
}

.features{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:20px;
}

.features span{
    background:#eef4ff;
    color:#003399;
    padding:6px 12px;
    border-radius:20px;
    font-size:13px;
}

.price{
    font-size:28px;
    color:#003399;
    font-weight:700;
    margin-bottom:20px;
}

.amazon-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:100%;
    padding:15px 18px;
    background:#FF9900;
    color:#111;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.amazon-btn:hover{
    background:#f08b00;
}

.amazon-btn svg{
    transition:.3s;
}

.amazon-btn:hover svg{
    transform:translateX(4px);
}
/* Privacy & Policy Pages */

.policy-hero{
    background:linear-gradient(135deg,#003399,#0059b3);
    color:#fff;
    padding:80px 0;
    text-align:center;
}

.policy-hero h1{
    font-size:46px;
    margin:15px 0;
}

.policy-hero p{
    max-width:700px;
    margin:0 auto;
    line-height:1.8;
}

.last-updated{
    margin-top:20px;
    opacity:.9;
    font-size:15px;
}

.policy-content{
    padding:70px 0;
    background:#f7f9fc;
}

.policy-card{
    background:#fff;
    max-width:900px;
    margin:auto;
    padding:50px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.policy-card h2{
    color:#003399;
    margin-top:35px;
    margin-bottom:15px;
    font-size:28px;
}

.policy-card h2:first-child{
    margin-top:0;
}

.policy-card p{
    line-height:1.9;
    color:#555;
    margin-bottom:18px;
}

.policy-card ul{
    padding-left:22px;
    margin-bottom:20px;
}

.policy-card li{
    margin-bottom:10px;
    line-height:1.8;
}

.policy-card a{
    color:#0057B8;
    text-decoration:none;
}

.policy-card a:hover{
    text-decoration:underline;
}

@media(max-width:768px){

    .policy-card{
        padding:30px;
    }

    .policy-hero h1{
        font-size:34px;
    }

}

/* ==========================================
   HERO BANNER
========================================== */

.hero-banner{
    width:100%;
    margin-bottom:80px;
    overflow:hidden;
}

.hero-banner img{
    width:100%;
    display:block;
    object-fit:cover;
}

/* ==========================================
   FEATURED PRODUCTS
========================================== */

.featured-products{
    padding-bottom:90px;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#0057B8;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-title h2{
    font-size:42px;
    color:#222;
    margin:15px 0;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.product-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.product-card:hover{
    transform:translateY(-8px);
}

.product-image{
    padding:25px;
    text-align:center;
}

.product-image img{
    max-width:100%;
    height:220px;
    object-fit:contain;
}

.product-content{
    padding:25px;
}

.series{
    display:inline-block;
    background:#eef5ff;
    color:#0057B8;
    padding:6px 12px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:12px;
}

.product-content h3{
    font-size:22px;
    margin-bottom:12px;
    color:#222;
}

.rating{
    color:#ff9800;
    font-weight:600;
    margin-bottom:15px;
}

.product-content p{
    color:#666;
    line-height:1.7;
}

.feature-tags{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin:20px 0;
}

.feature-tags span{
    background:#f3f7ff;
    color:#0057B8;
    padding:7px 12px;
    border-radius:20px;
    font-size:13px;
}

.product-bottom{
    margin-top:25px;
}

.price{
    font-size:30px;
    color:#0057B8;
    font-weight:700;
    margin-bottom:18px;
}

.amazon-btn{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    width:100%;
    background:#FF9900;
    color:#111;
    padding:14px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.amazon-btn:hover{
    background:#f08b00;
}

.amazon-btn img{
    width:22px;
}

@media(max-width:768px){

.section-title h2{
    font-size:34px;
}

.product-grid{
    grid-template-columns:1fr;
}

}

/* ==========================================
   WHY CHOOSE US
========================================== */

.why-choose{
    padding:90px 0;
    background:#f8fbff;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-top:50px;
}

.why-card{
    background:#fff;
    padding:35px 30px;
    border-radius:14px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-8px);
}

.why-icon{
    font-size:50px;
    margin-bottom:20px;
}

.why-card h3{
    margin-bottom:15px;
    color:#222;
}

.why-card p{
    color:#666;
    line-height:1.8;
}

/* ==========================================
   AFFILIATE DISCLOSURE
========================================== */

.affiliate-disclosure{
    padding:80px 0;
}

.affiliate-box{
    background:#fff8e8;
    border-left:6px solid #FF9900;
    padding:45px;
    border-radius:10px;
}

.affiliate-box h2{
    color:#222;
    margin-bottom:20px;
}

.affiliate-box p{
    color:#555;
    line-height:1.9;
    margin-bottom:18px;
}

/* ==========================================
   CTA SECTION
========================================== */

.cta-section{
    padding:90px 0;
}

.cta-box{
    background:linear-gradient(135deg,#0057B8,#003E87);
    color:#fff;
    text-align:center;
    padding:70px 40px;
    border-radius:18px;
}

.cta-box h2{
    font-size:42px;
    margin-bottom:20px;
}

.cta-box p{
    max-width:700px;
    margin:0 auto 35px;
    line-height:1.8;
    opacity:.95;
}

.cta-box .btn-primary{
    display:inline-block;
    background:#FF9900;
    color:#111;
    padding:16px 35px;
    border-radius:8px;
    font-weight:600;
    text-decoration:none;
}

.cta-box .btn-primary:hover{
    background:#f08b00;
}

@media(max-width:768px){

    .cta-box h2{
        font-size:30px;
    }

    .affiliate-box{
        padding:30px;
    }

}

/* ==========================================
                FAQ SECTION
========================================== */

.faq-section{
    padding:90px 0;
    background:#f8fbff;
}

.faq-container{
    max-width:900px;
    margin:50px auto 0;
}

.faq-item{
    background:#fff;
    border-radius:10px;
    margin-bottom:18px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    overflow:hidden;
}

.faq-question{
    width:100%;
    border:none;
    background:#fff;
    cursor:pointer;
    padding:22px 30px;
    font-size:18px;
    font-weight:600;
    display:flex;
    justify-content:space-between;
    align-items:center;
    text-align:left;
}

.faq-question span{
    font-size:28px;
    color:#0057B8;
    transition:.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
}

.faq-answer p{
    padding:0 30px 25px;
    color:#666;
    line-height:1.8;
}

.faq-item.active .faq-answer{
    max-height:220px;
}

.faq-item.active .faq-question span{
    transform:rotate(45deg);
}

@media(max-width:768px){

    .faq-question{
        font-size:16px;
        padding:18px 20px;
    }

    .faq-answer p{
        padding:0 20px 20px;
    }

}

/* ==========================================
            CONTACT PAGE
========================================== */

.contact-section{
    padding:90px 0;
    background:#f8fbff;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.contact-info,
.contact-form{
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.contact-info h2,
.contact-form h2{
    margin-bottom:20px;
    color:#222;
}

.contact-info p{
    line-height:1.8;
    color:#666;
}

.info-box{
    display:flex;
    gap:18px;
    margin:30px 0;
    align-items:flex-start;
}

.info-icon{
    width:55px;
    height:55px;
    background:#0057B8;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:24px;
    flex-shrink:0;
}

.info-box h3{
    margin-bottom:8px;
    color:#222;
}

.info-box a{
    color:#0057B8;
    text-decoration:none;
}

.info-box a:hover{
    text-decoration:underline;
}

.contact-note{
    margin-top:40px;
    background:#eef5ff;
    border-left:5px solid #0057B8;
    padding:18px;
    border-radius:8px;
    line-height:1.8;
    color:#555;
}

/* Form */

.form-group{
    margin-bottom:22px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:14px 16px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:15px;
    transition:.3s;
    font-family:inherit;
}

.form-group input:focus,
.form-group textarea:focus{
    outline:none;
    border-color:#0057B8;
    box-shadow:0 0 0 3px rgba(0,87,184,.15);
}

.submit-btn{
    width:100%;
    padding:16px;
    background:#0057B8;
    color:#fff;
    border:none;
    border-radius:8px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.submit-btn:hover{
    background:#00428a;
}

#form-message{
    margin-top:20px;
}

.success-message{
    background:#e8f9ef;
    border:1px solid #9ad5b2;
    color:#177245;
    padding:16px 20px;
    border-radius:8px;
    line-height:1.8;
    font-weight:600;
}

.error-message{
    background:#fff0f0;
    border:1px solid #ffb2b2;
    color:#c62828;
    padding:16px 20px;
    border-radius:8px;
    line-height:1.8;
    font-weight:600;
}

@media(max-width:900px){

    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .contact-info,
    .contact-form{
        padding:30px;
    }

}

/* ==========================================
                ABOUT PAGE
========================================== */

.about-section{
    padding:90px 0;
}

.about-wrapper{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:60px;
    align-items:center;
}

.about-content h2{
    font-size:38px;
    margin-bottom:25px;
    color:#222;
}

.about-content p{
    line-height:1.9;
    color:#666;
    margin-bottom:22px;
}

.about-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 12px 30px rgba(0,0,0,.1);
}

.mission-section{
    padding:90px 0;
}

.mission-box{
    max-width:900px;
    margin:auto;
    text-align:center;
    background:linear-gradient(135deg,#0057B8,#003E87);
    color:#fff;
    padding:60px;
    border-radius:16px;
}

.mission-box h2{
    margin-bottom:20px;
    font-size:38px;
}

.mission-box p{
    line-height:1.9;
    opacity:.95;
}

@media(max-width:900px){

    .about-wrapper{
        grid-template-columns:1fr;
    }

    .about-image{
        order:-1;
    }

    .mission-box{
        padding:40px 25px;
    }

    .mission-box h2{
        font-size:30px;
    }

}