/* ========== IMPORT THEME COLORS ========== */
@import url('theme.css');

/* ========== NAVIGATION BAR ========== */
.navbar {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 500;
}

.navbar-sticky {
    position: sticky;
    top: 0;
}

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

.navbar-brand {
    flex: 0 0 auto;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.brand-text:hover {
    color: var(--secondary-color);
}

.navbar-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

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

.nav-cta {
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white !important;
    border-radius: 25px;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 70, 166, 0.3);
}

/* Hamburger Menu */
.navbar-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    /* gap: 6px; */
}

.hamburger {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 0 rgba(0,0,0,0.12);
}

.navbar-toggle:hover .hamburger,
.navbar-toggle:focus-visible .hamburger {
    background: var(--secondary-color);
}

.navbar-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(201,154,34,0.12);
    border-radius: 6px;
}

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

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

.navbar-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ========== GLOBAL STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --spacing-unit: 1rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--bg-primary);
}

/* ========== LOGO & WATERMARK STYLES ========== */
.site-logo img,
.site-logo object {
    display: inline-block;
    vertical-align: middle;
}

.site-watermark {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    opacity: 0.3;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 45%;
    background-attachment: fixed;
}

/* -------------------------
     Animations / Motion System
     ------------------------- */

:root{
        --anim-ease: cubic-bezier(.2,.9,.2,1);
        --reveal-duration: .6s;
        --reveal-distance: 18px;
}

/* Feminine micro-animation variables */
:root{
    --feminine-ease: cubic-bezier(.25,.8,.35,1);
    --shimmer-color: rgba(255,255,255,0.55);
    --soft-pulse: rgba(233, 196, 160, 0.08);
}

/* initial hidden state for elements to be animated */
.reveal-hidden{
        opacity: 0;
        transform: translateY(var(--reveal-distance));
        will-change: opacity, transform;
}

/* visible state triggered by JS */
.reveal{
        animation: fadeUp var(--reveal-duration) var(--anim-ease) forwards;
}

.reveal { animation-delay: var(--reveal-delay, 0s); }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(var(--reveal-distance)); }
    to   { opacity: 1; transform: translateY(0); }
}

/* hero image subtle scale/float */
.hero-image img{
    transition: transform .9s var(--anim-ease), filter .4s ease;
    will-change: transform;
    transform-origin: center;
    backface-visibility: hidden;
}

/* soft floating for images to feel gentle */
@keyframes floatSoft {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}
.hero-image img.floating { animation: floatSoft 6s var(--feminine-ease) infinite; }

@media (hover: hover) and (min-width: 768px){
    .hero-image img:hover{
        transform: scale(1.02) translateY(-6px);
        filter: saturate(1.02);
    }
}

/* button subtle lift + gradient transition */
.btn {
    transition: transform .18s var(--anim-ease), box-shadow .18s var(--anim-ease), opacity .12s ease;
}
.btn:hover, .btn:focus{
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
    outline: none;
}

/* Shimmer sheen for primary CTA - feminine and elegant */
.btn-primary{
    position: relative;
    overflow: hidden;
}
.btn-primary::after{
    content: '';
    position: absolute;
    top: -40%;
    left: -30%;
    width: 60%;
    height: 180%;
    background: linear-gradient(120deg, transparent 0%, var(--shimmer-color) 50%, transparent 100%);
    transform: rotate(-25deg) translateX(-100%);
    transition: transform .9s var(--feminine-ease);
    pointer-events: none;
    opacity: 0.95;
}
.btn-primary:hover::after,
.btn-primary:focus::after{
    transform: rotate(-25deg) translateX(120%);
}

/* gallery cards micro-interaction */
.gallery-grid .gallery-item{
    transition: transform .28s var(--anim-ease), box-shadow .28s var(--anim-ease), opacity .3s ease;
    transform-origin: center;
}
.gallery-grid .gallery-item:hover{
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0,0,0,0.10);
}

