@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7fff8;
    color:#222;
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

.container{
    width:100%;
    max-width:1400px;
    margin:auto;
}

/* =========================
   PREMIUM HERO SECTION
========================= */

.hero{
    position:relative;
    padding:120px 20px 80px;
    background:linear-gradient(135deg,#f7fdf9,#ffffff);
    overflow:hidden;
    font-family:'Segoe UI', sans-serif;
}

/* OVERLAY */
.hero-overlay{
    position:absolute;
    inset:0;
    background:radial-gradient(circle at top left, rgba(34,197,94,0.08), transparent 50%);
}

/* BLUR EFFECTS */
.hero-blur{
    position:absolute;
    width:300px;
    height:300px;
    filter:blur(80px);
    opacity:0.4;
    z-index:0;
}

.blur-1{
    background:#22c55e;
    top:-50px;
    left:-50px;
}

.blur-2{
    background:#0d6efd;
    bottom:-80px;
    right:-80px;
}

/* WRAPPER */
.hero-wrapper{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    align-items:center;
    gap:60px;
    position:relative;
    z-index:1;
}

/* BADGE */
.hero-badge{
    display:inline-block;
    background:rgba(34,197,94,0.1);
    color:#16a34a;
    padding:8px 14px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;
}

/* TITLE */
.hero-content h1{
    font-size:52px;
    font-weight:800;
    color:#0f172a;
    line-height:1.2;
    margin-bottom:15px;
}

/* PARAGRAPH */
.hero-content p{
    color:#64748b;
    font-size:16px;
    line-height:1.8;
    margin-bottom:20px;
    max-width:550px;
}

/* FEATURES */
.hero-features{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:25px;
}

.hero-feature{
    background:#fff;
    padding:8px 12px;
    border-radius:20px;
    font-size:13px;
    color:#0f172a;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

/* BUTTONS */
.hero-buttons{
    display:flex;
    gap:15px;
    margin-bottom:25px;
}

.hero-buttons .btn{
    padding:12px 18px;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.hero-buttons .btn{
    background:#16a34a;
    color:#fff;
}

.hero-buttons .btn:hover{
    background:#15803d;
}

.btn-outline{
    background:transparent !important;
    border:2px solid #16a34a;
    color:#16a34a !important;
}

/* TRUST */
.hero-trust{
    display:flex;
    gap:20px;
    font-size:13px;
    color:#475569;
}

/* IMAGE SECTION */
.hero-image{
    position:relative;
    text-align:center;
}

.hero-image img{
    width:100%;
    max-width:420px;
    border-radius:20px;
    box-shadow:0 20px 60px rgba(0,0,0,0.15);
}

/* FLOATING CARDS */
.floating-card{
    position:absolute;
    background:#fff;
    padding:10px 14px;
    border-radius:12px;
    font-size:12px;
    font-weight:600;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.card-1{
    top:20px;
    left:0;
}

.card-2{
    bottom:30px;
    right:0;
}

/* RESPONSIVE */
@media(max-width:768px){
    .hero-wrapper{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-content h1{
        font-size:34px;
    }

    .hero-buttons{
        justify-content:center;
        flex-direction:column;
    }

    .hero-trust{
        justify-content:center;
        flex-direction:column;
    }
}


/* =========================
   WHY CHOOSE US SECTION
========================= */

.why-section{
    position:relative;
    padding:40px 20px;
    background:linear-gradient(180deg,#ffffff,#f8fafc);
    font-family:'Segoe UI', sans-serif;
    overflow:hidden;
}

/* BACKGROUND GLOW */
.why-bg-circle{
    position:absolute;
    width:400px;
    height:400px;
    background:radial-gradient(circle, rgba(34,197,94,0.15), transparent 70%);
    top:-120px;
    right:-120px;
    filter:blur(40px);
}

/* SECTION TITLE */
.section-title{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
}

.section-badge{
    display:inline-block;
    background:rgba(34,197,94,0.12);
    color:#16a34a;
    padding:8px 14px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
    margin-bottom:12px;
}

.section-title h2{
    font-size:40px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:12px;
    line-height:1.2;
}

.section-title p{
    font-size:15px;
    color:#64748b;
    line-height:1.8;
}

/* GRID */
.card-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:25px;
    max-width:1100px;
    margin:auto;
}

/* CARD */
.card{
    background:#fff;
    border-radius:18px;
    padding:25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    border:1px solid #f1f5f9;
    transition:0.3s ease;
    position:relative;
    overflow:hidden;
}

/* HOVER EFFECT */
.card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,0.12);
}

/* ICON */
.card-icon{
    font-size:32px;
    margin-bottom:12px;
    display:inline-block;
    background:rgba(34,197,94,0.1);
    padding:12px;
    border-radius:14px;
}

/* TITLE */
.card h3{
    font-size:18px;
    font-weight:700;
    margin-bottom:10px;
    color:#0f172a;
}

/* TEXT */
.card p{
    font-size:13px;
    color:#64748b;
    line-height:1.6;
}

/* RESPONSIVE */
@media(max-width:768px){
    .section-title h2{
        font-size:28px;
    }
}

/* =========================
   ABOUT SECTION PREMIUM UI
========================= */

.about-section{
    position:relative;
    padding:40px 20px;
    background:linear-gradient(180deg,#f8fafc,#ffffff);
    font-family:'Segoe UI', sans-serif;
    overflow:hidden;
}

/* BACKGROUND SHAPE */
.about-bg-shape{
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(circle, rgba(34,197,94,0.12), transparent 70%);
    top:-150px;
    left:-150px;
    filter:blur(50px);
}

/* WRAPPER */
.about-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    max-width:1100px;
    margin:auto;
}

/* IMAGE SIDE */
.about-image{
    position:relative;
    text-align:center;
}

.about-image-box img{
    width:100%;
    max-width:420px;
    border-radius:20px;
    box-shadow:0 20px 60px rgba(0,0,0,0.12);
    transition:0.4s;
}

.about-image-box img:hover{
    transform:scale(1.05);
}

/* EXPERIENCE CARD */
.experience-card{
    position:absolute;
    bottom:20px;
    right:20px;
    background:#fff;
    padding:15px 18px;
    border-radius:16px;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
    text-align:center;
}

.experience-card h3{
    font-size:28px;
    font-weight:800;
    color:#16a34a;
}

.experience-card p{
    font-size:12px;
    color:#64748b;
}

/* CONTENT */
.about-badge{
    display:inline-block;
    background:rgba(34,197,94,0.12);
    color:#16a34a;
    padding:8px 14px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
    margin-bottom:12px;
}

.about-content h2{
    font-size:40px;
    font-weight:800;
    color:#0f172a;
    line-height:1.2;
    margin-bottom:15px;
}

.about-content p{
    color:#64748b;
    line-height:1.8;
    margin-bottom:25px;
    font-size:15px;
}

/* FEATURE LIST */
.about-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

/* ITEM */
.about-item{
    display:flex;
    gap:12px;
    align-items:flex-start;
    background:#fff;
    padding:15px;
    border-radius:14px;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
    border:1px solid #f1f5f9;
    transition:0.3s;
}

.about-item:hover{
    transform:translateY(-5px);
}

/* ICON */
.about-icon{
    width:32px;
    height:32px;
    background:rgba(34,197,94,0.1);
    color:#16a34a;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    font-weight:700;
}

/* TEXT */
.about-item h4{
    font-size:15px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:5px;
}

.about-item p{
    font-size:13px;
    color:#64748b;
    margin:0;
}

/* RESPONSIVE */
@media(max-width:768px){
    .about-wrapper{
        grid-template-columns:1fr;
        text-align:center;
    }

    .experience-card{
        position:static;
        margin-top:15px;
    }

    .about-content h2{
        font-size:28px;
    }
}


/* =========================
   PREMIUM PRODUCTS SECTION
========================= */

.products-section{
    position:relative;
    padding:40px 20px;
    background:linear-gradient(180deg,#f8fafc,#ffffff);
    font-family:'Segoe UI', sans-serif;
    overflow:hidden;
}

/* BACKGROUND EFFECT */
.products-bg{
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(circle, rgba(34,197,94,0.12), transparent 70%);
    top:-120px;
    right:-120px;
    filter:blur(60px);
}

/* TITLE */
.section-title{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
}

.section-badge{
    display:inline-block;
    background:rgba(34,197,94,0.12);
    color:#16a34a;
    padding:8px 14px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
    margin-bottom:12px;
}

.section-title h2{
    font-size:42px;
    font-weight:800;
    color:#0f172a;
    line-height:1.2;
    margin-bottom:10px;
}

.section-title p{
    font-size:15px;
    color:#64748b;
    line-height:1.8;
}

/* GRID */
.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
    max-width:1200px;
    margin:auto;
}

/* CARD */
.product-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    border:1px solid #f1f5f9;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    transition:0.4s ease;
    position:relative;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

/* IMAGE */
.product-image{
    position:relative;
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:230px;
    object-fit:cover;
    transition:0.5s ease;
}

.product-card:hover .product-image img{
    transform:scale(1.08);
}

/* TAG */
.product-tag{
    position:absolute;
    top:12px;
    left:12px;
    background:linear-gradient(135deg,#22c55e,#16a34a);
    color:#fff;
    padding:6px 12px;
    border-radius:20px;
    font-size:11px;
    font-weight:600;
    box-shadow:0 5px 15px rgba(34,197,94,0.3);
}

/* CONTENT */
.product-content{
    padding:18px;
}

/* CATEGORY */
.product-category{
    font-size:11px;
    font-weight:600;
    color:#16a34a;
    text-transform:uppercase;
    letter-spacing:0.8px;
}

/* TITLE */
.product-content h3{
    font-size:18px;
    font-weight:700;
    color:#0f172a;
    margin:8px 0;
}

/* DESCRIPTION */
.product-content p{
    font-size:13px;
    color:#64748b;
    line-height:1.6;
    margin-bottom:12px;
}

/* BOTTOM */
.product-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:10px;
}

/* PRICE */
.product-price{
    font-size:18px;
    font-weight:700;
    color:#16a34a;
}

.product-price span{
    font-size:12px;
    color:#94a3b8;
}

/* BUTTON */
.small-btn{
    background:linear-gradient(135deg,#0d6efd,#2563eb);
    color:#fff;
    padding:8px 12px;
    border-radius:10px;
    text-decoration:none;
    font-size:12px;
    font-weight:600;
    transition:0.3s ease;
}

.small-btn:hover{
    transform:scale(1.05);
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
}

/* EMPTY */
.no-products{
    text-align:center;
    padding:40px;
    color:#94a3b8;
}

/* RESPONSIVE */
@media(max-width:768px){
    .section-title h2{
        font-size:28px;
    }

    .product-image img{
        height:200px;
    }
}

/* =========================
   BENEFIT SECTION PREMIUM UI
========================= */

.benefit-section{
    position:relative;
    padding:40px 20px;
    background:linear-gradient(180deg,#ffffff,#f8fafc);
    font-family:'Segoe UI', sans-serif;
    overflow:hidden;
}

/* BACKGROUND GLOW */
.benefit-bg{
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(circle, rgba(34,197,94,0.12), transparent 70%);
    bottom:-120px;
    left:-120px;
    filter:blur(60px);
}

/* WRAPPER */
.benefit-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    max-width:1100px;
    margin:auto;
}

/* IMAGE */
.benefit-image{
    position:relative;
    text-align:center;
}

.benefit-image-box img{
    width:100%;
    max-width:420px;
    border-radius:20px;
    box-shadow:0 20px 60px rgba(0,0,0,0.12);
    transition:0.4s ease;
}

.benefit-image-box img:hover{
    transform:scale(1.05);
}

/* FLOATING CARD */
.benefit-card{
    position:absolute;
    bottom:20px;
    right:20px;
    background:#fff;
    padding:16px;
    border-radius:16px;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
    max-width:220px;
}

.benefit-card h3{
    font-size:16px;
    font-weight:700;
    color:#16a34a;
    margin-bottom:5px;
}

.benefit-card p{
    font-size:12px;
    color:#64748b;
    line-height:1.5;
}

/* CONTENT */
.benefit-badge{
    display:inline-block;
    background:rgba(34,197,94,0.12);
    color:#16a34a;
    padding:8px 14px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
    margin-bottom:12px;
}

.benefit-content h2{
    font-size:40px;
    font-weight:800;
    color:#0f172a;
    line-height:1.2;
    margin-bottom:15px;
}

.benefit-content p{
    font-size:15px;
    color:#64748b;
    line-height:1.8;
    margin-bottom:25px;
}

/* LIST GRID */
.benefit-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

/* ITEM */
.benefit-item{
    display:flex;
    gap:12px;
    align-items:flex-start;
    background:#fff;
    padding:14px;
    border-radius:14px;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
    border:1px solid #f1f5f9;
    transition:0.3s;
}

.benefit-item:hover{
    transform:translateY(-5px);
}

/* ICON */
.benefit-icon{
    width:32px;
    height:32px;
    background:rgba(34,197,94,0.1);
    color:#16a34a;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    font-weight:700;
}

/* TEXT */
.benefit-item h4{
    font-size:14px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:5px;
}

.benefit-item p{
    font-size:12px;
    color:#64748b;
    margin:0;
    line-height:1.5;
}

/* RESPONSIVE */
@media(max-width:768px){
    .benefit-wrapper{
        grid-template-columns:1fr;
        text-align:center;
    }

    .benefit-list{
        grid-template-columns:1fr;
    }

    .benefit-content h2{
        font-size:28px;
    }

    .benefit-card{
        position:static;
        margin-top:15px;
        display:inline-block;
    }
}
/* =========================
   PREMIUM COUNTER SECTION
========================= */

.counter-section{
    position:relative;
    padding:90px 20px;
    background:linear-gradient(135deg,#0f172a,#1e293b);
    font-family:'Segoe UI', sans-serif;
    overflow:hidden;
    color:#fff;
}

/* OVERLAY GLOW */
.counter-overlay{
    position:absolute;
    inset:0;
    background:radial-gradient(circle at top left, rgba(34,197,94,0.25), transparent 50%),
               radial-gradient(circle at bottom right, rgba(13,110,253,0.25), transparent 50%);
}

/* GRID */
.counter-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:25px;
    position:relative;
    z-index:1;
    max-width:1100px;
    margin:auto;
}

/* BOX */
.counter-box{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.15);
    border-radius:18px;
    padding:30px 20px;
    text-align:center;
    transition:0.4s ease;
    box-shadow:0 10px 30px rgba(0,0,0,0.25);
}

/* HOVER */
.counter-box:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,0.12);
}

/* ICON */
.counter-icon{
    font-size:30px;
    margin-bottom:10px;
    display:inline-block;
    background:rgba(34,197,94,0.15);
    padding:10px;
    border-radius:12px;
}

/* NUMBER */
.counter-box h2{
    font-size:34px;
    font-weight:800;
    margin:10px 0;
    color:#ffffff;
}

/* TEXT */
.counter-box p{
    font-size:13px;
    color:#cbd5e1;
    margin:0;
}

/* RESPONSIVE */
@media(max-width:768px){
    .counter-box h2{
        font-size:28px;
    }
}

/* ===============================
   TESTIMONIAL SECTION
=============================== */
.testimonials-section{
    padding:40px 20px;
    background:linear-gradient(180deg,#f8fafc,#ffffff);
    position:relative;
    font-family:'Segoe UI', sans-serif;
}

/* BACKGROUND */
.testimonial-bg{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:radial-gradient(circle at 20% 20%, rgba(34,197,94,0.08), transparent 40%),
               radial-gradient(circle at 80% 70%, rgba(13,110,253,0.08), transparent 40%);
    z-index:0;
}

/* TITLE */
.section-title{
    text-align:center;
    margin-bottom:50px;
    position:relative;
    z-index:1;
}

.section-badge{
    display:inline-block;
    padding:6px 14px;
    background:#16a34a;
    color:#fff;
    border-radius:20px;
    font-size:12px;
    font-weight:600;
    margin-bottom:10px;
}

.section-title h2{
    font-size:38px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:10px;
}

.section-title p{
    max-width:650px;
    margin:auto;
    color:#64748b;
    line-height:1.6;
}

/* GRID */
.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    position:relative;
    z-index:1;
}

/* CARD */
.testimonial-card{
    background:#fff;
    padding:25px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    transition:0.3s ease;
    position:relative;
    border:1px solid #f1f5f9;
}

.testimonial-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

/* QUOTE */
.quote-icon{
    font-size:40px;
    color:#16a34a;
    opacity:0.3;
    margin-bottom:10px;
}

/* STARS */
.stars{
    color:#fbbf24;
    margin-bottom:10px;
}

/* TEXT */
.testimonial-card p{
    color:#64748b;
    font-size:14px;
    line-height:1.6;
    margin-bottom:20px;
}

/* USER */
.testimonial-user{
    display:flex;
    align-items:center;
    gap:12px;
}

.user-image{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#e2e8f0;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.testimonial-user h4{
    margin:0;
    font-size:15px;
    color:#0f172a;
}

.testimonial-user span{
    font-size:12px;
    color:#94a3b8;
}

/* ===============================
   FAQ SECTION
=============================== */
.faq-section{
    padding:40px 20px;
    background:linear-gradient(180deg,#ffffff,#f8fafc);
    position:relative;
    font-family:'Segoe UI', sans-serif;
}

/* background glow */
.faq-bg{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    background:radial-gradient(circle at 30% 20%, rgba(34,197,94,0.08), transparent 40%),
               radial-gradient(circle at 70% 70%, rgba(13,110,253,0.08), transparent 40%);
    z-index:0;
}

/* title reused */
.section-title{
    text-align:center;
    margin-bottom:50px;
    position:relative;
    z-index:1;
}

/* container */
.faq-container{
    max-width:800px;
    margin:auto;
    position:relative;
    z-index:1;
    display:flex;
    flex-direction:column;
    gap:15px;
}

/* item */
.faq-item{
    background:#fff;
    border-radius:14px;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    border:1px solid #eef2f7;
    overflow:hidden;
    transition:0.3s;
}

.faq-item:hover{
    transform:translateY(-3px);
}

/* question */
.faq-question{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 20px;
    cursor:pointer;
}

.faq-question h3{
    font-size:16px;
    font-weight:600;
    color:#0f172a;
    margin:0;
}

/* icon */
.faq-icon{
    width:28px;
    height:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#16a34a;
    color:#fff;
    font-size:18px;
    transition:0.3s;
}

/* answer */
.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:0.4s ease;
    padding:0 20px;
}

.faq-answer p{
    color:#64748b;
    font-size:14px;
    line-height:1.6;
    padding-bottom:15px;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer{
    max-height:200px;
}

.faq-item.active .faq-icon{
    transform:rotate(45deg);
    background:#0d6efd;
}

/* ===============================
   NEWSLETTER SECTION
=============================== */
.newsletter-section{
    padding:40px 20px;
    position:relative;
    background:linear-gradient(135deg,#f8fafc,#ffffff);
    font-family:'Segoe UI', sans-serif;
    overflow:hidden;
}

/* background glow */
.newsletter-bg{
    position:absolute;
    inset:0;
    background:radial-gradient(circle at 20% 30%, rgba(34,197,94,0.15), transparent 40%),
               radial-gradient(circle at 80% 70%, rgba(13,110,253,0.12), transparent 40%);
    z-index:0;
}

/* box */
.newsletter-box{
    position:relative;
    z-index:1;
    max-width:1000px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;

    padding:40px;
    border-radius:20px;

    background:rgba(255,255,255,0.7);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,0.4);
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

/* content */
.newsletter-content{
    flex:1;
}

.newsletter-badge{
    display:inline-block;
    padding:6px 14px;
    background:#16a34a;
    color:#fff;
    font-size:12px;
    font-weight:600;
    border-radius:20px;
    margin-bottom:10px;
}

.newsletter-content h2{
    font-size:34px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:10px;
}

.newsletter-content p{
    color:#64748b;
    line-height:1.6;
    font-size:14px;
}

/* form */
.newsletter-form{
    flex:1;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.input-group{
    display:flex;
    align-items:center;
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:12px;
    padding:10px 14px;
    box-shadow:0 5px 15px rgba(0,0,0,0.04);
}

.input-icon{
    margin-right:10px;
    color:#16a34a;
    font-size:16px;
}

.input-group input{
    width:100%;
    border:none;
    outline:none;
    font-size:14px;
    background:transparent;
}

/* button */
.newsletter-btn{
    background:linear-gradient(135deg,#16a34a,#22c55e);
    color:#fff;
    border:none;
    padding:12px;
    border-radius:12px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.newsletter-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(34,197,94,0.3);
}

/* responsive */
@media(max-width:768px){
    .newsletter-box{
        flex-direction:column;
        text-align:center;
    }

    .newsletter-form{
        width:100%;
    }
}

/* ===============================
   CONTACT SECTION
=============================== */
.contact-section{
    padding:40px 20px;
    background:linear-gradient(180deg,#f8fafc,#ffffff);
    position:relative;
    font-family:'Segoe UI', sans-serif;
}

/* background glow */
.contact-bg{
    position:absolute;
    inset:0;
    background:radial-gradient(circle at 20% 30%, rgba(34,197,94,0.12), transparent 40%),
               radial-gradient(circle at 80% 70%, rgba(13,110,253,0.10), transparent 40%);
    z-index:0;
}

/* title */
.section-title{
    text-align:center;
    margin-bottom:50px;
    position:relative;
    z-index:1;
}

.section-title h2{
    font-size:38px;
    font-weight:700;
    color:#0f172a;
    margin:10px 0;
}

.section-title p{
    max-width:650px;
    margin:auto;
    color:#64748b;
    line-height:1.6;
}

/* wrapper */
.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:30px;
    max-width:1100px;
    margin:auto;
    position:relative;
    z-index:1;
}

/* LEFT INFO */
.contact-info{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.contact-item{
    display:flex;
    gap:12px;
    background:#fff;
    padding:18px;
    border-radius:14px;
    border:1px solid #eef2f7;
    box-shadow:0 8px 20px rgba(0,0,0,0.05);
    transition:0.3s;
}

.contact-item:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(0,0,0,0.08);
}

.contact-icon{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#e9f9ef;
    border-radius:10px;
    font-size:18px;
}

/* RIGHT BOX */
.contact-box{
    background:#fff;
    padding:30px;
    border-radius:18px;
    border:1px solid #eef2f7;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.contact-form-top span{
    display:inline-block;
    background:#16a34a;
    color:#fff;
    font-size:12px;
    padding:5px 12px;
    border-radius:20px;
    font-weight:600;
}

.contact-form-top h3{
    margin-top:10px;
    font-size:22px;
    color:#0f172a;
}

/* FORM */
.contact-form{
    margin-top:20px;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.input-row{
    display:flex;
    gap:12px;
}

.input-group input,
.input-group textarea{
    width:100%;
    padding:12px 14px;
    border:1px solid #e2e8f0;
    border-radius:10px;
    outline:none;
    font-size:14px;
    transition:0.3s;
}

.input-group input:focus,
.input-group textarea:focus{
    border-color:#16a34a;
    box-shadow:0 0 0 3px rgba(34,197,94,0.15);
}

.contact-btn{
    background:linear-gradient(135deg,#16a34a,#22c55e);
    color:#fff;
    border:none;
    padding:12px;
    border-radius:12px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.contact-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(34,197,94,0.3);
}

/* RESPONSIVE */
@media(max-width:768px){
    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .input-row{
        flex-direction:column;
    }
}


/* =========================
   PREMIUM HEALTHCARE DESIGN
========================= */

.products-page{
    padding:70px 20px;
    background: linear-gradient(180deg, #f7fdf9 0%, #ffffff 100%);
    font-family: 'Segoe UI', sans-serif;
}

/* HEADER */
.products-header{
    text-align:center;
    margin-bottom:50px;
}

.products-header h1{
    font-size:42px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:10px;
    letter-spacing:-0.5px;
}

.products-header p{
    font-size:16px;
    color:#64748b;
    max-width:600px;
    margin:auto;
    line-height:1.6;
}

/* GRID */
.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

/* CARD */
.product-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    transition:all 0.3s ease;
    border:1px solid #f1f5f9;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

/* IMAGE */
.product-image{
    position:relative;
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:220px;
    object-fit:cover;
    transition:0.4s ease;
}

.product-card:hover .product-image img{
    transform:scale(1.08);
}

/* TAG */
.tag{
    position:absolute;
    top:12px;
    left:12px;
    background:linear-gradient(135deg,#22c55e,#16a34a);
    color:#fff;
    padding:6px 12px;
    border-radius:20px;
    font-size:11px;
    font-weight:600;
    box-shadow:0 5px 15px rgba(34,197,94,0.3);
}

/* CONTENT */
.product-content{
    padding:18px;
}

.category{
    font-size:11px;
    font-weight:600;
    color:#16a34a;
    text-transform:uppercase;
    letter-spacing:0.8px;
}

.product-content h3{
    font-size:18px;
    font-weight:700;
    margin:8px 0;
    color:#0f172a;
}

/* DESCRIPTION */
.product-content p{
    font-size:13px;
    color:#64748b;
    line-height:1.6;
    margin-bottom:12px;
}

/* PRICE */
.price{
    font-size:20px;
    font-weight:700;
    color:#16a34a;
    margin-bottom:12px;
}

.price small{
    font-size:12px;
    color:#94a3b8;
    font-weight:500;
}

/* BUTTON */
.btn{
    display:inline-block;
    width:100%;
    text-align:center;
    padding:10px 12px;
    background:linear-gradient(135deg,#0d6efd,#2563eb);
    color:#fff;
    border-radius:10px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:0.3s;
}

.btn:hover{
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    transform:scale(1.03);
}

/* EMPTY STATE */
.no-products{
    text-align:center;
    width:100%;
    padding:40px;
    color:#94a3b8;
}