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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fefefe;
    overflow-x: hidden;
}

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

/* Color Variables */
:root {
    --primary-black: #1a1a1a;
    --soft-pink: #f4e6e6;
    --light-pink: #ffffff;
    --muted-pink: #eb96ab;
    --neutral-light: #fffbfb;
    --neutral-medium: #e5e1e1;
    --text-dark: #2c2c2c;
    --text-medium: #666666;
    --white: #ffffff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-black);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

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

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-container {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: center;
}

.logo-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.text-column h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-black);
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--text-medium);
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-black);
    transition: all 0.3s ease;
}

.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);
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--primary-black);
    color: var(--white);
    border-color: var(--primary-black);
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
    border-color: var(--white);

    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

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

.btn-secondary:hover {
    color: var(--white);
    transform: translateY(-2px);
    border-color: var(--white);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 50px;
    background: linear-gradient(135deg, #f5f7fa 0%,);
    position: relative;
    overflow: hidden;
}

/* Floating Particles Background */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(4px 4px at 20px 30px, rgba(255, 199, 199, 0.8), transparent),
        radial-gradient(3px 3px at 40px 70px, rgba(255, 220, 220, 0.7), transparent),
        radial-gradient(2px 2px at 90px 40px, rgba(255, 223, 223, 0.9), transparent),
        radial-gradient(3px 3px at 130px 80px, rgba(255, 221, 221, 0.6), transparent),
        radial-gradient(4px 4px at 160px 30px, rgba(255, 218, 218, 0.8), transparent),
        radial-gradient(2px 2px at 200px 60px, rgba(255, 215, 215, 0.7), transparent);
    background-repeat: repeat;
    background-size: 250px 150px;
    animation: floatingParticles 25s linear infinite;
    pointer-events: none;
}

@keyframes floatingParticles {
    0% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) translateX(15px) rotate(90deg);
    }
    50% {
        transform: translateY(-10px) translateX(-10px) rotate(180deg);
    }
    75% {
        transform: translateY(10px) translateX(5px) rotate(270deg);
    }
    100% {
        transform: translateY(0px) translateX(0px) rotate(360deg);
    }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
    opacity: 1; /* Ensure full opacity */
    transform: none; /* Remove any transformations */
    animation: none; /* Remove any animations */
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    width: 100%;
    max-width: none;
    opacity: 1; /* Ensure full opacity */
    transform: none; /* Remove any transformations */
    animation: none; /* Remove any animations */
}

.hero-text {
    opacity: 1; /* Changed from 0 to 1 */
    transform: none; /* Remove translateX */
    animation: none; /* Remove slideInLeft animation */
    background: transparent;
    backdrop-filter: none;
    padding: 3rem;
    border-radius: 0;
    border: none;
    box-shadow: none;
    width: 100%;
}

.hero-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    opacity: 1; /* Changed from 0 to 1 to remove fade-in effect */
    transform: none; /* Removed translateY transformation */
    animation: none; /* Removed slideUp animation */
    position: relative;
    width: 100%;
    height: 450px;
}

.hero-image {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: none;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    position: absolute;
}

