/* Working Holiday Maker Short Courses - Main Stylesheet */

/* ==================== BASE STYLES ==================== */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #1E3A8A;
    overflow-x: hidden;
}

/* ==================== CONTAINER ==================== */
.section {
    width: 100%;
    min-height: auto;
    position: relative;
    background-color: transparent;
    padding: 0;
    overflow: hidden;
}

body {
    background: linear-gradient(135deg, #1E3A8A 0%, #1E40AF 25%, #3B82F6 50%, #1E40AF 75%, #1E3A8A 100%);
    background-attachment: fixed;
}

/* Animated background overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(96, 165, 250, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(30, 58, 138, 0.2) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Subtle pattern overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* Continuous background - all sections transparent */
.section.home,
.section.journey,
.section.why-courses,
.section.benefits,
.section.courses,
.section.pathway,
.section.value-props,
.section.testimonials,
.section.contact,
.section.market {
    background-color: transparent;
}

/* Modern section spacing */
.section {
    padding: 100px 0;
    margin: 0;
}

.section:first-of-type {
    padding-top: 140px;
}

/* ==================== NAVIGATION ==================== */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.95) 100%);
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.15);
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
    border-bottom: 3px solid transparent;
    background-clip: padding-box;
}

.navigation::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1E3A8A, #60A5FA, #F59E0B);
}

.site-brand {
    display: flex;
    align-items: center;
}

.brand-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #1E3A8A;
    text-decoration: none;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-link:hover {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    -webkit-background-clip: text;
    background-clip: text;
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.nav-link {
    color: #1E3A8A;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 25px;
    background-color: rgba(30, 58, 138, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #1E3A8A;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .navigation {
        padding: 15px 20px;
        justify-content: space-between;
    }
    
    .site-brand {
        width: auto;
        justify-content: flex-start;
        margin-bottom: 0;
    }
    
    .brand-link {
        font-size: 20px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 66px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.95) 100%);
        backdrop-filter: blur(10px);
        padding: 20px;
        gap: 12px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(30, 58, 138, 0.15);
        border-bottom: 3px solid transparent;
        background-clip: padding-box;
    }
    
    .nav-links::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #1E3A8A, #60A5FA, #F59E0B);
    }
    
    .nav-links.active {
        max-height: 500px;
        opacity: 1;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 13px;
    }
}

/* ==================== BACKGROUND SHAPES ==================== */
.bg-shape-1,
.bg-shape-2,
.bg-shape-3 {
    display: none;
}

/* ==================== CONTENT WRAPPER ==================== */
.content-wrapper {
    position: relative;
    z-index: 10;
    flex: 1;
}

/* ==================== TYPOGRAPHY ==================== */
h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2), 0 2px 4px rgba(0,0,0,0.1);
    margin: 0;
    letter-spacing: -0.5px;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #FCD34D;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(252, 211, 77, 0.3);
}

h3 {
    font-family: 'Montserrat', sans-serif;
}

/* ==================== ACCENT ELEMENTS ==================== */
.accent-line {
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #F59E0B 0%, #FCD34D 50%, #60A5FA 100%);
    margin-bottom: 20px;
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.5);
}

.accent-bar {
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #F59E0B 0%, #FCD34D 50%, #60A5FA 100%);
    margin-bottom: 20px;
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.5);
}

/* ==================== FOOTER STRIP ==================== */
.footer-strip {
    width: 100%;
    height: 12px;
    background: linear-gradient(90deg, #1E3A8A, #60A5FA, #F59E0B, #FCD34D, #60A5FA, #1E3A8A);
    background-size: 200% 100%;
    animation: gradientMove 8s ease infinite;
    flex-shrink: 0;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ==================== SECTION DIVIDER ==================== */
.section-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.5), transparent);
}

/* ==================== HOME PAGE STYLES ==================== */
.home .bg-shape-1 {
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background-color: #1E40AF;
    opacity: 0.6;
}

.home .bg-shape-2 {
    bottom: -50px;
    left: -50px;
    width: 500px;
    height: 500px;
    background-color: #F59E0B;
    opacity: 0.15;
}

.home .bg-shape-3 {
    top: 20%;
    left: 30%;
    width: 800px;
    height: 800px;
    background-color: #1E3A8A;
    filter: blur(80px);
    opacity: 0.3;
}

.home .content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 80px;
    margin: 0 auto;
    width: 100%;
}

@media (max-width: 1024px) {
    .home .content-wrapper {
        flex-direction: column;
        padding: 0 40px;
    }
    .home .text-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

.home .text-content {
    flex: 1;
    padding-right: 40px;
}

.home .image-content {
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.home h1 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 24px;
}

@media (min-width: 1200px) {
    .home h1 {
        font-size: 64px;
    }
}

.home h2 {
    font-size: 28px;
    margin-bottom: 32px;
}

.cta-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(15px);
    border-left: 6px solid;
    border-image: linear-gradient(180deg, #F59E0B, #FCD34D, #60A5FA) 1;
    padding: 28px 32px;
    border-radius: 0 16px 16px 0;
    margin-top: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255,255,255,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-box:hover {
    transform: translateX(5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255,255,255,0.15);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.1);
}

.feature-item:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-color: rgba(245, 158, 11, 0.3);
}

.feature-icon {
    font-size: 24px;
    color: #FCD34D;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(252, 211, 77, 0.1) 100%);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 2px solid rgba(252, 211, 77, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: #FCD34D;
    box-shadow: 0 0 20px rgba(252, 211, 77, 0.4);
}

