/* 
 * Solunatrixa - Yoga & Gezonde Voeding
 * Hoofdstijlblad
 */

/* ======= ALGEMENE STIJLEN ======= */
:root {
    --color-lavender: #b5a2c8;
    --color-lavender-light: #d7c8e5;
    --color-lavender-dark: #967ba9;
    --color-milky: #f9f7fc;
    --color-mint: #a4d5c1;
    --color-mint-light: #c8e6da;
    --color-mint-dark: #78b4a0;
    --color-dark: #463961;
    --color-text: #4a4a4a;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Open Sans', sans-serif;
    
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
    
    --transition: all 0.3s ease;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-milky);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--color-lavender-dark);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-mint-dark);
}

ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

button, input, select, textarea {
    font-family: var(--font-body);
    font-size: 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 5rem 0;
    position: relative;
}

/* Titels & Decoraties */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.5rem;
}

.title-decoration span {
    height: 1px;
    width: 60px;
    background-color: var(--color-lavender);
}

.title-decoration svg {
    margin: 0 15px;
    color: var(--color-lavender);
}

/* CTA Knoppen */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--color-lavender);
    color: white;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.cta-button.primary {
    background-color: var(--color-mint);
    color: var(--color-dark);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: white;
}

.cta-button.primary:hover {
    background-color: var(--color-mint-dark);
    color: white;
}

.cta-button i {
    margin-right: 8px;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
    animation: slideUp 1s ease forwards;
}

/* ======= HEADER & NAVIGATIE ======= */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
    padding: 1.5rem 0;
}

#header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    transition: var(--transition);
}

#header.scrolled .logo img {
    height: 40px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    margin-left: 1.5rem;
}

.main-nav ul li a {
    color: var(--color-dark);
    font-weight: 500;
    padding: 0.5rem;
    transition: var(--transition);
}

.main-nav ul li a:hover {
    color: var(--color-lavender);
}

.main-nav ul li a.cta-button {
    color: white;
    padding: 0.75rem 1.5rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--color-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* ======= HERO SECTION ======= */
.hero-section {
    height: 100vh;
    min-height: 700px;
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(70, 57, 97, 0.8) 0%, rgba(181, 162, 200, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    animation: fadeIn 1.5s ease forwards;
}

.brand-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    backdrop-filter: blur(5px);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-content h2 {
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-mint-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

.hero-shapes .shape {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.hero-shapes .shape-1 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
}

.hero-shapes .shape-2 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: -100px;
}

.hero-shapes .shape-3 {
    width: 150px;
    height: 150px;
    bottom: 30%;
    right: 10%;
}

/* ======= VALUES SECTION ======= */
.values-section {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b5a2c8' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.values-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.value-card {
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--color-lavender-light) 0%, var(--color-mint-light) 100%);
    border-radius: 50%;
    color: var(--color-dark);
    font-size: 2rem;
}

.value-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.value-card p {
    color: var(--color-text);
    margin-bottom: 0;
}

/* ======= FOR WHOM SECTION ======= */
.for-whom-section {
    background: linear-gradient(135deg, var(--color-mint-light) 0%, var(--color-lavender-light) 100%);
    position: relative;
    overflow: hidden;
}

.for-whom-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15vw;
    background-color: white;
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
}

.audience-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.audience-card {
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.audience-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    color: var(--color-lavender);
    font-size: 1.5rem;
    z-index: 2;
}

.audience-quote {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 3.5rem 1.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    margin: 0;
    z-index: 1;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--color-dark);
}

.audience-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.audience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.audience-card:hover .audience-image img {
    transform: scale(1.05);
}

/* ======= PROGRAM SECTION ======= */
.program-section {
    background-color: white;
    position: relative;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 2px;
    background-color: var(--color-lavender-light);
    left: 50px;
    top: 0;
}