/* soften gallery items with a faint pulse on load */
@keyframes softPulse {
    0% { box-shadow: 0 6px 18px rgba(0,0,0,0.06); }
    50% { box-shadow: 0 10px 26px rgba(0,0,0,0.08); }
    100% { box-shadow: 0 6px 18px rgba(0,0,0,0.06); }
}
.gallery-grid .gallery-item.reveal { animation: softPulse 1.6s ease both; }

/* testimonial card pop */
.testimonial-card{
    transition: transform .4s var(--anim-ease), box-shadow .4s var(--anim-ease);
}
.testimonial-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.08);
}

/* Twinkling stars for testimonials */
@keyframes twinkle {
    0% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.12); opacity: 1; }
    100% { transform: scale(1); opacity: 0.9; }
}
.stars i { display: inline-block; transform-origin: center; }
.testimonial-card.reveal .stars i { animation: twinkle 1.4s var(--feminine-ease) infinite; }

/* slightly rotate testimonial cards for organic feel (very subtle) */
.testimonial-card { transform-origin: center; }
.testimonial-card.subtle-tilt { transform: rotate(-0.6deg); }

/* navbar hamburger animated to X when open */
.navbar-toggle {
    transition: transform .18s var(--anim-ease);
}
.navbar-toggle .hamburger{
    display:block;
    width:22px;
    height:2px;
    background: var(--black-90, rgba(0,0,0,0.9));
    margin:5px 0;
    transition: transform .18s var(--anim-ease), opacity .18s var(--anim-ease), background .12s ease;
    border-radius:2px;
}

/* open state */
.navbar-toggle.open .hamburger:nth-child(1){
    transform: translateY(7px) rotate(45deg);
}
.navbar-toggle.open .hamburger:nth-child(2){
    opacity: 0;
    transform: scaleX(.2);
}
.navbar-toggle.open .hamburger:nth-child(3){
    transform: translateY(-7px) rotate(-45deg);
}

/* watermark subtle motion */
.site-watermark{
    transition: opacity .6s var(--anim-ease), transform .6s var(--anim-ease);
    transform: translateZ(0);
}
.site-watermark-visible{
    opacity: 1;
}

/* Continuous slow rotation for background watermark (360°) */
:root{
        --watermark-rotation-duration: 60s; /* adjust for speed */
}
@keyframes rotate360 {
    from { transform: translateZ(0) rotate(0deg); }
    to   { transform: translateZ(0) rotate(360deg); }
}
.site-watermark {
    /* keep the watermark behind content */
    z-index: -1;
    opacity: 0.28;
    will-change: transform;
    transform-origin: center center;
    animation: rotate360 var(--watermark-rotation-duration) linear infinite;
}

/* reduce motion preference handling */
@media (prefers-reduced-motion: reduce){
    .hero-image img, .gallery-grid .gallery-item, .testimonial-card,
    .btn, .navbar-toggle .hamburger { transition: none; animation: none; }
}
@media (prefers-reduced-motion: reduce){
    .site-watermark { animation: none !important; }
}

/* subtle brand shimmer on hover for feminine feel */
.brand-text {
    position: relative;
}
.brand-text::after{
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.06), transparent 25%);
    opacity: 0;
    transition: opacity .5s var(--feminine-ease), transform .6s var(--feminine-ease);
    transform: scale(0.98);
}
.brand-text:hover::after{ opacity: 1; transform: scale(1); }

footer.site-footer {
    padding: 24px 20px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    text-align: center;
}

/* Header logo larger */
.navbar .site-logo img,
.navbar .site-logo object {
    height: 64px;
    display: inline-block;
}

/* Footer logo smaller */
footer.site-footer .site-logo img {
    height: 36px;
    margin-bottom: 8px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

p {
    margin-bottom: 1rem;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(238, 191, 63, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 191, 63, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--dark-color);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    width: 100%;
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(245, 245, 220, 0.05), rgba(136, 131, 133, 0.05));
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(217, 70, 166, 0.1), transparent);
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-bullets {
    list-style: none;
    margin-bottom: 2rem;
}

.hero-bullets li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #555;
}

.hero-bullets i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* ========== INCOME SECTION ========== */
.income-section {
    padding: 80px 20px;
    background-color: var(--light-color);
}