.feature-text {
    color: #D1FAE5;
    font-size: 20px;
    font-weight: 600;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 25px 60px rgba(0,0,0,0.35),
        0 0 0 1px rgba(255,255,255,0.1),
        inset 0 0 60px rgba(0,0,0,0.2);
    border: 6px solid rgba(255,255,255,0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-frame:hover {
    transform: scale(1.02) rotate(1deg);
    box-shadow: 
        0 35px 80px rgba(0,0,0,0.4),
        0 0 0 1px rgba(255,255,255,0.2),
        0 0 40px rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.3);
}

@media (min-width: 1200px) {
    .hero-image-frame {
        height: 580px;
    }
}

.dots {
    position: absolute;
    width: 140px;
    height: 140px;
    background-image: radial-gradient(#FCD34D 3px, transparent 3px);
    background-size: 24px 24px;
    opacity: 0.5;
    z-index: 2;
    animation: dotsPulse 3s ease-in-out infinite;
}

@keyframes dotsPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.dots-top { top: 30px; right: 30px; }
.dots-bottom { bottom: 30px; left: -30px; }

/* ==================== MARKET PAGE STYLES ==================== */
.market .bg-shape-1 {
    top: -150px;
    left: -150px;
    width: 600px;
    height: 600px;
    background-color: #1E40AF;
    opacity: 0.4;
}

.market .bg-shape-2 {
    bottom: -100px;
    right: -100px;
    width: 700px;
    height: 700px;
    background-color: #1E3A8A;
    opacity: 0.2;
}

.market .content-wrapper {
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    width: 100%;
}

@media (max-width: 768px) {
    .market .content-wrapper {
        padding: 0 30px;
    }
}

.market .header {
    margin-bottom: 40px;
}

.market h1 {
    font-size: 48px;
}

.market h2 {
    font-size: 24px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-grid {
    display: flex;
    flex-direction: row;
    gap: 60px;
    flex: 1;
}

@media (max-width: 1024px) {
    .main-grid {
        flex-direction: column;
        gap: 40px;
    }
    .hero-stat-col {
        flex: none !important;
    }
}

.hero-stat-col {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.details-col {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 600px) {
    .details-col {
        grid-template-columns: 1fr;
    }
}

.big-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 100px;
    line-height: 1;
    color: #FCD34D;
    margin-bottom: 16px;
}

.stat-label {
    font-size: 28px;
    color: white;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.stat-desc {
    font-size: 16px;
    color: #D1FAE5;
    line-height: 1.6;
}

.info-card {
    background-color: white;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.info-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1E3A8A;
    margin: 16px 0 8px 0;
}

.info-card p {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.5;
    margin: 0;
}

.icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 8px;
}

.icon-blue { background-color: #EFF6FF; color: #2563EB; }
.icon-green { background-color: #EFF6FF; color: #3B82F6; }
.icon-gold { background-color: #FFFBEB; color: #D97706; }
.icon-purple { background-color: #F5F3FF; color: #7C3AED; }

.growth-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #60A5FA;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.map-decoration {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 180px;
    color: rgba(255,255,255,0.05);
    z-index: 0;
    pointer-events: none;
}

/* ==================== JOURNEY PAGE STYLES ==================== */
.journey .bg-shape-1 {
    top: -200px;
    right: -100px;
    width: 600px;
    height: 600px;
    background-color: #1E40AF;
    opacity: 0.3;
}

.journey .bg-shape-2 {
    bottom: -150px;
    left: -100px;
    width: 700px;
    height: 700px;
    background-color: #1E3A8A;
    opacity: 0.2;
}

.journey .content-wrapper {
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    width: 100%;
}

@media (max-width: 768px) {
    .journey .content-wrapper {
        padding: 0 30px;
    }
}

.journey .header {
    margin-bottom: 50px;
    text-align: center;
}

.journey h1 {
    font-size: 42px;
}

.journey h2 {
    font-size: 22px;
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.timeline-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 20px;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 30px;
}

@media (max-width: 1200px) {
    .timeline-container {
        flex-direction: column;
        align-items: center;
    }
    .timeline-line {
        display: none;
    }
    .timeline-step {
        width: 100%;
        max-width: 400px;
    }
}

.timeline-line {
    position: absolute;
    top: 40px;
    left: 60px;
    right: 60px;
    height: 4px;
    background: linear-gradient(90deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0.1) 100%);
    z-index: 0;
    border-radius: 2px;
}

.timeline-step {
    position: relative;
    z-index: 10;
    width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-icon-wrapper {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: linear-gradient(145deg, #FFFFFF 0%, #F9FAFB 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    border: 4px solid #1E3A8A;
    box-shadow: 
        0 0 0 4px rgba(255,255,255,0.1),
        0 10px 25px rgba(0,0,0,0.2);
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-step:hover .step-icon-wrapper {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 
        0 0 0 6px rgba(255,255,255,0.2),
        0 15px 35px rgba(0,0,0,0.3);
}

.step-1 .step-icon-wrapper { color: #3B82F6; }
.step-2 .step-icon-wrapper { color: #2563EB; }
.step-3 .step-icon-wrapper { 
    background: linear-gradient(145deg, #FCD34D 0%, #F59E0B 100%); 
    color: #1E3A8A; 
    border-color: #FCD34D; 
    transform: scale(1.1); 
    box-shadow: 
        0 0 20px rgba(252, 211, 77, 0.4),
        0 10px 30px rgba(245, 158, 11, 0.3); 
}
.step-4 .step-icon-wrapper { color: #7C3AED; }

.step-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 100%);
    border-radius: 20px;
    padding: 28px 24px;
    width: 100%;
    min-height: 280px;
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.15),
        0 5px 15px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.9);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.8);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.2),
        0 10px 25px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,1);
}

.step-card::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 12px 12px 12px;
    border-style: solid;
    border-color: transparent transparent rgba(255, 255, 255, 0.98) transparent;
    filter: drop-shadow(0 -2px 4px rgba(0,0,0,0.1));
}

.step-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #1F2937;
    margin-bottom: 16px;
    text-align: center;
    padding-bottom: 12px;
    border-bottom: 2px solid #E5E7EB;
}

.step-3 .step-title {
    color: #D97706;
    border-bottom-color: #FCD34D;
}

.step-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-list li {
    font-size: 16px;
    color: #4B5563;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.step-list li i {
    margin-top: 3px;
    margin-right: 10px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.step-1 li i { color: #3B82F6; }
.step-2 li i { color: #2563EB; }
.step-3 li i { color: #D97706; }
.step-4 li i { color: #7C3AED; }

.highlight-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background-color: #D97706;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 20;
}

/* ==================== WHY COURSES PAGE STYLES ==================== */
.why-courses .bg-shape-1 {
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background-color: #1E40AF;
    opacity: 0.5;
}

.why-courses .bg-shape-2 {
    bottom: -50px;
    left: -50px;
    width: 600px;
    height: 600px;
    background-color: #1E3A8A;
    opacity: 0.2;
}

.why-courses .bg-shape-3 {
    top: 40%;
    left: 10%;
    width: 300px;
    height: 300px;
    background-color: #F59E0B;
    opacity: 0.05;
}

.why-courses .content-wrapper {
    display: flex;
    padding: 0;
    flex-wrap: wrap;
    width: 100%;
}

@media (max-width: 1024px) {
    .why-courses .content-wrapper {
        flex-direction: column;
    }
    .left-panel {
        flex: none !important;
        width: 100%;
        padding: 60px 40px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .right-panel {
        padding: 40px;
    }
}

.left-panel {
    flex: 0 0 40%;
    padding: 60px 60px 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border-right: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.1);
}

.why-courses h1 {
    font-size: 56px;
    line-height: 1.1;
    margin: 0 0 24px 0;
}

.why-courses h2 {
    font-size: 24px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.intro-text {
    color: #D1FAE5;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.right-panel {
    flex: 1;
    padding: 60px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px;
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 16px;
    transition: transform 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.icon-box {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background-color: #FFFFFF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-right: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.icon-box.skills { color: #3B82F6; }
.icon-box.career { color: #2563EB; }
.icon-box.safety { color: #D97706; }
.icon-box.visa { color: #7C3AED; }

.text-box {
    flex: 1;
}

.item-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #FFFFFF;
    margin: 0 0 8px 0;
}

.item-desc {
    font-size: 15px;
    color: #D1FAE5;
    margin: 0;
    line-height: 1.5;
}

.bg-icon-large {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 200px;
    color: rgba(255,255,255,0.03);
    transform: rotate(-15deg);
    z-index: 0;
    pointer-events: none;
}

/* ==================== BENEFITS PAGE STYLES ==================== */
.benefits .bg-shape-1 {
    top: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    background-color: #1E40AF;
    opacity: 0.4;
}

.benefits .bg-shape-2 {
    bottom: -150px;
    right: -50px;
    width: 600px;
    height: 600px;
    background-color: #1E3A8A;
    opacity: 0.2;
}

.benefits .bg-shape-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background-color: #F59E0B;
    filter: blur(100px);
    opacity: 0.05;
}

.benefits .content-wrapper {
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    width: 100%;
}

@media (max-width: 768px) {
    .benefits .content-wrapper {
        padding: 0 30px;
    }
}

.benefits .header {
    margin-bottom: 40px;
    text-align: center;
}

.benefits h1 {
    font-size: 42px;
}

.benefits h2 {
    font-size: 20px;
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    flex: 1;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 100%);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.12),
        0 4px 12px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.8);
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(0,0,0,0.18),
        0 8px 20px rgba(0,0,0,0.1);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    border-radius: 20px 20px 0 0;
}

.card-1::after { background: linear-gradient(90deg, #3B82F6, #60A5FA); }
.card-2::after { background: linear-gradient(90deg, #D97706, #F59E0B); }
.card-3::after { background: linear-gradient(90deg, #2563EB, #3B82F6); }
.card-4::after { background: linear-gradient(90deg, #7C3AED, #8B5CF6); }
.card-5::after { background: linear-gradient(90deg, #DC2626, #EF4444); }
.card-6::after { background: linear-gradient(90deg, #0D9488, #14B8A6); }

.card-1 .icon-circle { background: linear-gradient(135deg, #EFF6FF, #D1FAE5); color: #3B82F6; }
.card-2 .icon-circle { background: linear-gradient(135deg, #FFFBEB, #FEF3C7); color: #D97706; }
.card-3 .icon-circle { background: linear-gradient(135deg, #EFF6FF, #DBEAFE); color: #2563EB; }
.card-4 .icon-circle { background: linear-gradient(135deg, #F5F3FF, #EDE9FE); color: #7C3AED; }
.card-5 .icon-circle { background: linear-gradient(135deg, #FEF2F2, #FECACA); color: #DC2626; }
.card-6 .icon-circle { background: linear-gradient(135deg, #F0FDFA, #CCFBF1); color: #0D9488; }

.benefit-card .icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.benefit-card:hover .icon-circle {
    transform: scale(1.1) rotate(5deg);
}

.card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: #1F2937;
    margin: 0 0 12px 0;
}

.card-desc {
    font-size: 15px;
    color: #4B5563;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

/* ==================== COURSES PAGE STYLES ==================== */
.courses .bg-shape-1 {
    top: -200px;
    left: -100px;
    width: 600px;
    height: 600px;
    background-color: #1E40AF;
    opacity: 0.3;
}

.courses .bg-shape-2 {
    bottom: -150px;
    right: -100px;
    width: 700px;
    height: 700px;
    background-color: #1E3A8A;
    opacity: 0.2;
}

.courses .content-wrapper {
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    width: 100%;
}

@media (max-width: 768px) {
    .courses .content-wrapper {
        padding: 0 30px;
    }
}

.courses .header {
    text-align: center;
    margin-bottom: 30px;
}

.courses h1 {
    font-size: 42px;
}

.courses h2 {
    font-size: 20px;
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tiles-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    flex: 1;
    align-content: flex-start;
}

.row-1,
.row-2 {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.row-1 {
    margin-bottom: 0;
}

.category-tile {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 100%);
    border-radius: 20px;
    width: 350px;
    max-width: 100%;
    padding: 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 
        0 12px 30px rgba(0,0,0,0.12),
        0 4px 12px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    min-height: 240px;
    border: 1px solid rgba(255,255,255,0.8);
}

.category-tile:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.18),
        0 10px 25px rgba(0,0,0,0.12);
}

.tile-hospitality { border-top: 6px solid transparent; background-image: linear-gradient(white, white), linear-gradient(90deg, #D97706, #F59E0B); background-origin: padding-box, border-box; background-clip: padding-box, border-box; }
.tile-hospitality .icon-box { background: linear-gradient(135deg, #FFFBEB, #FEF3C7); color: #D97706; }

.tile-trades { border-top: 6px solid transparent; background-image: linear-gradient(white, white), linear-gradient(90deg, #2563EB, #3B82F6); background-origin: padding-box, border-box; background-clip: padding-box, border-box; }
.tile-trades .icon-box { background: linear-gradient(135deg, #EFF6FF, #DBEAFE); color: #2563EB; }

.tile-health { border-top: 6px solid transparent; background-image: linear-gradient(white, white), linear-gradient(90deg, #3B82F6, #60A5FA); background-origin: padding-box, border-box; background-clip: padding-box, border-box; }
.tile-health .icon-box { background: linear-gradient(135deg, #EFF6FF, #D1FAE5); color: #3B82F6; }

.tile-business { border-top: 6px solid transparent; background-image: linear-gradient(white, white), linear-gradient(90deg, #7C3AED, #8B5CF6); background-origin: padding-box, border-box; background-clip: padding-box, border-box; }
.tile-business .icon-box { background: linear-gradient(135deg, #F5F3FF, #EDE9FE); color: #7C3AED; }

.tile-it { border-top: 6px solid transparent; background-image: linear-gradient(white, white), linear-gradient(90deg, #0891B2, #06B6D4); background-origin: padding-box, border-box; background-clip: padding-box, border-box; }
.tile-it .icon-box { background: linear-gradient(135deg, #ECFEFF, #CFFAFE); color: #0891B2; }

.tile-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.tile-header .icon-box {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-right: 16px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.category-tile:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
}

.tile-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: #1F2937;
    margin: 0;
    line-height: 1.2;
}

.course-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-list li {
    font-size: 15px;
    color: #4B5563;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.course-list li:hover {
    transform: translateX(5px);
    color: #1F2937;
}

.course-list li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #D1D5DB;
    margin-right: 10px;
}

.tile-hospitality .course-list li::before { background-color: #FCD34D; }
.tile-trades .course-list li::before { background-color: #93C5FD; }
.tile-health .course-list li::before { background-color: #6EE7B7; }
.tile-business .course-list li::before { background-color: #C4B5FD; }
.tile-it .course-list li::before { background-color: #67E8F9; }

.tile-bg-icon {
    position: absolute;
    bottom: -10px;
    right: -10px;
    font-size: 100px;
    opacity: 0.05;
    pointer-events: none;
    transform: rotate(-15deg);
}

/* New Course Cards Grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0;
}

@media (min-width: 1200px) {
    .courses-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }
}

.course-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 100%);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    box-shadow: 
        0 8px 25px rgba(0,0,0,0.12),
        0 4px 10px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.8);
    position: relative;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #60A5FA, #3B82F6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.course-card:hover::before {
    transform: scaleX(1);
}

.course-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.18),
        0 10px 20px rgba(0,0,0,0.12);
}

.course-card.featured {
    border: 2px solid #F59E0B;
    box-shadow: 
        0 8px 25px rgba(245, 158, 11, 0.2),
        0 4px 10px rgba(0,0,0,0.08);
}

.course-card.featured::before {
    background: linear-gradient(90deg, #F59E0B, #FCD34D);
    transform: scaleX(1);
}

.course-card.employer-card {
    border: 2px solid #2563EB;
}

.course-card.employer-card::before {
    background: linear-gradient(90deg, #2563EB, #3B82F6);
}

.course-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: white;
}

.course-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #1F2937;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.view-courses {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #3B82F6;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    transition: all 0.3s ease;
}

.view-courses i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.course-card:hover .view-courses {
    color: #1E40AF;
}

.course-card:hover .view-courses i {
    transform: translateX(4px);
}

.course-card.featured .view-courses {
    color: #D97706;
}

.course-card.employer-card .view-courses {
    color: #2563EB;
}

/* ==================== PATHWAY PAGE STYLES ==================== */
.pathway .bg-shape-1 {
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background-color: #1E40AF;
    opacity: 0.5;
}

.pathway .bg-shape-2 {
    bottom: -150px;
    right: -50px;
    width: 600px;
    height: 600px;
    background-color: #1E3A8A;
    opacity: 0.2;
}

.pathway .content-wrapper {
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    width: 100%;
}

@media (max-width: 768px) {
    .pathway .content-wrapper {
        padding: 0 30px;
    }
}

.pathway .header {
    text-align: center;
    margin-bottom: 40px;
}

.pathway h1 {
    font-size: 42px;
}

.pathway h2 {
    font-size: 20px;
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.roadmap-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
    margin-top: 20px;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 30px;
}

@media (max-width: 1200px) {
    .roadmap-container {
        flex-direction: column;
        align-items: center;
    }
    .roadmap-line {
        display: none;
    }
    .step-container {
        width: 100%;
        max-width: 300px;
    }
    .arrow-connector {
        display: none;
    }
}

.roadmap-line {
    position: absolute;
    top: 45px;
    left: 60px;
    right: 60px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    z-index: 0;
}

.step-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 180px;
    text-align: center;
    flex: 1;
}

.step-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    border: 4px solid rgba(255,255,255,0.2);
    position: relative;
    background-color: #fff;
    transition: transform 0.3s ease;
}

.step-container:hover .step-circle {
    transform: scale(1.1);
    border-color: #fff;
}

.step-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 22px;
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: #F59E0B;
    color: #000;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    border: 3px solid #fff;
    z-index: 10;
}

.step-icon {
    font-size: 32px;
    color: white;
}

.step-1 .step-circle { background-color: #3B82F6; }
.step-2 .step-circle { background-color: #65A30D; }
.step-3 .step-circle { background-color: #D97706; }
.step-4 .step-circle { background-color: #0284C7; }
.step-5 .step-circle { background-color: #1E3A8A; }

.step-content {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px 16px;
    width: 100%;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    flex: 1;
}

.step-content .step-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #000000;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.step-desc {
    font-size: 15px;
    color: #000000;
    margin: 0;
    line-height: 1.6;
}

.arrow-connector {
    position: absolute;
    top: 35px;
    right: -55px;
    font-size: 20px;
    color: rgba(255,255,255,0.3);
}

.disclaimer-box {
    margin-top: auto;
    background-color: rgba(0,0,0,0.2);
    padding: 12px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.05);
}

.disclaimer-text {
    font-size: 11px;
    color: #9CA3AF;
    text-align: center;
    margin: 0;
    font-style: italic;
}

.disclaimer-icon {
    color: #FCD34D;
    margin-right: 10px;
    font-size: 14px;
}

/* ==================== VALUE PROPS PAGE STYLES ==================== */
.value-props .bg-shape-1 {
    top: -150px;
    right: -150px;
    width: 600px;
    height: 600px;
    background-color: #1E40AF;
    opacity: 0.3;
}

.value-props .bg-shape-2 {
    bottom: -200px;
    left: -100px;
    width: 700px;
    height: 700px;
    background-color: #1E3A8A;
    opacity: 0.2;
}

.value-props .bg-shape-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background-color: #F59E0B;
    opacity: 0.05;
}

.value-props .content-wrapper {
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    width: 100%;
}

@media (max-width: 768px) {
    .value-props .content-wrapper {
        padding: 0 30px;
    }
}

.value-props .header {
    text-align: center;
    margin-bottom: 35px;
}

.value-props h1 {
    font-size: 42px;
}

.value-props h2 {
    font-size: 20px;
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    flex: 1;
    padding-bottom: 10px;
}

@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

.prop-card {
    background-color: white;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
    overflow: hidden;
    border-left: 6px solid transparent;
}

.prop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.card-header .icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 16px;
    flex-shrink: 0;
}

.prop-card .card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #1F2937;
    margin: 0;
    line-height: 1.2;
}

.card-1 { border-left-color: #3B82F6; }
.card-1 .icon-box { background-color: #EFF6FF; color: #3B82F6; }

.card-2 { border-left-color: #D97706; }
.card-2 .icon-box { background-color: #FFFBEB; color: #D97706; }

.card-3 { border-left-color: #2563EB; }
.card-3 .icon-box { background-color: #EFF6FF; color: #2563EB; }

.card-4 { border-left-color: #4F46E5; }
.card-4 .icon-box { background-color: #EEF2FF; color: #4F46E5; }

.card-5 { border-left-color: #0D9488; }
.card-5 .icon-box { background-color: #F0FDFA; color: #0D9488; }

.card-6 { border-left-color: #EA580C; }
.card-6 .icon-box { background-color: #FFF7ED; color: #EA580C; }

.watermark {
    position: absolute;
    bottom: -15px;
    right: -15px;
    font-size: 80px;
    opacity: 0.04;
    transform: rotate(-20deg);
    pointer-events: none;
}

/* ==================== TESTIMONIALS PAGE STYLES ==================== */
.testimonials .bg-shape-1 {
    top: -100px;
    right: 10%;
    width: 400px;
    height: 400px;
    background-color: #1E40AF;
    opacity: 0.5;
}

.testimonials .bg-shape-2 {
    bottom: -50px;
    left: -50px;
    width: 500px;
    height: 500px;
    background-color: #1E3A8A;
    opacity: 0.2;
}

.testimonials .bg-shape-3 {
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background-color: #F59E0B;
    opacity: 0.03;
}

.testimonials .content-wrapper {
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    width: 100%;
}

@media (max-width: 768px) {
    .testimonials .content-wrapper {
        padding: 0 30px;
    }
}

.testimonials .header {
    text-align: center;
    margin-bottom: 35px;
}

.testimonials h1 {
    font-size: 42px;
}

.testimonials h2 {
    font-size: 20px;
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    flex: 1;
    margin-bottom: 10px;
}

@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 100%);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.12),
        0 5px 15px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 380px;
    border: 1px solid rgba(255,255,255,0.8);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(0,0,0,0.18),
        0 10px 25px rgba(0,0,0,0.12);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.card-ana { border-top: 8px solid transparent; background-image: linear-gradient(white, white), linear-gradient(90deg, #F59E0B, #FCD34D); background-origin: padding-box, border-box; background-clip: padding-box, border-box; }
.card-kenji { border-top: 8px solid transparent; background-image: linear-gradient(white, white), linear-gradient(90deg, #2563EB, #3B82F6); background-origin: padding-box, border-box; background-clip: padding-box, border-box; }
.card-lara { border-top: 8px solid transparent; background-image: linear-gradient(white, white), linear-gradient(90deg, #7C3AED, #8B5CF6); background-origin: padding-box, border-box; background-clip: padding-box, border-box; }
.card-mateo { border-top: 8px solid transparent; background-image: linear-gradient(white, white), linear-gradient(90deg, #DC2626, #EF4444); background-origin: padding-box, border-box; background-clip: padding-box, border-box; }

.profile-section {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: white;
    margin-right: 14px;
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.testimonial-card:hover .avatar {
    transform: scale(1.1);
}

.card-ana .avatar { background: linear-gradient(135deg, #F59E0B, #D97706); }
.card-kenji .avatar { background: linear-gradient(135deg, #3B82F6, #2563EB); }
.card-lara .avatar { background: linear-gradient(135deg, #8B5CF6, #7C3AED); }
.card-mateo .avatar { background: linear-gradient(135deg, #EF4444, #DC2626); }

.profile-info {
    display: flex;
    flex-direction: column;
}

.student-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #1F2937;
    margin: 0;
    line-height: 1.2;
}

.student-origin {
    font-size: 13px;
    color: #6B7280;
    margin: 2px 0 0 0;
    display: flex;
    align-items: center;
}

.origin-icon {
    margin-right: 6px;
    font-size: 12px;
}

.course-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    align-self: flex-start;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.card-ana .course-tag { background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%); color: #D97706; border: 1px solid rgba(217,119,6,0.2); }
.card-kenji .course-tag { background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%); color: #1D4ED8; border: 1px solid rgba(29,78,216,0.2); }
.card-lara .course-tag { background: linear-gradient(135deg, #F5F3FF 0%, #EDE9FE 100%); color: #6D28D9; border: 1px solid rgba(109,40,217,0.2); }
.card-mateo .course-tag { background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%); color: #B91C1C; border: 1px solid rgba(185,28,28,0.2); }

.quote-container {
    flex: 1;
    position: relative;
    padding: 15px;
    background: linear-gradient(135deg, rgba(249,250,251,0.5) 0%, transparent 100%);
    border-radius: 12px;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 28px;
    background: linear-gradient(135deg, #60A5FA, #3B82F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.6;
}

.quote-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #374151;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
    position: relative;
    z-index: 10;
}

.bg-quote-mark {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 90px;
    background: linear-gradient(135deg, rgba(0,0,0,0.04), rgba(0,0,0,0.02));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: Georgia, serif;
    line-height: 0;
    pointer-events: none;
}

.disclaimer-container {
    margin-top: auto;
    text-align: center;
    padding-top: 20px;
}

.disclaimer-container .disclaimer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin: 0;
    font-style: italic;
}

/* ==================== CONTACT PAGE STYLES ==================== */
.contact .bg-shape-1 {
    top: -200px;
    right: -100px;
    width: 700px;
    height: 700px;
    background-color: #1E40AF;
    opacity: 0.4;
}

.contact .bg-shape-2 {
    bottom: -150px;
    left: -150px;
    width: 600px;
    height: 600px;
    background-color: #1E3A8A;
    opacity: 0.3;
}

.contact .content-wrapper {
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    width: 100%;
}

@media (max-width: 768px) {
    .contact .content-wrapper {
        padding: 0 30px;
    }
}

.contact .header-section {
    text-align: center;
    margin-bottom: 40px;
}

.contact .header {
    margin-bottom: 50px;
}

.contact .header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #FCD34D;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 0 12px 0;
}

.contact .header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.contact h1 {
    font-size: 36px;
    margin: 0 0 10px 0;
}

@media (min-width: 1024px) {
    .contact h1 {
        font-size: 48px;
    }
}

.subheadline {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: #FCD34D;
    margin: 0;
    font-weight: 600;
}

.main-content {
    display: flex;
    gap: 40px;
    flex: 1;
}

/* New Contact Layout Styles */
.contact-layout {
    align-items: stretch;
}

.contact-info-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
}

.contact-info-card-glassy {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.info-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin: 0 0 12px 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.info-card-desc {
    font-size: 16px;
    color: #D1FAE5;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.contact-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin: 0 0 16px 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.contact-section-desc {
    font-size: 18px;
    color: #D1FAE5;
    line-height: 1.6;
    margin: 0 0 40px 0;
    max-width: 450px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.contact-method-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: white;
    border-radius: 16px;
    padding: 20px 24px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.8);
}

.contact-method-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.method-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-method-card:hover .method-icon {
    transform: scale(1.1);
}

.method-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #1F2937;
    margin: 0 0 4px 0;
}

.method-content p {
    font-size: 14px;
    color: #3B82F6;
    margin: 0;
    font-weight: 600;
}

.method-arrow {
    color: #D1D5DB;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-method-card:hover .method-arrow {
    color: #3B82F6;
    transform: translateX(5px);
}

.contact-method-card:hover .method-icon {
    transform: scale(1.1);
}

.website-icon {
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.4);
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.email-icon {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.method-content {
    flex: 1;
}

.response-promise {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    max-width: fit-content;
}

.response-promise i {
    color: #D1FAE5;
    font-size: 20px;
}

.response-promise span {
    font-size: 15px;
    font-weight: 600;
    color: white;
}

@media (max-width: 1024px) {
    .main-content {
        flex-direction: column;
    }
    
    .contact-info-section {
        padding: 0 0 30px 0;
    }
    
    .contact .header h1 {
        font-size: 34px;
    }
    
    .contact-section-title {
        font-size: 28px;
    }
    
    .contact-section-desc {
        font-size: 16px;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .contact-method-card {
        padding: 18px 20px;
    }
    
    .method-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .method-content h4 {
        font-size: 16px;
    }
    
    .method-content p {
        font-size: 14px;
    }
}

.steps-column {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.column-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: white;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    padding-bottom: 15px;
}

.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #F59E0B;
    color: #1E3A8A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.step-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: white;
    margin: 0 0 4px 0;
}

.step-text p {
    font-size: 14px;
    color: #D1FAE5;
    margin: 0;
}

.contact-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.offer-card {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    border-radius: 20px;
    padding: 25px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    flex: 0 0 auto;
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    color: rgba(255,255,255,0.2);
}

.offer-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 22px;
    margin: 0 0 8px 0;
    text-transform: uppercase;
}

.offer-desc {
    font-size: 16px;
    margin: 0;
    font-weight: 600;
}

.contact-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.92) 100%);
    border-radius: 24px;
    padding: 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 
        0 15px 40px rgba(0,0,0,0.15),
        0 5px 15px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.9);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.8);
    transition: transform 0.4s ease;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #60A5FA, #F59E0B, #60A5FA);
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 16px;
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
    border-radius: 14px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item:hover {
    transform: translateX(8px);
    background: linear-gradient(135deg, #EFF6FF 0%, #D1FAE5 100%);
    box-shadow: 0 4px 12px rgba(16,185,129,0.15);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1E3A8A 0%, #1E40AF 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 18px;
    box-shadow: 0 4px 10px rgba(6,78,59,0.3);
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #374151;
    margin: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info p {
    font-size: 17px;
    color: #3B82F6;
    font-weight: 600;
    margin: 0;
}

.next-step-btn {
    margin-top: 24px;
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 50%, #1E40AF 100%);
    color: white;
    text-align: center;
    padding: 18px 28px;
    border-radius: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    box-shadow: 
        0 8px 20px rgba(96, 165, 250, 0.4),
        0 4px 8px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.next-step-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.next-step-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(96, 165, 250, 0.5),
        0 8px 15px rgba(0,0,0,0.15);
}

.next-step-btn:hover::before {
    left: 100%;
}

.next-step-btn i {
    transition: transform 0.3s ease;
}

.next-step-btn:hover i {
    transform: translateX(4px);
}

/* ==================== CONTACT FORM STYLES ==================== */
.contact-form-card {
    padding: 35px !important;
}

.form-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1E3A8A;
    margin: 0 0 25px 0;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #1F2937;
    background: #F9FAFB;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #60A5FA;
    background: white;
    box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9CA3AF;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236B7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    margin-top: 10px;
    border: none;
    cursor: pointer;
    width: 100%;
}

.submit-btn:active {
    transform: translateY(2px);
}

.contact-info-card {
    margin-top: 30px;
}

@media (max-width: 768px) {
    .contact-form-card {
        padding: 25px !important;
    }
    
    .form-title {
        font-size: 20px;
    }
}
/* ==================== COMPREHENSIVE MOBILE RESPONSIVE STYLES ==================== */

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
    .section {
        padding: 60px 0;
    }
    
    .section:first-of-type {
        padding-top: 120px;
    }
    
    h1 {
        font-size: 36px !important;
    }
    
    h2 {
        font-size: 18px !important;
    }
    
    .home h1 {
        font-size: 40px !important;
    }
    
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .feature-text {
        font-size: 16px;
    }
    
    .cta-box {
        padding: 20px 24px;
    }
    
    .cta-box p {
        font-size: 18px !important;
    }
}

/* Mobile Styles (max-width: 768px) */
@media (max-width: 768px) {
    /* Section spacing */
    .section {
        padding: 50px 0;
    }
    
    .section:first-of-type {
        padding-top: 100px;
    }
    
    /* Typography */
    h1 {
        font-size: 28px !important;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 16px !important;
    }
    
    .home h1 {
        font-size: 32px !important;
        margin-bottom: 16px;
    }
    
    .home h2 {
        font-size: 18px !important;
        margin-bottom: 20px;
    }
    
    /* Navigation adjustments already handled in main mobile menu styles */
    
    /* Home section */
    .home .content-wrapper {
        padding: 0 20px;
    }
    
    .cta-box {
        padding: 16px 20px;
        margin-top: 24px;
    }
    
    .cta-box p {
        font-size: 16px !important;
        line-height: 1.5;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 32px;
    }
    
    .feature-item {
        flex-direction: row;
        align-items: center;
        padding: 16px;
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 0;
        margin-right: 16px;
    }
    
    .feature-icon i {
        font-size: 24px !important;
    }
    
    .feature-text {
        font-size: 18px !important;
    }
    
    .hero-image-frame {
        max-width: 100%;
        height: 280px;
    }
    
    /* Market section */
    .big-number {
        font-size: 60px;
    }
    
    .stat-label {
        font-size: 20px;
    }
    
    .hero-stat-col {
        padding: 24px;
    }
    
    /* Journey section */
    .journey h1 {
        font-size: 28px !important;
    }
    
    .timeline-step {
        width: 100%;
        max-width: 100%;
    }
    
    .step-icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .step-card {
        min-height: auto;
        padding: 20px;
    }
    
    .step-title {
        font-size: 16px;
    }
    
    .step-list li {
        font-size: 14px;
    }
    
    /* Why Courses section */
    .left-panel {
        padding: 40px 20px;
    }
    
    .right-panel {
        padding: 30px 20px;
    }
    
    .why-courses h1 {
        font-size: 32px !important;
    }
    
    .intro-text {
        font-size: 15px;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .benefit-item .icon-box {
        margin-right: 0;
        margin-bottom: 16px;
    }
    
    .item-title {
        font-size: 18px;
    }
    
    .item-desc {
        font-size: 14px;
    }
    
    /* Benefits section */
    .benefit-card {
        padding: 20px;
    }
    
    .card-title {
        font-size: 17px;
    }
    
    .card-desc {
        font-size: 14px;
    }
    
    /* Courses section */
    .course-image {
        height: 140px;
    }
    
    .course-info {
        padding: 16px;
    }
    
    .course-info h3 {
        font-size: 14px;
    }
    
    /* Pathway section */
    .pathway h1 {
        font-size: 28px !important;
    }
    
    .step-circle {
        width: 70px;
        height: 70px;
    }
    
    .step-icon {
        font-size: 26px;
    }
    
    .step-number {
        width: 36px;
        height: 36px;
        font-size: 18px;
        top: -12px;
        right: -12px;
    }
    
    .step-content {
        padding: 16px 12px;
    }
    
    .step-content .step-title {
        font-size: 16px;
    }
    
    .step-desc {
        font-size: 14px;
    }
    
    /* Value Props (Why Us) section */
    .prop-card {
        padding: 20px;
    }
    
    .prop-card .card-title {
        font-size: 16px;
    }
    
    .card-desc {
        font-size: 14px;
    }
    
    /* Testimonials section */
    .testimonial-card {
        padding: 20px;
        min-height: auto;
    }
    
    .avatar {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .student-name {
        font-size: 16px;
    }
    
    .quote-text {
        font-size: 14px;
    }
    
    /* Contact section */
    .steps-column {
        padding: 24px;
    }
    
    .column-title {
        font-size: 20px;
    }
    
    .step-item .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .step-text h3 {
        font-size: 16px;
    }
    
    .step-text p {
        font-size: 13px;
    }
    
    .contact-card {
        padding: 24px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .contact-info p {
        font-size: 15px;
    }
    
    .next-step-btn {
        padding: 14px 20px;
        font-size: 16px;
    }
    
    .offer-card {
        padding: 20px;
    }
    
    .offer-title {
        font-size: 18px;
    }
    
    .offer-desc {
        font-size: 14px;
    }
    
    .subheadline {
        font-size: 18px;
    }
}

/* Small Mobile Styles (max-width: 480px) */
@media (max-width: 480px) {
    .section {
        padding: 40px 0;
    }
    
    .section:first-of-type {
        padding-top: 90px;
    }
    
    h1 {
        font-size: 24px !important;
    }
    
    h2 {
        font-size: 14px !important;
    }
    
    .home h1 {
        font-size: 26px !important;
    }
    
    /* Navigation adjustments */
    .brand-link {
        font-size: 16px;
    }
    
    .mobile-menu-toggle {
        width: 36px;
        height: 36px;
    }
    
    .hamburger-line {
        height: 2px;
    }
    
    .nav-links {
        top: 60px;
    }
    
    /* Home */
    .home .content-wrapper {
        padding: 0 16px;
    }
    
    .cta-box {
        padding: 14px 16px;
    }
    
    .cta-box p {
        font-size: 14px !important;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon i {
        font-size: 20px !important;
    }
    
    .feature-text {
        font-size: 16px !important;
    }
    
    .hero-image-frame {
        height: 220px;
    }
    
    /* Market */
    .big-number {
        font-size: 48px;
    }
    
    .stat-label {
        font-size: 18px;
    }
    
    .stat-desc {
        font-size: 14px;
    }
    
    .info-card {
        padding: 16px;
    }
    
    .info-card h3 {
        font-size: 16px;
    }
    
    .info-card p {
        font-size: 13px;
    }
    
    /* Journey */
    .step-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .step-card {
        padding: 16px;
    }
    
    /* Benefits */
    .benefit-card {
        padding: 16px;
    }
    
    .benefit-card .icon-circle {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    /* Pathway */
    .step-circle {
        width: 60px;
        height: 60px;
    }
    
    .step-icon {
        font-size: 22px;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    /* Contact */
    .contact-form {
        gap: 16px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .contact-item {
        padding: 12px;
    }
    
    .contact-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
        margin-right: 12px;
    }
    
    .contact-info h4 {
        font-size: 12px;
    }
    
    .contact-info p {
        font-size: 14px;
    }
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Fix overflow issues on mobile */
html, body {
    overflow-x: hidden;
}

/* Improve touch targets on mobile */
@media (max-width: 768px) {
    a, button {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-link {
        min-height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