.timeline-item {
    position: relative;
    padding-left: 100px;
    margin-bottom: 3rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 42px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid var(--color-lavender);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.timeline-marker span {
    font-size: 0.75rem;
    font-weight: bold;
    color: var(--color-lavender-dark);
}

.timeline-content {
    background-color: #f9f7fc;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.timeline-item:hover .timeline-content {
    box-shadow: var(--shadow-md);
}

.timeline-content h3 {
    color: var(--color-lavender-dark);
    margin-bottom: 0.75rem;
}

.timeline-content ul {
    margin-top: 1rem;
    margin-bottom: 0;
}

.timeline-content ul li {
    margin-bottom: 0.5rem;
}

.timeline-content ul li:last-child {
    margin-bottom: 0;
}

/* ======= GALLERY SECTION ======= */
.gallery-section {
    background-color: var(--color-milky);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15vw;
    background: linear-gradient(135deg, var(--color-mint-light) 0%, var(--color-lavender-light) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
}

.gallery-swiper {
    padding: 2rem 0;
    margin-top: 2rem;
}

.gallery-image {
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.swiper-slide:hover .gallery-image img {
    transform: scale(1.05);
}

.swiper-button-prev,
.swiper-button-next {
    color: var(--color-lavender-dark);
}

.swiper-pagination-bullet-active {
    background-color: var(--color-lavender-dark);
}

/* ======= TESTIMONIALS SECTION ======= */
.testimonials-section {
    background: url('images/test.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
}

.testimonials-swiper {
    padding: 2rem 0;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
}

@media (min-width: 768px) {
    .testimonial-card {
        flex-direction: row;
    }
}

.testimonial-image {
    width: 100%;
    min-height: 250px;
    max-height: 300px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .testimonial-image {
        width: 40%;
        min-height: unset;
        max-height: unset;
        height: auto;
    }
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    padding: 2.5rem;
    position: relative;
    flex: 1;
}

.quote-mark {
    color: var(--color-lavender-light);
    font-size: 2.5rem;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    opacity: 0.7;
}

.testimonial-content p {
    margin-top: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    margin-top: 1rem;
}

.testimonial-author h4 {
    margin-bottom: 0;
    color: var(--color-dark);
}

.testimonial-author p {
    margin-top: 0;
    font-size: 0.9rem;
    color: var(--color-lavender-dark);
}

/* ======= BONUSES SECTION ======= */
.bonuses-section {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.bonuses-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-lavender-light) 0%, rgba(255,255,255,0) 70%);
    opacity: 0.3;
}

.bonuses-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.bonus-card {
    background-color: var(--color-milky);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(181, 162, 200, 0.1);
}

.bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(181, 162, 200, 0.3);
}

.bonus-icon {
    font-size: 2.5rem;
    color: var(--color-lavender);
    margin-bottom: 1.5rem;
}

.bonus-card h3 {
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.bonus-card p {
    margin-bottom: 0;
    color: var(--color-text);
}

/* ======= PRICING SECTION ======= */
.pricing-section {
    background: linear-gradient(135deg, var(--color-mint-light) 0%, var(--color-milky) 100%);
    position: relative;
}

.pricing-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.pricing-card.popular {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    z-index: 2;
    border: 2px solid var(--color-lavender);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: 1.25rem;
    right: 0;
    background-color: var(--color-lavender);
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px 0 0 20px;
    font-weight: 600;
}

.pricing-tag {
    text-align: center;
    padding: 2.5rem 1.5rem 1.5rem;
    background: linear-gradient(135deg, var(--color-lavender-light) 0%, var(--color-mint-light) 100%);
    color: var(--color-dark);
}

.pricing-tag i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing-tag h3 {
    font-size: 1.75rem;
    margin-bottom: 0;
    color: var(--color-dark);
}

.pricing-price {
    text-align: center;
    padding: 1.5rem;
    font-family: var(--font-heading);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-price .currency {
    font-size: 1.5rem;
    vertical-align: top;
    margin-right: 0.25rem;
}

.pricing-price .amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-dark);
}

.pricing-features {
    padding: 1.5rem;
    background-color: white;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.pricing-features ul li:last-child {
    border-bottom: none;
}

.pricing-features ul li i {
    margin-right: 0.75rem;
    font-size: 0.8rem;
}

.pricing-features ul li i.fa-check {
    color: var(--color-mint-dark);
}

.pricing-features ul li i.fa-times {
    color: #ddd;
}

.pricing-cta {
    display: block;
    margin: 0 1.5rem 1.5rem;
}

/* ======= FAQ SECTION ======= */
.faq-section {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23a4d5c1' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    background-color: var(--color-milky);
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
    flex: 1;
}

.faq-toggle {
    color: var(--color-lavender);
    transition: var(--transition);
}

.faq-toggle i {
    font-size: 1rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    background-color: white;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 1000px;
}

.faq-answer p {
    margin-bottom: 0;
}

/* ======= MAP SECTION ======= */
.map-section {
    background-color: var(--color-milky);
    position: relative;
}

.map-wrapper {
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ======= CONTACT SECTION ======= */
.contact-section {
    background: url('images/contact.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .form-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form {
    background-color: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--color-lavender);
    box-shadow: 0 0 0 3px rgba(181, 162, 200, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 0.75rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 0.9rem;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    animation: breathe 3s infinite;
}

.form-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.form-decoration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* ======= NEWSLETTER SECTION ======= */
.newsletter-section {
    background-color: var(--color-lavender);
    color: white;
    position: relative;
    padding: 3rem 0;
}

.newsletter-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .newsletter-wrapper {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.newsletter-content {
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .newsletter-content {
        margin-bottom: 0;
        max-width: 60%;
    }
}

.newsletter-content h3 {
    margin-bottom: 0.5rem;
    color: white;
}

.newsletter-content p {
    margin-bottom: 0;
    opacity: 0.9;
}

.newsletter-form {
    width: 100%;
}

@media (min-width: 768px) {
    .newsletter-form {
        max-width: 400px;
    }
}

.newsletter-input-group {
    display: flex;
    width: 100%;
}

.newsletter-input-group input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    outline: none;
}

.newsletter-submit {
    padding: 0.75rem 1.5rem;
    background-color: var(--color-mint);
    color: var(--color-dark);
    border: none;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-submit:hover {
    background-color: var(--color-mint-dark);
    color: white;
}

/* ======= COOKIE BANNER ======= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 999;
    display: none;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.cookie-content p {
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .cookie-content p {
        margin-bottom: 0;
        margin-right: 2rem;
    }
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-accept,
.cookie-decline {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-accept {
    background-color: var(--color-lavender);
    color: white;
}

.cookie-accept:hover {
    background-color: var(--color-lavender-dark);
}

.cookie-decline {
    background-color: #f1f1f1;
    color: var(--color-text);
}

.cookie-decline:hover {
    background-color: #e0e0e0;
}

/* ======= FOOTER ======= */
.site-footer {
    background-color: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 5rem 0 2rem;
    position: relative;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-logo p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-nav h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-nav ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav ul li,
.footer-contact ul li {
    margin-bottom: 0.75rem;
}

.footer-nav ul li a,
.footer-contact ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-nav ul li a:hover,
.footer-contact ul li a:hover {
    color: white;
}

.footer-contact ul li i {
    margin-right: 0.75rem;
    color: var(--color-lavender-light);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-copyright p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .footer-copyright p {
        margin-bottom: 0;
    }
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .footer-links {
        justify-content: flex-end;
    }
}

/* ======= RESPONSIVE STYLES ======= */
@media (max-width: 991px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.75rem;
    }
    
    .section-title {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 767px) {
    section {
        padding: 4rem 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.75rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: white;
        z-index: 1001;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        padding: 5rem 2rem 2rem;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav ul li {
        margin-left: 0;
        margin-bottom: 1.25rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1002;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-marker {
        left: 12px;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 575px) {
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .hero-content h2 {
        font-size: 1.25rem;
    }
    
    .value-card,
    .audience-card,
    .bonus-card,
    .pricing-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
}