/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables - Updated to match logo */
:root {
    --primary-color: #e9f846;
    --primary-dark: #d4e63a;
    --primary-light: #f0fa6b;
    --secondary-color: #2c3e50;
    --accent-color: #3498db;
    --text-dark: #000000;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --success-color: #27ae60;
    --warning-color: #f39c12;
}

/* Navigation */
.navbar {
    background: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
    width: 100%;
    margin: 0;
    padding-left: 8%;
    padding-right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .logo {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-brand .logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--text-dark);
    background: var(--primary-color);
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--text-dark);
    background: var(--primary-color);
}

.cta-button {
    background: var(--primary-color) !important;
    color: var(--text-dark) !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(233, 248, 70, 0.3);
    border: 2px solid transparent;
}

.cta-button:hover {
    background: var(--white) !important;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(233, 248, 70, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: url('./images/footballkick.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    width: 100%;
    margin: 0;
    padding-left: 8%;
    padding-right: 40px;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.hero-text {
    text-align: left;
    max-width: 600px;
}

.hero-welcome {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    background: var(--primary-color);
    padding: 0.5rem 1.5rem;
    display: inline-block;
    transform: rotate(-2deg);
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(233, 248, 70, 0.3);
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}



.hero-text p {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(233, 248, 70, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(233, 248, 70, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--light-bg);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.hero-image {
    display: none;
}



/* About Us Section */
.about-us {
    padding: 5rem 0;
    background: var(--light-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-section {
    position: relative;
}

.about-main-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.testimonial-overlay {
    position: absolute;
    bottom: -60px;
    right: -20px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 280px;
    border: 3px solid var(--primary-color);
}

.stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 0.8rem;
    color: #ffd700;
    font-size: 1rem;
}

.testimonial-overlay p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.about-text-section {
    padding-left: 2rem;
}

.about-welcome {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    background: var(--primary-color);
    padding: 0.5rem 1.5rem;
    display: inline-block;
    transform: rotate(-2deg);
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(233, 248, 70, 0.3);
}

.about-text-section h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-text-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.features-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.checklist-item i {
    color: var(--text-dark);
    font-size: 0.8rem;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 600;
}

.checklist-item span {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-text-section {
        padding-left: 0;
    }
    
    .testimonial-overlay {
        position: static;
        margin-top: 1rem;
        max-width: 100%;
    }
    
    .features-checklist {
        grid-template-columns: 1fr;
    }
    
    .about-text-section h2 {
        font-size: 2rem;
    }
}

/* Our Common Goals */
.common-goals {
    padding: 6rem 0;
    background: var(--light-bg);
}

.goals-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: stretch;
}

.goals-text-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.goals-text-section h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.1;
    font-weight: 700;
}

.goals-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 3.5rem;
}

.vision-mission {
    margin-bottom: 3rem;
    display: grid;
    gap: 2rem;
}

.vision-item,
.mission-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.vision-item:hover,
.mission-item:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.vm-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.vm-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(233, 248, 70, 0.3);
}

.vm-icon i {
    font-size: 1.8rem;
    color: var(--text-dark);
}

.vm-header h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
}

.vision-item p,
.mission-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

.goals-image-section {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.goals-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: 100%;
    min-height: 600px;
    position: relative;
}

.goals-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(233, 248, 70, 0.1), transparent);
    z-index: 1;
}

.goals-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Old mobile rules removed - replaced by comprehensive responsive section below */

.program-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.program-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.program-card li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.program-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Academy Excellence */
.academy-excellence {
    padding: 6rem 0;
    background: var(--white);
}

.academy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.academy-image-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.academy-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: 100%;
    min-height: 600px;
    position: relative;
}

.academy-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 248, 70, 0.1), transparent);
    z-index: 1;
}

.academy-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.academy-text-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 2rem;
}

.academy-text-section h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
    font-weight: 700;
    text-transform: capitalize;
}

.academy-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.academy-description {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 3rem;
}

/* Old academy mobile rules removed - replaced by comprehensive responsive section below */

/* Academy Sessions */
.academy-sessions {
    padding: 6rem 0;
    background-image: url('./images/footballtraining.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.academy-sessions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.academy-sessions::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-left: 800px solid transparent;
    border-bottom: 500px solid rgba(233, 248, 70, 0.5);
    z-index: 2;
}

.sessions-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
    min-height: 600px;
}

.sessions-text-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-right: 2rem;
    height: 100%;
}

.sessions-welcome {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    background: var(--primary-color);
    padding: 0.5rem 1.5rem;
    display: inline-block;
    transform: rotate(-2deg);
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(233, 248, 70, 0.3);
    align-self: flex-start;
}

.sessions-text-section h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.1;
    font-weight: 700;
}

