/* ================================================
   MELITALIA ACADEMY PLACEMENT GUIDE PAGE STYLES
   ================================================
   Author: Melitalia Academy Development Team
   Version: 1.0.0
   Description: Stylesheet for placement.blade.php
   ================================================ */

/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Colors */
    --primary-green: #2e8b57;
    --secondary-green: #22c55e;

    /* Accent Colors */
    --accent-red: #dc3545;
    --accent-orange: #f59e0b;
    --accent-blue: #0d6efd;

    /* Text Colors */
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;

    /* Background Colors */
    --bg-light: #f8fafc;
    --bg-gradient: #f0fdf4;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Override Bootstrap primary colors with custom green */
    --bs-primary: #2e8b57;
    --bs-primary-rgb: 46, 139, 87;
}

/* ===== BOOTSTRAP PRIMARY COLOR OVERRIDES ===== */
.text-primary {
    color: var(--primary-green) !important;
}

.bg-primary {
    background-color: var(--primary-green) !important;
}

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

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--secondary-green);
    border-color: var(--secondary-green);
    color: white;
}

.btn-outline-primary {
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
}

.border-primary {
    border-color: var(--primary-green) !important;
}

.badge.bg-primary {
    background-color: var(--primary-green) !important;
}

.badge.bg-success {
    background-color: var(--secondary-green) !important;
}

.text-success {
    color: var(--secondary-green) !important;
}

/*===========================
  PLACEMENT HERO SECTION STYLES
  ===========================*/
.placement-hero-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.placement-hero-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 20"><defs><pattern id="grain" width="100" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="5" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="10" r="0.3" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="15" r="0.4" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="3" r="0.6" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="8" r="0.2" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="12" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="18" r="0.3" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="6" r="0.4" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="14" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="20" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 10;
    color: white;
    text-align: center;
    align-items: center;
}

/*===========================
  HOW IT WORKS SECTION STYLES
  ===========================*/

.how-it-works-section {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
    overflow: hidden;
}

.placement-journey-map {
    padding: 3rem 0;
    min-height: 500px;
}

/* SVG Curved Path */
.journey-path {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: auto;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

.animated-path {
    animation: pathAnimation 3s ease-in-out infinite;
}

@keyframes pathAnimation {
    0%,
    100% {
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dashoffset: 50;
    }
}

/* Journey Steps */
.journey-step {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
}

/* Step Marker (Icon Container) */
.step-marker {
    position: relative;
    margin-bottom: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

.step-1 .step-marker {
    animation-delay: 0s;
}

.step-2 .step-marker {
    animation-delay: 0.3s;
}

.step-3 .step-marker {
    animation-delay: 0.6s;
}

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

.step-number-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.4);
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(245, 158, 11, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 6px 15px rgba(245, 158, 11, 0.6);
    }
}

.step-icon-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(
        135deg,
        var(--primary-green),
        var(--secondary-green)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 10px 30px rgba(46, 139, 87, 0.3);
    border: 5px solid white;
    position: relative;
    transition: var(--transition);
}

.step-icon-circle::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px dashed rgba(46, 139, 87, 0.3);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.success-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
}

.success-icon::before {
    border-color: rgba(34, 197, 94, 0.3);
}

.journey-step:hover .step-icon-circle {
    transform: scale(1.1) rotate(10deg);
}

/* Step Card */
.step-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 3px solid #f0fdf4;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(46, 139, 87, 0.05),
        transparent
    );
    transform: rotate(45deg);
    transition: var(--transition);
}

.journey-step:hover .step-card {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-green);
}

.journey-step:hover .step-card::before {
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.success-card {
    border-color: #dcfce7;
    background: linear-gradient(135deg, #ffffff, #f0fdf4);
}

.step-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.step-decoration {
    font-size: 1.5rem;
    color: #fbbf24;
    animation: twinkle 2s ease-in-out infinite;
}

.success-card .step-decoration {
    color: #22c55e;
}

@keyframes twinkle {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.step-description {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.step-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 2px solid var(--primary-green);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--primary-green);
}

.success-badge {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    border-color: var(--secondary-green);
    color: var(--secondary-green);
}

/* Step Connector Arrow */
.step-connector {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--primary-green);
    opacity: 0.6;
    z-index: 5;
    animation: arrowMove 1.5s ease-in-out infinite;
}

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

.step-3 .step-connector {
    display: none;
}

/* Decorative Elements */
.journey-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.deco-cloud {
    position: absolute;
    font-size: 3rem;
    color: rgba(191, 219, 254, 0.5);
    animation: floatCloud 20s ease-in-out infinite;
}

.cloud-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.cloud-2 {
    top: 70%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes floatCloud {
    0%,
    100% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(30px) translateY(-20px);
    }
}

.deco-star {
    position: absolute;
    font-size: 1.5rem;
    color: rgba(251, 191, 36, 0.6);
    animation: starTwinkle 3s ease-in-out infinite;
}

.star-1 {
    top: 20%;
    right: 15%;
    animation-delay: 0s;
}

.star-2 {
    top: 60%;
    left: 10%;
    animation-delay: 1s;
}

.star-3 {
    top: 35%;
    right: 25%;
    animation-delay: 2s;
}

@keyframes starTwinkle {
    0%,
    100% {
        opacity: 0.3;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.3) rotate(180deg);
    }
}

