/* 
 * Zenvorantix - Balanced Nutrition Landing Page
 * Author: Claude
 * Version: 1.0
 */

/* Base Styles & Reset */
:root {
    --primary-color: #2a9d8f;
    --secondary-color: #f4a261;
    --tertiary-color: #e9c46a;
    --dark-color: #264653;
    --light-color: #f8f9fa;
    --gray-color: #e9ecef;
    --body-font: 'Inter', sans-serif;
    --heading-font: 'Playfair Display', serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
    font-family: var(--body-font);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.section {
    padding: 80px 0;
}

.section-intro {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    color: var(--dark-color);
    opacity: 0.9;
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-xl);
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
    outline: none;
}

.cta-button:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-button.outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.cta-button.outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    width: 200px;
    height: 60px;
}

.animate-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: dash 2s ease-in-out forwards;
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

/* Header */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.scroll-indicator {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background-color: var(--secondary-color);
    z-index: 1000;
    transition: width 0.1s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 40px;
}

.main-nav {
    position: relative;
}

.nav-list {
    display: flex;
    gap: 20px;
}

.nav-list a {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-list a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 101;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--dark-color);
    margin: 6px 0;
    transition: var(--transition);
}

/* Section 1: Why Balance Matters */
.balance-section {
    background-color: var(--light-color);
}

.balance-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.balance-content {
    padding-right: 20px;
}

.balance-content h2 {
    margin-bottom: 30px;
}

.balance-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark-color);
    opacity: 0.9;
}

.balance-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-text {
    font-size: 0.9rem;
    text-align: center;
    color: var(--dark-color);
    opacity: 0.8;
}

.balance-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: rotate(2deg);
    transition: var(--transition);
}

.balance-image:hover {
    transform: rotate(0deg) scale(1.02);
}

.balance-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section 2: The Zenvorantix Approach */
.approach-section {
    background-color: #f5f5f5;
    position: relative;
    overflow: hidden;
}

.approach-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(42, 157, 143, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.approach-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.approach-content h2 {
    margin-bottom: 30px;
}

.approach-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.approach-principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.principle {
    background-color: white;
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.principle:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.principle-icon {
    margin-bottom: 15px;
}

.principle h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.principle p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--dark-color);
    opacity: 0.8;
    margin-bottom: 0;
}

.approach-map {
    position: relative;
}

.approach-map h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.nl-map {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    background-color: white;
    padding: 20px;
}

.nl-map-svg {
    width: 100%;
    height: auto;
}

/* Section 3: What's on Your Plate? */
.plate-section {
    background-color: white;
    text-align: center;
    padding: 100px 0;
}

.plate-container {
    max-width: 1000px;
}

.plate-interactive {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 50px auto;
}

.plate-svg {
    width: 100%;
    height: auto;
}

.plate-section {
    transition: var(--transition);
    cursor: pointer;
}

.plate-section:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.plate-info {
    opacity: 0;
    transition: var(--transition);
    background-color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    padding: 10px;
    pointer-events: none;
}

.plate-section:hover + .plate-info,
.plate-info:hover {
    opacity: 1;
}

.plate-mobile-info {
    display: none;
    margin-top: 40px;
}

.plate-mobile-item {
    background-color: white;
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    text-align: left;
}

.color-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

.plate-mobile-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.plate-mobile-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.plate-motto {
    margin-top: 60px;
}

.plate-motto h3 {
    font-size: 1.8rem;
    text-transform: lowercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.plate-motto p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Section 4: Dutch-Style Meal Plans */
.meal-plans-section {
    background-color: #f9f7f3;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.meal-plans-section::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(244, 162, 97, 0.2);
    border-radius: 50%;
}

.meal-plans-section::after {
    content: '';
    position: absolute;
    top: 50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(42, 157, 143, 0.1);
    border-radius: 50%;
}

.meal-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.slider-prev,
.slider-next {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-color);
    transition: var(--transition);
    padding: 5px;
}

.slider-prev:hover,
.slider-next:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.slider-day {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 20px;
    min-width: 150px;
    text-align: center;
    font-family: var(--heading-font);
    color: var(--dark-color);
}

.meal-cards {
    position: relative;
    height: 600px;
    perspective: 1000px;
}

.meal-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.5s ease, opacity 0.5s ease;
    transform: translateX(100%) rotateY(60deg);
    opacity: 0;
    overflow: hidden;
}

.meal-card.active {
    transform: translateX(0) rotateY(0);
    opacity: 1;
    z-index: 2;
}

.meal-timeline {
    flex: 1;
    position: relative;
    padding-left: 30px;
    border-left: 2px dashed var(--gray-color);
    margin-bottom: 20px;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 20px;
}

.timeline-marker {
    position: absolute;
    top: 6px;
    left: -36px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid var(--primary-color);
    z-index: 1;
}

.timeline-item[data-meal="ontbijt"] .timeline-marker {
    background-color: var(--tertiary-color);
}

.timeline-item[data-meal="lunch"] .timeline-marker {
    background-color: var(--primary-color);
}

.timeline-item[data-meal="diner"] .timeline-marker {
    background-color: var(--secondary-color);
}

.timeline-item h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.timeline-item p {
    margin-bottom: 10px;
}

.meal-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
}

.meal-icon {
    font-size: 1.2rem;
    cursor: pointer;
}

.meal-calories {
    font-size: 0.9rem;
    color: var(--dark-color);
    opacity: 0.7;
}