.sessions-intro {
    font-size: 1.2rem;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.sessions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 700px;
}

.session-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.session-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.session-card:hover::before {
    transform: translateX(0);
}

.session-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 1);
}

.session-card-highlight {
    background: linear-gradient(135deg, rgba(233, 248, 70, 0.95), rgba(240, 250, 107, 0.95));
    border: 2px solid var(--primary-color);
    box-shadow: 0 15px 40px rgba(233, 248, 70, 0.3);
}

.session-card-highlight:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    box-shadow: 0 25px 60px rgba(233, 248, 70, 0.5);
}

.session-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(233, 248, 70, 0.4);
    transition: all 0.3s ease;
}

.session-icon i {
    font-size: 2rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.session-icon-highlight {
    background: linear-gradient(135deg, var(--text-dark), var(--secondary-color));
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.session-icon-highlight i {
    color: var(--primary-color);
}

.session-card:hover .session-icon {
    transform: scale(1.1) rotate(5deg);
}

.session-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.session-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .academy-sessions {
        background-attachment: scroll;
        padding: 4rem 0;
    }
    
    .academy-sessions::after {
        border-left: 400px solid transparent;
        border-bottom: 300px solid rgba(233, 248, 70, 0.5);
    }
    
    .sessions-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .sessions-text-section {
        padding-right: 0;
        min-height: auto;
        padding-top: 2rem;
    }
    
    .sessions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
    }
    
    .session-card {
        padding: 2rem;
    }
    
    .session-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .session-icon i {
        font-size: 1.8rem;
    }
    
    .sessions-text-section h2 {
        font-size: 2.2rem;
    }
    
    .sessions-intro {
        font-size: 1.1rem;
    }
    
    .session-card h3 {
        font-size: 1.2rem;
    }
    
    .session-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .academy-sessions::after {
        border-left: 300px solid transparent;
        border-bottom: 200px solid rgba(233, 248, 70, 0.5);
    }
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background: var(--light-bg);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-welcome {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    background: var(--primary-color);
    padding: 0.5rem 1.5rem;
    display: inline-block;
    transform: rotate(-2deg);
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(233, 248, 70, 0.3);
}

.testimonials-header h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
    font-weight: 700;
}

.testimonials-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.testimonials-left,
.testimonials-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonials-right {
    margin-top: 3rem;
}

.testimonial-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    height: 320px;
    width: 100%;
}

.testimonial-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.volleyball-img {
    object-position: center bottom;
}

.tugofwar-img {
    object-position: center center;
}

.testimonial-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}



.quote-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(233, 248, 70, 0.4);
}

.quote-icon i {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--text-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    font-size: 1.2rem;
    color: var(--white);
}

.author-info h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.rating {
    display: flex;
    gap: 0.2rem;
}

.rating i {
    color: #ffd700;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 4rem 0;
    }
    
    .testimonials-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .testimonials-right {
        margin-top: 0;
    }
    
    .testimonial-image {
        height: 200px;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonials-header h2 {
        font-size: 2.2rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
}

.cta .btn-primary {
    background: var(--white);
    color: var(--text-dark);
}

.cta .btn-primary:hover {
    background: var(--light-bg);
    transform: translateY(-3px);
}

.cta .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.cta .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 3.5rem;
    margin-bottom: 2rem;
    align-items: start;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-section .contact-info {
    display: block;
}

.footer-section .contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    justify-content: flex-start;
}

.footer-section .contact-info i {
    color: var(--primary-color);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
    min-width: 16px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    text-align: center;
    color: #bdc3c7;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive Design - Enhanced */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-container {
        padding-left: 5%;
        padding-right: 5%;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        padding-left: 5% !important;
        padding-right: 5% !important;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-grid,
    .programs-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .btn {
        flex: 1;
        min-width: 140px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-text p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .feature-card,
    .program-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        max-width: 100%;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktop Styles */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
        padding: 0 2rem;
    }
    
    .hero-text h1 {
        font-size: 4.5rem;
    }
    
    .hero-text p {
        font-size: 1.3rem;
    }
    
    .about-text-section h2,
    .goals-text-section h2,
    .academy-text-section h2,
    .sessions-text-section h2 {
        font-size: 3.2rem;
    }
    
    .testimonials-header h2 {
        font-size: 3rem;
    }
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .about-content,
    .goals-content,
    .academy-content {
        gap: 3rem;
    }
    
    .sessions-content {
        gap: 3rem;
    }
    
    .testimonials-content {
        gap: 3rem;
    }
}

