:root {
    /* Color Palette */
    --color-sage: #87a38d;
    --color-pine: #2d4436;
    --color-cream: #fffdf5;
    --color-bronze: #cd853f;
    --color-bone: #d9d2c5;

    /* Semantic Colors */
    --bg-primary: var(--color-cream);
    --text-primary: var(--color-pine);
    --text-secondary: var(--color-sage);
    --accent: var(--color-bronze);
    --divider: var(--color-bone);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1100px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: var(--accent);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(205, 133, 63, 0.3);
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(205, 133, 63, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-sage);
    color: var(--color-sage);
    box-shadow: none;
}

.btn-outline:hover {
    background-color: var(--color-sage);
    color: white;
}

section {
    padding: var(--section-padding);
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 253, 245, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.logo a {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    opacity: 0.8;
    line-height: 1;
}

.nav-links a:hover {
    color: var(--color-bronze);
    opacity: 1;
}

.nav-cta {
    display: flex;
    gap: 10px;
}

.btn-small {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
}

/* Mobile Nav Adjustment */
@media (max-width: 768px) {
    .nav-links.mobile-active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-primary);
        padding: 20px;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
        gap: 20px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

/* Hero adjustment for fixed navbar */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    padding-top: 80px;
    background: linear-gradient(135deg, #e9f0ea 0%, var(--color-cream) 50%, #f7f3e9 100%);
}

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

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-primary);
    opacity: 0.9;
}

.hero-ctas {
    display: flex;
    gap: 15px;
    flex-wrap: nowrap;
    /* Force side-by-side on desktop */
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    box-shadow: 30px 30px 0px var(--color-bone);
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-sage);
    border-radius: 24px;
    transform: translate(20px, -20px);
    z-index: -1;
    opacity: 0.2;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

/* Base Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Sections Common */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

/* Pain Points */
.pain-points {
    background-color: var(--color-bone);
    border-radius: 60px 60px 0 0;
    margin-top: -60px;
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 120px;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pain-card {
    background: var(--color-cream);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(45, 68, 54, 0.04);
    transition: all 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(45, 68, 54, 0.08);
}

.pain-card i {
    font-size: 2.5rem;
    color: var(--color-bronze);
    margin-bottom: 20px;
}

.pain-card h3 {
    margin-bottom: 15px;
}

/* Approach */
.approach {
    background-color: var(--color-pine);
    color: white;
    text-align: center;
    border-radius: 60px 60px 0 0;
    margin-top: -60px;
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 120px;
}

.approach-box {
    max-width: 800px;
    margin: 0 auto;
}

.approach h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--color-bone);
}

.approach p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* About */
.about {
    background-color: var(--bg-primary);
    border-radius: 60px 60px 0 0;
    margin-top: -60px;
    position: relative;
    z-index: 3;
    padding-top: 100px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: -20px 20px 0 var(--color-sage);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.faq-question {
    padding: 25px 25px 15px 25px;
    background: white;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-pine);
}

.faq-answer {
    padding: 0 25px 25px 25px;
    background: white;
    font-size: 1.05rem;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 991px) {

    .approach,
    .about {
        border-radius: 40px 40px 0 0;
        margin-top: -40px;
        padding-top: 80px;
    }

    .pain-points {
        padding-bottom: 80px;
    }

    .navbar {
        padding: 10px 0;
    }

    .hero-ctas {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        max-width: 80%;
        margin: 0 auto;
    }

    .hero-image img {
        max-width: 100%;
        box-shadow: 10px 10px 0px var(--color-bone);
    }

    .hero-image::before {
        transform: translate(10px, -10px);
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        max-width: 85%;
        margin: 0 auto;
    }

    .about-image img {
        max-width: 100%;
        display: block;
        box-shadow: -10px 10px 0 var(--color-sage);
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

/* Footer */
footer {
    background-color: var(--color-pine);
    color: white;
    padding: 80px 0 40px 0;
}

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

.footer-info h3,
.footer-links h3 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: var(--color-sage);
}

.footer-info>p {
    margin-bottom: 25px;
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .footer-links {
        align-items: center;
    }
}