* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0f172a;
    color: white;
}

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

/* NAVBAR */
/* ================= NAVBAR ================= */

.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    font-size: 22px;
    font-weight: 700;
}

.logo span {
    color: #38bdf8;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #cbd5e1;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #38bdf8;
}

/* CTA Button */
.nav-cta {
    background: linear-gradient(45deg, #38bdf8, #6366f1);
    padding: 8px 18px;
    border-radius: 8px;
    color: white !important;
}

/* Hamburger */
.hamburger {
    display: none;
    font-size: 26px;
    cursor: pointer;
}


/* HERO */
.hero {
    padding: 120px 0;
    background: linear-gradient(135deg, #1e293b, #0f172a);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    margin-bottom: 30px;
    color: #94a3b8;
}

.hero img {
    width: 100%;
    border-radius: 20px;
}

.btn-primary {
    background: linear-gradient(to right, #38bdf8, #6366f1);
    padding: 12px 25px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: scale(1.05);
}

/* SOCIAL PROOF */
.social-proof {
    padding: 80px 0;
    background: #1e293b;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.social-card {
    position: relative;
    background: #0f172a;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s ease;
    border: 2px solid transparent;
}

/* Gradient Border Effect */
.social-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(45deg, #38bdf8, #6366f1, #ec4899);
    z-index: -1;
    opacity: 0;
    transition: 0.4s ease;
}

.social-card:hover::before {
    opacity: 1;
}

.social-card:hover {
    transform: translateY(-10px);
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 15px 40px rgba(0,0,0,0.4);
}

.social-card img {
    width: 50px;
    margin-bottom: 15px;
}

.social-card h3 {
    font-size: 28px;
    color: #38bdf8;
    margin-bottom: 8px;
}

.social-card p {
    color: #94a3b8;
    margin-bottom: 15px;
}

.social-card a {
    text-decoration: none;
    font-weight: 600;
    color: #6366f1;
}

.social-card a:hover {
    text-decoration: underline;
}


/* ABOUT */
.about {
    padding: 100px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image img {
    width: 350px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 18px;
    color: #cbd5e1;
}

.intro {
    font-size: 18px;
}

.highlight {
    color: #38bdf8;
    font-weight: 600;
}

.teaching-framework {
    background: #1e293b;
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
}

.teaching-framework h4 {
    margin-bottom: 15px;
    color: #38bdf8;
}

.teaching-framework ul {
    list-style: none;
}

.teaching-framework li {
    margin-bottom: 8px;
    color: #e2e8f0;
}

.closing {
    margin-top: 20px;
    font-size: 17px;
}


/* RESOURCES */
.resources {
    padding: 80px 0;
    background: #1e293b;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.resource-card {
    background: #0f172a;
    padding: 20px;
    border-radius: 15px;
    transition: 0.3s;
}

.resource-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.resource-card:hover {
    transform: translateY(-8px);
}

.resource-btn {
    color: #38bdf8;
    text-decoration: none;
    font-weight: 600;
}

/* PRICING */
.pricing {
    padding: 80px 0;
}

.price-card {
    background: #1e293b;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 450px;
    margin: auto;
}

.price {
    font-size: 36px;
    margin: 20px 0;
    color: #38bdf8;
}

.price-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.price-card li {
    margin: 10px 0;
}

/* FOOTER */
footer {
    padding: 30px;
    text-align: center;
    background: #020617;
    color: #94a3b8;
}

.hero-image {
    width: 100%;
    margin-top: 30px;
}

.hero-image img {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
}


@media (max-width: 768px) {
    .hero-image img {
        width: 60%;
    }
}

/* ============================= */
/* MOBILE RESPONSIVE OPTIMIZATION */
/* ============================= */

@media (max-width: 768px) {

    section {
        padding: 60px 0;
    }

    /* HERO */
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-image img {
        width: 60%;
        margin-top: 25px;
    }

    /* ABOUT */
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .about-image img {
        width: 250px;
    }

    /* SOCIAL */
    .social-grid {
        grid-template-columns: 1fr;
    }

    /* RESOURCES */
    .resource-grid {
        grid-template-columns: 1fr;
    }

    /* PRICING */
    .price-card {
        padding: 30px;
    }

}

/* Extra Small Phones */

@media (max-width: 480px) {

    .hero h1 {
        font-size: 24px;
    }

    .section-title {
        font-size: 24px;
    }

    .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }

}

.programs {
    padding: 100px 0;
    background: #0f172a;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.program-card {
    background: #1e293b;
    padding: 40px;
    border-radius: 20px;
    transition: 0.3s ease;
    border: 2px solid transparent;
}

.program-card:hover {
    transform: translateY(-10px);
    border: 2px solid #38bdf8;
}

.program-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.program-card p {
    color: #94a3b8;
    margin-bottom: 20px;
}

.program-card ul {
    list-style: none;
}

.program-card li {
    margin-bottom: 10px;
    color: #e2e8f0;
}

.pricing {
    padding: 100px 0;
    background: #1e293b;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.price-card {
    background: #0f172a;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: 0.3s ease;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.price {
    font-size: 32px;
    margin: 20px 0;
    color: #38bdf8;
}

.price-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.price-card li {
    margin-bottom: 10px;
    color: #cbd5e1;
}

.btn-secondary {
    background: transparent;
    border: 1px solid #38bdf8;
    padding: 10px 20px;
    border-radius: 8px;
    color: #38bdf8;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.btn-secondary:hover {
    background: #38bdf8;
    color: black;
}

.recommended {
    border: 2px solid #38bdf8;
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(45deg, #38bdf8, #6366f1);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

@media (max-width: 768px) {

    .nav-links {
        position: absolute;
        top: 70px;
        right: 20px;
        background: #1e293b;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        border-radius: 12px;
        gap: 15px;
        display: none;
        width: 200px;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

}

@media (max-width: 768px) {

    .hero-image {
        padding: 0 15px;
    }

    .hero-image img {
        width: 100%;
        border-radius: 20px;
    }

}

/* ================= TESTIMONIAL PAGE ================= */

.testimonial-page {
    padding: 100px 0;
    background: #0f172a;
}

.page-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
}

.page-subtitle {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 60px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: #1e293b;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.testimonial-card h3 {
    margin-bottom: 5px;
}

.testimonial-card span {
    font-size: 14px;
    color: #38bdf8;
}

.testimonial-card p {
    margin-top: 15px;
    color: #cbd5e1;
}

/* ================= SHORT CTA FOOTER ================= */

.footer {
    background: #020617;
    padding: 60px 20px 30px 20px;
    text-align: center;
}

.footer h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer p {
    color: #94a3b8;
    margin-bottom: 25px;
}

.footer-cta {
    display: inline-block;
    background: linear-gradient(45deg, #38bdf8, #6366f1);
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: 0.3s ease;
}

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

.footer-bottom {
    margin-top: 40px;
    font-size: 14px;
    color: #64748b;
}

.program-image {
    margin-bottom: 20px;
}

.program-image img {
    width: 100%;
    border-radius: 15px;
    transition: 0.3s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.03);
}

.instagram-section {
    padding: 100px 0;
    background: #1e293b;
}

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

.instagram-media {
    width: 100% !important;
    min-width: 100% !important;
}

/* ================= FLOATING CIRCLE ================= */

.floating-circle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.floating-circle a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: linear-gradient(45deg, #ff0000, #6366f1);
    color: white;
    text-decoration: none;
    font-size: 22px;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    transition: 0.3s ease;
}

.floating-circle a:hover {
    transform: scale(1.1);
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(99, 102, 241, 0); }
    100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
}

.floating-circle a {
    animation: pulse 1s infinite;
}

/* ================= COUNTDOWN ================= */

/* ================= RESPONSIVE COUNTDOWN ================= */

.countdown-section {
    padding: 20px 0;
    text-align: center;
    background: #1e293b;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    gap: 12px;
    max-width: 500px;
    margin: 20px auto 0 auto;
}

.countdown div {
    background: #0f172a;
    padding: 12px 8px;
    border-radius: 12px;
}

.countdown span {
    font-size: clamp(18px, 4vw, 24px);
    font-weight: bold;
    color: #38bdf8;
    display: block;
}

.countdown p {
    font-size: clamp(10px, 2.5vw, 13px);
    color: #94a3b8;
    margin-top: 4px;
}
@media (max-width: 480px) {
    .countdown {
        grid-template-columns: repeat(2, 1fr);
    }
}

.section-subtitle {
    max-width: 650px;
    margin: 15px auto 0 auto;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    color: #94a3b8;
}
.price-wrapper {
    margin: 20px 0 5px 0;
}

.old-price {
    font-size: 18px;
    color: #94a3b8;
    text-decoration: line-through;
    margin-right: 10px;
}

.new-price {
    font-size: 32px;
    font-weight: 700;
    color: #38bdf8;
}

.offer-text {
    font-size: 13px;
    color: #22c55e;
    margin-bottom: 15px;
    font-weight: 500;
}
/* ================= MODAL ================= */

.modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #1e293b;
    padding: 25px;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.modal-content h2 {
    margin-bottom: 15px;
}

.close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
}

/* ================= SEATS FLASH ================= */

.seats-alert {
    display: inline-block;
    margin: 20px auto;
    padding: 10px 25px;
    background: linear-gradient(45deg, #ef4444, #f97316);
    color: white;
    font-weight: 600;
    border-radius: 30px;
    text-align: center;
    animation: pulse 1.8s infinite;
}

@keyframes flash {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

.urgent-text {
    color: #f7eeee;
    font-weight: 600;
    margin-bottom: 10px;
}


.hero-text h1 {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtext {
    font-size: 18px;
    color: #94a3b8;
    max-width: 600px;
    margin-bottom: 25px;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-highlights span {
    background: #1e293b;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
    color: #38bdf8;
}
.hero-image-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ================= COHORT ANNOUNCEMENT ================= */

.cohort-announcement {
    padding: 80px 0;
    background: #1e293b;
}

.announcement-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.announcement-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.announcement-text p {
    color: #94a3b8;
    max-width: 500px;
}

.announcement-image {
    position: relative;
    flex: 1;
}

.announcement-image img {
    width: 100%;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .announcement-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ================= TESTIMONIAL POSTER ================= */

.testimonial-poster-section {
    padding: 80px 0;
    text-align: center;
    background: #0f172a;
}

.testimonial-poster img {
    width: 100%;
    max-width: 900px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    transition: transform 0.5s ease;
}

.testimonial-poster img:hover {
    transform: scale(1.02);
}

.top-masterclass {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 80px 10%;
    color: white;
}

.top-masterclass-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.poster-side img {
    width: 100%;
    max-width: 420px;
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.content-side {
    max-width: 550px;
}

.badge {
    display: inline-block;
    background: #f97316;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
}

.content-side h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.subtext {
    color: #cbd5e1;
    margin-bottom: 20px;
    font-size: 18px;
}

.date {
    font-weight: bold;
    margin-bottom: 25px;
}

.btn-register {
    display: inline-block;
    padding: 14px 32px;
    background: #f97316;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s ease;
}

.btn-register:hover {
    background: #ea580c;
    transform: translateY(-3px);
}