/* Mobile Navigation & Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1.5rem 0;
        width: 80%;
        text-align: center;
    }

    .nav-link {
        font-size: 1.3rem;
        padding: 1rem 2rem;
        border-radius: 10px;
        width: 100%;
        display: block;
    }
    
    .nav-link:hover {
        transform: none;
    }
    
    .cta-button {
        margin-top: 1rem !important;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 2rem 0 4rem 0;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 0;
        padding: 0;
        width: 100%;
        margin-top: 0;
    }
    
    .hero-text {
        max-width: 100%;
        padding: 0 1rem;
        margin: 0 auto;
    }
    
    .hero-welcome {
        font-size: 0.75rem;
        padding: 0.5rem 1.2rem;
        margin-bottom: 1.5rem;
        display: inline-block;
        background: rgba(233, 248, 70, 0.9);
        color: var(--text-dark);
        border-radius: 25px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        font-weight: 800;
        text-align: left;
        color: #ffffff;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.95);
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
        align-items: center;
        margin-top: 1rem;
        flex-wrap: wrap;
    }
    
    .btn {
        width: auto;
        min-width: 160px;
        max-width: 220px;
        padding: 1.1rem 2rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 30px;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
        text-align: center;
        flex: 1;
    }
    
    .btn-primary {
        background: var(--primary-color);
        color: var(--text-dark);
        border: 2px solid var(--primary-color);
        box-shadow: 0 4px 15px rgba(233, 248, 70, 0.4);
    }
    
    .btn-primary:hover {
        background: var(--primary-dark);
        color: var(--text-dark);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(233, 248, 70, 0.4);
    }
    
    .btn-secondary {
        background: var(--white);
        color: var(--text-dark);
        border: 2px solid var(--white);
    }
    
    .btn-secondary:hover {
        background: var(--light-bg);
        color: var(--text-dark);
        transform: translateY(-3px);
    }
    
    /* About Us Mobile */
    .about-us {
        padding: 4rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text-section {
        order: 2;
        text-align: left;
        padding-left: 0;
    }
    
    .about-image-section {
        order: 1;
    }
    
    .about-text-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        text-align: left;
    }
    
    .about-text-section p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        text-align: left;
    }
    
    .about-text-section .btn {
        text-align: center;
        display: inline-block;
        margin-left: 0;
    }
    
    .features-checklist {
        margin-bottom: 2rem;
    }
    
    .testimonial-overlay {
        position: static;
        margin-top: 1.5rem;
        max-width: 100%;
        padding: 1.2rem;
    }
    
    /* Goals Section Mobile */
    .common-goals {
        padding: 4rem 0;
    }
    
    .goals-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .goals-text-section {
        order: 1;
        text-align: left;
        padding-left: 0;
    }
    
    .goals-image-section {
        order: 2;
    }
    
    .goals-text-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        text-align: left;
    }
    
    .goals-intro {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        text-align: left;
    }
    
    .vision-mission {
        margin-bottom: 2rem;
    }
    
    .vision-item,
    .mission-item {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .vm-header h3 {
        font-size: 1.2rem;
    }
    
    .vm-icon {
        width: 45px;
        height: 45px;
    }
    
    .vm-icon i {
        font-size: 1.3rem;
    }
    
    /* Academy Excellence Mobile */
    .academy-excellence {
        padding: 4rem 0;
    }
    
    .academy-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .academy-text-section {
        order: 1;
        text-align: left;
        padding-left: 0;
    }
    
    .academy-image-section {
        order: 2;
    }
    
    .academy-text-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        text-align: left;
    }
    
    .academy-intro,
    .academy-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        text-align: left;
    }
    
    .academy-text-section .btn {
        text-align: center;
        display: inline-block;
        margin-left: 0;
    }
    
    /* Sessions Mobile */
    .academy-sessions {
        padding: 4rem 0;
    }
    
    .sessions-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sessions-text-section {
        order: 1;
        text-align: left;
        padding-left: 0;
    }
    
    .sessions-grid-section {
        order: 2;
    }
    
    .sessions-text-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        text-align: left;
    }
    
    .sessions-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
        text-align: left;
    }
    
    .sessions-text-section .btn {
        text-align: center;
        display: inline-block;
        margin-left: 0;
    }
    
    .session-card {
        padding: 1.5rem;
    }
    
    .session-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .session-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .session-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .session-icon i {
        font-size: 1.5rem;
    }
    
    /* Testimonials Mobile */
    .testimonials {
        padding: 4rem 0;
    }
    
    .testimonials-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials-left,
    .testimonials-right {
        gap: 2rem;
    }
    
    .testimonials-right {
        margin-top: 0;
    }
    
    .testimonial-image {
        display: none;
    }
    
    .testimonials-header h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
        border-radius: 15px;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .quote-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1.5rem;
    }
    
    .quote-icon i {
        font-size: 1.2rem;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
    }
    
    .author-avatar i {
        font-size: 1rem;
    }
    
    .author-info h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .rating i {
        font-size: 0.9rem;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .container {
        padding: 0 0.8rem;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .about-text-section h2,
    .goals-text-section h2,
    .academy-text-section h2,
    .sessions-text-section h2,
    .testimonials-header h2 {
        font-size: 1.5rem;
    }
    
    .session-card,
    .testimonial-card {
        padding: 1.2rem;
    }
    
    .testimonial-overlay {
        padding: 1rem;
    }
    
    .academy-sessions::after {
        border-left: 200px solid transparent;
        border-bottom: 150px solid rgba(233, 248, 70, 0.5);
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .contact-item {
        justify-content: center;
    }
}

/* ===== WHAT WE OFFER PAGE STYLES ===== */

/* Dynamic Header Section */
.dynamic-header {
    padding: 8rem 0 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.header-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: -150px;
    right: -150px;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: rgba(233, 248, 70, 0.3);
    bottom: -100px;
    left: -100px;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: rgba(233, 248, 70, 0.2);
    top: 50%;
    left: 10%;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(233, 248, 70, 0.3);
    transform: rotate(-2deg);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.header-badge i {
    font-size: 1rem;
}

.dynamic-header h1 {
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.3;
    font-weight: 800;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: var(--text-dark);
    background: var(--primary-color);
    padding: 0.2rem 0.8rem;
    border-radius: 8px;
    position: relative;
    display: inline-block;
    margin: 0 0.2rem;
    line-height: 1.3;
}

.dynamic-header p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.header-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.header-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--white);
    padding: 1.2rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.header-features .feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
    border-color: var(--primary-color);
}

.header-features .feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.header-features .feature-item span {
    font-weight: 600;
    color: var(--text-dark);
}

/* Programs Overview Section */
.programs-overview {
    padding: 6rem 0;
    background: var(--white);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), rgba(233, 248, 70, 0.8));
    color: var(--text-dark);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    transform: rotate(-2deg);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.overview-content h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.overview-content > p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.mission-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.point {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.point-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), rgba(233, 248, 70, 0.8));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(233, 248, 70, 0.3);
}

