/* 
   Trilvora Pilates - Main Stylesheet
   Version: 1.0
   Author: Trilvora Design Team
*/

/* ===== RESET & BASE STYLES ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Main Colors */
    --primary-color: #C4F0E0;
    --secondary-color: #D8D8F6;
    --dark-text: #333333;
    --light-text: #666666;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --dark-gray: #444444;
    --accent-color: #FF9A8B;
    
    /* Gradients */
    --primary-gradient: linear-gradient(135deg, #C4F0E0 0%, #D8D8F6 100%);
    --secondary-gradient: linear-gradient(135deg, #FF9A8B 0%, #FF6B95 100%);
    
    /* Shadows */
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'DM Sans', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Spacing */
    --section-padding: 80px;
    --section-padding-mobile: 40px;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%; /* 1rem = 10px */
}

body {
    font-family: var(--body-font);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-family: var(--heading-font);
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-text);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--primary-gradient);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

.section-header p {
    color: var(--light-text);
    font-size: 1.8rem;
    max-width: 600px;
    margin: 0 auto;
    margin-top: 2rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1.2rem 2.8rem;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1.6rem;
    text-align: center;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50px;
    transition: all 0.3s;
    z-index: -1;
}

.btn:hover::after {
    width: 100%;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--dark-text);
    box-shadow: 0 4px 15px rgba(196, 240, 224, 0.5);
}

.btn-primary::after {
    background: var(--secondary-gradient);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(255, 154, 139, 0.4);
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--dark-text);
    border: 2px solid var(--primary-color);
}

.btn-secondary::after {
    background: var(--primary-gradient);
}

.btn-secondary:hover {
    color: var(--dark-text);
    box-shadow: 0 6px 20px rgba(196, 240, 224, 0.4);
}

.btn-text {
    background-color: transparent;
    color: var(--dark-text);
    padding: 1rem 2rem;
    text-decoration: underline;
}

.btn-text:hover {
    color: var(--accent-color);
}

/* ===== TOP BAR ===== */
.top-bar {
    background-color: var(--primary-color);
    padding: 0.8rem 0;
    font-size: 1.4rem;
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.top-bar-content p {
    display: flex;
    align-items: center;
}

.top-bar-content i {
    margin-right: 0.5rem;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-fast);
}

.header.scrolled {
    padding: 1rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: block;
    width: 150px;
}

.logo img {
    width: 100%;
    height: auto;
}

.menu {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.menu li a {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 1.6rem;
    color: var(--dark-text);
    position: relative;
}

.menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--primary-gradient);
    transition: width var(--transition-fast);
}

.menu li a:hover::after,
.menu li a.active::after {
    width: 100%;
}

.cta-btn a {
    background: var(--primary-gradient);
    color: var(--dark-text);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(196, 240, 224, 0.5);
}

.cta-btn a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(196, 240, 224, 0.6);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--dark-text);
    border-radius: 3px;
    transition: all var(--transition-fast);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--white);
    z-index: 2000;
    padding: 2rem;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: right var(--transition-slow);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.mobile-logo {
    width: 120px;
}

.close-menu {
    font-size: 2.4rem;
    cursor: pointer;
    color: var(--dark-text);
    transition: color var(--transition-fast);
}

.close-menu:hover {
    color: var(--accent-color);
}

.mobile-menu-links li {
    margin-bottom: 2rem;
}

.mobile-menu-links li a {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 1.8rem;
    color: var(--dark-text);
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-gray);
    transition: color var(--transition-fast);
}

.mobile-menu-links li a:hover {
    color: var(--accent-color);
}

.mobile-cta {
    margin-top: 3rem;
}

.mobile-cta a {
    display: block;
    background: var(--primary-gradient);
    color: var(--dark-text);
    padding: 1.2rem;
    text-align: center;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(196, 240, 224, 0.5);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 8rem 0;
    background: linear-gradient(135deg, #E0F5FF 0%, #F8F0FF 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(196, 240, 224, 0.3);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(216, 216, 246, 0.3);
    z-index: 1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    max-width: 500px;
}

.hero-text h1 {
    font-family: var(--heading-font);
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--dark-text);
}

.hero-text p {
    font-size: 1.8rem;
    color: var(--light-text);
    margin-bottom: 3rem;
}

