/* Base Styles */
:root {
    --primary-color: #007F8F;
    --primary-light: #D0F0F7;
    --accent-color: #FF6B6B;
    --dark-blue: #005566;
    --white: #ffffff;
    --gray-light: #f4f4f4;
    --gray: #888888;
    --gray-dark: #333333;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-dark);
    overflow-x: hidden;
    background: linear-gradient(to bottom, var(--primary-light) 0%, #ffffff 300px);
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
}

p {
    margin-bottom: 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all var(--transition-speed);
}

a:hover {
    color: var(--accent-color);
}

section {
    padding: 80px 0;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
}

/* Animated Bubbles */
.bubbles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.bubble {
    position: absolute;
    bottom: -100px;
    width: 40px;
    height: 40px;
    background: rgba(208, 240, 247, 0.2);
    border-radius: 50%;
    opacity: 0.5;
    animation: rise 15s infinite ease-in;
}

.bubble:nth-child(1) {
    width: 40px;
    height: 40px;
    left: 10%;
    animation-duration: 8s;
}

.bubble:nth-child(2) {
    width: 20px;
    height: 20px;
    left: 20%;
    animation-duration: 5s;
    animation-delay: 1s;
}

.bubble:nth-child(3) {
    width: 50px;
    height: 50px;
    left: 35%;
    animation-duration: 10s;
    animation-delay: 2s;
}

.bubble:nth-child(4) {
    width: 80px;
    height: 80px;
    left: 50%;
    animation-duration: 7s;
    animation-delay: 0s;
}

.bubble:nth-child(5) {
    width: 35px;
    height: 35px;
    left: 55%;
    animation-duration: 6s;
    animation-delay: 1s;
}

.bubble:nth-child(6) {
    width: 45px;
    height: 45px;
    left: 65%;
    animation-duration: 8s;
    animation-delay: 3s;
}

.bubble:nth-child(7) {
    width: 25px;
    height: 25px;
    left: 75%;
    animation-duration: 7s;
    animation-delay: 2s;
}

.bubble:nth-child(8) {
    width: 30px;
    height: 30px;
    left: 80%;
    animation-duration: 6s;
    animation-delay: 1s;
}

.bubble:nth-child(9) {
    width: 15px;
    height: 15px;
    left: 70%;
    animation-duration: 9s;
    animation-delay: 0s;
}

.bubble:nth-child(10) {
    width: 60px;
    height: 60px;
    left: 90%;
    animation-duration: 10s;
    animation-delay: 4s;
}

@keyframes rise {
    0% {
        bottom: -100px;
        transform: translateX(0);
    }
    50% {
        transform: translateX(100px);
    }
    100% {
        bottom: 1080px;
        transform: translateX(-20px);
    }
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 25px;
}

.nav-menu a {
    color: var(--gray-dark);
    font-weight: 600;
    font-size: 16px;
    transition: color var(--transition-speed);
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all var(--transition-speed);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: url('images/hero-swimming.jpg') no-repeat center center;
    background-size: cover;
    color: var(--white);
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 127, 143, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-section h1 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section h2 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-speed);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.cta-button:hover {
    background-color: #ff5252;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

.wave-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
}

.wave-animation svg {
    display: block;
    width: 100%;
    height: 150px;
    fill: var(--white);
}

/* Why Swimming Section */
.why-swimming-section {
    background-color: var(--white);
    position: relative;
    z-index: 5;
}

.swimming-benefits {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 300px;
    text-align: center;
    padding: 30px;
    margin: 10px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 127, 143, 0.1);
    transition: all var(--transition-speed);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 127, 143, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-light);
    border-radius: 50%;
}

.benefit-icon img {
    width: 40px;
    height: 40px;
}

.infographic {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.infographic img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, var(--primary-light) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(0, 127, 143, 0.1);
    border-radius: 50%;
    z-index: -1;
}

.benefits-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(0, 127, 143, 0.1);
    border-radius: 50%;
    z-index: -1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-box {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
}

.benefit-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.benefit-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-box:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Trainers Section */
.trainers-section {
    background-color: var(--white);
}

.trainers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.trainer-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed);
}

.trainer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.trainer-image {
    height: 300px;
    overflow: hidden;
}

.trainer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.trainer-card:hover .trainer-image img {
    transform: scale(1.05);
}

.trainer-info {
    padding: 25px;
    text-align: center;
}

.trainer-title {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}

/* How It Works Section */
.how-it-works-section {
    background: linear-gradient(to right, var(--primary-light), var(--white));
    position: relative;
    overflow: hidden;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    margin-bottom: 30px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-number {
    position: absolute;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 1.2rem;
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-number {
    right: -20px;
}

.timeline-item:nth-child(even) .timeline-number {
    left: -20px;
}

.timeline-content {
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--primary-color);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    text-align: center;
}

.testimonial-content p {
    font-style: italic;
    position: relative;
    padding: 0 20px;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-light);
    position: absolute;
}

.testimonial-content p::before {
    top: -10px;
    left: 0;
}

.testimonial-content p::after {
    bottom: -20px;
    right: 0;
}

.testimonial-location {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(to bottom, var(--white), var(--primary-light));
    position: relative;
    overflow: hidden;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed);
    position: relative;
}

