/* ============================================
   MEDICANIGERIA - MAIN STYLESHEET
   medica-styles.css
   ============================================ */

/* --- CSS Variables --- */
:root {
    --forest: #1B4332;
    --forest-dark: #0f2a1e;
    --forest-mid: #2D6A4F;
    --gold: #C8A951;
    --gold-light: #E8D5A3;
    --gold-dark: #9A7A2E;
    --cream: #FAF8F3;
    --white: #ffffff;
    --text: #1a2e1f;
    --text-mid: #4a6555;
    --text-light: #8aab96;
    --danger: #C0392B;
    --whatsapp: #25D366;
    --card-shadow: 0 8px 40px rgba(27,67,50,0.12);
    --card-shadow-hover: 0 20px 60px rgba(27,67,50,0.2);
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.7;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: inherit; }

/* --- Utility --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
    display: inline-block;
    background: var(--gold-light);
    color: var(--gold-dark);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--forest);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-mid);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
    background: var(--forest);
    color: var(--gold-light);
    padding: 0.6rem 0;
    overflow: hidden;
    white-space: nowrap;
}
.announcement-inner {
    display: inline-flex;
    animation: ticker 25s linear infinite;
    font-size: 0.85rem;
    font-weight: 500;
    gap: 4rem;
}
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   HEADER
   ============================================ */
.header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200,169,81,0.2);
    position: sticky;
    top: 0;
    z-index: 200;
    transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.1); }
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 0.8rem; }
.logo-mark { flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; }
.logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--forest);
    line-height: 1;
}
.logo-accent { color: var(--gold); }
.logo-sub { font-size: 0.7rem; color: var(--text-mid); letter-spacing: 1px; text-transform: uppercase; }

/* Navigation */
.nav { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; list-style: none; gap: 1.8rem; }
.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    transition: color 0.3s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}
.nav-links a:hover { color: var(--forest); }
.nav-links a:hover::after { width: 100%; }

/* Nav CTA Button */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--whatsapp);
    color: white;
    padding: 0.7rem 1.4rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; padding: 5px; }
.hamburger span { width: 25px; height: 2px; background: var(--forest); border-radius: 2px; transition: all 0.3s; display: block; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 60%, var(--forest-mid) 100%);
    padding: 7rem 2rem 5rem;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

/* Background decorative shapes */
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.05;
}
.shape-1 { width: 500px; height: 500px; top: -200px; right: -100px; }
.shape-2 { width: 300px; height: 300px; bottom: -100px; left: -50px; }
.shape-3 { width: 200px; height: 200px; top: 40%; left: 40%; opacity: 0.03; }

.hero-content { position: relative; z-index: 1; }

.hero-tag {
    display: inline-block;
    background: rgba(200,169,81,0.2);
    color: var(--gold-light);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(200,169,81,0.3);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.hero-title-accent { color: var(--gold); }

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 540px;
}

.hero-badges {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.hero-badge {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.btn-hero-primary {
    background: var(--gold);
    color: var(--forest-dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
}
.btn-hero-primary:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(200,169,81,0.4); }

.btn-hero-secondary {
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}
.btn-hero-secondary:hover { background: var(--whatsapp); border-color: var(--whatsapp); transform: translateY(-3px); }

/* Hero Stats */
.hero-stats { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 700; color: var(--gold); display: block; line-height: 1; }
.hero-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 0.3rem; display: block; }
.hero-stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.15); }