/* Old Process Step Card Styles - Keep for backwards compatibility */
.process-step-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(30px);
}

.process-step-card.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.process-step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-green);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(
        135deg,
        var(--primary-green),
        var(--secondary-green)
    );
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.step-icon {
    font-size: 3.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.step-icon i {
    display: inline-block;
    transition: var(--transition);
}

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

/*===========================
  PROGRAM SECTION STYLES
  ===========================*/

.program-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    border: 1px solid #e5e7eb;
    opacity: 0;
    transform: translateY(30px);
}

.program-card.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.program-header {
    padding: 2rem;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, var(--bg-gradient) 0%, #dcfce7 100%);
}

.program-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: var(--shadow-md);
    color: var(--primary-green);
}

.program-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.program-content {
    padding: 2rem;
}

/* Course Level Boxes */
.course-level-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-green);
    margin-bottom: 1.5rem;
}

.course-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    box-shadow: var(--shadow-sm);
    background-color: var(--primary-green);
}

.course-details {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.detail-item i {
    margin-top: 3px;
}

.class-groups,
.level-list {
    list-style: none;
    padding-left: 0;
    margin-top: 0.5rem;
}

.class-groups li,
.level-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.class-groups li:last-child,
.level-list li:last-child {
    border-bottom: none;
}

/* Program Features */
.program-features {
    margin-top: 1.5rem;
}

.features-title {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-item {
    background: white;
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item i {
    font-size: 1.2rem;
    margin-left: 20px;
}

.feature-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    margin-left: 15px;
}

.feature-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-left: 15px;
}

/* Pre-Registration Box */
.pre-registration-box {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-green);
    box-shadow: var(--shadow-sm);
}

.pre-registration-box i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.pre-registration-box strong {
    color: var(--text-dark);
    font-size: 1.05rem;
}

.pre-registration-box p {
    color: var(--text-gray);
    margin-top: 0.5rem;
}

/*===========================
  BENEFIT SECTION STYLES
  ===========================*/

.benefit-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
}

.benefit-card.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-green);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--bg-gradient), #dcfce7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    transition: var(--transition);
}

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

.benefit-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.benefit-description {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* Payment Info Box */
.payment-info-box {
    background: linear-gradient(135deg, var(--bg-gradient), #dcfce7);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary-green);
    box-shadow: var(--shadow-md);
}

.payment-info-box h5 {
    color: var(--text-dark);
    font-weight: 700;
}

.payment-info-box p {
    color: var(--text-gray);
    line-height: 1.7;
}

.payment-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.payment-list li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.payment-list li i {
    flex-shrink: 0;
}

/*===========================
  FAQ SECTION STYLES
  ===========================*/

.faq-section .accordion-item {
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.faq-section .accordion-item:hover {
    box-shadow: 0 5px 15px rgba(46, 139, 87, 0.1);
}

.faq-section .accordion-button {
    font-weight: 600;
    color: var(--text-dark);
    background: white;
    padding: 1.25rem 1.5rem;
    border: none;
    transition: all 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed) {
    background: var(--bg-gradient);
    color: var(--primary-green);
    border-bottom: 2px solid var(--primary-green);
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-green);
    outline: none;
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232e8b57'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
    transform: scale(1.2);
}

.faq-section .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg) scale(1.2);
}

.faq-section .accordion-body {
    padding: 1.5rem;
    color: var(--text-gray);
    line-height: 1.7;
    background: white;
}

.faq-section .accordion-collapse {
    transition: height 0.35s ease;
}

/*===========================
  CTA SECTION STYLES
  ===========================*/

.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    color: var(--text-dark);
}

.cta-section .lead {
    color: var(--text-gray);
    font-size: 1.15rem;
}

.cta-buttons {
    gap: 1rem;
}