.hero-image {
    flex: 1;
    position: relative;
    padding-left: 5rem;
}

.hero-image img {
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    position: relative;
    z-index: 2;
}

.hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(196, 240, 224, 0.3);
    animation: pulse 3s infinite alternate;
}

.circle-1 {
    width: 150px;
    height: 150px;
    top: -20px;
    left: 20%;
    animation-delay: 0s;
}

.circle-2 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 10%;
    background-color: rgba(216, 216, 246, 0.3);
    animation-delay: 1s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    bottom: 10%;
    right: 20%;
    background-color: rgba(255, 154, 139, 0.2);
    animation-delay: 2s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

/* ===== PROGRAM SECTION ===== */
.program {
    padding: var(--section-padding) 0;
    background-color: var(--white);
    position: relative;
}

.program::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, #F8F0FF, transparent);
}

.program-cards {
    display: flex;
    gap: 3rem;
    margin-top: 5rem;
}

.program-card {
    flex: 1;
    background-color: var(--white);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: var(--card-shadow);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-gradient);
    z-index: -1;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.card-icon {
    font-size: 3.6rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.card-icon::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: rgba(196, 240, 224, 0.2);
    border-radius: 50%;
    left: -10px;
    top: -10px;
    z-index: -1;
}

.program-card h3 {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.program-card p {
    color: var(--light-text);
    line-height: 1.7;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
    padding: var(--section-padding) 0;
    background-color: var(--light-gray);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 100%;
    background: var(--primary-gradient);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
}

.timeline-item {
    position: relative;
    width: 100%;
    padding: 2rem 0;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
}

.timeline-number {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--heading-font);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--dark-text);
    box-shadow: 0 5px 15px rgba(196, 240, 224, 0.5);
    z-index: 2;
}

.timeline-content {
    width: 45%;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent transparent var(--white);
}

.timeline-item:nth-child(even) .timeline-content::after {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: transparent var(--white) transparent transparent;
}

