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

:root {
    --primary-green: #2d5f3f;
    --primary-green-dark: #1e4029;
    --primary-green-light: #3d7a52;
    --accent-orange: #ff6b35;
    --accent-orange-hover: #e55a2b;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --bg-light: #f9f9f9;
    --bg-cream: #fef9f3;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Accessibility Button */
.accessibility-btn {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #4285f4;
    color: white;
    border: none;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.accessibility-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

/* Header */
.header {
    background: rgba(45, 95, 63, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo-text {
    display: flex;
    flex-direction: column;
    color: white;
}

.logo-main {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
}

.logo-sub {
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 1px;
}

.logo-location {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
}

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

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
    font-size: 14px;
}

.nav a:hover {
    color: var(--accent-orange);
}

.cta-btn {
    background: var(--accent-orange);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.cta-btn:hover {
    background: var(--accent-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

/* Location Bar */
.location-bar {
    background: linear-gradient(135deg, var(--primary-green-light), var(--primary-green));
    padding: 12px 0;
    text-align: center;
}

.locations {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.location-item {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green), var(--primary-green-light));
    padding: 120px 0 80px;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,128C672,128,768,160,864,165.3C960,171,1056,149,1152,128C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom center no-repeat;
    background-size: cover;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 40px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

/* Voice Agent Container */
.voice-agent-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin: 40px auto;
    max-width: 600px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
}

#voiceAgentWidget {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.voice-agent-hint {
    color: var(--primary-green);
    font-size: 14px;
    margin-top: 15px;
    font-weight: 500;
}

.hero-cta-btn {
    background: var(--accent-orange);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.hero-cta-btn:hover {
    background: var(--accent-orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

/* Info Section */
.info-section {
    padding: 80px 0;
    background: var(--bg-cream);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.3;
}

/* Myth Accordion */
.myth-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.myth-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.myth-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.myth-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background: white;
    transition: var(--transition);
}

.myth-header:hover {
    background: var(--bg-light);
}

.myth-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.myth-icon {
    font-size: 16px;
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

.myth-item.active .myth-icon {
    transform: rotate(180deg);
}

.myth-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.myth-item.active .myth-content {
    max-height: 200px;
    padding: 0 20px 20px;
}

.myth-content p {
    color: #666;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: var(--primary-green);
    color: white;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.95;
}

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

.benefit-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

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

.benefit-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.benefit-content {
    padding: 25px;
}

.benefit-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
    border-bottom: 3px solid var(--accent-orange);
    padding-bottom: 10px;
}

.benefit-content p {
    color: #666;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-green-light), var(--primary-green-dark));
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 16px;
    margin-bottom: 15px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-large-btn {
    background: var(--accent-orange);
    color: white;
    border: none;
    padding: 20px 50px;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 30px;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.cta-large-btn:hover {
    background: var(--accent-orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

/* Footer */
.footer {
    background: var(--primary-green-dark);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-column p,
.footer-column a {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 32px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .location-item {
        font-size: 12px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 24px;
    }

    .voice-agent-container {
        padding: 20px;
    }

    .accessibility-btn {
        width: 40px;
        height: 40px;
        left: 10px;
    }

    .locations {
        gap: 15px;
    }
}