/* public/landing.css */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

.landing-theme {
    --first-theme-color: #A5C32D;
    --second-theme-color: #315E26;
    --bg-offwhite: #F7F7F0;
    --text-dark: #000000;
    --text-light: #3A3A3A;
    --bg-white: #ffffff;
    --border-radius: 20px;
    --cta-radius: 25px;
    --dashed-border: 2px dashed var(--second-theme-color);
    --transition: all 0.3s ease-in-out;
}

.landing-body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-offwhite);
    line-height: 1.6;
    overflow-x: hidden;
}

.landing-body h1, .landing-body h2, .landing-body h3, .landing-body h4, .landing-body h5, .landing-body h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--second-theme-color);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.landing-body p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.landing-body a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.landing-body ul {
    list-style: none;
    padding: 0;
}

.landing-body img {
    max-width: 100%;
    height: auto;
    display: block;
}

.landing-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.landing-section {
    padding: 60px 0;
}

.dashed-wrapper {
    border: var(--dashed-border);
    border-radius: var(--border-radius);
    padding: 50px 40px 40px;
    background-color: var(--bg-offwhite);
    margin: 40px 0;
    position: relative;
}

.section-header {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-offwhite);
    padding: 0 20px;
    text-align: center;
    width: max-content;
    max-width: 90%;
}

.section-title {
    font-size: 26px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.section-title.process-title {
    text-transform: none; /* Override uppercase for this specific title based on design */
    font-size: 1.6rem;
}

.section-subtitle {
    font-size: 1rem;
    margin: 0;
    color: var(--text-light);
}

.landing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--cta-radius);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.landing-btn-primary {
    background-color: var(--first-theme-color);
    color: var(--bg-white) !important;
    box-shadow: 0 4px 15px rgba(165, 195, 45, 0.3);
}

.landing-btn-primary:hover {
    background-color: var(--second-theme-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(49, 94, 38, 0.4);
}

.landing-btn-large {
    padding: 15px 35px;
    font-size: 1.15rem;
}

.urgency-text {
    display: block;
    font-size: 0.9rem;
    color: #c0392b;
    font-weight: 500;
    font-style: italic;
    margin-top: 8px;
    text-align: center;
}

.landing-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 15px 0;
}

.landing-header.scrolled {
    background-color: var(--bg-offwhite);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    padding: 10px 0;
}

.landing-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--second-theme-color) !important;
    text-transform: capitalize;
}

.landing-logo img {
    height: 35px;
}

.header-pill {
    display: flex;
    align-items: center;
    background-color: var(--second-theme-color);
    border-radius: 30px;
    padding: 5px 5px 5px 25px;
    gap: 20px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--bg-white);
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--first-theme-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: var(--second-theme-color);
    cursor: pointer;
}

/* Hero */
.hero {
    padding: 160px 0 80px;
    position: relative;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-title {
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 40px;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-cta-wrapper {
    display: inline-block;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bnr-img-bg {
    width: 400px;
    height: 400px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50" fill="%23A5C32D" opacity="0.1"/></svg>') center/contain no-repeat;
}

.hero-image {
    max-width: 85%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 2;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(15px); }
    100% { transform: translateY(0px); }
}

.floating-leaf {
    position: absolute;
    animation: floating 4s infinite ease-in-out;
    z-index: 0;
}

.leaf-1 { top: 20%; left: 5%; width: 40px; fill: var(--first-theme-color); opacity: 0.6; }
.leaf-2 { top: 60%; left: 10%; width: 60px; animation-delay: 1s; fill: var(--second-theme-color); opacity: 0.4; }
.leaf-3 { top: 30%; right: 5%; width: 50px; animation-delay: 2s; fill: var(--first-theme-color); opacity: 0.6; }
.leaf-4 { bottom: 15%; right: 15%; width: 70px; animation-delay: 0.5s; fill: var(--second-theme-color); opacity: 0.4; }

/* Process Steps */
.process-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 1200px;
    margin: 20px auto 0;
    flex-wrap: nowrap;
}

.process-step {
    background: var(--bg-white);
    border: 1px solid rgba(49, 94, 38, 0.1);
    border-radius: 16px;
    padding: 40px 20px 20px;
    position: relative;
    flex: 1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.process-step:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--second-theme-color);
    color: var(--bg-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(49, 94, 38, 0.2);
}

.step-icon {
    margin-bottom: 15px;
}

.step-icon svg {
    width: 50px;
    height: 50px;
    fill: var(--second-theme-color);
}

.step-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    width: 100%;
}

.step-divider::before, .step-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: rgba(49, 94, 38, 0.2);
    margin: 0 10px;
}

.step-divider svg {
    width: 20px;
    height: 20px;
    fill: var(--first-theme-color);
}

.process-step h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--second-theme-color);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(49, 94, 38, 0.2);
}

.process-arrow svg {
    width: 18px;
    height: 18px;
    fill: var(--bg-white);
}

/* Grids */
.about-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.services-grid, .steps-grid, .benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.service-card, .step-card, .benefit-item {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover, .step-card:hover, .benefit-item:hover {
    transform: translateY(-10px);
    border-color: var(--first-theme-color);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.service-icon, .step-number-old, .benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--first-theme-color);
}

