/* 
   Drevanorith 21-Dagen Fitness Programma 
   Main Stylesheet
*/

/* ================ Base Styles ================ */
:root {
    --primary: #FF6B3B;
    --primary-dark: #E75A2A;
    --primary-light: #FF8C65;
    --secondary: #A8E6CF;
    --secondary-dark: #8DD5BE;
    --background: #FFF9F4;
    --dark: #2C2C2C;
    --dark-light: #4A4A4A;
    --gray: #E0E0E0;
    --white: #FFFFFF;
    --success: #4CAF50;
    --warning: #FFC107;
    --error: #F44336;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--background);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--dark-light);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--dark-light);
}

.section-header.light h2,
.section-header.light p {
    color: var(--white);
}

.section-header.light h2::after {
    background-color: var(--white);
}

/* ================ Buttons ================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(255, 107, 59, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 59, 0.4);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--dark);
    box-shadow: 0 5px 15px rgba(168, 230, 207, 0.3);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(168, 230, 207, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 59, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 107, 59, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 59, 0);
    }
}

/* ================ Navigation ================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.header.scrolled {
    background-color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-block;
    z-index: 100;
}

.logo img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.header.scrolled .logo img {
    height: 40px;
}

.nav-list {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    color: var(--dark);
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 100;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* ================ Hero Section ================ */
.hero {
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: var(--white);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.animated-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.animated-image:hover {
    transform: perspective(1000px) rotateY(0);
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

/* ================ Program Section ================ */
.program-section {
    background-color: var(--background);
    padding-top: 7rem;
    padding-bottom: 7rem;
}

.program-timeline {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.timeline-container {
    position: relative;
    padding: 2rem 0;
}

.timeline-markers {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.marker {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.marker::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-color: var(--white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    margin: 0 auto 0.5rem;
    transition: all 0.3s ease;
}

.marker.active::before {
    background-color: var(--primary);
    transform: scale(1.3);
}

.marker .day {
    font-weight: 600;
    color: var(--dark);
    transition: all 0.3s ease;
}

.marker.active .day {
    color: var(--primary);
    font-weight: 700;
}

.timeline-progress {
    position: absolute;
    top: 2rem;
    left: 0;
    width: 100%;
    z-index: 1;
    padding: 0 10px;
}

.progress-bar {
    height: 4px;
    background-color: var(--gray);
    border-radius: 2px;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: var(--primary);
    border-radius: 2px;
    transition: width 0.5s ease;
}

.marker.active ~ .marker ~ .marker ~ .marker ~ .progress-bar::after {
    width: 100%;
}

.marker.active ~ .marker ~ .marker ~ .progress-bar::after {
    width: 66.66%;
}

.marker.active ~ .marker ~ .progress-bar::after {
    width: 33.33%;
}

.marker.active ~ .progress-bar::after {
    width: 0%;
}

.day-details {
    margin-top: 3rem;
}

.day-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: none;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
}

.day-card.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.day-features {
    margin-top: 1.5rem;
}

.day-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.day-features li i {
    color: var(--success);
    margin-right: 0.5rem;
}

.program-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--secondary);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

/* ================ Benefits Section ================ */
.benefits-section {
    position: relative;
    overflow: hidden;
    background-color: var(--primary);
    color: var(--white);
}

.benefits-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: radial-gradient(var(--white) 2px, transparent 2px);
    background-size: 30px 30px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
}

.benefit-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.2);
}

