.elementor-2988 .elementor-element.elementor-element-5919241{--display:flex;}.elementor-2988 .elementor-element.elementor-element-20f3c56{width:100%;max-width:100%;top:0px;}body:not(.rtl) .elementor-2988 .elementor-element.elementor-element-20f3c56{left:0px;}body.rtl .elementor-2988 .elementor-element.elementor-element-20f3c56{right:0px;}/* Start custom CSS for html, class: .elementor-element-20f3c56 *//* ==================== RESET & GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #374151;
    background-color: #FFFFFF;
    line-height: 1.5;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, .logo-text, .nav-links a, .cta-button, .reason-card h3, .course-card h3 {
    font-family: 'Poppins', sans-serif;
}

h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1A3C6E;
    margin-bottom: 2rem;
    text-align: center;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== GOOGLE FONTS IMPORT ==================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,400;14..32,500;14..32,600;14..32,700&family=Poppins:wght@400;500;600;700&display=swap');

/* ==================== RESET AND BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
}

a {
    text-decoration: none;
}

/* ==================== HEADER BASE ==================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    background: #1A3C6E;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}

/* ==================== HEADER INNER ==================== */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0 48px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* ==================== BRAND IDENTITY ==================== */
.brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    text-decoration: none;
}

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 21px;
    color: #FFFFFF;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.brand-tagline {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.3px;
    line-height: 1;
}

/* ==================== HAMBURGER BUTTON ==================== */
.menu-toggle-input {
    display: none;
}

.hamburger-label {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 8px;
    z-index: 10001;
}

.hamburger-label span {
    display: block;
    width: 25px;
    height: 2.5px;
    background: #FFFFFF;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger animation when menu is open */
input#main-menu-toggle:checked ~ .hamburger-label span:nth-child(1) {
    transform: rotate(45deg) translateY(7.5px);
}

input#main-menu-toggle:checked ~ .hamburger-label span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

input#main-menu-toggle:checked ~ .hamburger-label span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7.5px);
}

/* ==================== MAIN NAV DESKTOP ==================== */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2px;
}

/* Hide all sub-checkboxes on desktop */
input#services-toggle,
input#destinations-toggle,
input#company-toggle {
    display: none;
}

/* Nav Link Base */
.nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14.5px;
    color: #FFFFFF;
    padding: 8px 13px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background 0.2s;
    white-space: nowrap;
    user-select: none;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Active state */
.nav-link.active {
    color: #F97316;
    font-weight: 600;
}

/* Dropdown label specific */
.dropdown-label {
    cursor: pointer;
}

/* Chevron styling */
.chevron {
    display: inline-block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.25s ease;
    margin-left: 2px;
    line-height: 1;
    transform: rotate(90deg);
}

/* ==================== DROPDOWN MENUS DESKTOP ==================== */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
    min-width: 230px;
    padding: 8px 0;
    list-style: none;
    margin: 0;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    pointer-events: auto;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

/* Desktop hover to show dropdown */
.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* Chevron rotation on hover */
.has-dropdown:hover .chevron {
    transform: rotate(-90deg);
}

/* Dropdown section label */
.dropdown-section-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #6B7280;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 10px 20px 4px;
    pointer-events: none;
    display: block;
}

/* Dropdown menu items */
.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #111827;
    font-weight: 500;
    transition: all 0.15s;
    border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
    background: #EEF2FF;
    color: #2563EB;
    border-left-color: #F97316;
    padding-left: 23px;
}

/* ==================== CTA BUTTON ==================== */
.cta-button {
    background: #F97316;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 11px 22px;
    border-radius: 25px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
    transition: all 0.25s;
    display: inline-block;
}

.cta-button:hover {
    background: #ea6c0a;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
}

.nav-cta {
    margin-left: 10px;
}