.income-section h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.income-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    max-width: 700px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

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

.income-icon {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.income-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(238, 191, 63, 0.15);
}

.income-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.income-icon p {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0;
}

/* ========== INSTRUCTOR SECTION ========== */
.instructor-section {
    padding: 80px 20px;
}

.instructor-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.instructor-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

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

.stat {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(238, 191, 63, 0.1), rgba(167, 123, 18, 0.1));
    border-radius: 10px;
}

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

.stat p {
    margin-bottom: 0;
    color: #666;
}

.instructor-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.instructor-images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* ========== CURRICULUM SECTION ========== */
.curriculum-section {
    padding: 80px 20px;
    background-color: var(--light-color);
}

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

.curriculum-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.curriculum-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(238, 191, 63, 0.15);
}

.curriculum-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.curriculum-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.curriculum-item p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f0f7 100%);
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    color: var(--dark-color);
}

.testimonials-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
    padding: 0 2rem;
}

.carousel-slide {
    flex: 0 0 calc(50% - 1rem);
    padding: 0;
}

.testimonial-card {
    background: white;
    overflow: hidden;
    padding: 2rem 1.5rem;
    text-align: center;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    border-radius: 15px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: none;
}

.testimonial-card img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    flex-shrink: 0;
    margin-bottom: 0;
}

.testimonial-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.stars {
    color: #d4af37;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1;
}

.stars i {
    display: inline-block;
    margin: 0 2px;
}

.testimonial-stars {
    color: #d4af37;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1;
}

.testimonial-stars i {
    display: inline-block;
    margin: 0 2px;
}

.testimonial-text {
    font-style: italic;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0.3rem 0;
    max-width: 100%;
}

.testimonial-name {
    font-weight: 700;
    color: var(--dark-color);
    font-size: 1.1rem;
    margin: 0.3rem 0 0 0;
    display: block;
    line-height: 1.2;
    visibility: visible;
    opacity: 1;
    word-break: break-word;
    white-space: normal;
}

.testimonial-role {
    color: #d4af37;
    font-size: 0.85rem;
    margin: 0.2rem 0 0 0;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.testimonial-author {
    font-weight: 700;
    color: #d4af37;
    font-size: 1.1rem;
    margin: 0.3rem 0 0 0;
    display: block;
    line-height: 1.4;
}

.testimonial-author small {
    display: block;
    color: #d4af37;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 0.2rem;
}

/* Carousel Navigation Buttons */
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0;
    line-height: 1;
}

.carousel-prev {
    left: -70px;
}

.carousel-next {
    right: -70px;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(238, 191, 63, 0.3);
}

.carousel-prev:disabled,
.carousel-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-prev:disabled:hover,
.carousel-next:disabled:hover {
    transform: translateY(-50%);
    background: white;
    color: var(--primary-color);
}

/* Carousel Dots/Indicators */
.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 2rem 0 0 0;
    list-style: none;
    margin: 0;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    width: 35px;
    border-radius: 6px;
}

.dot:hover {
    background: var(--primary-color);
    opacity: 0.7;
}