.point-icon i {
    color: var(--text-dark);
    font-size: 1.5rem;
}

.point-text h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.point-text p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.overview-visual {
    position: relative;
}

.visual-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.visual-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
}

.visual-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.visual-card:hover .visual-img {
    transform: scale(1.05);
}

.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: var(--white);
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.visual-card:hover .visual-overlay {
    transform: translateY(0);
}

.overlay-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.overlay-content p {
    margin: 0;
    opacity: 0.9;
}

/* Our Offering Section */
.our-offering {
    padding: 6rem 0;
    background: var(--light-bg);
}

.offering-header {
    text-align: center;
    margin-bottom: 4rem;
}

.offering-header .section-welcome {
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 2rem;
}

.offering-header h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.1;
    font-weight: 700;
}

.offering-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.offering-card {
    background: var(--white);
    border-radius: 25px;
    padding: 3.5rem;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}



.offering-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.offering-card-featured {
    background: linear-gradient(135deg, var(--primary-color), #b8e02f);
    color: var(--text-dark);
    transform: scale(1.05);
}



.offering-card-featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.offering-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #b8e02f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(233, 248, 70, 0.3);
}

.offering-card-featured .offering-icon {
    background: var(--white);
    color: var(--text-dark);
}

.offering-icon i {
    font-size: 2rem;
    color: var(--text-dark);
}

.offering-content h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.offering-card-featured .offering-content h3 {
    color: var(--text-dark);
}

.offering-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.offering-card-featured .offering-content p {
    color: rgba(0, 0, 0, 0.8);
}

.offering-features {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.offering-card-featured .feature-item {
    color: rgba(0, 0, 0, 0.8);
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

.offering-card-featured .feature-item i {
    color: var(--text-dark);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 248, 70, 0.4);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--text-dark), #1a1a1a);
    color: var(--white);
}

.cta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-text h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.cta-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-buttons .btn {
    width: 100%;
    max-width: 250px;
    text-align: center;
}

