/* =============================================
   SERVICES HERO SECTION
   ============================================= */
.services-hero {
    background: url('../images/page-banner2.jpg.jpeg') no-repeat center / cover;
    height: 40vh;
    min-height: 250px;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    color: #fff;
    padding: 2rem 0;
}

.services-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.services-hero .container {
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.services-hero h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* =============================================
   PROGRAMS LIST
   ============================================= */
.programs {
    padding: 2rem 0;
}

.program-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
    padding: 2.5rem;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.program-detail:nth-child(even) {
    background-color: var(--soft);
}

.program-content h2 {
    color: var(--accent);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.program-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.program-content ul {
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.program-content li {
    margin-bottom: 0.5rem;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* =============================================
   DAILY SCHEDULE
   ============================================= */
.daily-schedule {
    padding: 2rem 0;
    background: #fff;
}

.daily-schedule .section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.schedule-intro {
    max-width: 720px;
    margin: 0 auto 2.5rem;
    text-align: center;
    color: #555;
}

.schedule-grid {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 140px 1fr;
    border: 1px solid var(--soft);
    border-radius: 10px;
    overflow: hidden;
}

.schedule-item {
    display: contents;
}

.schedule-time {
    padding: 1rem;
    background: var(--soft);
    color: var(--accent);
    font-weight: 600;
    text-align: right;
    border-bottom: 1px solid #dfe9e3;
}

.schedule-activity {
    padding: 1rem 1.2rem;
    background: #fff;
    color: var(--dark);
    border-bottom: 1px solid #eef3ef;
    line-height: 1.6;
}

/* =============================================
   PRICING TABLE
   ============================================= */
.pricing-table {
    padding: 4.5rem 0;
    background: var(--soft);
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.8rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.6rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.pricing-card--highlight {
    background: #80b9a6;
    color: #102821;
    transform: scale(1.03);
}

.pricing-card__title {
    font-size: 1.2rem;
    font-weight: 600;
}

.pricing-card__price {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--accent);
}

.pricing-card--highlight .pricing-card__price {
    color: #0b3d2e;
}

.pricing-card__subtitle {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 1.4rem;
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.6rem;
}

.pricing-card__features li {
    padding: 0.45rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-note {
    max-width: 700px;
    margin: 2rem auto 0;
    font-size: 0.9rem;
    color: #555;
}

/* =============================================
   DECORATIVE ITEMS
   ============================================= */
.rock-box {
    width: 260px;
    margin-top: -45px;
}


/* =============================================
   RESPONSIVE BREAKPOINTS (CLEAN & SINGLE)
   ============================================= */
@media (min-width: 768px) {
    .program-detail {
        grid-template-columns: 1.2fr 1fr;
        gap: 3rem;
    }

    .program-detail:nth-child(odd) .program-content {
        order: 1;
    }

    .program-detail:nth-child(odd) .program-image {
        order: 2;
    }

    .program-detail:nth-child(even) .program-content {
        order: 2;
    }

    .program-detail:nth-child(even) .program-image {
        order: 1;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .schedule-grid {
        display: block;
        /* ⬅️ GRID KO DISABLE */
        border: none;
    }

    .schedule-item {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid var(--soft);
        border-radius: 8px;
        overflow: hidden;
        background: #fff;
    }

    .schedule-time {
        display: block;
        width: 100%;
        text-align: left;
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
        background: var(--soft);
        border-bottom: 1px solid #dfe9e3;
    }

    .schedule-activity {
        display: block;
        width: 100%;
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
        line-height: 1.6;
        border-bottom: none;
    }
}

/* =============================================
   PROGRAM OUTCOMES – ENHANCED SECTION
   ============================================= */

.program-outcomes {
    padding: 1.5rem 0;
    background: #ffffff;
}

.outcome-label {
    display: block;
    text-align: center;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.outcome-intro {
    max-width: 760px;
    margin: 0 auto 3.5rem;
    text-align: center;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

/* Grid */
.outcome-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Card */
.outcome-card {
    background: var(--soft);
    padding: 2.2rem;
    border-radius: 18px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.outcome-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.outcome-card h3 {
    font-size: 1.25rem;
    color: var(--accent);
    margin-bottom: 0.6rem;
}

.outcome-card p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.7;
}

.cont2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* =============================================
   RESPONSIVE BREAKPOINTS
   ============================================= */

@media (min-width: 768px) {
    .outcome-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .outcome-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =============================================
   CLASS PROCESS – HOW OUR CLASSES ARE CONDUCTED
   ============================================= */

.class-process {
    padding: 5.5rem 0;
    background: var(--soft);
}

.process-label {
    display: block;
    text-align: center;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.process-intro {
    max-width: 760px;
    margin: 0 auto 3.8rem;
    text-align: center;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

/* Steps Layout */
.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Step Card */
.process-step {
    background: #ffffff;
    border-radius: 18px;
    padding: 2.3rem;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Step Number */
.step-number {
    position: absolute;
    top: -14px;
    left: 24px;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    letter-spacing: 1px;
}

.process-step h3 {
    margin-top: 0.8rem;
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 0.6rem;
}

.process-step p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.7;
}

/* =============================================
   RESPONSIVE BREAKPOINTS
   ============================================= */

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media (max-width: 991px) {
    .rock-box {
        width: 200px;
        margin-top: -35px;
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}