.benefit-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* ================ How It Works Section ================ */
.how-it-works {
    background-color: var(--background);
    overflow: hidden;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.step {
    position: relative;
    z-index: 2;
}

.step-number {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(255, 107, 59, 0.3);
}

.step-content {
    background-color: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.step:hover .step-content {
    transform: translateY(-10px);
}

.step-image {
    margin-bottom: 1.5rem;
}

.step-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ================ Testimonials Section ================ */
.testimonials {
    background-color: var(--white);
    overflow: hidden;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-slides {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.5s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.testimonial-content {
    display: flex;
    background-color: var(--background);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-image {
    flex: 0 0 35%;
    position: relative;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.testimonial-text {
    flex: 0 0 65%;
    padding: 2rem;
    position: relative;
}

.quote-icon {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.testimonial-author {
    margin-top: 1.5rem;
}

.testimonial-author h4 {
    margin-bottom: 0.2rem;
    color: var(--dark);
}

.testimonial-author p {
    color: var(--primary);
    margin-bottom: 0;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.prev-testimonial,
.next-testimonial {
    background-color: var(--white);
    color: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-testimonial:hover,
.next-testimonial:hover {
    background-color: var(--primary);
    color: var(--white);
}

.testimonial-dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 1rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary);
    transform: scale(1.5);
}

/* ================ Pricing Section ================ */
.pricing {
    position: relative;
    background-color: var(--dark);
    overflow: hidden;
    color: var(--white);
}

.pricing-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(135deg, rgba(255, 107, 59, 0.2) 25%, transparent 25%),
        linear-gradient(225deg, rgba(255, 107, 59, 0.2) 25%, transparent 25%),
        linear-gradient(45deg, rgba(255, 107, 59, 0.2) 25%, transparent 25%),
        linear-gradient(315deg, rgba(255, 107, 59, 0.2) 25%, transparent 25%);
    background-position: 10px 0, 10px 0, 0 0, 0 0;
    background-size: 20px 20px;
    background-repeat: repeat;
    opacity: 0.1;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.price-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 2rem;
    color: var(--dark);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.price-card.featured {
    border: 3px solid var(--primary);
    transform: scale(1.05);
    z-index: 2;
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
    padding: 0.3rem 1rem;
    border-radius: 50px;
}

.price-header {
    text-align: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 0.5rem;
}

.price-features ul {
    margin-bottom: 2rem;
}

.price-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.price-features li i {
    margin-right: 0.8rem;
    font-size: 1rem;
}

.price-features li i.fa-check {
    color: var(--success);
}

.price-features li i.fa-times {
    color: var(--error);
}

.price-card .btn {
    width: 100%;
}

/* ================ FAQ Section ================ */
.faq-section {
    background-color: var(--background);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 1000px;
}

/* ================ Newsletter Section ================ */
.newsletter {
    background-color: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.animated-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -100px;
    animation: float1 15s infinite linear;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    right: 10%;
    animation: float2 20s infinite linear;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: -50px;
    animation: float3 17s infinite linear;
}

@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, 50px) rotate(90deg);
    }
    50% {
        transform: translate(0, 100px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, 50px) rotate(270deg);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-30px, -50px) rotate(90deg);
    }
    50% {
        transform: translate(-60px, 0) rotate(180deg);
    }
    75% {
        transform: translate(-30px, 50px) rotate(270deg);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(0, 30px) rotate(90deg);
    }
    50% {
        transform: translate(-30px, 60px) rotate(180deg);
    }
    75% {
        transform: translate(-60px, 30px) rotate(270deg);
    }
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.newsletter-content h2 {
    color: var(--white);
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-form {
    margin-top: 2rem;
}

.form-group {
    display: flex;
    margin-bottom: 1rem;
}

.form-group input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px 0 0 50px;
    font-size: 1rem;
    outline: none;
}

.form-group .btn {
    border-radius: 0 50px 50px 0;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    text-align: left;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.form-consent input[type="checkbox"] {
    margin-top: 0.3rem;
}

.form-consent a {
    color: var(--white);
    text-decoration: underline;
}

/* ================ Contact Section ================ */
.contact-section {
    background-color: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-form-wrapper {
    background-color: var(--background);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--gray);
    border-radius: 10px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
}

.contact-map {
    display: flex;
    flex-direction: column;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 300px;
}

.contact-info {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item i {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================ Footer ================ */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    max-width: 300px;
}

.footer-logo img {
    margin-bottom: 1rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

/* ================ Mobile CTA ================ */
.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 90;
    display: none;
}

.mobile-cta .btn {
    width: 100%;
}

/* ================ Responsive Styles ================ */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-text {
        text-align: center;
        margin: 0 auto;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-logo {
        margin: 0 auto;
        text-align: center;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--white);
        z-index: 90;
        transition: right 0.3s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        padding: 6rem 2rem 2rem;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 2rem;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .testimonial-content {
        flex-direction: column;
    }
    
    .testimonial-image {
        flex: 0 0 200px;
    }
    
    .mobile-cta {
        display: block;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        gap: 3rem;
    }
    
    .price-card.featured {
        transform: scale(1);
    }
    
    .price-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .steps-container,
    .benefits-grid,
    .program-features {
        gap: 1.5rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}