.timeline-content h3 {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.timeline-content p {
    color: var(--light-text);
}

/* ===== BENEFITS SECTION ===== */
.benefits {
    padding: var(--section-padding) 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: rgba(196, 240, 224, 0.1);
    border-radius: 50%;
    top: -150px;
    left: -150px;
    z-index: 1;
}

.benefits::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: rgba(216, 216, 246, 0.1);
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
    z-index: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.benefit-item {
    background-color: var(--white);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: var(--card-shadow);
    transition: all var(--transition-fast);
    text-align: center;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(196, 240, 224, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: var(--primary-color);
    transition: all var(--transition-fast);
}

.benefit-item:hover .benefit-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.benefit-item h3 {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.benefit-item p {
    color: var(--light-text);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: var(--section-padding) 0;
    background-color: var(--light-gray);
}

.testimonial-slider {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    overflow-x: hidden;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 2rem);
    background-color: var(--white);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: var(--card-shadow);
    transition: all var(--transition-fast);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.testimonial-rating {
    margin-bottom: 2rem;
    color: #FFD700;
    font-size: 1.8rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--dark-text);
    margin-bottom: 2.5rem;
    font-size: 1.6rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.author-info p {
    color: var(--light-text);
    font-size: 1.4rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #DDD;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    background: var(--primary-gradient);
    width: 30px;
    border-radius: 10px;
}

/* ===== PRICING SECTION ===== */
.pricing {
    padding: var(--section-padding) 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background-color: rgba(196, 240, 224, 0.1);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    z-index: 1;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.pricing-card {
    flex: 0 0 350px;
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all var(--transition-fast);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: var(--hover-shadow);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    bottom: -2px;
    left: -2px;
    background: var(--primary-gradient);
    z-index: -1;
    border-radius: 15px;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-tag {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--secondary-gradient);
    color: var(--white);
    padding: 0.5rem 3rem;
    font-size: 1.4rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 3;
}

.pricing-header {
    padding: 3rem;
    text-align: center;
    background-color: rgba(196, 240, 224, 0.1);
}

.pricing-header h3 {
    font-family: var(--heading-font);
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.currency {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--dark-text);
}

.amount {
    font-family: var(--heading-font);
    font-size: 4.8rem;
    font-weight: 700;
    color: var(--dark-text);
}

.period {
    font-size: 1.6rem;
    color: var(--light-text);
}

.pricing-features {
    padding: 3rem;
}

.pricing-features ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.pricing-features ul li i {
    color: var(--primary-color);
    font-size: 1.6rem;
}

.pricing-features ul li.disabled {
    color: var(--light-text);
    opacity: 0.7;
}

.pricing-features ul li.disabled i {
    color: #DDD;
}

.pricing-footer {
    padding: 0 3rem 3rem;
    text-align: center;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--section-padding) 0;
    background-color: var(--light-gray);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 15px;
    box-shadow: var(--card-shadow);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-family: var(--heading-font);
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--dark-text);
    position: relative;
    display: inline-block;
}

.about-text h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--primary-gradient);
    bottom: -10px;
    left: 0;
    border-radius: 10px;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--heading-font);
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--dark-text);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-text {
    color: var(--light-text);
    font-size: 1.4rem;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter {
    padding: 5rem 0;
    background: var(--primary-gradient);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-text h2 {
    font-family: var(--heading-font);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.newsletter-text p {
    color: var(--dark-text);
    margin-bottom: 3rem;
    font-size: 1.8rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: var(--body-font);
    font-size: 1.6rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.privacy-note {
    font-size: 1.4rem;
    color: var(--dark-text);
}

.privacy-note a {
    text-decoration: underline;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: var(--section-padding) 0;
    background-color: var(--white);
}

.contact-content {
    display: flex;
    gap: 5rem;
    margin-top: 5rem;
}

.contact-form-container {
    flex: 1;
}

.contact-form {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--dark-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid #DDD;
    border-radius: 8px;
    font-family: var(--body-font);
    font-size: 1.6rem;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(196, 240, 224, 0.3);
}

.contact-info {
    flex: 1;
}

.info-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-icon {
    flex: 0 0 50px;
    height: 50px;
    background-color: rgba(196, 240, 224, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
}

.info-text h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.info-text p {
    color: var(--light-text);
}

.map-container {
    margin-top: 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    flex: 1 1 300px;
}

.footer-logo img {
    width: 150px;
    margin-bottom: 2rem;
    filter: brightness(1.5);
}

.footer-logo p {
    color: #AAA;
    line-height: 1.7;
}

.footer-links,
.footer-legal,
.footer-contact {
    flex: 1 1 200px;
}

.footer h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--white);
    position: relative;
    display: inline-block;
}

.footer h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--primary-gradient);
    bottom: -10px;
    left: 0;
    border-radius: 10px;
}

.footer ul li {
    margin-bottom: 1rem;
}

.footer ul li a {
    color: #AAA;
    transition: color var(--transition-fast);
}

.footer ul li a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #AAA;
}

.footer-contact p i {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #888;
    font-size: 1.4rem;
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    transform: translateY(200%);
    transition: transform var(--transition-slow);
}

.cookie-consent.active {
    transform: translateY(0);
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    color: var(--dark-text);
    font-size: 1.4rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin-left: 2rem;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-text);
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(196, 240, 224, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(196, 240, 224, 0.6);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .section-header h2 {
        font-size: 3.2rem;
    }
    
    .hero-text h1 {
        font-size: 4rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 60px;
    }
    
    .menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 4rem;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-image {
        padding-left: 0;
    }
    
    .program-cards {
        flex-direction: column;
    }
    
    .about-content {
        flex-direction: column;
        gap: 4rem;
    }
    
    .about-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-text {
        text-align: center;
    }
    
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form .btn {
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 50px;
    }
    
    .section-header h2 {
        font-size: 2.8rem;
    }
    
    .hero-text h1 {
        font-size: 3.6rem;
    }
    
    .timeline::before {
        left: 60px;
    }
    
    .timeline-item {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        margin-left: 60px;
    }
    
    .timeline-number {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::after,
    .timeline-item:nth-child(even) .timeline-content::after {
        display: none;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-slider {
        flex-direction: column;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .cookie-consent {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        margin-left: 0;
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    :root {
        --section-padding: 40px;
    }
    
    .top-bar {
        display: none;
    }
    
    .section-header h2 {
        font-size: 2.4rem;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .back-to-top {
        right: 2rem;
        bottom: 2rem;
        width: 40px;
        height: 40px;
        font-size: 1.6rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
}