.meal-totals {
    background-color: var(--gray-color);
    padding: 15px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.total-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 600;
}

.macros {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.macro-item {
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
}

.macro-label {
    color: var(--dark-color);
    opacity: 0.7;
}

.macro-value {
    font-weight: 600;
}

.meal-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-lg) 0 var(--radius-lg) 0;
    box-shadow: var(--shadow);
    z-index: -1;
    opacity: 0.8;
}

.meal-cta {
    text-align: center;
    margin-top: 40px;
}

/* Section 5: Mentors and Experience */
.mentors-section {
    background-color: white;
    padding: 100px 0;
}

.mentors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.mentor-card {
    background-color: var(--light-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.mentor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.mentor-image {
    height: 250px;
    overflow: hidden;
}

.mentor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.mentor-card:hover .mentor-image img {
    transform: scale(1.05);
}

.mentor-info {
    padding: 20px;
}

.mentor-info h3 {
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.mentor-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.mentor-description {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dark-color);
    opacity: 0.9;
}

.mentor-specialty {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.specialty-tag {
    background-color: rgba(42, 157, 143, 0.1);
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.testimonials {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonials h3 {
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.testimonial-slider {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-item.active {
    opacity: 1;
    z-index: 1;
}

.testimonial-content {
    background-color: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    max-width: 600px;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 4rem;
    font-family: var(--heading-font);
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-color);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gray-color);
    border: none;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Section 6: Subscription Plans */
.subscription-section {
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.subscription-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(42, 157, 143, 0.2) 0%, rgba(42, 157, 143, 0) 70%);
    border-radius: 50%;
}

.subscription-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.subscription-card {
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    padding: 40px 30px;
}

.subscription-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.subscription-card.highlighted {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border: 2px solid var(--primary-color);
    transform: translateY(-15px) scale(1.05);
    z-index: 2;
}

.subscription-card.highlighted:hover {
    transform: translateY(-20px) scale(1.05);
}

.plan-badge {
    position: absolute;
    top: 0;
    right: 30px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.period {
    font-size: 1rem;
    color: var(--dark-color);
    opacity: 0.7;
    margin-left: 5px;
}

.plan-features {
    margin-bottom: 30px;
}

.plan-features ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.feature-disabled {
    opacity: 0.5;
}

.plan-cta {
    text-align: center;
}

.guarantee {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.guarantee-icon {
    flex-shrink: 0;
}

.guarantee-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.guarantee-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-color);
    opacity: 0.9;
    margin-bottom: 0;
}

/* Section 7: Contact & Location */
.contact-section {
    background-color: white;
    padding: 100px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.contact-form-container {
    padding: 30px;
    background-color: var(--light-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-form-container h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--gray-color);
    border-radius: var(--radius-md);
    font-family: var(--body-font);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.2);
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 0.95rem;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid var(--gray-color);
    border-radius: 4px;
    transition: var(--transition);
}

.checkbox-container:hover input ~ .checkmark {
    border-color: var(--primary-color);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.contact-map {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-container {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    display: block;
    border: none;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: var(--light-color);
    padding: 15px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

.info-icon {
    flex-shrink: 0;
}

.info-content h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.info-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
    color: var(--dark-color);
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
}

.footer-logo img {
    height: 50px;
}

.footer-newsletter h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.footer-newsletter p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.newsletter-form .form-group {
    position: relative;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 60px 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: var(--transition);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.newsletter-button {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.newsletter-button:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

.footer-language {
    display: flex;
    justify-content: flex-end;
}

.language-selector {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
    padding: 5px 10px;
    border-radius: var(--radius-sm);
}

.language-option:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.language-option.active {
    color: white;
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.1);
}

.flag {
    font-size: 1.2rem;
}

.footer-divider {
    height: 1px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-motto {
    font-size: 0.95rem;
    font-weight: 500;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .section {
        padding: 60px 0;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .balance-container,
    .approach-container,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .balance-content {
        padding-right: 0;
    }
    
    .approach-principles {
        grid-template-columns: 1fr;
    }
    
    .mentors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .subscription-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 40px;
    }
    
    .subscription-card.highlighted {
        transform: scale(1.05);
    }
    
    .subscription-card.highlighted:hover {
        transform: scale(1.05) translateY(-10px);
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-language,
    .footer-logo {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 10px 15px;
    }
    
    .logo img {
        height: 30px;
    }
    
    .nav-list {
        position: fixed;
        top: 0;
        right: -300px;
        width: 250px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        padding: 80px 20px 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 100;
    }
    
    .nav-list.active {
        right: 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .balance-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .stat {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }
    
    .plate-interactive {
        display: none;
    }
    
    .plate-mobile-info {
        display: block;
    }
    
    .meal-card {
        padding: 20px;
        height: auto;
        position: relative;
        opacity: 0;
        display: none;
    }
    
    .meal-card.active {
        opacity: 1;
        display: block;
        transform: none;
    }
    
    .meal-cards {
        height: auto;
    }
    
    .meal-image {
        position: relative;
        width: 100%;
        height: 150px;
        border-radius: var(--radius-md);
        margin-top: 20px;
        opacity: 1;
        z-index: 1;
    }
    
    .mentors-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 40px 0;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .header-container {
        padding: 10px;
    }
    
    .slider-day {
        font-size: 1.2rem;
        min-width: 120px;
    }
    
    .testimonial-content {
        padding: 20px;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
}