.cta-section .btn {
    transition: var(--transition);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-section .btn-primary {
    background: var(--primary-green);
    border: none;
}

.cta-section .btn-primary:hover {
    background: var(--secondary-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(46, 139, 87, 0.3);
}

.cta-section .btn-outline-primary {
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    background: white;
}

.cta-section .btn-outline-primary:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(46, 139, 87, 0.2);
}

.cta-illustration {
    animation: pulse 3s ease-in-out infinite;
}

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

/* ===== BOOTSTRAP BUTTON OVERRIDES ===== */
.btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--secondary-green);
    border-color: var(--secondary-green);
    color: white;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .placement-hero-section {
        padding: 120px 0 60px 0;
    }

    .process-step-card,
    .benefit-card {
        margin-bottom: 1.5rem;
    }

    .program-card {
        margin-bottom: 2rem;
    }

    /* Cartoon Map Responsive */
    .journey-path {
        display: none;
    }

    .step-connector {
        position: static;
        transform: none;
        margin: 1rem 0;
        font-size: 2.5rem;
        display: block;
        animation: arrowMoveVertical 1.5s ease-in-out infinite;
    }

    @keyframes arrowMoveVertical {
        0%,
        100% {
            transform: translateY(0) rotate(90deg);
        }
        50% {
            transform: translateY(10px) rotate(90deg);
        }
    }

    .step-icon-circle {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .step-icon-circle::before {
        width: 120px;
        height: 120px;
    }

    .journey-decorations {
        display: none;
    }
}

.payment-info-box-icon {
    font-size: 32px;
}

@media (max-width: 768px) {
    .faq-section .accordion-button {
        padding: 1rem;
        font-size: 0.9rem;
    }
    .faq-section .accordion-body{
        padding: 1rem;
        font-size: 0.85rem;
    }
    .payment-info-box h5 {
        font-size: 1.1rem;
    }
    .payment-info-box {
        padding: 1.5rem;
    }
    .payment-list li {
        font-size: 0.9rem;
        padding: .5rem 0;
    }
    .payment-info-box p {
        font-size: 0.85rem;
    }
    .payment-info-box-icon {
        font-size: 24px;
    }
    .placement-journey-map {
        padding: 3rem 0 1rem 0;
    }
    .benefit-card {
        padding: 1.5rem;
    }
    .course-level-box {
        padding: 1rem;
    }
    .program-content {
        padding: 1rem;
    }
    .benefit-title {
        font-size: 1.1rem;
    }
    .benefit-description {
        font-size: 0.9rem;
    }
    .lead {
        font-size: 0.9rem !important;
    }
    .hero-title {
        font-size: 2rem;
    }

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

    .program-card .h-title {
        font-size: 1rem;
    }

    .placement-hero-section {
        padding: 100px 0 50px 0;
    }

    .step-icon {
        font-size: 2.5rem;
    }

    .step-title {
        font-size: 1.25rem;
    }
    .features-title {
        font-size: 1rem;
    }
    .feature-item strong {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }
    .feature-item p {
        font-size: 0.8rem;
    }
    .feature-item p,
    .feature-item strong,
    .feature-item i {
        margin-left: 6px;
    }
    .pre-registration-box {
        padding: 1rem;
    }
    .class-groups li,
    .level-list li {
        font-size: 0.85rem;
    }
    .program-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    .pre-registration-box p {
        font-size: 0.85rem;
    }
    .pre-registration-box strong {
        font-size: 0.9rem;
    }
    .pre-registration-box i {
        font-size: 1rem;
    }

    .program-title {
        font-size: 1.2rem;
    }

    .class-groups {
        font-size: 0.85rem;
    }

    .detail-item {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .cta-illustration i {
        font-size: 8rem !important;
    }

    /* Cartoon Map Mobile */
    .step-icon-circle {
        width: 90px;
        height: 90px;
        font-size: 2rem;
    }

    .step-icon-circle::before {
        width: 110px;
        height: 110px;
    }

    .step-number-badge {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        top: -10px;
        right: -10px;
    }

    .step-card {
        padding: 1.5rem;
    }

    .step-title {
        font-size: 1.2rem;
    }

    .step-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }

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

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        top: -15px;
    }

    .process-step-card {
        padding: 2rem 1.5rem;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    /* Cartoon Map Extra Small Screens */
    .step-icon-circle {
        width: 80px;
        height: 80px;
        font-size: 1.75rem;
        border-width: 3px;
    }

    .step-icon-circle::before {
        width: 100px;
        height: 100px;
        border-width: 2px;
    }

    .step-number-badge {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .step-marker {
        margin-bottom: 1.5rem;
    }

    .step-connector {
        font-size: 2rem;
        margin: 0.75rem 0;
    }
}

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

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

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

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.slide-in-up {
    animation: slideInUp 0.6s ease-out forwards;
    opacity: 0;
}

linearGradient stop:first-child {
    stop-color: #2e8b57;
    stop-opacity: 0.3;
}
linearGradient stop:nth-child(2) {
    stop-color: #22c55e;
    stop-opacity: 0.3;
}
linearGradient stop:nth-child(3) {
    stop-color: #2e8b57;
    stop-opacity: 0.3;
}

.cta-illustration .icon {
    font-size: 12rem;
    color: rgba(46, 139, 87, 0.15);
}

.placement-cta-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.placement-cta-section .button-1 {
    background-color: #2e8b57;
    border-color: #2e8b57;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
}

.placement-cta-section .button-2 {
    background-color: white;
    border-color: #2e8b57;
    color: #2e8b57;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
}

#placementFaqAccordion .accordion-button i {
    color: #2e8b57;
}