/* Mobile Responsive for What We Offer Page */
@media (max-width: 768px) {
    .dynamic-header {
        padding: 7rem 1.5rem 5rem 1.5rem;
    }
    
    .header-content {
        padding: 0;
    }
    
    .dynamic-header h1 {
        font-size: 2.2rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    .dynamic-header p {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        line-height: 1.6;
    }
    
    .header-features {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
        margin-top: 0.5rem;
    }
    
    .header-features .feature-item {
        padding: 1rem 1.5rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .overview-content h2 {
        font-size: 2.2rem;
    }
    
    .mission-points {
        gap: 1.5rem;
    }
    
    .point {
        gap: 1rem;
    }
    
    .point-icon {
        width: 50px;
        height: 50px;
    }
    
    .point-icon i {
        font-size: 1.2rem;
    }
    
    .offering-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-top: 3rem;
    }
    
    .offering-card {
        padding: 2.5rem;
        margin: 0 0.5rem;
    }
    

    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .cta-text h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cta-buttons .btn {
        max-width: 180px;
    }
}

/* ===== FIND A CLASS PAGE STYLES ===== */

/* Find Class Header */
.find-class-header {
    padding: 8rem 0 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(233, 248, 70, 0.8) 100%);
    text-align: center;
    position: relative;
}

.find-class-header .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--text-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.find-class-header h1 {
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
}

.find-class-header p {
    font-size: 1.3rem;
    color: var(--text-dark);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Classes Section */
.classes-section {
    padding: 6rem 0;
    background: var(--white);
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.class-card {
    background: var(--white);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.class-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.class-card-featured {
    background: linear-gradient(135deg, var(--primary-color), rgba(233, 248, 70, 0.8));
    color: var(--text-dark);
    transform: scale(1.02);
}

.class-card-featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.class-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), rgba(233, 248, 70, 0.8));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(233, 248, 70, 0.3);
}

.class-card-featured .class-icon {
    background: var(--white);
    color: var(--text-dark);
}

.class-icon i {
    font-size: 2rem;
    color: var(--text-dark);
}

.class-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.class-content h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.class-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    flex: 1;
}

.class-card-featured .class-content p {
    color: rgba(0, 0, 0, 0.8);
}

.class-features {
    margin-bottom: 2.5rem;
}

.class-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.class-card-featured .class-features .feature-item {
    color: rgba(0, 0, 0, 0.8);
}

.class-features .feature-item i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 0.9rem;
    width: 16px;
}

.class-card-featured .class-features .feature-item i {
    color: var(--text-dark);
}

.class-card-featured .btn-primary {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--white);
}

.class-card-featured .btn-primary:hover {
    background: var(--text-dark);
    color: var(--white);
    border-color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Info Section */
.info-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.info-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.info-section .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), rgba(233, 248, 70, 0.8));
    color: var(--text-dark);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    transform: rotate(-2deg);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.info-section h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    line-height: 1.2;
    font-weight: 700;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    text-align: left;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(233, 248, 70, 0.3);
}

.step-content h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive for Find a Class Page */
@media (max-width: 768px) {
    .find-class-header {
        padding: 7rem 1.5rem 5rem 1.5rem;
    }
    
    .find-class-header h1 {
        font-size: 2.5rem;
    }
    
    .find-class-header p {
        font-size: 1.1rem;
    }
    
    .classes-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1rem;
    }
    
    .class-card {
        padding: 2.5rem;
    }
    
    .class-card-featured {
        transform: none;
    }
    
    .class-card-featured:hover {
        transform: translateY(-10px);
    }
    
    .info-section h2 {
        font-size: 2.2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .step-content {
        text-align: center;
    }
}

/* ===== PARTIES PAGE STYLES ===== */

/* Party Header */
.party-header {
    padding: 8rem 0 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(233, 248, 70, 0.8) 100%);
    text-align: center;
    position: relative;
}

.party-header .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--text-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.party-header h1 {
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
}

.party-header p {
    font-size: 1.3rem;
    color: var(--text-dark);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Party Introduction */
.party-intro {
    padding: 6rem 0;
    background: var(--white);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.intro-text h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
    font-weight: 700;
}

.intro-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.party-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}



/* Party Structure */
.party-structure {
    padding: 6rem 0;
    background: var(--white);
}

.structure-header {
    text-align: center;
    margin-bottom: 4rem;
}

.structure-header h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 700;
}

.structure-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.structure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.structure-item {
    text-align: center;
    padding: 2rem;
}

.structure-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), rgba(233, 248, 70, 0.8));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    box-shadow: 0 10px 25px rgba(233, 248, 70, 0.3);
}

.structure-icon i {
    font-size: 2rem;
    color: var(--text-dark);
}

.structure-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.structure-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Party Packages */
.party-packages {
    padding: 6rem 0;
    background: var(--light-bg);
}

.packages-header {
    text-align: center;
    margin-bottom: 4rem;
}

.party-packages .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), rgba(233, 248, 70, 0.8));
    color: var(--text-dark);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    transform: rotate(-2deg);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.packages-header h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.package-card {
    background: var(--white);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.package-featured {
    background: linear-gradient(135deg, var(--primary-color), rgba(233, 248, 70, 0.8));
    transform: scale(1.05);
}

.package-featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f8f9fa;
}