.hero-image:hover {
    transform: scale(1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.hero-image.clicked {
    transform: translateY(-1px) !important; /* Increased vertical movement for more noticeable slide up */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    z-index: 15; /* Keep this to bring image to front */
    position: absolute;
}

.image-1 {
    width: 100%;
    height: auto;
    max-width: 300px;
    max-height: 200px;
    z-index: 10;
    top: 70%;
    left: -10%;
    transform: translateX(0);
}


.image-6 {
    width: 100%;
    height: auto;
    max-width: 500px;
    max-height: 400px;
    z-index: 5;
    top: 50px;

    transform: translateX(-1%);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 2rem;
    color: #666666 !important;
    line-height: 1.6;
}

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

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

.animated-title {
    opacity: 0;
    animation: slideInLeft 1s ease forwards 0.3s;
}

.animated-subtitle {
    opacity: 0;
    animation: slideInLeft 1s ease forwards 0.6s;
}

.animated-buttons {
    opacity: 0;
    animation: slideInLeft 1s ease forwards 0.9s;
}

/* Button styles */
.hero-buttons .btn {
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-buttons .btn-primary {
    background: #2c2c2c;
    color: white;
    border-color: #2c2c2c;
}

.hero-buttons .btn-primary:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-secondary {
    background: transparent;
    color: #2c2c2c;
    border-color: #2c2c2c;
}

.hero-buttons .btn-secondary:hover {
    background: #2c2c2c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive design */
@media (max-width: 1024px) {
    .hero-container {
        max-width: 1200px;
        grid-template-columns: 1.5fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-images {
        align-items: center;
        gap: 1.5rem;
        height: 550px;
    }
    
    .image-6 {
        max-height: 350px;
        max-width: 90%;
        width: auto;
        object-fit: contain;
    }
    
    .image-1 {
        max-height: 180px;
        max-width: 90%;
        width: auto;
        object-fit: contain;
    }
    
    .hero-text {
        padding: 2rem;
    }
}
/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

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

.about-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    background: var(--light-pink);
}

.stat h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Carousel Styles */
.about-image {
    position: relative;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-black);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.2);
}

/* Program Section */
.program {
    padding: 100px 0;
    background: var(--neutral-light);
}

.program-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.program-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: slideIn 1s ease forwards;
}

.program-card:nth-child(2) {
    animation-delay: 0.2s;
}

.program-card:nth-child(3) {
    animation-delay: 0.4s;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.program-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--muted-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-black);
}

.program-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.program-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Enhanced Course Section */
.course {
    padding: 120px 0;
    background: linear-gradient(135deg, #fefefe 0%, #f9f7f7 100%);
    position: relative;
    overflow: hidden;
}

.course::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23f4e6e6" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.course-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.course-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(135deg, var(--primary-black) 0%, #666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    animation: titleSlideIn 1.2s ease-out forwards;
}

.course-title-accent {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--muted-pink), var(--primary-black));
    margin: 0 auto 1.5rem;
    border-radius: 2px;
    opacity: 0;
    animation: accentExpand 1s ease-out 0.5s forwards;
}

.course-program-title {
    font-size: 1.8rem;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.7s forwards;
}

.course-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    font-style: italic;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

.course-details {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    margin-top: 4rem;
    align-items: start;
}

/* Info Card Styling */
.info-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(244, 230, 230, 0.3);
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 1s ease-out 1.1s forwards;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--muted-pink), var(--primary-black));
}

.info-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--muted-pink), #f0d0d0);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-black);
    animation: iconPulse 2s ease-in-out infinite;
}

.course-features-container {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(244, 230, 230, 0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: featureSlideIn 0.6s ease-out forwards;
}

.feature-item:nth-child(1) { animation-delay: 1.3s; }
.feature-item:nth-child(2) { animation-delay: 1.4s; }
.feature-item:nth-child(3) { animation-delay: 1.5s; }
.feature-item:nth-child(4) { animation-delay: 1.6s; }
.feature-item:nth-child(5) { animation-delay: 1.7s; }
.feature-item:nth-child(6) { animation-delay: 1.8s; }
.feature-item:nth-child(7) { animation-delay: 1.9s; }

.feature-item.special {
    background: linear-gradient(135deg, rgba(244, 230, 230, 0.3), rgba(248, 240, 240, 0.3));
    padding: 1.2rem;
    border-radius: 12px;
    border: none;
    margin-top: 1rem;
}

.feature-label {
    font-weight: 600;
    color: var(--primary-black);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-value {
    color: var(--text-medium);
    line-height: 1.5;
}

/* Pricing Section */
.pricing-section {
    margin-top: 2rem;
}

.pricing-section h4 {
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.pricing-card {
    background: rgba(248, 240, 240, 0.5);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    opacity: 0;
    transform: scale(0.9);
    animation: pricingSlideIn 0.6s ease-out forwards;
}

.pricing-card:nth-child(1) { animation-delay: 2s; }
.pricing-card:nth-child(2) { animation-delay: 2.1s; }
.pricing-card:nth-child(3) { animation-delay: 2.2s; }

.pricing-card.featured {
    background: linear-gradient(135deg, var(--muted-pink), rgba(244, 230, 230, 0.8));
    border-color: var(--primary-black);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-header h5 {
    font-size: 1.1rem;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 0.3rem;
}

.price-note {
    font-size: 0.8rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.pricing-features span {
    font-size: 0.85rem;
    color: var(--text-medium);
}

/* Timeline Layout */
.layout-header {
    text-align: center;
    margin-bottom: 3rem;
}

.layout-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-black), #666);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1rem;
    animation: iconFloat 3s ease-in-out infinite;
}

.layout-header h3 {
    font-size: 2rem;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.layout-subtitle {
    color: var(--text-medium);
    font-style: italic;
}

.week-timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--muted-pink), var(--primary-black));
    transform: translateX(-50%);
    opacity: 0;
    animation: lineGrow 2s ease-out 1.5s forwards;
}

.week-card {
    position: relative;
    margin: 3rem 0;
    opacity: 0;
    animation: weekCardSlideIn 0.8s ease-out forwards;
}

.week-card:nth-child(2) { animation-delay: 1.8s; }
.week-card:nth-child(3) { animation-delay: 2s; }
.week-card:nth-child(4) { animation-delay: 2.2s; }
.week-card:nth-child(5) { animation-delay: 2.4s; }
.week-card:nth-child(6) { animation-delay: 2.6s; }
.week-card:nth-child(7) { animation-delay: 2.8s; }

.week-card:nth-child(even) {
    flex-direction: row-reverse;
}

.week-card {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.week-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-black), #666);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    animation: numberPulse 2s ease-in-out infinite;
}