/* ==================== TABLET AND MOBILE BREAKPOINT (max-width 1023px) ==================== */
@media (max-width: 1023px) {
    .header-inner {
        padding: 0 20px;
        height: 64px;
    }

    .brand-name {
        font-size: 17px;
    }

    .brand-tagline {
        font-size: 9.5px;
    }

    /* Show hamburger on tablet/mobile */
    .hamburger-label {
        display: flex;
    }

    /* Mobile nav panel - hidden by default */
    .main-nav {
        position: absolute;
        top: 64px;
        left: 0;
        width: 100%;
        background: #1A3C6E;
        z-index: 9998;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.4s ease;
    }

    /* Open menu when checkbox is checked */
    input#main-menu-toggle:checked ~ .main-nav {
        max-height: 100vh;
    }

    /* Mobile nav list styles */
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 8px 0 16px 0;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link {
        font-size: 15px;
        padding: 14px 24px;
        width: 100%;
        justify-content: space-between;
        border-radius: 0;
    }

    /* CTA button in mobile menu */
    .nav-cta {
        margin-left: 0;
        padding: 16px 20px;
    }

    .cta-button {
        display: block;
        text-align: center;
        border-radius: 25px;
        padding: 13px 20px;
        font-size: 15px;
    }

    /* ==================== MOBILE DROPDOWN MENUS CRITICAL ==================== */
    /* Reset desktop dropdown positioning for mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: rgba(0, 0, 0, 0.25);
        min-width: unset;
        width: 100%;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }

    /* Override desktop hover behavior for mobile - prevent hover from opening dropdowns */
    .has-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 0;
        transform: none;
    }

    /* Open Services dropdown when its checkbox is checked */
    input#services-toggle:checked ~ .dropdown-menu {
        max-height: 500px;
    }

    /* Open Destinations dropdown when its checkbox is checked */
    input#destinations-toggle:checked ~ .dropdown-menu {
        max-height: 500px;
    }

    /* Open Company dropdown when its checkbox is checked */
    input#company-toggle:checked ~ .dropdown-menu {
        max-height: 500px;
    }

    /* Rotate chevron when sub-dropdown is open */
    input#services-toggle:checked ~ .dropdown-label .chevron,
    input#destinations-toggle:checked ~ .dropdown-label .chevron,
    input#company-toggle:checked ~ .dropdown-label .chevron {
        transform: rotate(-90deg);
    }

    /* Mobile dropdown item styles */
    .dropdown-menu li a {
        padding: 12px 24px 12px 40px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.85);
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        border-left: none;
        display: block;
    }

    .dropdown-menu li a:hover {
        background: rgba(255, 255, 255, 0.08);
        color: #FFFFFF;
        padding-left: 44px;
        border-left: none;
    }

    /* Mobile dropdown section label */
    .dropdown-section-label {
        color: rgba(255, 255, 255, 0.45);
        padding: 10px 24px 4px 40px;
        font-size: 9px;
    }
}

/* ==================== SMALL MOBILE (max-width 480px) ==================== */
@media (max-width: 480px) {
    .brand-name {
        font-size: 15px;
    }

    .brand-tagline {
        display: none;
    }

    .header-inner {
        height: 60px;
    }

    .main-nav {
        top: 60px;
    }
}

/* ==================== ACTIVE STATES ==================== */
.nav-link.active {
    color: #F97316;
    font-weight: 600;
}

/* Accessibility focus styles */
.nav-link:focus-visible,
.cta-button:focus-visible,
.brand:focus-visible,
.hamburger-label:focus-visible {
    outline: 2px solid #F97316;
    outline-offset: 2px;
    border-radius: 4px;
}