.package-featured .package-header {
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.package-header h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.package-price {
    font-size: 3rem;
    color: var(--text-dark);
    font-weight: 800;
}

.package-features {
    margin-bottom: 2.5rem;
}

.package-features .feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.package-featured .package-features .feature-item {
    color: rgba(0, 0, 0, 0.8);
}

.package-features .feature-item i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 0.9rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.package-featured .package-features .feature-item i {
    color: var(--text-dark);
}

.package-featured .btn-primary {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--white);
}

.package-featured .btn-primary:hover {
    background: var(--text-dark);
    color: var(--white);
    border-color: var(--text-dark);
}

/* Venues Section */
.venues-section {
    padding: 6rem 0;
    background: var(--white);
}

.venues-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.venues-section .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), rgba(233, 248, 70, 0.8));
    color: var(--text-dark);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    transform: rotate(-2deg);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.venues-section h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 700;
}

.venues-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Camps Header */
.camps-header {
    padding: 8rem 0 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(233, 248, 70, 0.8) 100%);
    text-align: center;
    position: relative;
}

.camps-header .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--text-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.camps-header h1 {
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
}

.camps-header p {
    font-size: 1.3rem;
    color: var(--text-dark);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Coming Soon */
.coming-soon {
    padding: 6rem 0;
    background: var(--white);
}

.coming-soon-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.coming-soon .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), rgba(233, 248, 70, 0.8));
    color: var(--text-dark);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    transform: rotate(-2deg);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.coming-soon h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 700;
}

.coming-soon p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--light-bg);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-item span {
    font-weight: 600;
    color: var(--text-dark);
}

/* Mobile Responsive for Parties and Camps */
@media (max-width: 768px) {
    .party-header,
    .camps-header {
        padding: 7rem 1.5rem 5rem 1.5rem;
    }
    
    .party-header h1,
    .camps-header h1 {
        font-size: 2.5rem;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .package-card {
        padding: 2rem;
    }
    
    .package-featured {
        transform: none;
    }
    
    .package-featured:hover {
        transform: translateY(-10px);
    }
    
    .structure-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .contact-item {
        justify-content: center;
    }
}

/* ===== FRANCHISE PAGE STYLES ===== */

/* Franchise Header */
.franchise-header {
    padding: 8rem 0 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(233, 248, 70, 0.8) 100%);
    text-align: center;
    position: relative;
}

.franchise-header .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--text-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.franchise-header h1 {
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
}

.franchise-header p {
    font-size: 1.3rem;
    color: var(--text-dark);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}



/* Franchise Introduction */
.franchise-intro {
    padding: 10rem 0;
    background: var(--white);
    text-align: center;
}

.intro-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--primary-color), rgba(233, 248, 70, 0.8));
    color: var(--text-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(233, 248, 70, 0.3);
}

.intro-badge i {
    font-size: 1.1rem;
}

.franchise-intro h1 {
    font-size: 3.8rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.intro-text {
    max-width: 700px;
    margin: 0 auto;
}

.intro-lead {
    font-size: 1.5rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 2rem;
    font-weight: 600;
}

.intro-text p:not(.intro-lead) {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}







/* Opportunity Section */
.opportunity-section {
    padding: 8rem 0;
    background: var(--light-bg);
}

.opportunity-content {
    max-width: 900px;
    margin: 0 auto;
}

.opportunity-text .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), rgba(233, 248, 70, 0.8));
    color: var(--text-dark);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    transform: rotate(-2deg);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.opportunity-text h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 700;
}

.opportunity-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Training Section */
.training-section {
    padding: 6rem 0;
    background: var(--white);
}

.training-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.training-section .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), rgba(233, 248, 70, 0.8));
    color: var(--text-dark);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    transform: rotate(-2deg);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.training-section h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 700;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.training-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    border: 2px solid #f8f9fa;
    transition: all 0.3s ease;
}

.training-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.training-card .card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.training-card h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    font-weight: 700;
}

.training-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.training-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.training-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.training-item h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.training-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Investment Section */
.investment-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(233, 248, 70, 0.8) 100%);
    text-align: center;
}

.investment-content .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--text-dark);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    transform: rotate(-2deg);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.investment-section h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 700;
}

.investment-price {
    margin: 2rem 0;
}

.investment-price .price {
    font-size: 4rem;
    color: var(--text-dark);
    font-weight: 800;
    margin-right: 1rem;
}

.investment-price .vat {
    font-size: 1.5rem;
    color: var(--text-dark);
    opacity: 0.7;
    font-weight: 600;
}

