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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #4A4A4A;
    background-color: #FFFFFF;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    opacity: 1;
    transform: translateY(0);
}

.nav-logo a {
    text-decoration: none;
}

.nav-logo h2 {
    color: #4A4A4A;
    font-weight: 700;
    font-size: 1.8rem;
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
}

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

.nav-link {
    text-decoration: none;
    color: #4A4A4A;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #7BA05B;
}

.get-started-btn {
    background: #7BA05B;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.get-started-btn:hover {
    background: #6B8F4F;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Form Section */
.form-section {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #F8FDF6 0%, #E8F5E8 100%);
    min-height: 100vh;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #4A4A4A;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
}

.form-header p {
    font-size: 1.2rem;
    color: #6B6B6B;
}

.skip-form-option {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #E0E0E0;
}

.skip-form-option p {
    font-size: 1rem;
    color: #6B6B6B;
    margin-bottom: 1rem;
}

.skip-btn {
    background: transparent;
    color: #7BA05B;
    border: 2px solid #7BA05B;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.skip-btn:hover {
    background: #7BA05B;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(123, 160, 91, 0.3);
}

/* Questionnaire Form */
.questionnaire-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-section-group {
    margin-bottom: 3rem;
}

.form-section-group:last-of-type {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #4A4A4A;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
}

.section-description {
    font-size: 1rem;
    color: #6B6B6B;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #4A4A4A;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: #4A4A4A;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #7BA05B;
    box-shadow: 0 0 0 3px rgba(123, 160, 91, 0.1);
}

.form-group input:hover,
.form-group select:hover {
    border-color: #7BA05B;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234A4A4A' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-actions {
    margin-top: 2.5rem;
    text-align: center;
}

.submit-btn {
    background: #7BA05B;
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.submit-btn:hover {
    background: #6B8F4F;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(123, 160, 91, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Thank You Section Styles */
.thank-you-section {
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeIn 0.5s ease;
}

.thank-you-content {
    text-align: center;
}

.thank-you-header {
    margin-bottom: 3rem;
}

.thank-you-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #4A4A4A;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
}

.thank-you-header p {
    font-size: 1.2rem;
    color: #6B6B6B;
    line-height: 1.6;
}

.purchase-options {
    margin-bottom: 3rem;
}

.purchase-options h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #4A4A4A;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
}

.purchase-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.purchase-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.purchase-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4A4A4A;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
}

.purchase-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #7BA05B;
    margin-bottom: 1rem;
}

.purchase-details {
    margin-bottom: 1.5rem;
}

.purchase-details p {
    font-size: 1rem;
    color: #6B6B6B;
    margin-bottom: 0.5rem;
}

.purchase-card blockquote {
    font-style: italic;
    font-size: 1rem;
    color: #6B6B6B;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.purchase-card cite {
    font-size: 0.9rem;
    color: #888;
    font-style: normal;
    display: block;
    margin-bottom: 1.5rem;
}

.purchase-btn {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    font-family: 'Inter', sans-serif;
    margin-top: auto;
}

.purchase-btn.sprout-btn {
    background: #7BA05B;
    color: white;
}

.purchase-btn.sprout-btn:hover {
    background: #6B8F4F;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(123, 160, 91, 0.3);
}

.purchase-btn.blossom-btn {
    background: #7BA05B;
    color: white;
}

.purchase-btn.blossom-btn:hover {
    background: #6B8F4F;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(123, 160, 91, 0.3);
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.action-btn {
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    font-family: 'Inter', sans-serif;
}

.action-btn.secondary {
    background: transparent;
    color: #7BA05B;
    border: 2px solid #7BA05B;
}

.action-btn.secondary:hover {
    background: #7BA05B;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(123, 160, 91, 0.3);
}

/* Footer */
.footer {
    padding: 80px 0;
    background: #2C3E50;
    color: #7BA05B;
    text-align: center;
}

.footer-content h3 {
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 600;
    line-height: 1.2;
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    color: #7BA05B;
}

.footer-contact {
    margin-top: 2rem;
}

.footer-contact p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ededed;
    font-weight: 400;
}

.footer-email {
    font-size: 1.4rem;
    font-weight: 1000;
    color: #ededed;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: #A8C471;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
    }

    .nav-container {
        padding: 0 15px;
    }

    .nav-logo h2 {
        font-size: 1.4rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 65px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 999;
    }

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

    .hamburger {
        display: flex;
        flex-shrink: 0;
    }

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

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .form-section {
        padding: 120px 0 60px;
    }

    .form-header h1 {
        font-size: 2rem;
    }

    .form-header p {
        font-size: 1rem;
    }

    .questionnaire-form {
        padding: 2rem 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .modal-content {
        padding: 2rem 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-actions {
        flex-direction: column;
    }

    .modal-btn {
        width: 100%;
    }

    .footer-content h3 {
        font-size: 2.2rem;
    }

    .footer-contact p {
        font-size: 1.1rem;
    }

    .footer-email {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .nav-logo h2 {
        font-size: 1.2rem;
    }

    .form-section {
        padding: 100px 0 50px;
    }

    .form-header h1 {
        font-size: 1.75rem;
    }

    .questionnaire-form {
        padding: 1.5rem 1rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .footer-content h3 {
        font-size: 1.8rem;
    }

    .footer-contact p {
        font-size: 1rem;
    }

    .footer-email {
        font-size: 1.1rem;
    }

    .thank-you-header h1 {
        font-size: 2rem;
    }

    .thank-you-header p {
        font-size: 1rem;
    }

    .purchase-buttons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .purchase-card {
        padding: 2rem 1.5rem;
    }

    .purchase-price {
        font-size: 2rem;
    }

    .thank-you-actions {
        flex-direction: column;
    }

    .action-btn {
        width: 100%;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
