/* CSS VARIABLES - COOL MODERN D2C THEME */
:root {
    --bg-color: #F8FAFC; 
    --card-bg: #FFFFFF;
    --text-dark: #0F172A; 
    --text-muted: #64748B;
    --accent-green: #10B981; 
    --accent-hover: #059669;
    --tag-bg: #ECFDF5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* GLASSMORPHISM NAVIGATION */
nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.8rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* LOGO STYLING */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-green);
}

/* PILL SHAPED BUTTONS */
.wa-btn, .btn-main {
    background-color: var(--accent-green);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
}

.wa-btn:hover, .btn-main:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

/* HERO SECTION */
header {
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.8)), 
                url('https://images.unsplash.com/photo-1625246333195-78d9c38ad449?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

header h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    max-width: 900px;
    letter-spacing: -1px;
    line-height: 1.1;
}

header p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
    opacity: 0.9;
    max-width: 600px;
}

.btn-outline {
    background-color: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    color: white;
    padding: 0.7rem 1.8rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.3);
    margin-left: 15px;
    transition: 0.3s;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.btn-outline:hover {
    background-color: white;
    color: var(--text-dark);
}

/* SECTIONS */
.section {
    padding: 100px 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.section-subtitle {
    color: var(--accent-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: block;
}

/* ABOUT SECTION REVISED */
.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.about-intro h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.about-intro p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
    width: 100%;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.founder-img {
    width: 140px;
    height: 140px;
    border-radius: 50%; 
    object-fit: cover; 
    margin-bottom: 20px;
    border: 4px solid var(--tag-bg);
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.15);
}

.team-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.role-tag {
    display: inline-block;
    background: var(--tag-bg);
    color: var(--accent-green);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin: 10px 0 15px 0;
}

/* 3 STEPS CARDS */
.steps-container {
    background-color: #0F172A;
    color: white;
    padding: 80px 5%;
    text-align: center;
    border-radius: 40px;
    margin: 0 2% 80px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.step-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px 30px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.step-number {
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255,255,255,0.03);
    position: absolute;
    top: -10px;
    right: 10px;
    line-height: 1;
}

.step-box h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    position: relative;
}

.step-box p {
    color: #94A3B8;
    font-size: 0.95rem;
    position: relative;
}

/* MODERN PRODUCT CARDS */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--card-bg);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.img-container {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: #f1f5f9;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255,255,255,0.9);
    color: var(--text-dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    backdrop-filter: blur(4px);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
    min-height: 44px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
}

.price-tag {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
}

.price-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

.btn-order-outline {
    display: block;
    width: 100%;
    background: transparent;
    text-align: center;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    text-decoration: none;
    padding: 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    font-family: inherit;
}

.btn-order-outline:hover {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
    color: white;
}

/* FEATURES (ICONS) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.feature-box {
    padding: 30px 20px;
    background: var(--card-bg);
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.02);
}

.icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--tag-bg);
    color: var(--accent-green);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transform: rotate(-5deg);
}

.feature-box h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* FOOTER */
footer {
    background-color: #f8fafc;
    padding: 80px 5% 40px;
    text-align: center;
    border-top: 1px solid #e2e8f0;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.footer-logo span { color: var(--accent-green); }

footer p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.contact-pill {
    display: inline-block;
    background: white;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    border: 1px solid #f1f5f9;
}

/* --- CART UI CSS --- */
.floating-cart {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--text-dark);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s;
}
.floating-cart:hover {
    transform: scale(1.05);
    background: var(--accent-green);
}

/* --- PROFESSIONAL CALL BUTTON CSS --- */
@keyframes pulse-blue {
    0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(59, 130, 246, 0); }
    100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

.floating-call {
    position: fixed;
    bottom: 115px; 
    right: 30px;
    background: #3B82F6; 
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4); 
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s, background 0.3s;
    text-decoration: none;
    animation: pulse-blue 2s infinite;
}
.floating-call:hover {
    transform: scale(1.05);
    background: #2563EB; 
    animation: none; 
}

.cart-count-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-green);
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.cart-modal {
    display: none; 
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    z-index: 2000;
}
.cart-content {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    width: 90%;
    max-width: 500px;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 15px;
}
.cart-header h3 { font-size: 1.5rem; }
.close-cart {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    background: none; border: none; font-weight: bold;
}
.cart-items-list {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
    padding-right: 10px;
}
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}
.cart-item-details {
    flex-grow: 1;
}
.cart-item-name { font-weight: 600; color: var(--text-dark); display: block; margin-bottom: 5px; }

.qty-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}
.qty-btn {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: var(--text-dark);
    width: 28px;
    height: 28px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}
.qty-btn:hover {
    background: #e2e8f0;
}
.cart-item-qty { 
    color: var(--text-dark); 
    font-size: 0.95rem; 
    min-width: 20px;
    text-align: center;
}
.cart-item-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.item-price-calc {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.remove-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: #ef4444;
    padding: 5px;
    transition: transform 0.2s;
}
.remove-btn:hover {
    transform: scale(1.15);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
    color: var(--text-dark);
}

.empty-cart-msg {
    text-align: center;
    color: var(--text-muted);
    padding: 20px 0;
    font-style: italic;
}

/* SVG ICONS HELPER */
.icon-svg {
    width: 28px;
    height: 28px;
}
.btn-icon-svg {
    width: 20px;
    height: 20px;
}

/* --- MOBILE NAVIGATION MENU --- */
.menu-toggle {
    display: none;
    cursor: pointer;
    color: var(--text-dark);
    transition: color 0.3s;
}

.menu-toggle:hover {
    color: var(--accent-green);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    header h1 { font-size: 2.8rem; }
    .about-intro h2 { font-size: 2rem; }
    .steps-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    
    /* Show Hamburger Menu */
    .menu-toggle {
        display: block; 
    }
    
    /* Format Nav Links as Dropdown */
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-top: 1px solid #f1f5f9;
        
        display: none; /* Hidden by default */
    }
    
    .nav-links.active {
        display: flex; /* Shown when toggled */
    }
    
    .nav-links a {
        padding: 18px 20px;
        text-align: center;
        border-bottom: 1px solid #f1f5f9;
        width: 100%;
        font-size: 1.1rem;
    }
    
    /* Shrink cart button slightly on smaller screens to fit menu */
    .wa-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
    .steps-container { margin: 0 0 50px; border-radius: 0; }
    
    /* Responsive Floating Buttons */
    .floating-cart { bottom: 20px; right: 20px; width: 60px; height: 60px; }
    .floating-call { bottom: 95px; right: 20px; width: 60px; height: 60px; }
    
    /* BULLETPROOF MOBILE BUTTON STACKING */
    .hero-actions {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
        gap: 15px !important;
    }
    
    .hero-actions .btn-main,
    .hero-actions .btn-outline {
        width: 100% !important;
        margin: 0 !important; 
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }
}