.investment-section p {
    font-size: 1.2rem;
    color: var(--text-dark);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* What's Included Section */
.included-section {
    padding: 6rem 0;
    background: var(--white);
}

.included-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.included-section h2 {
    font-size: 3rem;
    color: var(--text-dark);
    font-weight: 700;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.included-card {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.included-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.included-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), rgba(233, 248, 70, 0.8));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    box-shadow: 0 10px 25px rgba(233, 248, 70, 0.3);
}

.included-card .card-icon i {
    font-size: 2rem;
    color: var(--text-dark);
}

.included-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 700;
}

.included-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.included-card li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.included-card li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.8rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

/* Franchise CTA */
.franchise-cta {
    padding: 10rem 0;
    background: var(--light-bg);
    text-align: center;
}

.cta-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.cta-header {
    margin-bottom: 5rem;
}

.franchise-cta h2 {
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.cta-description {
    max-width: 700px;
    margin: 0 auto;
}

.cta-description p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cta-description p:last-child {
    margin-bottom: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 5rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), rgba(233, 248, 70, 0.8));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    box-shadow: 0 10px 25px rgba(233, 248, 70, 0.3);
}

.contact-icon i {
    font-size: 2rem;
    color: var(--text-dark);
}

.contact-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
    word-break: break-word;
    overflow-wrap: break-word;
    display: block;
    text-align: center;
}