.step-number-old {
    width: 60px;
    height: 60px;
    background-color: var(--first-theme-color);
    color: var(--bg-white);
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.disease-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.disease-item {
    background: var(--bg-white);
    padding: 15px 20px;
    border-radius: 25px;
    text-align: center;
    font-weight: 500;
    color: var(--text-light);
    border: 1px solid transparent;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.disease-item:hover {
    background: var(--first-theme-color);
    color: var(--bg-white);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-bottom: 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-bottom: 3px solid var(--first-theme-color);
}

.stars { color: #f1c40f; margin-bottom: 15px; font-size: 1.2rem; }
.quote { font-style: italic; margin-bottom: 20px; color: var(--text-light); }
.author { font-weight: 600; color: var(--second-theme-color); }

.mid-cta {
    background: var(--first-theme-color);
    color: var(--bg-white);
    text-align: center;
    padding: 80px 20px;
    border-radius: var(--border-radius);
    margin: 60px auto;
    max-width: 1000px;
    box-shadow: 0 15px 30px rgba(165, 195, 45, 0.2);
}

.mid-cta h2 {
    color: var(--bg-white);
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.mid-cta .landing-btn-primary {
    background: var(--second-theme-color);
    color: var(--bg-white) !important;
    box-shadow: none;
}
.mid-cta .landing-btn-primary:hover {
    background: var(--bg-white);
    color: var(--second-theme-color) !important;
}

.landing-footer {
    background-color: var(--first-theme-color);
    color: var(--bg-white);
    padding: 60px 0 30px;
    margin-top: 60px;
}

.landing-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.landing-footer-col h4, .landing-footer-col .landing-logo {
    color: var(--bg-white) !important;
    margin-bottom: 20px;
}

.landing-footer-col p, .landing-footer-col a, .landing-footer-col li {
    color: var(--bg-white);
    opacity: 0.9;
}

.landing-footer-col ul li {
    margin-bottom: 10px;
}

.landing-footer-col a:hover {
    opacity: 1;
    text-decoration: underline;
}

.landing-footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.9rem;
    color: var(--bg-white);
    opacity: 0.8;
}

.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    padding: 15px 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 999;
    text-align: center;
}

/* Privacy / Terms overrides */
.page-header {
    padding: 160px 0 80px;
    text-align: center;
    background: var(--bg-offwhite);
}
.page-title {
    font-size: 3rem;
    color: var(--second-theme-color);
}
.policy-content {
    background: var(--bg-white);
    padding: 60px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    margin: 0 auto 80px;
    max-width: 900px;
    border: var(--dashed-border);
}
.policy-content h2 { margin-top: 30px; margin-bottom: 15px; border-bottom: 1px solid #eee; padding-bottom: 10px;}

@media (max-width: 992px) {
    .hero-container, .about-grid { flex-direction: column; text-align: center; }
    .hero-image-wrapper { margin-top: 40px; }
    .header-pill {
        display: none;
        position: absolute;
        top: 70px;
        left: 20px;
        right: 20px;
        flex-direction: column;
        padding: 20px;
        margin: 0;
        background: var(--second-theme-color);
        border-radius: var(--border-radius);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    .header-pill.active { display: flex; }
    .nav-links { flex-direction: column; width: 100%; gap: 10px; }
    .nav-links a { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 10px 0; }
    .header-pill .landing-btn { width: 100%; margin-top: 10px; }
    .mobile-menu-btn { display: block; }
    .section-header { width: auto; max-width: 90%; }
    .hero-title { font-size: 2.8rem; }
    
    .process-grid {
        flex-wrap: wrap;
    }
    .process-step {
        min-width: 45%;
    }
    .process-arrow {
        display: none; 
    }
}

@media (max-width: 768px) {
    .mobile-sticky-cta { display: block; }
    .landing-body { padding-bottom: 80px; }
    .landing-section { padding: 40px 0; }
    .hero { padding-top: 120px; }
    .hero-title { font-size: 2.2rem; }
    .dashed-wrapper { padding: 40px 20px 20px; margin: 30px 0; }
    .section-header { position: relative; top: 0; transform: none; left: 0; margin: 0 auto 30px; padding: 0; background: transparent; }
    .mid-cta h2 { font-size: 2rem; }
    .hero-ctas { flex-direction: column; width: 100%; align-items: stretch; }
    .hero-cta-wrapper { width: 100%; text-align: center; }
    .bnr-img-bg { width: 300px; height: 300px; }

    .process-grid {
        flex-direction: column;
        gap: 40px;
    }
    .process-step {
        width: 100%;
    }
    .process-arrow {
        display: flex;
        transform: rotate(90deg);
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .section-title { font-size: 1.6rem; }
    .landing-btn { padding: 12px 20px; font-size: 1rem; }
    .about-grid, .services-grid, .steps-grid, .testimonial-grid { gap: 20px; }
    .mid-cta { padding: 40px 20px; margin: 40px 10px; }
    .mid-cta h2 { font-size: 1.5rem; }
}