/* CSS Variables */
:root {
    --forest: #4a7c59;
    --sage: #8fbc8f;
    --lavender: #b19cd9;
    --sand: #f5f0e8;
    --warm-gray: #5a5a5a;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #333;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background: white;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    font-weight: 600;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-title {
    font-size: 1.8rem;
    color: var(--forest);
    margin: 0;
    font-weight: 700;
}

.brand-subtitle {
    font-size: 0.8rem;
    color: var(--sage);
    margin: 0;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.nav-link {
    text-decoration: none;
    color: var(--warm-gray);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 5px 8px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--forest);
}

.btn-contact {
    background: var(--forest);
    color: white !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
}

.btn-contact:hover {
    background: #3a6147;
    transform: translateY(-1px);
}

/* Language Toggle */
.language-toggle {
    display: flex;
    gap: 0.3rem;
    margin-left: 1rem;
}

.lang-btn {
    padding: 4px 8px;
    border: 1px solid var(--forest);
    background: transparent;
    color: var(--forest);
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 35px;
}

.lang-btn.active {
    background: var(--forest);
    color: white;
}

.lang-btn:hover {
    background: var(--forest);
    color: white;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--forest);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Layout */
.section {
    padding: 6rem 0;
}

.section-gray {
    background: var(--light-gray);
}

.section-white {
    background: white;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--forest);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--warm-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Grid Layouts */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.1), rgba(143, 188, 143, 0.05));
    padding: 8rem 0 6rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--forest);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--warm-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: #3a6147;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 124, 89, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--forest);
    border: 2px solid var(--forest);
}

.btn-secondary:hover {
    background: var(--forest);
    color: white;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

/* Cards */
.card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--forest);
    margin-top: 1rem;
    text-align: center;
}

.forest-bg {
    background: rgba(74, 124, 89, 0.1);
    color: var(--forest);
}

.sage-bg {
    background: rgba(143, 188, 143, 0.1);
    color: var(--sage);
}

.lavender-bg {
    background: rgba(177, 156, 217, 0.1);
    color: var(--lavender);
}

.card h3 {
    color: var(--forest);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.card p {
    color: var(--warm-gray);
    line-height: 1.6;
}

/* Therapy Panels */
.therapy-panel {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.therapy-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.therapy-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.therapy-title {
    color: var(--forest);
    font-size: 1.5rem;
    margin: 0;
}

.therapy-description {
    color: var(--warm-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Info Panels */
.info-panel {
    background: var(--sand);
    padding: 2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--warm-gray);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Oil Lists */
.oil-list {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--warm-gray);
}

.oil-list div {
    margin-bottom: 0.3rem;
}

/* Modality Lists */
.modality-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modality-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--warm-gray);
}

/* Session Info */
.session-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item h4 {
    color: var(--forest);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--warm-gray);
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.05), rgba(143, 188, 143, 0.05));
    padding: 3rem;
    border-radius: 15px;
    margin-top: 3rem;
}

.cta-section h3 {
    color: var(--forest);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.cta-section p {
    color: var(--warm-gray);
    margin-bottom: 2rem;
}

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

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h3 {
    color: var(--forest);
    font-size: 1.1rem;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--forest);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--warm-gray);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Hunter Details Section */
.hunter-details-section {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.hunter-title {
    text-align: center;
    color: var(--forest);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.tech-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tech-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--medium-gray);
    border-radius: 10px;
}

.step-num {
    background: var(--forest);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.scan-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.scan-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--medium-gray);
    border-radius: 10px;
}

.scan-feature .feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.scan-feature h5 {
    color: var(--forest);
    margin-bottom: 0.5rem;
}

.scan-feature p {
    color: var(--warm-gray);
    font-size: 0.9rem;
}

.session-timeline {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.05), rgba(143, 188, 143, 0.05));
    border-radius: 15px;
}

.session-timeline h4 {
    color: var(--forest);
    margin-bottom: 2rem;
    text-align: center;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.timeline-time {
    background: var(--sage);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.timeline-content h5 {
    color: var(--forest);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--warm-gray);
    font-size: 0.9rem;
}

.scientific-foundation {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--medium-gray);
    border-radius: 15px;
}

.scientific-foundation h4 {
    color: var(--forest);
    margin-bottom: 1.5rem;
    text-align: center;
}

.foundation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.foundation-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.foundation-item h5 {
    color: var(--forest);
    margin-bottom: 1rem;
}

.foundation-item p {
    color: var(--warm-gray);
    font-size: 0.9rem;
}

/* Remote Process Section */
.remote-process-section {
    margin-top: 3rem;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* WhatsApp Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.whatsapp-section {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(37, 211, 102, 0.05));
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(37, 211, 102, 0.2);
}

.whatsapp-card {
    text-align: center;
}

.whatsapp-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: hue-rotate(120deg);
}

.whatsapp-card h3 {
    color: var(--forest);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.whatsapp-card p {
    color: var(--warm-gray);
    margin-bottom: 2rem;
}

.whatsapp-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--warm-gray);
}

.benefit-icon {
    color: #25d366;
    font-weight: bold;
}

/* Contact Info */
.contact-info-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.column-title {
    color: var(--forest);
    margin-bottom: 2rem;
    font-size: 1.4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--forest);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--warm-gray);
    margin-bottom: 0.5rem;
}

.contact-hours {
    font-size: 0.9rem;
    color: var(--sage);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--sage);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--forest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: var(--sage);
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 2rem;
}

.footer-bottom-content {
    text-align: center;
    color: #ccc;
}

.copyright {
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.9rem;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        gap: 0.5rem;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 10px 20px;
        white-space: normal;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 6rem 0 4rem;
    }

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

    .hero-content p {
        font-size: 1.1rem;
    }

    .three-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-time {
        align-self: flex-start;
    }
    
    .hunter-details-section {
        padding: 2rem 1rem;
    }
    
    .foundation-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-step, .scan-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .session-timeline {
        padding: 1rem;
    }
    
    .hunter-title {
        font-size: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}