/* Base Styles */
:root {
    /* Main color palette */
    --primary: #A7E27D;
    --primary-light: #c5eda7;
    --primary-dark: #8bc668;
    --background: #FAFAF0;
    --accent: #223344;
    --accent-light: #395167;
    --highlight: #FFD166;
    --highlight-light: #FFE5A3;
    --text: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --grey-light: #f4f4f4;
    --grey: #e0e0e0;
    --shadow: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--accent);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--accent);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Buttons */
.cta-button,
.plan-button,
.submit-button {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--primary);
    color: var(--accent);
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 12px rgba(167, 226, 125, 0.3);
    font-size: 1rem;
}

.cta-button:hover,
.plan-button:hover,
.submit-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(167, 226, 125, 0.4);
}

/* Header & Navigation */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(250, 250, 240, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 40px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list li a {
    position: relative;
    font-weight: 500;
    padding: 5px 0;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-list li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--accent);
    margin: 5px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--background) 0%, var(--primary-light) 100%);
    padding-top: 100px;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.hero-image {
    flex: 1;
    position: relative;
    z-index: 1;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.08);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.5s ease;
}

.hero-image img:hover {
    transform: perspective(1000px) rotateY(0);
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
    fill: var(--white);
}

/* Why Balance Section */
.why-balance-section {
    background-color: var(--white);
    padding: 100px 0;
}

.benefits-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card {
    flex: 1;
    padding: 40px 30px;
    background-color: var(--grey-light);
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.5s forwards;
    animation-delay: calc(var(--animation-order) * 0.2s);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.infographic {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.infographic img {
    width: 100%;
    transition: transform 0.5s ease;
}

.infographic:hover img {
    transform: scale(1.02);
}

/* How It Works Section */
.how-it-works-section {
    background-color: var(--background);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before,
.how-it-works-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    z-index: 0;
}

.how-it-works-section::before {
    background: radial-gradient(circle, var(--primary-light) 0%, rgba(167, 226, 125, 0) 70%);
    top: -100px;
    left: -100px;
}

.how-it-works-section::after {
    background: radial-gradient(circle, var(--highlight-light) 0%, rgba(255, 209, 102, 0) 70%);
    bottom: -100px;
    right: -100px;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.step-card {
    display: flex;
    align-items: center;
    background-color: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateX(10px);
}

.step-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--primary);
    margin-right: 20px;
    line-height: 1;
}

.step-content {
    flex: 1;
}

.step-icon {
    margin-left: 20px;
}

.step-icon svg {
    fill: var(--accent);
    opacity: 0.7;
}

.health-line {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.health-line img {
    width: 100%;
    transition: transform 0.5s ease;
    border-radius: 10px;
}

.health-line:hover img {
    transform: scale(1.05);
}

/* Pricing Section */
.pricing-section {
    background-color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    flex: 1;
    max-width: 350px;
    background-color: var(--grey-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    background-color: var(--white);
    border: 2px solid var(--primary);
    transform: scale(1.05);
    z-index: 1;
    box-shadow: 0 15px 40px rgba(167, 226, 125, 0.2);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary);
    color: var(--accent);
    font-weight: 600;
    padding: 8px 15px;
    border-bottom-left-radius: 10px;
    z-index: 1;
}

.pricing-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid var(--grey);
}

.price {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin: 15px 0;
}

.price span {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-features {
    padding: 30px;
}

.pricing-features ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 10px;
}

.pricing-features ul li.not-included {
    color: var(--text-light);
    text-decoration: line-through;
}

.pricing-footer {
    padding: 0 30px 30px;
    text-align: center;
}

.plan-button {
    width: 100%;
}

.plan-emoji {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    opacity: 0.2;
    transition: all 0.3s ease;
}

.pricing-card:hover .plan-emoji {
    transform: scale(1.2) rotate(10deg);
    opacity: 0.4;
}

/* Mentors Section */
.mentors-section {
    background-color: var(--background);
    padding: 100px 0;
}

.mentors-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.mentor-card {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    max-width: 500px;
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.mentor-card:hover {
    transform: translateY(-10px);
}

.mentor-image {
    height: 250px;
    overflow: hidden;
}

.mentor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mentor-card:hover .mentor-image img {
    transform: scale(1.05);
}

.mentor-info {
    padding: 30px;
}

.mentor-title {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 15px;
}

.mentor-description {
    margin-bottom: 20px;
}

.mentor-highlights {
    color: var(--text-light);
}

.mentor-highlights li {
    margin-bottom: 5px;
}

/* Contact Section */
.contact-section {
    background-color: var(--white);
    padding: 100px 0;
}

.contact-wrapper {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    text-align: left;
    margin-bottom: 20px;
}

address {
    font-style: normal;
    margin-top: 30px;
}

address p {
    margin-bottom: 20px;
}

.contact-form-container {
    flex: 1;
}

.contact-form {
    background-color: var(--grey-light);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--grey);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(167, 226, 125, 0.2);
    outline: none;
}

.submit-button {
    width: 100%;
}

.map-container {
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Footer */
.site-footer {
    background-color: var(--accent);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 8px 0 0 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.newsletter-form button {
    background-color: var(--primary);
    color: var(--accent);
    font-weight: 600;
    padding: 0 20px;
    border: none;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--primary-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.back-to-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.back-to-top svg {
    fill: var(--white);
}

.back-to-top:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}

.back-to-top:hover svg {
    fill: var(--accent);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Media Queries */
@media (max-width: 1280px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
}

@media (max-width: 1200px) {
    .pricing-container {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .pricing-card {
        min-width: 300px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        margin-bottom: 40px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .benefits-container {
        flex-direction: column;
    }
    
    .contact-wrapper {
        flex-direction: column;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 50px 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-list.active {
        right: 0;
    }
    
    .mentors-container {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-columns {
        flex-direction: column;
    }
}

@media (max-width: 320px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .cta-button,
    .plan-button,
    .submit-button {
        padding: 12px 20px;
    }
}

/* Policy Pages Styles */
.policy-page {
    padding-top: 120px;
    min-height: 100vh;
}

.policy-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 60px;
}

.policy-content h1 {
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.policy-content h2 {
    text-align: left;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.policy-content p,
.policy-content ul,
.policy-content ol {
    margin-bottom: 20px;
}

.policy-content ul,
.policy-content ol {
    padding-left: 40px;
}

.policy-content li {
    margin-bottom: 10px;
}

.policy-content a {
    color: var(--primary-dark);
    text-decoration: underline;
}

.policy-content a:hover {
    color: var(--accent);
}

/* Success Page Styles */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    text-align: center;
}

.success-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 60px;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.success-icon {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.success-card h1 {
    margin-bottom: 20px;
}

.success-card p {
    margin-bottom: 30px;
}

.back-home-button {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--primary);
    color: var(--accent);
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(167, 226, 125, 0.3);
}

.back-home-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(167, 226, 125, 0.4);
}