.week-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(244, 230, 230, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    width: calc(50% - 25px);
}

.week-card:nth-child(even) .week-content {
    margin-left: auto;
}

.week-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--muted-pink), var(--primary-black));
}

.week-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.week-content h4 {
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.week-content p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.week-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--muted-pink), #f0d0d0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-black);
    opacity: 0.7;
}

/* Enhanced Animations */
@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes accentExpand {
    from {
        opacity: 0;
        width: 0;
    }
    to {
        opacity: 1;
        width: 80px;
    }
}

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

@keyframes featureSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pricingSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

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

@keyframes lineGrow {
    from {
        opacity: 0;
        height: 0;
    }
    to {
        opacity: 1;
        height: 100%;
    }
}

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

@keyframes numberPulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    }
}

/* Program Details Section */
.program-details-section {
    margin: 5rem 0;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(249, 247, 247, 0.9));
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.program-details-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23f4e6e6" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
    pointer-events: none;
}

.details-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.details-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-black), #666);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
    animation: detailsIconFloat 3s ease-in-out infinite;
}

.details-header h3 {
    font-size: 2.2rem;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.details-subtitle {
    color: var(--text-medium);
    font-size: 1.1rem;
    font-style: italic;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.detail-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(244, 230, 230, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: detailCardSlideIn 0.8s ease-out forwards;
    position: relative;
    overflow: hidden;
}

.detail-card:nth-child(1) { animation-delay: 0.2s; }
.detail-card:nth-child(2) { animation-delay: 0.4s; }
.detail-card:nth-child(3) { animation-delay: 0.6s; }
.detail-card:nth-child(4) { animation-delay: 0.8s; }

.detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--muted-pink), var(--primary-black));
}

.detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

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

.card-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--muted-pink), #f0d0d0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-black);
}

.card-header h4 {
    font-size: 1.4rem;
    color: var(--primary-black);
    margin: 0;
}

/* Brand Card Specific */
.brand-card .card-icon {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
}

/* Audience Card Specific */
.audience-card .audience-highlight {
    text-align: center;
    margin-bottom: 1.5rem;
}

.age-range {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-black), #666);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
}

.focus-areas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.focus-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem;
    background: rgba(244, 230, 230, 0.3);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.focus-item i {
    color: var(--primary-black);
    font-size: 1rem;
}

/* Format Card Specific */
.format-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.format-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(244, 230, 230, 0.2);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.format-option:hover {
    background: rgba(244, 230, 230, 0.4);
    transform: translateY(-3px);
}

.format-icon {
    width: 35px;
    height: 35px;
    background: var(--primary-black);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

/* Included Card Specific */
.included-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(244, 230, 230, 0.2);
    border-radius: 12px;
    position: relative;
}

.included-item.special {
    background: linear-gradient(135deg, rgba(244, 230, 230, 0.4), rgba(248, 240, 240, 0.4));
    border: 2px solid var(--muted-pink);
}