/* ==================== SECTION 2: PAGE HERO ==================== */
.korea-hero {
    background: linear-gradient(135deg, #09518F 0%, #0F172A 100%);
    padding: 4rem 0;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.breadcrumb {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.hero-left h1 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-left p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #F97316;
    color: white;
    padding: 0.75rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e05f0a;
    transform: translateY(-2px);
}

.btn-outline-white {
    border: 2px solid white;
    color: white;
    padding: 0.75rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: white;
    color: #1A3C6E;
}

.trust-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
}

.hero-placeholder {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    text-align: center;
}

.flag-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.flag-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

/* ==================== SECTION 3: QUICK STATS BAND ==================== */
.stats-band {
    background-color: #09518F;
    padding: 1.5rem 0;
}

.stats-row {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.stat-col {
    flex: 1;
    border-right: 1px solid rgba(255,255,255,0.3);
    color: white;
}

.stat-col:last-child {
    border-right: none;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* ==================== SECTION 4: WHY STUDY IN SOUTH KOREA ==================== */
.why-korea {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #EEF2FF 100%);
}

.why-korea h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 50px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* Reasons Grid - 4 columns */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Reason Card */
.reason-card {
    background: white;
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #F97316;
}

/* Icon */
.reason-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.reason-icon i {
    font-size: 30px;
    color: white;
}

/* Typography */
.reason-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 10px;
}

.reason-card p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1100px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .why-korea {
        padding: 50px 0;
    }
    
    .why-korea h2 {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 14px;
        padding: 0 15px;
        margin-bottom: 35px;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0 15px;
    }
    
    .reason-card {
        padding: 20px;
    }
    
    .reason-card h3 {
        font-size: 16px;
    }
    
    .reason-icon {
        width: 55px;
        height: 55px;
    }
    
    .reason-icon i {
        font-size: 26px;
    }
}

/* ==================== SECTION 5: TOP UNIVERSITIES TABLE ==================== */
.universities-table-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.universities-table-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 50px;
}

/* Table Wrapper */
.table-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Table Styles */
.universities-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 20px;
    overflow: hidden;
}

.universities-table thead tr {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.universities-table th {
    padding: 18px 20px;
    text-align: left;
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.universities-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: middle;
    color: #4b5563;
    font-size: 14px;
}

.universities-table tbody tr:hover {
    background: #f8f9fa;
    transition: all 0.3s ease;
}

/* Rank Cell */
.rank-cell {
    font-weight: 800;
    color: #F97316;
    font-size: 18px;
}

/* University Name */
.uni-name {
    font-weight: 700;
    color: #1e3c72;
    font-size: 15px;
}

/* QS Rank */
.qs-rank {
    font-weight: 600;
    color: #1e3c72;
    background: #eef2ff;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .universities-table-section {
        padding: 50px 0;
    }
    
    .universities-table-section h2 {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 14px;
        padding: 0 15px;
        margin-bottom: 35px;
    }
    
    .universities-table th,
    .universities-table td {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .rank-cell {
        font-size: 16px;
    }
    
    .uni-name {
        font-size: 14px;
    }
}

/* ==================== SECTION 6: COURSES AND PROGRAMS ==================== */
.courses-section {
    padding: 80px 0;
    background: #F8F9FA;
}

.courses-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 50px;
}

/* Courses Grid - 4 columns */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Course Card */
.course-card {
    background: white;
    border-radius: 20px;
    padding: 25px 20px;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #F97316;
}

/* Icon */
.course-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.course-icon i {
    font-size: 26px;
    color: white;
}

/* Typography */
.course-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 15px;
    line-height: 1.3;
}

.course-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.course-card ul li {
    padding: 6px 0;
    font-size: 13px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px dashed #f0f0f0;
}

.course-card ul li:last-child {
    border-bottom: none;
}

.course-card ul li::before {
    content: "▹";
    color: #F97316;
    font-size: 12px;
}

/* View Programs Link */
.view-programs {
    display: inline-block;
    color: #F97316;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-programs:hover {
    color: #1e3c72;
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1100px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .courses-section {
        padding: 50px 0;
    }
    
    .courses-section h2 {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 14px;
        margin-bottom: 35px;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0 15px;
    }
    
    .course-card {
        padding: 20px;
    }
    
    .course-card h3 {
        font-size: 16px;
    }
}

/* ==================== SECTION 7: INTAKES AND DEADLINES ==================== */
.intakes-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #EEF2FF 100%);
}

.intakes-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 50px;
}

/* Intakes Grid */
.intakes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Intake Card */
.intake-card {
    background: white;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.intake-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.12);
}

/* Card Borders */
.spring {
    border-top: 4px solid #10B981;
}

.fall {
    border-top: 4px solid #3B82F6;
}

.scholarship {
    border-top: 4px solid #F97316;
}

/* Badge */
.intake-badge {
    display: inline-block;
    background: #10B981;
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 20px;
}

.scholarship-badge {
    background: #F97316;
}

