@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,700;0,800;0,900;1,700&display=swap');

:root {
    /* Premium Color Palette */
    --primary-dark: #072e1c;       /* Deep Forest */
    --primary-green: #0B4E2F;      /* Main Green */
    --accent-green: #2E8F4C;       /* Highlight Green */
    --accent-gold: #FFC107;        /* Premium Gold for Trust/Badges */
    --cta-green: #25D366;          /* WhatsApp Conversion Green */
    --cta-hover: #128C7E;
    
    /* Earth Tones */
    --earth-beige: #FAF7F1;
    --earth-soft: #F5EEE0;
    
    /* Text */
    --text-dark: #0A1910;
    --text-muted: #5A5A5A;
    --white: #FFFFFF;
    
    /* Utilities */
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 40px rgba(11, 78, 47, 0.12);
    --shadow-glow: 0 0 30px rgba(37, 211, 102, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);
    
    /* Animation Tokens */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --animate-pulse: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar (Glassmorphism) */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: var(--glass-border);
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-muted);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: var(--transition);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-dark);
}

.nav-cta {
    background: var(--primary-green);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
    background: var(--accent-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* Logo Ticker / Infinite Scroll */
.logo-ticker {
    padding: 60px 0;
    overflow: hidden;
    background: var(--white);
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo-ticker-inner {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: scroll 40s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 40px)); }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    color: var(--text-muted);
    font-size: 20px;
    opacity: 0.6;
    transition: var(--transition);
}

.ticker-item:hover {
    opacity: 1;
    color: var(--primary-green);
}

.ticker-item img {
    height: 40px;
    filter: grayscale(1);
}

.ticker-item:hover img {
    filter: grayscale(0);
}

/* Trust Shield Component */
.trust-shield {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(255,193,7,0.3);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.trust-shield:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255,193,7,0.1);
    border-color: var(--accent-gold);
}

.shield-icon {
    font-size: 48px;
}

.shield-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    margin-bottom: 4px;
    color: var(--primary-dark);
}

.shield-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* Credibility Section Spacing */
.credibility-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--white), var(--earth-beige));
}


/* Base Buttons */
.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(7, 46, 28, 0.2);
}

.btn-outline {
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
}

.btn-outline:hover {
    background: var(--earth-beige);
}

/* Sections */
.section {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.section-title h2 {
    font-size: 46px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.section-title p {
    font-size: 18px;
    color: var(--text-muted);
}

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

/* Standard Cards */
.card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--earth-beige);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 32px;
}

/* Product Cards */
.product-card {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.product-image {
    height: 280px;
    background: var(--earth-soft);
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-info {
    padding: 40px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--earth-beige);
    color: var(--primary-green);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
}

.product-info h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.product-info p {
    color: var(--text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

/* Hero Slider & Background Styles */
.hero-slider {
    width: 100%;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
    margin-top: 80px; /* Space for fixed nav */
}

.slide {
    width: 100%;
    height: 100%;
    min-height: 85vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(7, 46, 28, 0.8) 0%, rgba(7, 46, 28, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.slide .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
}

.hero-content h1 {
    font-size: 64px;
    margin-bottom: 24px;
    color: var(--white);
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

.landing-hero {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, rgba(7,46,28,0.95) 0%, rgba(11,78,47,0.85) 100%), var(--hero-url) center/cover;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 193, 7, 0.2);
    color: var(--accent-gold);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 24px;
    border: 1px solid rgba(255,193,7,0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.landing-hero h1 { font-size: 64px; margin-bottom: 24px; color: var(--white); line-height: 1.1; }
.landing-hero h1 span { color: var(--accent-gold); border-bottom: 8px solid rgba(255, 193, 7, 0.2); }
.landing-hero p { font-size: 20px; margin-bottom: 40px; opacity: 0.9; max-width: 700px; font-weight: 300; }

.trust-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 30px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 10;
    margin-top: -60px;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.05);
}

.trust-item {
    font-weight: 700;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.trust-icon {
    background: var(--earth-beige);
    color: var(--primary-green);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: var(--white);
    border-radius: 32px;
    padding: 48px 40px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.pricing-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-lg); }

.pricing-card.premium {
    background: var(--primary-dark);
    color: var(--white);
    border-color: var(--accent-gold);
    transform: scale(1.05);
}

.popular-tag {
    background: var(--accent-gold);
    color: var(--text-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

/* Footer Extension */
footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 100px 0 40px;
    position: relative;
}

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

.footer-logo {
    margin-bottom: 24px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1); /* Makes logo white for dark footer */
}

.footer-links h4 {
    margin-bottom: 28px;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    color: var(--accent-gold);
}

.footer-links a {
    display: block;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: rgba(255,255,255,0.4);
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .grid-3 { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-content h1 { font-size: 48px; }
    .hero-btns { justify-content: center; }
}

@media (max-width: 768px) {
    .grid-3 { grid-template-columns: 1fr; }
    
    /* Reveal Mobile Nav */
    .menu-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        box-shadow: -20px 0 60px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-cta { display: none; }
    
    .section-title h2 { font-size: 32px; }
    .hero-slider { min-height: 70vh; }
    .slide { min-height: 70vh; text-align: center; }
    .hero-content h1 { font-size: 36px; }
    .hero-content p { font-size: 16px; }
    
    .logo-ticker-inner { gap: 40px; }
    .ticker-item { font-size: 16px; }
}
