/**
 * Asel Wellness — Premium Modern Green Stylesheet
 */

:root {
    --primary: #00843D;
    --primary-dark: #005C2B;
    --primary-emerald: #059669;
    --primary-light: #ECFDF5;
    --primary-mint: #D1FAE5;
    --primary-accent: #10B981;
    --primary-hover: #007234;
    
    --bg-main: #F0FDF4;
    --bg-card: #FFFFFF;
    --bg-card-mint: #ECFDF5;
    
    --text-main: #064E3B;
    --text-dark: #022C22;
    --text-muted: #4B5563;
    --border: #A7F3D0;
    --border-light: #D1FAE5;
    
    --whatsapp-color: #25D366;
    --whatsapp-dark: #128C7E;
    
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --shadow-soft: 0 10px 30px rgba(5, 150, 105, 0.08);
    --shadow-hover: 0 20px 45px rgba(0, 132, 61, 0.16);
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Typography & Utilities ─────────────────────── */
h1, h2, h3, h4, h5 {
    color: var(--text-dark);
    letter-spacing: -0.5px;
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: #D1FAE5;
    color: #005C2B;
    border: 1px solid #A7F3D0;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
}

.section-title {
    font-size: 38px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 48px;
}

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

/* ─── Buttons ────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #00843D 0%, #059669 100%);
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(0, 132, 61, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #005C2B 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 132, 61, 0.35);
}

.btn-secondary {
    background: #FFFFFF;
    color: #005C2B;
    border: 1.5px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary-dark);
    background: var(--primary-light);
}

.btn-whatsapp {
    background: var(--whatsapp-color);
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

/* ─── Header ─────────────────────────────────────── */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(167, 243, 208, 0.6);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 132, 61, 0.04);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 92px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    text-decoration: none;
}

.brand-logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #00843D 0%, #059669 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(0, 132, 61, 0.25);
    flex-shrink: 0;
}

.brand-logo-text h1 {
    font-size: 20px;
    font-weight: 800;
    color: #022C22;
    line-height: 1.1;
}

.brand-logo-text p {
    font-size: 10.5px;
    color: #00843D;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #F0FDF4;
    padding: 8px 12px;
    border-radius: 9999px;
    border: 1.5px solid #A7F3D0;
    box-shadow: 0 4px 15px rgba(0, 132, 61, 0.05);
}

.nav-link {
    font-size: 15.5px;
    font-weight: 700;
    color: #064E3B;
    padding: 11px 22px;
    border-radius: 9999px;
    white-space: nowrap;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.nav-link:hover {
    color: #005C2B;
    background: #D1FAE5;
    transform: translateY(-1px);
}

.nav-link.active {
    color: #FFFFFF;
    background: linear-gradient(135deg, #00843D 0%, #059669 100%);
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(0, 132, 61, 0.3);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-actions .btn-whatsapp {
    border-radius: 9999px;
    padding: 12px 26px;
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
}

.nav-toggle-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
}

/* ─── Hero Section ───────────────────────────────── */
.hero-section {
    padding: 80px 0 70px;
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 50%, #E6F7ED 100%);
    border-bottom: 1.5px solid var(--border);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 46px;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.18;
    margin-bottom: 18px;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image-box {
    position: relative;
}

.hero-card-preview {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 132, 61, 0.2);
    border: 4px solid #FFFFFF;
}

.hero-card-preview img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.hero-badge-float {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #FFFFFF;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 12px 30px rgba(0, 132, 61, 0.15);
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1.5px solid var(--border);
}

.hero-badge-icon {
    width: 44px;
    height: 44px;
    background: #D1FAE5;
    color: #005C2B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-badge-text h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-dark);
}

.hero-badge-text p {
    font-size: 12px;
    color: var(--text-muted);
}

/* ─── Trust Section ──────────────────────────────── */
.trust-section {
    padding: 60px 0;
    background: var(--bg-main);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.trust-card {
    background: #FFFFFF;
    border: 1.5px solid var(--border);
    padding: 26px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-accent);
    box-shadow: var(--shadow-hover);
    background: #ECFDF5;
}

.trust-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #00843D 0%, #10B981 100%);
    color: #FFFFFF;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(0, 132, 61, 0.2);
}

.trust-info h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.trust-info p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ─── Products Section ───────────────────────────── */
.products-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #F0FDF4 0%, #E6F7ED 100%);
}

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

.product-card {
    background: #FFFFFF;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-accent);
    box-shadow: 0 20px 40px rgba(0, 132, 61, 0.16);
}

.product-thumb {
    position: relative;
    height: 220px;
    background: #ECFDF5;
    overflow: hidden;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 14px;
    transition: transform 0.4s ease;
}

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

.product-badge-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #00843D;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 10px rgba(0, 132, 61, 0.3);
}

.product-details {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.product-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex: 1;
    line-height: 1.5;
}

.product-footer {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ─── Story / About Section ──────────────────────── */
.about-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #02361D 0%, #005C2B 50%, #047857 100%);
    color: #FFFFFF;
}