/* Hero Visual */
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; z-index: 1; }
.hero-circle-outer {
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 2px solid rgba(200,169,81,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: slowSpin 30s linear infinite;
}
@keyframes slowSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero-circle-inner {
    animation: slowSpinReverse 30s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
@keyframes slowSpinReverse { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

.product-orbit {
    position: absolute;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200,169,81,0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    transform: rotate(var(--angle)) translateX(185px) rotate(calc(-1 * var(--angle)));
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section { background: white; }

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Last 2 cards centered */
.products-grid .product-card:nth-child(4) { grid-column: 1 / span 1; margin-left: auto; }
.products-grid .product-card:nth-child(5) { grid-column: 2 / span 1; }

.product-card {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    overflow: hidden;
    border: 2px solid #F0F0F0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
    text-decoration: none;
    color: var(--text);
}
.product-card:hover { transform: translateY(-12px); border-color: transparent; box-shadow: var(--card-shadow-hover); }

.product-card-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: 24px;
}
.product-card:hover .product-card-glow { opacity: 1; }

.product-diabetes:hover { border-color: #27AE60; }
.product-diabetes .product-card-glow { background: linear-gradient(135deg, rgba(39,174,96,0.05) 0%, transparent 100%); }
.product-arthritis:hover { border-color: #E67E22; }
.product-arthritis .product-card-glow { background: linear-gradient(135deg, rgba(230,126,34,0.05) 0%, transparent 100%); }
.product-fertility:hover { border-color: #E91E8C; }
.product-fertility .product-card-glow { background: linear-gradient(135deg, rgba(233,30,140,0.05) 0%, transparent 100%); }
.product-infection:hover { border-color: #2980B9; }
.product-infection .product-card-glow { background: linear-gradient(135deg, rgba(41,128,185,0.05) 0%, transparent 100%); }
.product-vision:hover { border-color: #8E44AD; }
.product-vision .product-card-glow { background: linear-gradient(135deg, rgba(142,68,173,0.05) 0%, transparent 100%); }

.product-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.product-icon { font-size: 2.2rem; }

.product-tag-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}
.product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 0.8rem;
    line-height: 1;
}
.product-desc { font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.5rem; }

.product-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
}
.product-highlights span { font-size: 0.85rem; font-weight: 500; color: var(--forest-mid); }

.product-price-tag {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--danger);
    margin-bottom: 1.5rem;
}

.product-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--forest);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}
.product-card:hover .product-cta { background: var(--gold); color: var(--forest-dark); }

.product-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gold-light);
    color: var(--gold-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.products-note {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--cream);
    padding: 2rem 2.5rem;
    border-radius: 16px;
    margin-top: 3rem;
    border: 1px solid var(--gold-light);
}
.note-icon { font-size: 2.5rem; flex-shrink: 0; }
.products-note p { font-size: 1.05rem; color: var(--text-mid); line-height: 1.7; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-section { background: var(--cream); }

.how-steps {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 3rem;
}
.how-step {
    flex: 1;
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: relative;
}
.step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.step-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.how-step h3 { font-size: 1.2rem; font-weight: 600; color: var(--forest); margin-bottom: 0.8rem; }
.how-step p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; }
.how-arrow { font-size: 2rem; color: var(--gold); margin-top: 4rem; flex-shrink: 0; }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section { background: white; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}
.about-stat-badge {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 1rem 1.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    text-align: center;
}
.about-stat-1 { bottom: 2rem; left: -2rem; }
.about-stat-2 { top: 2rem; right: -2rem; }
.about-stat-n { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: var(--forest); }
.about-stat-l { display: block; font-size: 0.75rem; color: var(--text-mid); font-weight: 500; }

.about-lead { font-size: 1.2rem; color: var(--forest); font-weight: 500; line-height: 1.8; margin-bottom: 1.5rem; }
.about-body { color: var(--text-mid); line-height: 1.8; margin-bottom: 1rem; }

.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.about-value {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--cream);
    padding: 1.2rem;
    border-radius: 12px;
}
.value-icon { font-size: 1.8rem; flex-shrink: 0; }
.about-value h4 { font-size: 1rem; font-weight: 600; color: var(--forest); margin-bottom: 0.3rem; }
.about-value p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section { background: var(--forest); }
.why-section .section-title { color: white; }
.why-section .section-tag { background: rgba(200,169,81,0.2); color: var(--gold-light); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.why-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    transition: all 0.3s;
    color: white;
}
.why-card:hover { background: rgba(200,169,81,0.15); border-color: var(--gold); transform: translateY(-5px); }
.why-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.why-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.7rem; color: var(--gold-light); }
.why-card p { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.7; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--cream); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.tcard {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s;
    border-top: 4px solid var(--gold);
}
.tcard:hover { transform: translateY(-8px); }