/* Typography */
.intake-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: #1e3c72;
    margin-bottom: 15px;
}

.intake-month {
    font-size: 32px;
    font-weight: 800;
    color: #1e3c72;
    margin-bottom: 20px;
}

.scholarship .intake-month {
    font-size: 16px;
    font-weight: 600;
    color: #F97316;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.deadline {
    font-size: 14px;
    color: #6b7280;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
}

.deadline-date {
    display: block;
    font-weight: 800;
    color: #1e3c72;
    margin-top: 5px;
    font-size: 16px;
}

/* Spring Specific */
.spring .deadline-date {
    color: #10B981;
}

.fall .deadline-date {
    color: #3B82F6;
}

.scholarship .deadline-date {
    color: #F97316;
}

/* Responsive */
@media (max-width: 900px) {
    .intakes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .intakes-section {
        padding: 50px 0;
    }
    
    .intakes-section h2 {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 14px;
        margin-bottom: 35px;
        padding: 0 15px;
    }
    
    .intakes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .intake-card {
        padding: 25px 20px;
    }
    
    .intake-card h3 {
        font-size: 20px;
    }
    
    .intake-month {
        font-size: 28px;
    }
}


/* ==================== SECTION 8: GKS SCHOLARSHIP SECTION ==================== */
.gks-section {
    background-color: #1A3C6E;
    padding: 5rem 0;
}

.gks-section h2 {
    color: white;
}

.gks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.gks-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.gks-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.12);
}

.gks-icon {
    font-size: 2rem;
    color: #F97316;
    margin-bottom: 1rem;
}

.gks-card h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.gks-card p {
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

.gks-card ul, .gks-card ol {
    color: rgba(255,255,255,0.85);
    padding-left: 1.2rem;
    margin-top: 0.5rem;
}

.gks-card ul li, .gks-card ol li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.gks-button-wrapper {
    text-align: center;
}

.gks-btn {
    display: inline-block;
    background-color: #F97316;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.gks-btn:hover {
    background-color: #e05f0a;
    transform: translateY(-2px);
}

/* ==================== SECTION 9: COST OF STUDY SECTION ==================== */
.cost-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.cost-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 50px;
}

/* Cost Layout */
.cost-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cost Grid */
.cost-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Cost Card - Normal */
.cost-card-light {
    background: #F8F9FA;
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.cost-card-light:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: #F97316;
}

/* GKS Card - Yellow Highlight (Clean & Visible) */
.gks-card {
    background: linear-gradient(135deg, #FEF9C3 0%, #FDE047 100%);
    border: 2px solid #EAB308;
}

.gks-card .cost-label {
    color: #854D0E;
}

.gks-card .cost-value {
    color: #854D0E;
}

.gks-card .cost-note {
    color: #A16207;
}

/* Common Styles */
.cost-label {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cost-value {
    font-size: 22px;
    font-weight: 800;
    color: #1e3c72;
    margin-bottom: 8px;
}

.cost-note {
    font-size: 12px;
    color: #9ca3af;
}

/* Right Side */
.cost-right {
    background: linear-gradient(135deg, #F8F9FA 0%, #EEF2FF 100%);
    border-radius: 24px;
    padding: 35px;
    position: sticky;
    top: 100px;
}

.cost-right h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 15px;
}

.cost-right p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 25px;
}

.loan-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.loan-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: #374151;
}

.loan-benefits li i {
    color: #F97316;
    font-size: 16px;
}

.loan-btn {
    display: inline-block;
    background: #F97316;
    color: white;
    padding: 12px 25px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    text-align: center;
}