.about-section .section-tag {
    background: rgba(255, 255, 255, 0.15);
    color: #A7F3D0;
    border-color: rgba(167, 243, 208, 0.3);
}

.about-section .section-title {
    color: #FFFFFF;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-img-box img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #E6F7ED;
    margin-bottom: 24px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(167, 243, 208, 0.3);
    padding: 20px;
    border-radius: 16px;
    text-align: center;
}

.stat-item h3 {
    color: #A7F3D0;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 4px;
}

.stat-item p {
    color: #ECFDF5;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ─── Consulting Section ─────────────────────────── */
.consulting-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #E6F7ED 0%, #F0FDF4 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 36px 28px;
    border: 1.5px solid #A7F3D0;
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-accent);
}

.service-icon {
    width: 60px;
    height: 64px;
    background: linear-gradient(135deg, #00843D 0%, #10B981 100%);
    color: #FFFFFF;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 6px 16px rgba(0, 132, 61, 0.2);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* ─── Business Partner CTA Section ───────────────── */
.partner-section {
    padding: 80px 0;
    background: var(--bg-main);
}

.partner-card-banner {
    background: linear-gradient(135deg, #02361D 0%, #005C2B 50%, #059669 100%);
    border-radius: 28px;
    padding: 60px 40px;
    color: #FFFFFF;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 132, 61, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.partner-card-banner h2 {
    color: #FFFFFF;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 14px;
}

.partner-card-banner p {
    font-size: 18px;
    color: #ECFDF5;
    max-width: 650px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

/* ─── Footer ─────────────────────────────────────── */
.footer {
    background: #022C22;
    color: #E6F7ED;
    padding: 70px 0 30px;
    border-top: 3px solid #00843D;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand h2 {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}

.footer-brand p {
    color: #A7F3D0;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-title {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #E6F7ED;
}

.footer-links a:hover {
    color: #A7F3D0;
}

.footer-disclaimer {
    font-size: 12px;
    opacity: 0.85;
    margin-top: 12px;
    margin-bottom: 24px;
}

.footer-bottom {
    border-top: 1px solid rgba(167, 243, 208, 0.2);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    color: #A7F3D0;
}

/* ─── Business Partner CTA Section ───────────────── */
.partner-section {
    padding: 70px 0;
}

.partner-card-banner {
    background: linear-gradient(135deg, #00843D 0%, #006B32 100%);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    color: #FFFFFF;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partner-card-banner h2 {
    color: #FFFFFF;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
}

.partner-card-banner p {
    font-size: 17px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 32px;
}

/* ─── Footer ─────────────────────────────────────── */
.footer {
    background: #0B1912;
    color: #A3B8AC;
    padding: 70px 0 30px;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand h2 {
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}

.footer-disclaimer {
    margin-top: 16px;
    font-size: 12px;
    color: #6C8276;
    line-height: 1.6;
}

.footer-title {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: #00FF75;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: background 0.25s ease;
}

.social-icon-btn:hover {
    background: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    color: #6C8276;
}

/* ─── Sticky Mobile Action Bar ───────────────────── */
.sticky-action-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    padding: 10px 16px;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.sticky-action-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* ─── Responsive Mobile Styles ────────────────────────── */
@media (max-width: 992px) {
    .header-inner {
        height: 76px;
    }
    
    .brand-logo img {
        height: 46px !important;
        max-width: 180px !important;
    }

    .nav-toggle-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: #ECFDF5;
        border: 1.5px solid #A7F3D0;
        border-radius: 12px;
        color: #005C2B;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .nav-toggle-btn:hover {
        background: #D1FAE5;
        border-color: #00843D;
    }

    .main-nav {
        display: none !important;
    }

    .main-nav.show {
        display: flex !important;
        flex-direction: column !important;
        position: absolute;
        top: 76px;
        left: 16px;
        right: 16px;
        background: #FFFFFF !important;
        padding: 16px !important;
        border-radius: 20px !important;
        border: 2px solid #A7F3D0 !important;
        box-shadow: 0 20px 45px rgba(0, 132, 61, 0.2) !important;
        gap: 6px !important;
        z-index: 1001;
    }

    .main-nav.show .nav-link {
        width: 100% !important;
        text-align: center !important;
        font-size: 16px !important;
        padding: 12px 16px !important;
        border-radius: 12px !important;
        display: block !important;
    }

    .hero-grid, .about-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }

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

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

    .hero-actions {
        justify-content: center;
    }

    .trust-grid, .services-grid, .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sticky-action-bar {
        display: block;
    }
    
    body {
        padding-bottom: 70px;
    }
}

@media (max-width: 576px) {
    .header-actions .btn-whatsapp span {
        display: none;
    }
    
    .header-actions .btn-whatsapp {
        padding: 10px 12px !important;
        border-radius: 50% !important;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .brand-logo img {
        height: 40px !important;
        max-width: 150px !important;
    }
}

@media (max-width: 360px) {
    .header-actions {
        gap: 6px !important;
    }
}
