/* ========== EXTRACTED FROM HTML - COMPLETE CSS ========== */
:root {
    --primary-green: #2E8B57;
    --light-yellow: #FFF9C4;
    --white: #FFFFFF;
    --text-dark: #1e3a2a;
    --light-gray: #f4f7f4;
    --soft-beige: #f8f2e8;
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.02);
    --shadow-hover: 0 16px 28px rgba(46,139,87,0.1);
    --border-radius-card: 28px;
    --border-radius-btn: 60px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
body {
    color: var(--text-dark);
    line-height: 1.5;
    background: var(--white);
    position: relative;
}

/* Header & Navigation */
header {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(6px);
    box-shadow: 0 1px 12px rgba(0,0,0,0.02);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}
.logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.header-logo {
    max-height: 85px;
    width: auto;
    height: auto;
}
.desktop-nav {
    display: flex;
    align-items: center;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}
.nav-menu a {
    text-decoration: none;
    color: #2d3f2d;
    font-weight: 600;
    font-size: 0.98rem;
    cursor: pointer;
    padding-bottom: 4px;
    transition: border-color 0.2s;
    border-bottom: 2px solid transparent;
}
.nav-menu a.current-menu-item,
.nav-menu a:hover {
    border-bottom-color: var(--primary-green);
    color: var(--primary-green);
}
.book-session-btn, .cart-link {
    background: var(--primary-green);
    color: white !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 60px !important;
    font-weight: 700;
    text-decoration: none !important;
    white-space: nowrap;
    transition: background 0.2s;
    margin-left: 3rem;
}
.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-green);
    cursor: pointer;
}
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1099;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: white;
    z-index: 1100;
    padding: 5rem 2rem 2rem;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
}
.mobile-nav.active {
    right: 0;
}
.mobile-nav-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary-green);
    cursor: pointer;
}
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 25px;
    z-index: 9999;
    background: #25D366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}
.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: white;
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 85px;
}
@keyframes pulse {
    0% { transform: scale(1); }
    70% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.85rem 2.2rem;
    border-radius: var(--border-radius-btn);
    font-weight: 700;
    font-size: 0.98rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--primary-green);
    color: white;
    box-shadow: 0 6px 14px rgba(46,139,87,0.15);
    text-decoration: none;
}
.btn:hover {
    background: #1f6a41;
    transform: translateY(-3px);
    box-shadow: 0 16px 24px rgba(46,139,87,0.22);
}
.btn-secondary {
    background: var(--light-yellow);
    color: #1e3a2a;
}
.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}
.btn-outline:hover {
    background: white;
    color: var(--primary-green);
}

/* Container & Grid */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 5%;
}
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}
.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 0.8rem;
    font-weight: 700;
}
.section-title p {
    font-size: 1.2rem;
    color: #4d5f4d;
    max-width: 700px;
    margin: 0 auto;
}
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 2rem;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2rem;
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 2rem;
}
.card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s;
    border: 1px solid #f0f5f0;
    cursor: pointer;
}
.card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px);
}
.card h3 {
    color: var(--primary-green);
    margin-bottom: 0.8rem;
}

/* Hero */
.hero-section {
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.85) 0%, rgba(46, 139, 87, 0.9) 100%), url('https://images.unsplash.com/photo-1610832958506-aa56368176cf?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    padding: 5rem 5%;
}
.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.hero-title {
    font-size: 3rem;
    color: white;
    margin: 1.5rem 0 1rem;
}

/* Path grid */
.path-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1.5rem;
}
.path-card {
    background: white;
    padding: 1.8rem 1.5rem;
    border-radius: 24px;
    border: 1px solid #edf4ed;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.path-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-green);
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.path-card ul {
    list-style: none;
    margin: 1rem 0 1.5rem;
}
.path-card li {
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.path-card i {
    color: var(--primary-green);
    width: 1.4rem;
}

/* Tabs */
.tabs-container {
    background: white;
    border-radius: 28px;
    box-shadow: var(--shadow-sm);
    padding: 2.5rem 2rem;
}
.tabs-header {
    display: flex;
    gap: 0.75rem;
    border-bottom: 2px solid #e2e8e2;
    padding-bottom: 0.5rem;
    flex-wrap: wrap;
}
.tab-btn {
    background: transparent;
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #3a4a3a;
    border-radius: 40px;
    transition: 0.2s;
    cursor: pointer;
}
.tab-btn.active {
    background: var(--primary-green);
    color: white;
}
.tab-pane {
    display: none;
    animation: fade 0.35s;
    padding-top: 2rem;
}
.tab-pane.active {
    display: block;
}
@keyframes fade {
    from { opacity: 0.3; }
    to { opacity: 1; }
}
.foundation-list {
    list-style: none;
    margin: 1.5rem 0;
}
.foundation-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: baseline;
    gap: 12px;
    border-bottom: 1px solid #f0f3f0;
}
.foundation-list i {
    color: var(--primary-green);
}
.price-tag {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-green);
}

/* Herb cards */
.herb-card {
    background: white;
    border-radius: 24px;
    padding: 1.6rem;
    box-shadow: 0 6px 16px rgba(0,0,0,0.02);
    border: 1px solid #edf2ed;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.herb-price {
    font-weight: 800;
    color: var(--primary-green);
    font-size: 1.5rem;
    margin: 0.5rem 0;
}
.herb-nutrient {
    font-size: 0.85rem;
    color: #4f6b4f;
    background: #f0f9f0;
    padding: 0.5rem;
    border-radius: 16px;
    margin-top: 0.5rem;
}

/* Page header */
.page-header {
    background: var(--primary-green);
    padding: 4rem 5%;
    color: white;
    text-align: center;
}
.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}
.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Footer */
footer {
    background: #0e2a1a;
    color: #ddd;
    padding: 4rem 5% 2rem;
    margin-top: 3rem;
}
.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 2.5rem;
}
.footer-column h3 {
    color: var(--light-yellow);
    margin-bottom: 1.2rem;
}
.footer-links {
    list-style: none;
}
.footer-links a {
    color: #ccc;
    text-decoration: none;
    line-height: 2;
}
.footer-links a:hover {
    color: var(--light-yellow);
}
.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #3f5a47;
    color: #a8b9ac;
}

/* Modals */
.hm-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow-y: auto;
}
.hm-modal-content {
    background: white;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 24px;
    max-width: 500px;
    position: relative;
}
.hm-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
}
.hm-modal-close:hover {
    color: var(--primary-green);
}
.whatsapp-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 24px;
    z-index: 1001;
    max-width: 500px;
    width: 90%;
}
.whatsapp-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
}
.form-group {
    margin-bottom: 1rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
}
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 0.5rem;
}
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
    .path-grid { grid-template-columns: repeat(2,1fr); }
    .grid-4 { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 900px) {
    .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
    .path-grid { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }
    .desktop-nav { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-title { font-size: 2rem; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 1.6rem; }
}

/* Additional WP-specific */
.site-main { padding-top: 2rem; }
.entry-content img { max-width: 100%; height: auto; border-radius: 12px; }