.tcard-product {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}
.tcard-diabetes { background: #E8F5E9; color: #27AE60; }
.tcard-arthritis { background: #FEF3E2; color: #E67E22; }
.tcard-fertility { background: #FCE4EC; color: #E91E8C; }
.tcard-infection { background: #E3F2FD; color: #2980B9; }
.tcard-vision { background: #F3E5F5; color: #8E44AD; }

.tcard-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; }
.tcard-text { font-style: italic; font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 1.5rem; }
.tcard-author { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.tcard-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--forest);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.tcard-name { font-weight: 600; font-size: 0.95rem; color: var(--forest); }
.tcard-location { font-size: 0.8rem; color: var(--text-light); }
.tcard-result {
    background: var(--cream);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--forest);
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section { background: white; }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s;
    border: 1px solid #F0F0F0;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--card-shadow-hover); }
.blog-featured { grid-column: span 2; }

.blog-img {
    height: 200px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}
.blog-featured .blog-img { height: 260px; }

.blog-img-1 { background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 100%); }
.blog-img-2 { background: linear-gradient(135deg, #E67E22 0%, #f39c12 100%); }
.blog-img-3 { background: linear-gradient(135deg, #E91E8C 0%, #c2185b 100%); }
.blog-img-4 { background: linear-gradient(135deg, #8E44AD 0%, #6c3483 100%); }
.blog-img-5 { background: linear-gradient(135deg, #2980B9 0%, #1a5276 100%); }
.blog-img-6 { background: linear-gradient(135deg, #C8A951 0%, #9A7A2E 100%); }

.blog-category-tag {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.3);
    letter-spacing: 0.5px;
}
.blog-content { padding: 1.8rem; }
.blog-meta { font-size: 0.8rem; color: var(--text-light); margin-bottom: 0.8rem; }
.blog-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--forest);
    line-height: 1.4;
    margin-bottom: 0.8rem;
}
.blog-featured .blog-title { font-size: 1.7rem; }
.blog-excerpt { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.2rem; }
.blog-read-more {
    color: var(--forest);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
    display: inline-block;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 2px;
}
.blog-read-more:hover { color: var(--gold-dark); }

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section { background: var(--cream); }

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}
.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.faq-q {
    width: 100%;
    padding: 1.3rem 1.5rem;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--forest);
    text-align: left;
    gap: 1rem;
    transition: background 0.2s;
}
.faq-q:hover { background: var(--cream); }
.fiq-icon { font-size: 1.3rem; flex-shrink: 0; transition: transform 0.3s; color: var(--gold); }
.faq-item.active .fiq-icon { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}
.faq-item.active .faq-a { max-height: 300px; padding: 0 1.5rem 1.5rem; }
.faq-a p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; }

.faq-cta-box {
    background: var(--forest);
    color: white;
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    position: sticky;
    top: 100px;
}
.faq-cta-icon { font-size: 3rem; margin-bottom: 1rem; }
.faq-cta-box h3 { font-size: 1.5rem; margin-bottom: 1rem; color: white; }
.faq-cta-box p { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.7; margin-bottom: 2rem; }
.btn-whatsapp-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    background: var(--whatsapp);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s;
}
.btn-whatsapp-full:hover { background: #1ea952; transform: translateY(-2px); }
.faq-open-tag { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.contact-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    color: white;
    transition: all 0.3s;
}
.contact-card:hover { background: rgba(200,169,81,0.15); border-color: var(--gold); transform: translateY(-5px); }
.contact-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.contact-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--gold-light); }
.contact-card p { font-size: 0.95rem; opacity: 0.85; margin-bottom: 0.3rem; }
.contact-btn {
    display: inline-block;
    background: var(--gold);
    color: var(--forest-dark);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 1.2rem;
    transition: all 0.3s;
}
.contact-btn:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ============================================
   FOOTER
   ============================================ */
.footer-top {
    background: var(--text);
    padding: 4rem 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}
.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.5); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1rem; }
.footer-desc { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.8; margin-bottom: 1.5rem; }
.footer-wa {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--whatsapp);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}
.footer-wa:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.3); }
.footer-col h4 { color: var(--gold); font-size: 1rem; font-weight: 600; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col li { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 0.7rem; line-height: 1.6; }
.footer-col li a { color: rgba(255,255,255,0.6); transition: color 0.3s; }
.footer-col li a:hover { color: var(--gold-light); }
.footer-bottom { background: var(--forest-dark); padding: 1.5rem 0; }
.footer-bottom-inner { text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-bottom: 0.5rem; }
.footer-disclaimer { max-width: 700px; margin: 0.5rem auto 0; font-size: 0.78rem !important; line-height: 1.6; }

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.wa-float { position: fixed; bottom: 30px; right: 30px; z-index: 999; }
.wa-float-btn {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: var(--whatsapp);
    color: white;
    padding: 1rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 6px 25px rgba(37,211,102,0.45);
    transition: all 0.3s;
    animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float-btn:hover { transform: scale(1.05); box-shadow: 0 10px 35px rgba(37,211,102,0.55); }
@keyframes waPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

/* ============================================
   RESPONSIVE DESIGN
   Mobile-first: 95%+ of users are on mobile.
   Priority: compact 2-column grids, short cards,
   less scrolling, easy tapping everywhere.
   ============================================ */

/* --- Large desktop --- */
@media (max-width: 1100px) {
    .hero { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid .product-card:nth-child(4),
    .products-grid .product-card:nth-child(5) { grid-column: auto; margin-left: 0; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* --- Tablet --- */
@media (max-width: 900px) {
    .section-title { font-size: 2.2rem; }

    /* Navigation dropdown */
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem 2rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-top: 1px solid #F0F0F0;
        z-index: 300;
    }
    .nav.active { display: flex; }
    .nav-links { flex-direction: column; gap: 1rem; }
    .hamburger { display: flex; }

    /* About grid stacks */
    .about-grid { grid-template-columns: 1fr; }

    /* Testimonials 2-col on tablet */
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

    /* Blog 2-col on tablet */
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-featured { grid-column: span 2; }

    /* FAQ stacks */
    .faq-layout { grid-template-columns: 1fr; }
    .faq-cta-box { position: static; }

    /* How it works stacks */
    .how-steps { flex-direction: column; align-items: stretch; }
    .how-arrow { transform: rotate(90deg); align-self: center; margin: -0.5rem 0; }
}

/* --- Mobile (max 600px) - THE CRITICAL BREAKPOINT --- */
@media (max-width: 600px) {

    /* Global spacing tightened for mobile */
    .section { padding: 3rem 0; }
    .container { padding: 0 1rem; }
    .section-header { margin-bottom: 2rem; }
    .section-title { font-size: 1.7rem; }
    .section-subtitle { font-size: 0.95rem; }

    /* Header */
    .header-inner { padding: 0.8rem 1rem; }
    .logo-main { font-size: 1.3rem; }
    .logo-sub { display: none; }

    /* Hero */
    .hero { padding: 3rem 1rem 2.5rem; }
    .hero-title { font-size: 2.4rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-badges { gap: 0.5rem; }
    .hero-badge { font-size: 0.75rem; padding: 0.4rem 0.8rem; }
    .hero-cta-group { flex-direction: column; gap: 0.8rem; }
    .btn-hero-primary,
    .btn-hero-secondary { width: 100%; justify-content: center; text-align: center; padding: 0.9rem 1.5rem; font-size: 0.95rem; }
    .hero-stats { gap: 0.8rem; flex-wrap: nowrap; justify-content: space-between; }
    .hero-stat-num { font-size: 1.5rem; }
    .hero-stat-label { font-size: 0.65rem; }
    .hero-stat-divider { height: 30px; }

    /* =====================
       PRODUCTS — 2 columns
       ===================== */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    .products-grid .product-card:nth-child(4),
    .products-grid .product-card:nth-child(5) {
        grid-column: auto;
        margin-left: 0;
    }
    /* Compact product cards on mobile */
    .product-card {
        padding: 1.2rem 1rem;
        border-radius: 16px;
    }
    .product-icon-wrap {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        margin-bottom: 0.8rem;
    }
    .product-icon { font-size: 1.6rem; }
    .product-tag-label { font-size: 0.65rem; margin-bottom: 0.3rem; }
    .product-name { font-size: 1.4rem; margin-bottom: 0.5rem; }
    .product-desc { font-size: 0.82rem; line-height: 1.5; margin-bottom: 0.8rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
    .product-highlights { gap: 0.25rem; margin-bottom: 0.8rem; }
    .product-highlights span { font-size: 0.75rem; }
    .product-price-tag { font-size: 0.95rem; margin-bottom: 0.8rem; }
    .product-cta { padding: 0.7rem 1rem; font-size: 0.82rem; border-radius: 10px; }
    .product-badge { top: 0.8rem; right: 0.8rem; font-size: 0.6rem; padding: 0.25rem 0.6rem; }
    .products-note { flex-direction: column; text-align: center; padding: 1.5rem; gap: 0.8rem; }
    .products-note p { font-size: 0.9rem; }

    /* How it works — compact */
    .how-step { padding: 1.5rem 1rem 1.5rem; }
    .step-num { font-size: 2.5rem; }
    .step-icon { font-size: 2rem; margin-bottom: 0.5rem; }
    .how-step h3 { font-size: 1rem; }
    .how-step p { font-size: 0.85rem; }

    /* About section */
    .about-stat-1, .about-stat-2 { display: none; }
    .about-lead { font-size: 1rem; }
    .about-body { font-size: 0.9rem; }
    .about-values { grid-template-columns: 1fr; gap: 0.8rem; }
    .about-value { padding: 1rem; }
    .value-icon { font-size: 1.5rem; }
    .about-value h4 { font-size: 0.9rem; }
    .about-value p { font-size: 0.82rem; }

    /* =====================
       WHY US — 2 columns
       ===================== */
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    .why-card {
        padding: 1.2rem 1rem;
        border-radius: 14px;
    }
    .why-icon { font-size: 1.8rem; margin-bottom: 0.6rem; }
    .why-card h3 { font-size: 0.85rem; margin-bottom: 0.4rem; }
    .why-card p { font-size: 0.78rem; line-height: 1.5; }

    /* =====================
       TESTIMONIALS — 2 columns
       ===================== */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    .tcard {
        padding: 1.2rem 1rem;
        border-radius: 14px;
    }
    .tcard-product { font-size: 0.65rem; padding: 0.25rem 0.7rem; margin-bottom: 0.6rem; }
    .tcard-stars { font-size: 0.9rem; margin-bottom: 0.6rem; }
    .tcard-text { font-size: 0.8rem; line-height: 1.5; margin-bottom: 1rem; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
    .tcard-avatar { width: 36px; height: 36px; font-size: 0.75rem; }
    .tcard-name { font-size: 0.82rem; }
    .tcard-location { font-size: 0.72rem; }
    .tcard-result { font-size: 0.72rem; padding: 0.4rem 0.7rem; margin-top: 0.7rem; }

    /* =====================
       BLOG / HEALTH TIPS — 2 columns
       ===================== */
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    .blog-featured { grid-column: span 2; }
    .blog-card { border-radius: 14px; }
    .blog-img { height: 100px; padding: 0.8rem; }
    .blog-featured .blog-img { height: 130px; }
    .blog-category-tag { font-size: 0.65rem; padding: 0.25rem 0.7rem; }
    .blog-content { padding: 1rem; }
    .blog-meta { font-size: 0.7rem; margin-bottom: 0.5rem; }
    .blog-title { font-size: 0.95rem; line-height: 1.3; margin-bottom: 0.5rem; }
    .blog-featured .blog-title { font-size: 1.1rem; }
    /* Hide excerpt on non-featured cards to keep cards compact */
    .blog-card:not(.blog-featured) .blog-excerpt { display: none; }
    .blog-featured .blog-excerpt { font-size: 0.85rem; -webkit-line-clamp: 2; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
    .blog-read-more { font-size: 0.8rem; }

    /* FAQ */
    .faq-q { font-size: 0.9rem; padding: 1rem; }
    .faq-a { padding: 0 1rem; }
    .faq-item.active .faq-a { padding: 0 1rem 1rem; }
    .faq-a p { font-size: 0.88rem; }
    .faq-cta-box { padding: 1.8rem 1.2rem; border-radius: 16px; }
    .faq-cta-icon { font-size: 2.5rem; }
    .faq-cta-box h3 { font-size: 1.2rem; }
    .faq-cta-box p { font-size: 0.88rem; }
    .btn-whatsapp-full { font-size: 0.95rem; padding: 0.9rem 1.2rem; }

    /* =====================
       CONTACT — 2 columns
       ===================== */
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    .contact-card {
        padding: 1.3rem 1rem;
        border-radius: 14px;
    }
    .contact-icon { font-size: 2rem; margin-bottom: 0.6rem; }
    .contact-card h3 { font-size: 0.95rem; margin-bottom: 0.4rem; }
    .contact-card p { font-size: 0.82rem; }
    .contact-btn { padding: 0.55rem 1.2rem; font-size: 0.82rem; margin-top: 0.8rem; }

    /* Footer */
    .footer-top { padding: 2.5rem 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .footer-brand { grid-column: span 2; }
    .footer-logo { font-size: 1.6rem; }
    .footer-desc { font-size: 0.85rem; }
    .footer-col h4 { font-size: 0.9rem; margin-bottom: 0.8rem; }
    .footer-col li { font-size: 0.82rem; margin-bottom: 0.5rem; }
    .footer-bottom p { font-size: 0.78rem; }

    /* WhatsApp float — keep label visible on mobile since it's important */
    .wa-float { bottom: 16px; right: 12px; }
    .wa-float-btn { padding: 0.85rem 1.4rem; font-size: 0.88rem; gap: 0.5rem; }

    /* Section tag */
    .section-tag { font-size: 0.75rem; padding: 0.35rem 1rem; }
}

/* --- Very small phones (375px and below) --- */
@media (max-width: 375px) {
    .hero-title { font-size: 2rem; }
    .products-grid { gap: 0.6rem; }
    .product-name { font-size: 1.2rem; }
    .product-card { padding: 1rem 0.8rem; }
    .why-card { padding: 1rem 0.8rem; }
    .tcard { padding: 1rem 0.8rem; }
    .blog-content { padding: 0.8rem; }
    .contact-card { padding: 1rem 0.8rem; }
    .hero-stats { gap: 0.4rem; }
    .hero-stat-divider { display: none; }
}