.contact-link:hover {
    color: var(--primary-color);
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

/* Mobile Responsive for Franchise */
@media (max-width: 768px) {
    .franchise-header {
        padding: 7rem 1.5rem 5rem 1.5rem;
    }
    
    .franchise-header h1 {
        font-size: 2.5rem;
    }
    
    .franchise-intro {
        padding: 6rem 0;
    }
    
    .franchise-intro h1 {
        font-size: 2.8rem;
    }
    
    .intro-lead {
        font-size: 1.3rem;
    }
    
    .intro-text p:not(.intro-lead) {
        font-size: 1.1rem;
    }
    
    .franchise-cta {
        padding: 6rem 0;
    }
    
    .franchise-cta h2 {
        font-size: 2.8rem;
    }
    
    .contact-grid {
        gap: 2rem;
        margin: 3rem 0;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .revenue-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .revenue-card.featured {
        transform: none;
    }
    
    .revenue-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .revenue-streams h2 {
        font-size: 2.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .opportunity-text h2 {
        font-size: 2.5rem;
    }
    
    .training-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .training-card {
        padding: 2rem;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .included-card {
        padding: 2rem;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-methods .contact-item {
        padding: 1.5rem 2rem;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .investment-price .price {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .franchise-intro {
        padding: 4rem 0;
    }
    
    .franchise-intro h1 {
        font-size: 2.2rem;
    }
    
    .intro-lead {
        font-size: 1.2rem;
    }
    
    .intro-text p:not(.intro-lead) {
        font-size: 1rem;
    }
    
    .franchise-cta {
        padding: 4rem 0;
    }
    
    .franchise-cta h2 {
        font-size: 2.2rem;
    }
    
    .cta-description p {
        font-size: 1.1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 3rem 0;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .action-buttons {
        gap: 1rem;
        margin-top: 3rem;
    }
    
    .opportunity-text h2 {
        font-size: 2rem;
    }
}

/* Contact Page Styles */
/* Contact Header */
.contact-header {
    background: linear-gradient(135deg, rgba(233, 248, 70, 0.1) 0%, rgba(233, 248, 70, 0.05) 100%);
    padding: 10rem 1.5rem 8rem 1.5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.contact-header .header-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-header .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--primary-color), rgba(233, 248, 70, 0.8));
    color: var(--text-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(233, 248, 70, 0.3);
}

.contact-header .header-badge i {
    font-size: 1.1rem;
}

.contact-header h1 {
    font-size: 4rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.contact-header p {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.contact-header .header-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.contact-header .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.contact-header .shape-1 {
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.contact-header .shape-2 {
    width: 150px;
    height: 150px;
    background: var(--primary-color);
    top: 60%;
    right: 15%;
    animation: float 8s ease-in-out infinite reverse;
}

.contact-header .shape-3 {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    bottom: 20%;
    left: 20%;
    animation: float 7s ease-in-out infinite;
}

/* Contact Info Section */
.contact-info-section {
    padding: 10rem 0;
    background: var(--light-bg);
}

.contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact-intro {
    margin-bottom: 6rem;
}

.contact-intro .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), rgba(233, 248, 70, 0.8));
    color: var(--text-dark);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    transform: rotate(-2deg);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-intro h2 {
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 800;
    line-height: 1.1;
}

.contact-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 6rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), rgba(233, 248, 70, 0.8));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    box-shadow: 0 10px 30px rgba(233, 248, 70, 0.3);
}

.contact-icon i {
    font-size: 2.2rem;
    color: var(--text-dark);
}

.contact-card h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.contact-link:hover {
    color: var(--text-dark);
    border-bottom-color: var(--primary-color);
    transform: translateY(-2px);
}

.contact-cta {
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-top: 4rem;
}

.contact-cta h3 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Mobile Responsive for Contact */
@media (max-width: 768px) {
    .contact-header {
        padding: 8rem 1.5rem 6rem 1.5rem;
    }
    
    .contact-header h1 {
        font-size: 3rem;
    }
    
    .contact-header p {
        font-size: 1.1rem;
    }
    
    .contact-info-section {
        padding: 6rem 0;
    }
    
    .contact-intro h2 {
        font-size: 2.8rem;
    }
    
    .contact-cards {
        gap: 2rem;
        margin: 4rem 0;
    }
    
    .contact-card {
        padding: 3rem 2rem;
    }
    
    .contact-cta {
        padding: 3rem 2rem;
    }
    
    .contact-cta h3 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-intro h2 {
        font-size: 2.2rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 2.5rem 1.5rem;
    }
    
    .contact-cta {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Additional Mobile Fixes for All Pages */
@media (max-width: 768px) {
    /* Party Structure Grid */
    .structure-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    /* Package Cards */
    .packages-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .package-card {
        margin: 0 auto;
        max-width: 100%;
    }
    
    /* Offering Grid */
    .offering-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    /* Classes Grid */
    .classes-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    /* Training Grid */
    .training-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    /* Included Grid */
    .included-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    /* Contact Grid */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    /* Overview Grid */
    .overview-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    /* Steps Grid */
    .steps-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    /* Session Cards */
    .sessions-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    /* Testimonials */
    .testimonials-content {
        flex-direction: column !important;
        gap: 2rem;
    }
    
    .testimonials-left,
    .testimonials-right {
        width: 100% !important;
    }
    
    /* CTA Section */
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .cta-text {
        max-width: 100%;
    }
    
    .cta-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Header Content */
    .header-content {
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .header-features {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    /* Dynamic Header */
    .dynamic-header h1 {
        font-size: 2rem !important;
        line-height: 1.3;
    }
    
    /* Party Header */
    .party-header h1,
    .find-class-header h1,
    .franchise-header h1 {
        font-size: 2rem !important;
        line-height: 1.3;
    }
    
    /* Section Padding */
    section {
        padding: 3rem 0;
    }
    
    /* Card Spacing */
    .feature-card,
    .service-card,
    .offering-card,
    .class-card,
    .structure-item,
    .package-card {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .header-content h1,
    .dynamic-header h1,
    .party-header h1,
    .find-class-header h1,
    .franchise-header h1 {
        font-size: 1.75rem !important;
    }
    
    .header-content p {
        font-size: 0.95rem;
    }
    
    .structure-header h2,
    .packages-header h2,
    .offering-header h2 {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    /* Tighter spacing on small screens */
    section {
        padding: 2.5rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
}

/* Tablet Landscape Fixes */
@media (min-width: 769px) and (max-width: 1024px) {
    .structure-grid,
    .packages-grid,
    .offering-grid,
    .classes-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem;
    }
    
    .training-grid,
    .included-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem;
    }
    
    .sessions-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }
}

/* ========================================
   ANIMATIONS & TRANSITIONS
======================================== */

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Animation Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.animate-slide-in-down {
    animation: slideInDown 0.8s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

/* Scroll Animation Classes */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease-out;
}

.scroll-animate-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease-out;
}

.scroll-animate-right.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Enhanced Button Animations */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Card Hover Animations */
.feature-card,
.service-card,
.contact-card,
.structure-item,
.package-card,
.checklist-item {
    transition: all 0.3s ease;
}

.feature-card:hover,
.service-card:hover,
.contact-card:hover,
.structure-item:hover,
.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Icon Animations */
.feature-card i,
.service-card i,
.structure-item i,
.checklist-item i {
    transition: all 0.3s ease;
}

.feature-card:hover i,
.service-card:hover i,
.structure-item:hover i,
.checklist-item:hover i {
    transform: scale(1.1);
    color: var(--primary-color);
}

/* Image Hover Effects */
.about-img,
.academy-img,
.goals-img {
    transition: all 0.3s ease;
}

.about-img:hover,
.academy-img:hover,
.goals-img:hover {
    transform: scale(1.05);
}

/* Navigation Animation */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Stagger Animation Delays */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }
.animate-delay-6 { animation-delay: 0.6s; }

/* Hero Text Animation */
.hero-welcome {
    animation: slideInDown 0.8s ease-out 0.2s both;
}

.hero-text h1 {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-text p {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* Mobile Menu Animation */
.nav-menu {
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.hamburger .bar {
    transition: all 0.3s ease;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