.included-item i {
    color: var(--primary-black);
    font-size: 1.2rem;
    width: 20px;
}

.special-badge {
    position: absolute;
    top: -8px;
    right: 10px;
    background: var(--primary-black);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Investment Section */
.investment-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(244, 230, 230, 0.3);
    position: relative;
    z-index: 2;
}

.investment-header {
    text-align: center;
    margin-bottom: 3rem;
}

.investment-header h3 {
    font-size: 2rem;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.investment-header p {
    color: var(--text-medium);
    font-size: 1.1rem;
}

.pricing-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: scale(0.9);
    animation: pricingShowcaseSlideIn 0.8s ease-out forwards;
}

.pricing-card:nth-child(1) { animation-delay: 1s; }
.pricing-card:nth-child(2) { animation-delay: 1.2s; }
.pricing-card:nth-child(3) { animation-delay: 1.4s; }

.pricing-card.premium {
    border-color: var(--primary-black);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 230, 230, 0.3));
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-black);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-black), #666);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 1rem;
}

.pricing-header h4 {
    font-size: 1.4rem;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-medium);
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-black);
}

.payment-options {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.feature i {
    color: #4ade80;
    font-size: 1rem;
    width: 16px;
}

/* Enhanced Animations */
@keyframes detailsIconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

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

@keyframes pricingShowcaseSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Tab Navigation Styles */
.tab-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--muted-pink);
    color: var(--primary-black);
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

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

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

.tab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-black);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary-black), #666);
    color: white;
    border-color: var(--primary-black);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.tab-btn.active:hover {
    background: linear-gradient(135deg, #666, var(--primary-black));
}

/* Tab Content Styles */
.tab-content {
    position: relative;
    min-height: 400px;
}

.tab-pane {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.tab-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: tabFadeIn 0.5s ease forwards;
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Overview Tab Styles */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.overview-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(244, 230, 230, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--muted-pink), var(--primary-black));
}

.overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.overview-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--muted-pink), #f0d0d0);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-black);
    margin: 0 auto 1.5rem;
    animation: iconFloat 3s ease-in-out infinite;
}

.overview-card h4 {
    font-size: 1.4rem;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.overview-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Responsive Design for Course Section */
@media (max-width: 768px) {
    .course-details {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .week-card {
        flex-direction: column !important;
        text-align: center;
    }
    
    .week-content {
        width: 100% !important;
        margin: 0 !important;
    }
    
    .week-number {
        position: relative;
        left: auto;
        transform: none;
        margin-bottom: 1rem;
    }
    
    .timeline-line {
        display: none;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    /* Program Details Responsive */
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .focus-areas,
    .format-options {
        grid-template-columns: 1fr;
    }
    
    .pricing-showcase {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.premium {
        transform: none;
    }
    
    .detail-card {
        padding: 1.5rem;
    }
    
    /* Responsive Design for Tabs */
    .tab-navigation {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
    }
}

/* Enhanced CTA Section */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--muted-pink) 0%, var(--light-pink) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}


.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}


/* Enhanced Instagram Button */
.btn-instagram {
    background: var(--primary-black);
    color: var(--white);
    border-color: var(--primary-black);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 15px 35px;
    position: relative;
    overflow: hidden;
}

.btn-instagram::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-instagram:hover::before {
    left: 100%;
}

.btn-instagram:hover {
    background: #E4405F;
    color: var(--white);
    border-color: #E4405F;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(228, 64, 95, 0.4);
}

.btn-instagram i {
    margin-right: 10px;
    font-size: 1.2em;
}

/* Responsive enhancements */
@media (max-width: 768px) {
    .cta {
        padding: 80px 0;
    }
    
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-instagram {
        width: 100%;
        max-width: 300px;
    }
}
/* Footer */
.footer {
    background: var(--primary-black);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--white);
}

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

.footer-section p,
.footer-section a {
    color: var(--neutral-medium);
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: var(--neutral-medium);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: right 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .mobile-overlay {
        display: block;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .carousel-container {
        height: 500px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .course-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .week-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 15px 30px;
    }
    
    .program-card,
    .week-card {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .carousel-container {
        height: 450px;
    }
    
    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .image-6 {
        height: 350px;
    }
    
    .image-1 {
        top: 60%;
        left: 0;
        height: 175px;
    }
}