.pricing-card.premium {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card.premium:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: -30px;
    transform: rotate(45deg);
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 40px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
}

.pricing-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 30px;
    text-align: center;
}

.pricing-header h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.price {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.period {
    font-size: 0.9rem;
    opacity: 0.8;
}

.pricing-features {
    padding: 30px;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 25px;
}

.pricing-features li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: 600;
}

.pricing-features li.not-included {
    color: var(--gray);
    text-decoration: line-through;
}

.pricing-features li.not-included::before {
    content: '✕';
    color: var(--gray);
}

.pricing-button {
    display: block;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-speed);
    margin: 0 30px 30px;
    border-radius: 50px;
}

.pricing-button:hover {
    background: var(--accent-color);
    color: var(--white);
}

/* FAQ Section */
.faq-section {
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    background: var(--primary-light);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.faq-answer {
    background: var(--white);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-speed);
}

.faq-answer p {
    padding: 20px;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 20px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 50px;
}

.contact-form {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--gray-dark);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: all var(--transition-speed);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 127, 143, 0.2);
}

.consent-checkbox {
    display: flex;
    align-items: center;
}

.consent-checkbox input[type="checkbox"] {
    margin-right: 10px;
}

.consent-checkbox label {
    margin: 0;
    font-weight: 400;
    font-size: 0.9rem;
}

.submit-button {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-speed);
    width: 100%;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.submit-button:hover {
    background: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.google-map {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.google-map iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: none;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.newsletter-content p {
    margin-bottom: 30px;
}

.newsletter-form-group {
    display: flex;
    max-width: 500px;
    margin: 0 auto 15px;
}

.newsletter-form-group input[type="email"] {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 50px 0 0 50px;
    font-size: 1rem;
}

.newsletter-form-group button {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 0 50px 50px 0;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.newsletter-form-group button:hover {
    background: #ff5252;
}

.newsletter-consent {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.newsletter-consent input[type="checkbox"] {
    margin-right: 10px;
}

.newsletter-consent a {
    color: var(--white);
    text-decoration: underline;
}

/* Footer */
footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-slogan {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-light);
}

.footer-nav h3,
.footer-legal h3,
.footer-contact h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-nav ul,
.footer-legal ul {
    list-style: none;
}

.footer-nav ul li,
.footer-legal ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a,
.footer-legal ul li a {
    color: var(--gray-light);
    transition: all var(--transition-speed);
}

.footer-nav ul li a:hover,
.footer-legal ul li a:hover {
    color: var(--accent-color);
}

.footer-contact p {
    margin-bottom: 10px;
    color: var(--gray-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: all var(--transition-speed);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 60px;
    }
    
    .timeline-item:nth-child(odd) .timeline-number,
    .timeline-item:nth-child(even) .timeline-number {
        left: 0;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-section h2 {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .swimming-benefits {
        flex-direction: column;
    }
    
    .benefit-card {
        min-width: 100%;
        margin-bottom: 20px;
    }
    
    .pricing-card.premium {
        transform: scale(1);
    }
    
    .pricing-card.premium:hover {
        transform: translateY(-10px);
    }
    
    .pricing-grid {
        gap: 30px;
    }
    
    .newsletter-form-group {
        flex-direction: column;
    }
    
    .newsletter-form-group input[type="email"] {
        border-radius: 50px;
        margin-bottom: 10px;
    }
    
    .newsletter-form-group button {
        border-radius: 50px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .logo img {
        height: 40px;
    }
    
    .contact-form {
        padding: 20px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-card,
.benefit-box,
.trainer-card,
.testimonial-card,
.pricing-card,
.faq-item {
    animation: fadeIn 0.6s ease-out forwards;
}

.benefit-card:nth-child(2),
.benefit-box:nth-child(2),
.trainer-card:nth-child(2),
.testimonial-card:nth-child(2),
.pricing-card:nth-child(2) {
    animation-delay: 0.2s;
}

.benefit-card:nth-child(3),
.benefit-box:nth-child(3),
.trainer-card:nth-child(3),
.testimonial-card:nth-child(3) {
    animation-delay: 0.4s;
}

.benefit-box:nth-child(4) {
    animation-delay: 0.6s;
}

/* Wave effect for buttons */
.cta-button::after,
.pricing-button::after,
.submit-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.cta-button:hover::after,
.pricing-button:hover::after,
.submit-button:hover::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* Cookie & Policy Pages */
.policy-page {
    padding-top: 120px;
    padding-bottom: 60px;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.policy-content h2 {
    font-size: 1.8rem;
    text-align: left;
    margin-top: 40px;
    margin-bottom: 20px;
}

.policy-content p {
    margin-bottom: 20px;
}

.policy-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-content ul li {
    margin-bottom: 10px;
}

.policy-back {
    display: inline-block;
    margin-top: 30px;
    color: var(--primary-color);
    font-weight: 600;
}

.policy-back:hover {
    color: var(--accent-color);
}

/* Success Page */
.success-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 0 20px;
}

.success-container {
    max-width: 600px;
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.success-icon {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.success-message h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.success-message p {
    margin-bottom: 30px;
}

.back-to-home {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--transition-speed);
}

.back-to-home:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
}