.loan-btn:hover {
    background: #e05f0a;
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1024px) {
    .cost-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cost-right {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .cost-section {
        padding: 50px 0;
    }
    
    .cost-section h2 {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 14px;
        margin-bottom: 35px;
    }
    
    .cost-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cost-card-light {
        padding: 20px;
    }
    
    .cost-value {
        font-size: 20px;
    }
    
    .cost-right {
        padding: 25px;
    }
    
    .cost-right h3 {
        font-size: 20px;
    }
}

/* ==================== SECTION 10: VISA GUIDE SECTION ==================== */
.visa-guide {
    background-color: #FFFFFF;
    padding: 5rem 0;
}

.visa-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.step-circle {
    width: 48px;
    height: 48px;
    background: #09518F;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 0.75rem;
}

.step-title {
    font-weight: 600;
    color: #111827;
    font-size: 0.9rem;
}

.step-desc {
    font-size: 0.75rem;
    color: #6B7280;
}

.step-line {
    width: 50px;
    height: 2px;
    background: #E5E7EB;
    border-top: 2px dashed #E5E7EB;
}

.visa-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.info-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 1.5rem;
}

.info-card h4 {
    color: #111827;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.info-card ul {
    list-style: none;
}

.info-card ul li {
    color: #374151;
    font-size: 0.85rem;
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.info-card ul li:before {
    content: "•";
    color: #09518F;
    position: absolute;
    left: 0;
}

.processing-time {
    font-size: 1.2rem;
    font-weight: 700;
    color: #09518F;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: #6B7280;
    font-size: 0.85rem;
}

/* ==================== SECTION 11: STUDENT TESTIMONIALS ==================== */
.testimonials-korea {
    background-color: #EEF2FF;
    padding: 5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.stars {
    color: #EAB308;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.quote {
    font-style: italic;
    color: #374151;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.divider {
    height: 1px;
    background: #E5E7EB;
    margin: 1rem 0;
}

.student-name {
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
}

.university {
    color: #09518F;
    font-size: 0.85rem;
    font-weight: 500;
}

.course {
    color: #6B7280;
    font-size: 0.75rem;
}

/* ==================== SECTION 12: ENQUIRY FORM SECTION ==================== */
.enquiry-section {
    background-color: #F8F9FA;
    padding: 5rem 0;
}

.enquiry-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.enquiry-left h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.enquiry-left p {
    color: #374151;
    margin-bottom: 1.5rem;
}

.enquiry-benefits {
    list-style: none;
}

.enquiry-benefits li {
    color: #374151;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.enquiry-benefits li i {
    color: #16A34A;
}

.form-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.form-card input,
.form-card select {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.form-card input:focus,
.form-card select:focus {
    outline: none;
    border-color: #09518F;
    box-shadow: 0 0 0 2px rgba(9,81,143,0.1);
}

.submit-enquiry {
    width: 100%;
    background-color: #09518F;
    color: white;
    border: none;
    padding: 0.9rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-enquiry:hover {
    background-color: #063a63;
    transform: translateY(-2px);
}

/* ==================== SECTION 13: FOOTER ==================== */
.footer {
    background-color: #0F172A;
    padding: 3rem 2rem 1rem;
    color: #6B7280;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.footer-col h3 {
    color: #F97316;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p, .footer-col a {
    color: #6B7280;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: 0.2s;
}

.footer-col a:hover {
    color: white;
}

.social-icons {
    margin-top: 1rem;
}

.social-icons a {
    display: inline-block;
    background-color: #2563EB;
    color: white;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #F97316;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    font-size: 0.75rem;
}

/* ==================== FLOATING WHATSAPP BUTTON ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #16A34A;
    border-radius: 50px;
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 99;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c3a;
    transform: scale(1.05);
}

.whatsapp-float i {
    font-size: 1.3rem;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1A3C6E;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1.5rem;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .dropdown-content {
        position: static;
        background-color: #1A3C6E;
        box-shadow: none;
        display: none;
    }
    
    .dropdown:hover .dropdown-content {
        display: block;
    }
    
    .dropdown-content a {
        color: #EEF2FF;
    }
    
    .hero-layout, .cost-layout, .enquiry-layout, .visa-info-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-col {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.3);
        padding-bottom: 1rem;
    }
    
    .stat-col:last-child {
        border-bottom: none;
    }
    
    .reasons-grid, .courses-grid, .intakes-grid, .testimonials-grid, .gks-grid {
        grid-template-columns: 1fr;
    }
    
    .visa-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-line {
        width: 2px;
        height: 30px;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero-left h1 {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-outline-white {
        text-align: center;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .whatsapp-float {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}/* End custom CSS */