/* Responsive Carousel */
@media (max-width: 1024px) {
    .carousel-track {
        gap: 1.5rem;
        padding: 0 1.5rem;
    }

    .carousel-slide {
        flex: 0 0 calc(50% - 0.75rem);
    }

    .carousel-prev {
        left: -60px;
    }

    .carousel-next {
        right: -60px;
    }

    .testimonial-card {
        padding: 1.8rem 1.5rem;
    }

    .testimonial-card img {
        width: 110px;
        height: 110px;
    }

    .testimonial-text {
        font-size: 0.85rem;
    }

    .testimonial-name {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 15px;
    }

    .testimonials-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .testimonials-carousel {
        padding: 1.5rem 0;
    }

    .carousel-track {
        gap: 1rem;
        padding: 0 1rem;
    }

    .carousel-slide {
        flex: 0 0 100%;
    }

    .carousel-prev {
        left: 5px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .carousel-next {
        right: 5px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .testimonial-card {
        padding: 1.5rem 1.2rem;
    }

    .testimonial-card img {
        width: 100px;
        height: 100px;
    }

    .testimonial-text {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .testimonial-name {
        font-size: 0.95rem;
    }

    .testimonial-role {
        font-size: 0.8rem;
    }

    .stars {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 50px 10px;
    }

    .testimonials-section h2 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .testimonials-carousel {
        padding: 1rem 0;
        border-radius: 15px;
    }

    .carousel-track {
        gap: 0.8rem;
        padding: 0 0.8rem;
    }

    .carousel-prev,
    .carousel-next {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        border-width: 1.5px;
    }

    .carousel-prev {
        left: 0px;
    }

    .carousel-next {
        right: 0px;
    }

    .testimonial-card {
        padding: 1.2rem 1rem;
        border-radius: 12px;
    }

    .testimonial-card img {
        width: 90px;
        height: 90px;
    }

    .testimonial-text {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .testimonial-name {
        font-size: 0.9rem;
    }

    .testimonial-role {
        font-size: 0.75rem;
    }

    .stars {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .carousel-dots {
        gap: 6px;
        padding: 1rem 0 0 0;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .dot.active {
        width: 24px;
    }
}

/* ========== FOR YOU SECTION ========== */
.for-you-section {
    padding: 80px 20px;
    background-color: var(--light-color);
}

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

.for-you-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.for-you-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(238, 191, 63, 0.15);
}

.for-you-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.for-you-item h3 {
    font-size: 1.2rem;
}

/* ========== HOW IT WORKS SECTION ========== */
.how-it-works-section {
    padding: 80px 20px;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    position: relative;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
}

.step i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step p {
    color: #666;
    margin-bottom: 0;
}

.step-arrow {
    font-size: 2rem;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .step-arrow {
        transform: rotate(90deg);
    }
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: 80px 20px;
    background-color: var(--light-color);
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    color: var(--dark-color);
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, rgba(238, 191, 63, 0.1), rgba(167, 123, 18, 0.1));
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.8;
}

/* ========== BOOKING FORM SECTION ========== */
.booking-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(245, 245, 220, 0.05), rgba(136, 131, 133, 0.05));
}

.booking-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.booking-content h2 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.booking-content p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.booking-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(238, 191, 63, 0.1);
}

.form-disclaimer {
    text-align: center;
    font-size: 0.9rem;
    color: #999;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-disclaimer i {
    color: var(--primary-color);
}

/* ========== THANK YOU SECTION ========== */
.thank-you-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(26, 23, 25, 0.05));
}

.thank-you-content {
    text-align: center;
}

.thank-you-content i {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.thank-you-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--success-color);
}

.thank-you-content p {
    font-size: 1.1rem;
    color: #666;
}

.thank-you-subtitle {
    font-size: 1rem;
    color: #999;
    margin-bottom: 2rem;
}

/* ========== WHATSAPP BUTTON ========== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .instructor-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .instructor-images {
        grid-template-columns: 1fr 1fr;
    }

    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar-toggle {
        display: flex;
    }

    .navbar-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .navbar-menu.active {
        max-height: 400px;
    }

    .nav-link {
        padding: 15px 20px;
        display: block;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link::after {
        display: none;
    }

    .nav-cta {
        margin: 10px 20px;
        text-align: center;
    }

    .hero {
        min-height: auto;
        padding: 60px 20px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-bullets li {
        font-size: 1rem;
    }

    .curriculum-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .for-you-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .steps-container {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg) !important;
    }

    .booking-form {
        padding: 1.5rem;
    }

    .income-icons {
        grid-template-columns: 1fr;
    }

    .instructor-stats {
        grid-template-columns: 1fr;
    }

    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .instructor-images {
        grid-template-columns: 1fr;
    }

    .instructor-images img {
        height: 200px;
    }

    .for-you-grid {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 1rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .stat {
        padding: 1rem;
    }

    .stat h3 {
        font-size: 1.5rem;
    }
}

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

/* ========== PRINT STYLES ========== */
@media print {
    .whatsapp-btn,
    .btn {
        print-color-adjust: exact;
    }
}
