@import url("common.css");

/* ===================================
   onepage-main
==================================== */
.onepage-main {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.onepage-main .onepage-hero {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.onepage-main .onepage-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 12s ease-out;
}

.onepage-main .onepage-hero:hover .onepage-bg {
    transform: scale(1.02);
}

.onepage-main .onepage-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(15, 23, 42, 0.5) 0%,
            rgba(30, 41, 59, 0.7) 50%,
            rgba(15, 23, 42, 0.8) 100%);
    z-index: 1;
}

.onepage-main .onepage-container {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.onepage-main .onepage-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 5%;
    align-items: center;
}

.onepage-main .onepage-card {
    background: linear-gradient(145deg, var(--color-white) 0%, #fefeff 100%);
    border-radius: 14px;
    padding: 18px 25px 16px;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    box-shadow:
        0 20px 55px rgba(15, 23, 42, 0.11),
        0 8px 24px rgba(15, 23, 42, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    border: 1px solid #cbd5e1;
}

.onepage-main .onepage-card:hover {
    box-shadow:
        0 28px 70px rgba(15, 23, 42, 0.13),
        0 12px 32px rgba(15, 23, 42, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.onepage-main .onepage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
            #0f172a 0%,
            #1e3a5f 20%,
            #334155 40%,
            #475569 60%,
            #64748b 80%,
            #94a3b8 100%);
    border-radius: 16px 16px 0 0;
}

.onepage-main .onepage-title {
    font-family: var(--font-primary);
    font-size: 27px;
    font-weight: 800;
    color: #0f172a;
    text-align: center;
    margin: 0 0 7px 0;
    line-height: 1.3;
    letter-spacing: -0.7px;
}

.onepage-main .onepage-subtitle {
    font-family: var(--font-primary);
    font-size: 10.5px;
    font-weight: 700;
    color: #475569;
    text-align: center;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 2.6px;
}

.onepage-main .onepage-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
    width: 100%;
}

.onepage-main .category-card {
    background: linear-gradient(145deg, var(--color-white) 0%, #f9fafb 100%);
    border: 1px solid #cbd5e1;
    border-radius: 7px;
    padding: 8px;
    text-align: left;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.onepage-main .category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(15, 23, 42, 0.025) 0%,
            rgba(30, 41, 59, 0.035) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.onepage-main .category-card:hover::before {
    opacity: 1;
}

.onepage-main .category-card:hover {
    border-color: #475569;
    box-shadow:
        0 16px 45px rgba(15, 23, 42, 0.12),
        0 6px 20px rgba(15, 23, 42, 0.06);
    transform: translateY(-5px) scale(1.01);
}

.onepage-main .category-icon {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.onepage-main .category-card:hover .category-icon {
    transform: scale(1.08) rotate(2deg);
}

.onepage-main .category-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 6px rgba(15, 23, 42, 0.10));
}

.onepage-main .category-text {
    position: relative;
    z-index: 1;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
    flex: 1;
    transition: color 0.4s ease;
}

.onepage-main .category-card:hover .category-text {
    color: #0f172a;
}

.onepage-main .onepage-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 22px;
    border-top: 1px solid #cbd5e1;
    gap: 16px;
}

.onepage-main .social-icons {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.onepage-main .social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    background: linear-gradient(145deg, var((--color-white)) 0%, #f9fafb 100%);
    color: #475569;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.onepage-main .social-link:hover {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary));
    border-color: var(--font-primary);
    color: var((--color-white));
    transform: translateY(-3px) rotate(3deg);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.22);
}

.onepage-main .language-switcher {
    display: flex;
    align-items: center;
    gap: 12px;
}

.onepage-main .switcher-label {
    font-family: var(--font-primary);
    font-size: 9.5px;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.onepage-main .language-flags {
    display: flex;
    gap: 6px;
    background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 0;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
}

.onepage-main .flag-link {
    min-width: 58px;
    height: 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    border: 1px solid transparent;
    background: var(--color-white);
    border-radius: 8px;
    overflow: visible;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    cursor: pointer;
    padding: 4px 8px;
}

.onepage-main .flag-link.active {
    border-color: var(--color-primary);
    background: linear-gradient(135deg,
            rgba(15, 23, 42, 0.08) 0%,
            rgba(30, 41, 59, 0.05) 100%);
    box-shadow:
        0 5px 14px rgba(15, 23, 42, 0.14),
        inset 0 1px 2px rgba(15, 23, 42, 0.05);
}

.onepage-main .flag-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 2.5px;
    background: linear-gradient(90deg, #0f172a, var(--color-primary));
    border-radius: 3px 3px 0 0;
}

.onepage-main .flag-link:hover:not(.active) {
    border-color: #64748b;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(71, 85, 105, 0.18);
}

.onepage-main .flag-link img {
    width: 22px;
    height: 22px;
    object-fit: cover;
    border-radius: 2px;
    position: relative;
    z-index: 1;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}

.onepage-main .flag-name {
    font-family: var(--font-primary);
    font-size: 8.5px;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    position: relative;
    z-index: 1;
}

.onepage-main .flag-link.active .flag-name {
    color: #0f172a;
}

.onepage-main .onepage-info {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.97) 100%);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(203, 213, 225, 0.6);
    border-radius: 12px;
    padding: 16px 28px;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    box-shadow:
        0 12px 40px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transition: all 0.35s ease;
}

.onepage-main .onepage-info:hover {
    box-shadow:
        0 16px 50px rgba(15, 23, 42, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.onepage-main .info-text {
    font-family: var(--font-primary);
    font-size: 13.5px;
    font-weight: 500;
    color: #334155;
    line-height: 1.65;
    margin: 0;
    text-align: center;
}

/* Large Tablets */
@media (max-width: 1024px) {
    .onepage-main .onepage-container {
        max-width: 850px;
        padding: 0 24px;
    }

    .onepage-main .onepage-card {
        padding: 42px 48px;
    }

    .onepage-main .onepage-title {
        font-size: 32px;
    }
}

/* Tablets */
@media (max-width: 768px) {

    .onepage-main .onepage-main,
    .onepage-main .onepage-hero {
        height: auto;
        min-height: 100vh;
        padding-top: 30px;
    }

    .onepage-main .onepage-container {
        max-width: 100%;
        padding: 24px 20px;
    }

    .onepage-main .onepage-content {
        gap: 20px;
        margin-top: 25%;
    }

    .onepage-main .onepage-card {
        padding: 38px 36px;
        border-radius: 20px;
    }

    .onepage-main .onepage-title {
        font-size: 28px;
    }

    .onepage-main .onepage-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .onepage-main .onepage-categories {
        gap: 14px;
        margin-bottom: 34px;
    }

    .onepage-main .category-card {
        padding: 10;
        gap: 18px;
    }

    .onepage-main .category-icon {
        width: 54px;
        height: 54px;
    }

    .onepage-main .category-text {
        font-size: 15.5px;
    }

    .onepage-main .onepage-card-footer {
        flex-direction: column;
        gap: 22px;
        padding-top: 30px;
    }

    .onepage-main .language-switcher {
        width: 100%;
        justify-content: center;
    }

    .onepage-main .onepage-info {
        padding: 22px 28px;
        border-radius: 16px;
    }

    .onepage-main .info-text {
        font-size: 15px;
    }
}

@media (max-width: 640px) {
    .onepage-main .onepage-container {
        padding: 20px 16px;
    }

    .onepage-main .onepage-content {
        gap: 20px;
        margin-top: 100%;
    }

    .onepage-main .onepage-card {
        padding: 32px 28px;
    }

    .onepage-main .onepage-title {
        font-size: 24px;
        letter-spacing: -0.5px;
    }

    .onepage-main .onepage-subtitle {
        font-size: 10px;
        margin-bottom: 16px;
    }

    .onepage-main .onepage-categories {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 28px;
    }

    .onepage-main .category-card {
        flex-direction: row;
        justify-content: flex-start;
        padding: 10;
        gap: 18px;
        text-align: left;
        border-radius: 14px;
    }

    .onepage-main .category-icon {
        width: 52px;
        height: 52px;
        flex-shrink: 0;
    }

    .onepage-main .category-text {
        font-size: 16px;
        text-align: left;
        line-height: 1.3;
    }

    .onepage-main .onepage-card-footer {
        padding-top: 15px;
    }

    .onepage-main .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .onepage-main .language-switcher {
        flex-direction: column;
        gap: 12px;
    }

    .onepage-main .switcher-label {
        font-size: 12px;
    }

    .onepage-main .flag-link {
        min-width: 68px;
        height: 40px;
    }

    .onepage-main .onepage-info {
        padding: 20px 24px;
    }

    .onepage-main .info-text {
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .onepage-main .onepage-container {
        padding: 16px 12px;
    }

    .onepage-main .onepage-content {
        gap: 20px;
        margin-top: 120%;
    }

    .onepage-main .onepage-card {
        padding: 28px 24px;
    }

    .onepage-main .onepage-title {
        font-size: 22px;
    }

    .onepage-main .category-card {
        padding: 10px;
        gap: 15px;
    }

    .onepage-main .category-icon {
        width: 48px;
        height: 48px;
    }

    .onepage-main .category-text {
        font-size: 14.5px;
    }

    .onepage-main .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .onepage-main .flag-link {
        min-width: 64px;
        height: 38px;
    }

    .onepage-main .flag-link img {
        width: 16px;
        height: 16px;
    }

    .onepage-main .flag-name {
        font-size: 10px;
    }

    .onepage-main .onepage-info {
        padding: 18px 20px;
    }

    .onepage-main .info-text {
        font-size: 13px;
    }
}

/* Very Small Screens */
@media (max-width: 360px) {
    .onepage-main .onepage-card {
        padding: 24px 20px;
    }

    .onepage-main .onepage-content {
        gap: 20px;
        margin-top: 150%;
    }

    .onepage-main .onepage-title {
        font-size: 18px;
    }

    .onepage-main .category-card {
        padding: 10px;
        gap: 14px;
    }

    .onepage-main .category-icon {
        width: 44px;
        height: 44px;
    }

    .onepage-main .category-text {
        font-size: 13.5px;
    }

    .onepage-main .social-link {
        width: 38px;
        height: 38px;
    }
}

/* Landscape Mode - Maintain Elegance */
@media (max-height: 700px) and (orientation: landscape) {
    .onepage-main .onepage-container {
        padding: 16px 24px;
    }

    .onepage-main .onepage-card {
        padding: 28px 36px;
    }

    .onepage-main .onepage-title {
        font-size: 26px;
        margin-bottom: 6px;
    }

    .onepage-main .onepage-subtitle {
        margin-bottom: 15px;
    }

    .onepage-main .onepage-categories {
        gap: 12px;
        margin-bottom: 24px;
    }

    .onepage-main .category-card {
        padding: 10px;
        gap: 13px;
    }

    .onepage-main .onepage-card-footer {
        padding-top: 15px;
    }

    .onepage-main .onepage-info {
        padding: 16px 24px;
    }
}

/* ===================================
   HERO SECTION
==================================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 50vh;
    overflow: hidden;
    background: var(--color-text-primary);
}

.hero-section .hero-slider {
    position: relative;
    width: 100%;
    height: 50vh;
}

.hero-section .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-section .hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-section .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 8s ease-out;
}

.hero-section .hero-slide.active .hero-background {
    transform: scale(1.05);
}

.hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(35, 35, 35, 0.5) 0%,
            rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-section .hero-content {
    position: relative;
    z-index: 2;
    padding-top: 12vh;
    color: var(--color-white);
}

.hero-section .hero-subtitle {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 24px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.hero-section .hero-subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 25, 73, 0.1);
    transition: left 0.5s ease;
}

.hero-section .hero-subtitle:hover::before {
    left: 0;
}

.hero-section .hero-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-section .gradient-text {
    color: var(--color-primary);
    position: relative;
    display: inline-block;
}

.hero-section .hero-description {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 580px;
    margin-bottom: 36px;
    font-weight: 400;
}

/* Hero Controls  */
.hero-section .hero-controls {
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.hero-section .hero-prev,
.hero-section .hero-next {
    position: absolute;
    width: 48px;
    height: 48px;
    background: var(--color-white);
    border: none;
    color: var(--color-text-primary);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.35s ease;
    pointer-events: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-section .hero-prev:hover,
.hero-section .hero-next:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 25, 73, 0.3);
}

.hero-section .hero-prev {
    left: 40px;
}

.hero-section .hero-next {
    right: 40px;
}

/* Hero Indicators  */
.hero-section .hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.hero-section .hero-indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.35s ease;
    padding: 0;
}

.hero-section .hero-indicators .indicator:hover {
    background: rgba(255, 255, 255, 0.7);
}

.hero-section .hero-indicators .indicator.active {
    width: 32px;
    border-radius: 5px;
    background: var(--color-primary);
}

/* ===================================
   FILTER FORM SECTION
=================================== */
.filter-form {
    position: relative;
    padding: 60px 0;
    background: #fafbfc;
}

.filter-form .search-wrapper {
    margin: 0 auto;
    padding: 0 20px;
}

.filter-form .search-card {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.filter-form .search-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--color-bg-lighter);
}

.filter-form .search-tab {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 15px 26px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.35s ease;
    position: relative;
}

.filter-form .search-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.35s ease;
}

.filter-form .search-tab:hover {
    background: var(--color-white);
}

.filter-form .search-tab.active {
    background: var(--color-white);
}

.filter-form .search-tab.active::after {
    width: 100%;
}

.filter-form .tab-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-blue-lighter);
    color: var(--color-dark);
    font-size: 22px;
    transition: all 0.35s ease;
    border: 1px solid var(--color-border-light);
}

.filter-form .search-tab:hover .tab-icon {
    background: var(--color-bg-blue-light);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.filter-form .search-tab.active .tab-icon {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.filter-form .tab-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.filter-form .tab-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.filter-form .tab-subtitle {
    font-size: 13px;
    color: var(--color-text-secondary);
    font-weight: 400;
}

/* Search Forms  */
.filter-form .search-forms {
    position: relative;
    padding: 40px;
    background: var(--color-white);
}

.filter-form .search-form {
    display: none;
}

.filter-form .search-form.active {
    display: block;
}

.filter-form .form-grid-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.filter-form .form-select,
.filter-form .form-input {
    height: 54px;
    padding: 0 18px;
    border: 1px solid var(--color-border-medium);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-primary);
    background: var(--color-white);
    transition: all 0.35s ease;
    font-family: var(--font-primary);
    position: relative;
    z-index: 50;
}

.filter-form .form-select:focus,
.filter-form .form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 25, 73, 0.08);
    z-index: 150;
}

.filter-form .form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23232323' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
}

.filter-form .form-action {
    display: flex;
    align-items: flex-end;
}

.filter-form .advanced-toggle {
    color: var(--color-primary);
}

.filter-form .btn-search {
    width: 100%;
    height: 54px;
    background: var(--color-primary);
    border: none;
    color: var(--color-white);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(255, 25, 73, 0.25);
    letter-spacing: 0.3px;
}

.filter-form .btn-search:hover {
    background: var(--color-text-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.filter-form .btn-search:active {
    transform: translateY(0);
}

.filter-form .select2-container {
    width: 100% !important;
    font-family: var(--font-primary);
}

.filter-form .select2-selection--single {
    height: 54px;
    border: 1px solid var(--color-border-medium);
    background: var(--color-white);
    padding: 0 44px 0 18px;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-primary);
    transition: all 0.35s ease;
}

.filter-form .select2-selection__rendered {
    padding: 0 !important;
    line-height: normal !important;
    color: var(--color-text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px;
    width: 100%;
}

.filter-form .select2-selection__arrow {
    position: absolute !important;
    top: 50% !important;
    right: 18px;
    transform: translateY(-50%) !important;
    height: auto !important;
    pointer-events: none;
}

.filter-form .select2-selection__arrow b {
    border-color: var(--color-text-primary) transparent transparent transparent;
}

.filter-form .select2-container--open .select2-selection--single,
.filter-form .select2-container--focus .select2-selection--single {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 25, 73, 0.08);
}

.filter-form .select2-selection--multiple {
    min-height: 54px;
    height: 54px !important;
    max-height: 54px !important;
    border: 1px solid var(--color-border-medium);
    background: var(--color-white);
    padding: 6px 12px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    transition: all 0.35s ease;
    overflow: hidden;
}

.filter-form .select2-selection--multiple .select2-selection__rendered {
    max-height: 44px;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-right: 6px;
}

.filter-form .select2-selection__rendered::-webkit-scrollbar {
    width: 5px;
}

.filter-form .select2-selection__rendered::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 10px;
}

.filter-form .select2-selection__rendered::-webkit-scrollbar-track {
    background: transparent;
}

.filter-form .select2-container--focus .select2-selection--multiple,
.filter-form .select2-container--open .select2-selection--multiple {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 25, 73, 0.08);
}

.filter-form .select2-selection__choice {
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 4px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.filter-form .select2-selection__choice__remove {
    color: #fff;
    margin-right: 6px;
    font-size: 13px;
    cursor: pointer;
}

.filter-form .select2-search--inline .select2-search__field {
    margin: 0;
    height: 26px;
    line-height: 26px;
    font-size: 13px;
    min-width: 120px;
    font-family: var(--font-primary);
    color: var(--color-text-primary);
}

.filter-form .select2-dropdown {
    border: 1px solid var(--color-border-medium);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    font-family: var(--font-primary);
}

.filter-form .select2-results__option {
    padding: 10px 18px;
    font-size: 14px;
}

.filter-form .select2-results__option--highlighted {
    background: var(--color-primary);
    color: #fff;
}

.filter-form .select2-results__option--selected {
    background: rgba(255, 25, 73, 0.08);
    color: var(--color-text-primary);
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: var(--color-primary);
    color: #fff;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background: var(--color-primary);
    color: #fff;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: var(--color-primary);
    color: #fff;
}

/* ===================================
   RESPONSIVE DESIGN 
=================================== */
@media (max-width: 1280px) {
    .hero-section {
        min-height: 45vh;
    }

    .hero-section .hero-slider {
        height: 45vh;
    }

    .hero-section .hero-content {
        padding-left: 65px;
    }
}

/* Laptop & Tablet Large */
@media (max-width: 1024px) {
    .hero-section {
        min-height: 40vh;
    }

    .hero-section .hero-slider {
        height: 40vh;
    }

    .hero-section .hero-content {
        padding-left: 50px;
    }

    .hero-section .hero-title {
        font-size: 36px;
    }

    .filter-form .form-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }

    .filter-form .search-forms {
        padding: 38px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .hero-section {
        min-height: 25vh;
    }

    .hero-section .hero-slider {
        height: 25vh;
    }

    .hero-section .hero-content {
        padding-top: 5vh;
        padding-left: 20px;
    }

    .hero-section .hero-subtitle {
        font-size: 9px;
        letter-spacing: 2px;
        padding: 8px 12px;
        margin-bottom: 10px;
    }

    .hero-section .hero-title {
        font-size: 27px;
    }

    .hero-section .hero-description {
        font-size: 15px;
        max-width: 500px;
    }

    .hero-section .hero-indicators {
        bottom: 20px;
    }

    .hero-section .hero-prev,
    .hero-section .hero-next {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }

    .hero-section .hero-prev {
        left: 20px;
    }

    .hero-section .hero-next {
        right: 20px;
    }

    .filter-form {
        padding: 20px 0;
    }

    .filter-form .search-tabs {
        grid-template-columns: 1fr;
    }

    .filter-form .search-tab {
        padding: 16px 20px;
    }

    .filter-form .tab-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .filter-form .search-forms {
        padding: 34px 28px;
    }

    .filter-form .form-grid-full {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .hero-section {
        min-height: 22vh;
    }

    .hero-section .hero-slider {
        height: 22vh;
    }

    .hero-section .hero-content {
        padding-top: 3vh;
        text-align: center;
    }

    .hero-section .hero-subtitle {
        font-size: 8px;
        letter-spacing: 2px;
        padding: 6px;
        margin-bottom: 8px;
    }

    .hero-section .hero-title {
        font-size: 22px;
        margin-bottom: 5px;
    }

    .hero-section .hero-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .hero-section .hero-prev,
    .hero-section .hero-next {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .hero-section .hero-prev {
        left: 5px;
    }

    .hero-section .hero-next {
        right: 5px;
    }

    .hero-section .hero-indicators {
        bottom: 15px;
    }

    .hero-section .hero-indicators .indicator {
        width: 8px;
        height: 8px;
    }

    .hero-section .hero-indicators .indicator.active {
        width: 28px;
    }

    .filter-form {
        padding: 20px 0;
    }

    .filter-form .search-wrapper {
        padding: 0 15px;
    }

    .filter-form .search-tab {
        padding: 20px 22px;
        gap: 14px;
    }

    .filter-form .tab-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .filter-form .tab-title {
        font-size: 15px;
    }

    .filter-form .tab-subtitle {
        font-size: 12px;
    }

    .filter-form .search-forms {
        padding: 28px 22px;
    }

    .filter-form .form-select,
    .filter-form .form-input {
        height: 50px;
        font-size: 13px;
        padding: 0 16px;
    }

    .filter-form .form-select {
        background-position: right 16px center;
        padding-right: 40px;
    }

    .filter-form .btn-search {
        height: 50px;
        font-size: 14px;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .hero-section .hero-title {
        font-size: 18px;
    }

    .hero-section .hero-description {
        font-size: 13px;
    }

    .filter-form .search-tab {
        padding: 18px 20px;
        gap: 12px;
    }

    .filter-form .tab-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .filter-form .search-forms {
        padding: 24px 18px;
    }

    .filter-form .form-select,
    .filter-form .form-input {
        height: 48px;
    }

    .filter-form .btn-search {
        height: 48px;
    }
}

/* ============================================================== 
     # Fun Factor
=================================================================== */
.fun-factor-area .fixed-shape {
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 100%;
    width: 100%;
}

.fun-factor-area .fixed-bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0.7;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.fun-factor-area .fixed-shape img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

.fun-factor-area .fun-fact .timer {
    display: inline-block;
    font-size: 48px;
    line-height: 1;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.fun-factor-area .fun-fact .medium {
    display: block;
    margin-top: 15px;
    font-weight: 500;
}

.fun-factor-area .fun-fact .counter {
    position: relative;
}

.fun-factor-area .fun-fact .counter {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.fun-factor-area .fun-fact .counter .operator {
    font-size: 45px;
    margin-left: 2px;
}

@media (max-width: 991px) {
    .fun-factor-area .fun-fact .timer {
        font-size: 42px;
    }

    .fun-factor-area .fun-fact .counter {
        font-size: 42px;
    }

    .fun-factor-area .fun-fact .counter .operator {
        font-size: 38px;
    }

    .fun-factor-area .fun-fact .medium {
        margin-top: 12px;
        font-size: 14px;
    }

    .fun-factor-area .fixed-bg {
        opacity: 0.45;
        background-size: cover;
    }
}

@media (max-width: 767px) {
    .fun-factor-area .fun-fact {
        margin-bottom: 30px;
    }

    .fun-factor-area .fun-fact .timer {
        font-size: 36px;
    }

    .fun-factor-area .fun-fact .counter {
        font-size: 36px;
    }

    .fun-factor-area .fun-fact .counter .operator {
        font-size: 30px;
    }

    .fun-factor-area .fun-fact .medium {
        margin-top: 10px;
        font-size: 13px;
    }

    .fun-factor-area .fixed-bg {
        opacity: 0.3;
        background-size: contain;
    }
}

@media (max-width: 575px) {

    .fun-factor-area .fun-fact .timer {
        font-size: 32px;
    }

    .fun-factor-area .fun-fact .counter {
        font-size: 32px;
    }

    .fun-factor-area .fun-fact .counter .operator {
        font-size: 26px;
        margin-left: 1px;
    }

    .fun-factor-area .fun-fact .medium {
        font-size: 12px;
    }
}

/* ============================================================== 
     # Categories 
=================================================================== */
.categories-area .category-box .single-item {
    margin-bottom: 30px;
}

.categories-area .category-box .item {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 1/1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.categories-area .category-box .row {
    display: flex;
    justify-content: center;
}


.categories-area .category-box .item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.35);
}

.categories-area .category-box .item a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    height: 100%;
    position: relative;
    z-index: 1;
    color: var(--color-white);
    text-decoration: none;
}

.categories-area .category-box .item a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.2) 30%,
            rgba(0, 0, 0, 0.85) 100%);
    z-index: -1;
    transition: opacity 0.6s ease;
    opacity: 0.85;
}

.categories-area .category-box .item:hover a::before {
    opacity: 0.95;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.3) 30%,
            rgba(0, 0, 0, 0.95) 100%);
}

.categories-area .category-box .item a span {
    align-self: flex-start;
    margin-bottom: auto;
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--color-white);
    transform: translateY(-20px) scale(0.9);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.categories-area .category-box .item:hover a span {
    transform: translateY(0) scale(1);
    opacity: 1;
    background: gba(var(--color-primary-rgb, 88, 207, 239), 0.25)r;
    border-color: rgba(var(--color-primary-rgb, 88, 207, 239), 0.4);
    box-shadow: 0 8px 25px rgba(var(--color-primary-rgb, 88, 207, 239), 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.categories-area .category-box .item a .title {
    display: block;
    position: relative;
    padding-top: 0;
    transform: translateY(10px);
    opacity: 0.9;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.categories-area .category-box .item a .title h4 {
    margin: 0;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: -0.2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-family: var(--font-primary);
    color: var(--color-white);
}

.categories-area .category-box .item a .title h4::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), rgba(var(--color-primary-rgb, 88, 207, 239), 0.5));
    margin-top: 16px;
    border-radius: 2px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left center;
}

.categories-area .category-box .item:hover a .title h4::after {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.categories-area .category-box .item:hover a .title {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 991px) {
    .categories-area .category-box .item {
        aspect-ratio: 1/1;
        border-radius: 14px;
    }

    .categories-area .category-box .item a {
        padding: 32px 28px;
    }

    .categories-area .category-box .item a .title h4 {
        font-size: 22px;
    }

    .categories-area .category-box .item:hover {
        transform: translateY(-8px) scale(1.01);
    }

    .categories-area .category-box .item a span {
        padding: 8px 20px;
        font-size: 11px;
    }
}

@media (max-width: 767px) {
    .categories-area .category-box .item {
        aspect-ratio: 1/1;
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .categories-area .category-box .single-item {
        padding: 10px;
    }

    .categories-area .category-box .item {
        border-radius: 12px;
        aspect-ratio: 1/1;
    }

    .categories-area .category-box .item a {
        padding: 24px 20px;
    }

    .categories-area .category-box .item a span {
        font-size: 10px;
        padding: 6px 10px;
        margin-bottom: auto;
    }

    .categories-area .category-box .item a .title h4 {
        font-size: 18px;
        line-height: 1.4;
    }

    .categories-area .category-box .item a .title h4::after {
        margin-top: 12px;
        width: 35px;
    }

    .categories-area .category-box .item:hover a .title h4::after {
        width: 50px;
    }

    .categories-area .category-box .item:hover {
        transform: translateY(-6px) scale(1.01);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }
}

@media (max-width: 375px) {
    .categories-area .category-box .item a {
        padding: 15px 10px;
    }

    .categories-area .category-box .item a .title h4 {
        font-size: 14px;
    }

    .categories-area .category-box .item a span {
        padding: 2px 7px;
        font-size: 9px;
    }
}

/* =========================================================
   ARTICLES SECTION
   ========================================================= */
.articles-section {
    position: relative;
    padding: 30px 0;
    background: linear-gradient(180deg,
            rgba(237, 245, 255, 0.3) 0%,
            var(--color-white));
}

.articles-section .articles-card {
    height: 100%;
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    padding: 32px 28px;
    transition: all 0.35s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.articles-section .articles-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
}

.articles-section .articles-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 6px;
}

.articles-section .country-flag-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-lighter);
    border: 1px solid var(--color-border-light);
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 50%;
    transition: all 0.35s ease;
}

.articles-section .articles-card:hover .country-flag-wrapper {
    background: var(--color-bg-blue-lighter);
    border-color: var(--color-primary);
    transform: scale(1.08);
}

.articles-section .country-flag {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.articles-section .articles-card-header h3 {
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0;
    letter-spacing: -0.2px;
    line-height: 1.3;
    transition: color 0.35s ease;
}

.articles-section .articles-card:hover .articles-card-header h3 {
    color: var(--color-primary);
}

.articles-section .articles-card hr {
    margin: 22px 0 26px;
    height: 1px;
    border: none;
    background: var(--color-border-light);
    transition: background 0.35s ease;
}

.articles-section .articles-card:hover hr {
    background: linear-gradient(90deg,
            var(--color-primary) 0%,
            var(--color-border-light) 100%);
}

.articles-section .articles-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.articles-section .articles-list li {
    margin-bottom: 13px;
}

.articles-section .articles-list li:last-child {
    margin-bottom: 0;
}

.articles-section .articles-list a {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-primary);
    text-decoration: none;
    padding-left: 18px;
    position: relative;
    line-height: 1.6;
    transition: all 0.35s ease;
}

.articles-section .articles-list a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background: var(--color-border-medium);
    transition: all 0.35s ease;
}

.articles-section .articles-list a:hover {
    color: var(--color-primary);
    padding-left: 22px;
}

.articles-section .articles-list a:hover::before {
    background: var(--color-primary);
    transform: scale(1.3);
}

.articles-section .articles-footer {
    margin-top: 20px;
    text-align: center;
    position: relative;
}

.articles-section .articles-view-all {
    display: inline-block;
    padding: 14px 40px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-primary);
    text-decoration: none;
    background: var(--color-white);
    border: 1px solid var(--color-border-medium);
    transition: all 0.35s ease;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.articles-section .articles-view-all:hover {
    color: var(--color-white);
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.articles-section .articles-highlight {
    display: none;
}

.articles-section .highlight-box {
    max-width: 540px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 40px;
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.articles-section .highlight-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.articles-section .highlight-box p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 28px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.articles-section .highlight-box .btn {
    padding: 14px 36px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    letter-spacing: 0.3px;
    transition: all 0.35s ease;
}

.articles-section .highlight-box .btn:hover {
    background: var(--color-text-primary);
    border-color: var(--color-text-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991px) {
    .articles-section .articles-grid {
        display: none;
    }

    .articles-section .articles-highlight {
        display: block;
    }

    .articles-section {
        padding: 70px 0;
    }
}

@media (max-width: 767px) {
    .articles-section {
        padding: 60px 0;
    }

    .articles-section .highlight-box {
        padding: 44px 32px;
    }

    .articles-section .highlight-box h3 {
        font-size: 20px;
    }

    .articles-section .highlight-box p {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .articles-section {
        padding: 50px 0;
    }

    .articles-section .highlight-box {
        padding: 38px 26px;
    }

    .articles-section .highlight-box h3 {
        font-size: 18px;
    }
}

/* About Page */
.about-area {
    padding: 50px 0;
    background: var(--color-bg-primary);
}

.about-area .about-items {
    align-items: center;
}

.about-area .about-items .info {
    padding-right: 48px;
    position: relative;
}

.about-area.reverse .about-items .info {
    padding-right: 15px;
    padding-left: 15px;
}

.about-area .about-items .info::after {
    content: "";
    position: absolute;
    left: -60px;
    top: -30px;
    width: 120px;
    height: 120px;
    background: url(/assets/img/dotted-bg.png) no-repeat left top / contain;
    opacity: 0.4;
}

.about-area.reverse .about-items .info::after {
    display: none;
}

.about-area .about-items .info h5 {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #9a9a9a;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 18px;
}

.about-area .about-items .info h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 2px;
    background: var(--color-primary);
}

.about-area .about-items .info h2 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--color-dark);
    margin-bottom: 22px;
}

.about-area .about-items .info p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--color-text-secondary);
    max-width: 520px;
}

.about-area blockquote {
    margin-top: 30px;
    padding-left: 36px;
    font-size: 17px;
    font-weight: 600;
    color: var(--color-text-primary);
    position: relative;
}

.about-area blockquote::after {
    content: "\f124";
    position: absolute;
    left: 0;
    top: 2px;
    font-family: "Flaticon";
    font-size: 26px;
    opacity: 0.6;
}

.about-area ul {
    margin-top: 40px;
}

.about-area ul li {
    display: inline-block;
    margin-right: 56px;
    padding-right: 56px;
    border-right: 1px solid #e5e5e5;
}

.about-area ul li:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.about-area ul li .timer {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.about-area ul li .timer::after {
    content: "K";
    margin-left: 3px;
}

.about-area ul li .medium {
    display: block;
    margin-top: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #3a3a3a;
}

.about-area .about-items .thumb {
    position: relative;
    text-align: center;
}

.about-area .about-items .thumb img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

.about-area .about-items .thumb::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 300px;
    height: 300px;
    background: var(--color-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.9;
    z-index: 1;
}

.about-area .about-items .thumb::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 420px;
    height: 420px;
    background: var(--color-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.06;
    z-index: 0;
}

.about-area a {
    margin-top: 34px;
}

@media (max-width: 991px) {
    .about-area {
        padding: 80px 0;
    }

    .about-area .about-items .info {
        padding-right: 0;
        text-align: center;
    }

    .about-area .about-items .info::after {
        display: none;
    }

    .about-area .about-items .info p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-area .about-items .thumb {
        margin-top: 48px;
    }

    .about-area .about-items .thumb::before,
    .about-area .about-items .thumb::after {
        display: none;
    }

    .about-area blockquote {
        padding-left: 0;
    }

    .about-area blockquote::after {
        display: none;
    }

    .about-area ul li {
        display: block;
        margin: 22px 0;
        padding: 0;
        border: none;
    }
}

@media (max-width: 575px) {
    .about-area .about-items .info h2 {
        font-size: 28px;
    }

    .about-area .about-items .info p {
        font-size: 15px;
    }

    .about-area ul li .timer {
        font-size: 34px;
    }
}

/* ===================================
   CONTACT CARDS SECTION
==================================== */
.contact-cards-section {
    padding: 50px 0;
    background-color: var(--color-bg-blue-light);
    position: relative;
    overflow: hidden;
}

.contact-cards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(var(--color-primary-rgb), 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--color-primary-rgb), 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.4;
}

.contact-cards-section .heading-center {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.contact-cards-section .heading-center h5 {
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.contact-cards-section .heading-center h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.contact-cards-section .heading-center p {
    font-size: 16px;
    color: var(--color-text-primary);
    max-width: 600px;
    margin: 0 auto;
}

.contact-cards-section .contact-office-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 10px 0;
}

.contact-cards-section .contact-office-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(var(--color-primary-rgb), 0.4);
    border-color: var(--color-primary);
}

.contact-cards-section .office-header-image {
    position: relative;
    width: 100%;
    height: 160px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-cards-section .office-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(7, 1, 108, 0.4) 0%,
            rgba(30, 41, 59, 0.5) 50%,
            rgba(7, 1, 108, 0.6) 100%);
    backdrop-filter: blur(2px);
}

.contact-cards-section .office-flag-badge {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(145deg, var(--color-white) 0%, var(--color-bg-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 0 0 4px var(--color-white),
        0 0 0 5px rgba(var(--color-primary-rgb), 0.3);
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-cards-section .contact-office-card:hover .office-flag-badge {
    transform: translateX(-50%) scale(1.1) rotate(5deg);
    box-shadow:
        0 12px 40px rgba(var(--color-primary-rgb), 0.4),
        0 0 0 4px var(--color-white),
        0 0 0 6px var(--color-primary);
}

.contact-cards-section .office-flag-badge img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}

.contact-cards-section .office-content {
    padding: 45px 24px 24px;
    text-align: center;
}

.contact-cards-section .office-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.contact-cards-section .office-address {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
    justify-content: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border-light);
}

.contact-cards-section .office-address i {
    color: var(--color-primary);
    margin-top: 2px;
    flex-shrink: 0;
    font-size: 12px;
}

.contact-cards-section .office-address span {
    flex: 1;
    max-width: 250px;
}

.contact-cards-section .office-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--color-bg-blue-lighter) 0%, var(--color-bg-light) 100%);
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid rgba(var(--color-primary-rgb), 0.15);
}

.contact-cards-section .rating-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-cards-section .rating-score {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-text-primary);
    line-height: 1;
}

.contact-cards-section .rating-stars {
    display: flex;
    gap: 2px;
}

.contact-cards-section .rating-stars i {
    color: #FBBC04;
    font-size: 14px;
}

.contact-cards-section .reviews-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.contact-cards-section .reviews-link:hover {
    color: var(--color-secondary);
    border-bottom-color: var(--color-secondary);
}

.contact-cards-section .office-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-cards-section .contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--color-bg-lighter) 0%, var(--color-bg-lighter) 100%);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid var(--color-border-light);
    position: relative;
    overflow: hidden;
}

.contact-cards-section .contact-link::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;
}

.contact-cards-section .contact-link:hover::before {
    left: 100%;
}

.contact-cards-section .contact-link i {
    font-size: 18px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.contact-cards-section .contact-link span {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-primary);
    transition: all 0.4s ease;
}

.contact-cards-section .contact-link:nth-child(1) i {
    background: linear-gradient(135deg, var(--color-bg-blue-lighter) 0%, #bbdefb 100%);
    color: #1976d2;
}

.contact-cards-section .contact-link:nth-child(1):hover {
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    border-color: #1976d2;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(25, 118, 210, 0.3);
}

.contact-cards-section .contact-link:nth-child(1):hover i {
    background: rgba(255, 255, 255, 0.25);
    color: var(--color-white);
    transform: scale(1.1) rotate(-5deg);
}

.contact-cards-section .contact-link:nth-child(1):hover span {
    color: var(--color-white);
}

.contact-cards-section .contact-link:nth-child(2) i {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #25d366;
}

.contact-cards-section .contact-link:nth-child(2):hover {
    background: linear-gradient(135deg, #25d366 0%, #1ebe57 100%);
    border-color: #25d366;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.contact-cards-section .contact-link:nth-child(2):hover i {
    background: rgba(255, 255, 255, 0.25);
    color: var(--color-white);
    transform: scale(1.1) rotate(-5deg);
}

.contact-cards-section .contact-link:nth-child(2):hover span {
    color: var(--color-white);
}

/* ===================================
   BOOKING PROCESS SECTION - VERTICAL & ELEGANT
==================================== */
.booking-process-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.how-to-book-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(85, 70, 255, 0.035) 0%, transparent 65%);
    border-radius: 50%;
    z-index: 0;
}

.how-to-book-section::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(85, 70, 255, 0.025) 0%, transparent 65%);
    border-radius: 50%;
    z-index: 0;
}

/* Section Header */
.how-to-book-section .section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.how-to-book-section .section-header h5 {
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 14px;
}

.how-to-book-section .section-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 14px;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.how-to-book-section .section-header p {
    font-size: 16px;
    color: var(--color-text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.65;
}

/* Steps Container */
.how-to-book-section .steps-container {
    max-width: 950px;
    margin: 0 auto 75px;
    position: relative;
    padding: 30px 0;
    z-index: 1;
}

/* Step Card */
.how-to-book-section .step-card {
    background: var(--color-white);
    border-radius: 18px;
    padding: 42px 38px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.04);
    margin-bottom: 95px;
    max-width: 500px;
}

/* Alternating Layout */
.how-to-book-section .step-card:nth-child(1) {
    margin-left: 0;
    margin-right: auto;
}

.how-to-book-section .step-card:nth-child(2) {
    margin-left: auto;
    margin-right: 0;
}

.how-to-book-section .step-card:nth-child(3) {
    margin-left: 0;
    margin-right: auto;
    margin-bottom: 0;
}

.how-to-book-section .step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(85, 70, 255, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: rgba(85, 70, 255, 0.15);
}

/* Step Badge */
.how-to-book-section .step-badge {
    position: absolute;
    top: -20px;
    left: 38px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #6b5ce7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(85, 70, 255, 0.28);
    border: 4px solid var(--color-white);
    z-index: 3;
}

.how-to-book-section .step-num {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-white);
}

/* Step Content */
.how-to-book-section .step-content {
    position: relative;
}

.how-to-book-section .step-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.how-to-book-section .step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(85, 70, 255, 0.06) 0%, rgba(85, 70, 255, 0.02) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(85, 70, 255, 0.08);
}

.how-to-book-section .step-card:hover .step-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(85, 70, 255, 0.1) 0%, rgba(85, 70, 255, 0.04) 100%);
}

.how-to-book-section .step-icon i {
    font-size: 30px;
    color: var(--color-primary);
}

.how-to-book-section .step-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0;
    letter-spacing: -0.3px;
}

.how-to-book-section .step-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.how-to-book-section .step-details li {
    font-size: 14.5px;
    color: var(--color-text-secondary);
    line-height: 1.75;
    margin-bottom: 12px;
    padding-left: 26px;
    position: relative;
}

.how-to-book-section .step-details li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--color-primary);
    font-size: 14px;
}

.how-to-book-section .step-details li:last-child {
    margin-bottom: 0;
}

/* Beautiful Curved Arrow Connectors */
.how-to-book-section .step-card::after {
    content: '';
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

/* Arrow from Step 1 to Step 2 */
.how-to-book-section .step-card:nth-child(1)::after {
    bottom: -98px;
    left: 50%;
    width: 420px;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='100' viewBox='0 0 420 100'%3E%3Cdefs%3E%3ClinearGradient id='g1' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%235546FF;stop-opacity:0.7' /%3E%3Cstop offset='100%25' style='stop-color:%2317A2B8;stop-opacity:0.7' /%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M 10 10 Q 210 52, 405 92' stroke='url(%23g1)' stroke-width='3.2' fill='none' stroke-linecap='round'/%3E%3Cpolygon points='405,92 394,88 396,96' fill='%2317A2B8' opacity='0.7'/%3E%3Ccircle cx='10' cy='10' r='6.5' fill='%235546FF' opacity='0.75'/%3E%3Ccircle cx='10' cy='10' r='3' fill='white' opacity='0.6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

/* Arrow from Step 2 to Step 3 */
.how-to-book-section .step-card:nth-child(2)::after {
    bottom: -98px;
    right: 50%;
    width: 420px;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='100' viewBox='0 0 420 100'%3E%3Cdefs%3E%3ClinearGradient id='g2' x1='100%25' y1='0%25' x2='0%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%2317A2B8;stop-opacity:0.7' /%3E%3Cstop offset='100%25' style='stop-color:%23FFC107;stop-opacity:0.7' /%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M 410 10 Q 210 52, 15 92' stroke='url(%23g2)' stroke-width='3.2' fill='none' stroke-linecap='round'/%3E%3Cpolygon points='15,92 26,88 24,96' fill='%23FFC107' opacity='0.7'/%3E%3Ccircle cx='410' cy='10' r='6.5' fill='%2317A2B8' opacity='0.75'/%3E%3Ccircle cx='410' cy='10' r='3' fill='white' opacity='0.6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

/* Call to Action */
.how-to-book-section .booking-cta {
    text-align: center;
    padding: 46px 40px;
    background: var(--color-white);
    border-radius: 18px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.how-to-book-section .cta-message {
    font-size: 19px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 26px;
    line-height: 1.5;
}

.how-to-book-section .btn-start-journey {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 17px 42px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #6b5ce7 100%);
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 22px rgba(85, 70, 255, 0.26);
    letter-spacing: 0.4px;
}

.how-to-book-section .btn-start-journey:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(85, 70, 255, 0.32);
    color: var(--color-white);
}

.how-to-book-section .btn-start-journey i {
    transition: transform 0.3s ease;
    font-size: 13px;
}

.how-to-book-section .btn-start-journey:hover i {
    transform: translateX(4px);
}

.how-to-book-section .step-number {
    position: absolute;
    top: -22px;
    left: 32px;
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #6b5ce7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(85, 70, 255, 0.3);
    border: 4px solid var(--color-white);
    z-index: 3;
}

.how-to-book-section .step-number span {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-white);
}

.how-to-book-section .step-icon {
    width: 75px;
    height: 75px;
    margin: 0 0 22px;
    background: linear-gradient(135deg, rgba(85, 70, 255, 0.06) 0%, rgba(85, 70, 255, 0.03) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    border: 1px solid rgba(85, 70, 255, 0.1);
}

.how-to-book-section .step-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(85, 70, 255, 0.12) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.how-to-book-section .booking-step:hover .step-icon::before {
    opacity: 1;
}

.how-to-book-section .booking-step:hover .step-icon {
    transform: scale(1.05) rotate(-2deg);
}

.how-to-book-section .step-icon i {
    font-size: 34px;
    color: var(--color-primary);
    position: relative;
    z-index: 1;
    transition: all 0.35s ease;
}

.how-to-book-section .booking-step:hover .step-icon i {
    transform: scale(1.08);
}

.how-to-book-section .booking-step h4 {
    font-size: 23px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.how-to-book-section .step-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.how-to-book-section .step-list li {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.75;
    margin-bottom: 13px;
    padding-left: 28px;
    position: relative;
}

.how-to-book-section .step-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--color-primary);
    font-size: 10px;
    width: 18px;
    height: 18px;
    background: rgba(85, 70, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-to-book-section .step-list li:last-child {
    margin-bottom: 0;
}

.how-to-book-section .booking-footer {
    text-align: center;
    padding: 42px 36px;
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.07), 0 1px 6px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(85, 70, 255, 0.08);
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.how-to-book-section .success-message {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 24px;
    line-height: 1.5;
}

.how-to-book-section .booking-footer .btn {
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #6b5ce7 100%);
    border: none;
    color: var(--color-white);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 24px rgba(85, 70, 255, 0.28);
    letter-spacing: 0.3px;
}

.how-to-book-section .booking-footer .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(85, 70, 255, 0.35);
}

.how-to-book-section .booking-footer .btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.how-to-book-section .booking-footer .btn:hover i {
    transform: translateX(5px);
}

/* ===================================
   RESPONSIVE DESIGN - CONTACT & BOOKING
==================================== */
@media (max-width: 991px) {

    /* Hide curved lines on mobile */
    .how-to-book-section .booking-step::after {
        display: none;
    }

    /* Stack cards vertically, center them */
    .how-to-book-section .booking-step {
        max-width: 600px;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-bottom: 60px;
    }

    .how-to-book-section .booking-step:nth-child(3) {
        margin-bottom: 0;
    }

    .how-to-book-section .booking-steps {
        padding: 40px 0;
        margin-bottom: 60px;
    }

    .contact-cards-section .heading-center h2,
    .how-to-book-section .heading-center h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {

    .contact-cards-section,
    .how-to-book-section {
        padding: 70px 0;
    }

    .contact-cards-section .heading-center,
    .how-to-book-section .heading-center {
        margin-bottom: 40px;
    }

    .contact-cards-section .heading-center h2,
    .how-to-book-section .heading-center h2 {
        font-size: 32px;
    }

    .contact-cards-section .heading-center p,
    .how-to-book-section .heading-center p {
        font-size: 15px;
    }

    .contact-cards-section .office-header-image {
        height: 150px;
    }

    .contact-cards-section .office-flag-badge {
        width: 60px;
        height: 60px;
        bottom: -25px;
    }

    .contact-cards-section .office-flag-badge img {
        width: 36px;
        height: 36px;
    }

    .contact-cards-section .office-content {
        padding: 38px 20px 20px;
    }

    .contact-cards-section .office-title {
        font-size: 18px;
    }

    .contact-cards-section .office-rating {
        flex-direction: column;
        gap: 12px;
        padding: 14px 16px;
    }

    .contact-cards-section .rating-badge {
        flex-direction: column;
        gap: 6px;
    }

    .how-to-book-section .booking-step {
        padding: 40px 28px;
    }

    .how-to-book-section .step-number {
        width: 55px;
        height: 55px;
        top: -22px;
        left: 28px;
    }

    .how-to-book-section .step-number span {
        font-size: 22px;
    }

    .how-to-book-section .booking-step h4 {
        font-size: 22px;
    }

    .how-to-book-section .booking-footer {
        padding: 40px 28px;
    }

    .how-to-book-section .success-message {
        font-size: 18px;
    }
}

@media (max-width: 575px) {

    .contact-cards-section .heading-center h2,
    .how-to-book-section .heading-center h2 {
        font-size: 28px;
    }

    .contact-cards-section .office-header-image {
        height: 120px;
    }

    .contact-cards-section .office-flag-badge {
        width: 55px;
        height: 55px;
        bottom: -22px;
    }

    .contact-cards-section .office-flag-badge img {
        width: 32px;
        height: 32px;
    }

    .contact-cards-section .office-content {
        padding: 35px 18px 18px;
    }

    .contact-cards-section .office-title {
        font-size: 17px;
    }

    .contact-cards-section .office-address {
        font-size: 12px;
    }

    .contact-cards-section .rating-score {
        font-size: 22px;
    }

    .contact-cards-section .rating-stars i {
        font-size: 13px;
    }

    .contact-cards-section .contact-link {
        padding: 12px 18px;
    }

    .contact-cards-section .contact-link i {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }

    .contact-cards-section .contact-link span {
        font-size: 13px;
    }

    .how-to-book-section .booking-step {
        padding: 36px 24px;
    }

    .how-to-book-section .step-number {
        width: 50px;
        height: 50px;
        top: -20px;
        left: 24px;
    }

    .how-to-book-section .step-number span {
        font-size: 20px;
    }

    .how-to-book-section .step-icon {
        width: 75px;
        height: 75px;
    }

    .how-to-book-section .step-icon i {
        font-size: 34px;
    }

    .how-to-book-section .booking-step h4 {
        font-size: 20px;
    }

    .how-to-book-section .step-list li {
        font-size: 14px;
    }

    .how-to-book-section .booking-footer {
        padding: 36px 24px;
    }

    .how-to-book-section .booking-footer .btn {
        padding: 16px 35px;
    }
}

/* ===============================
   Blog Area
================================ */
.blog-area.single {
    background: var(--color-bg-primary);
    font-family: var(--font-primary);
}

.blog-area .blog-item-box {
    background: var(--color-bg-primary);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--color-border-light);
    box-shadow: 0 18px 50px rgba(var(--color-primary-rgb), 0.08);
    transition: all 0.35s ease;
}

.blog-area .blog-item-box:hover {
    box-shadow: 0 30px 80px rgba(var(--color-primary-rgb), 0.14);
}

.blog-area .blog-item-box .thumb img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid var(--color-border-light);
}

.blog-area .blog-item-box .content {
    padding: 42px;
}

@media (max-width: 768px) {
    .blog-area .blog-item-box .content {
        padding: 26px;
    }
}

.blog-area .blog-item-box h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 20px;
    line-height: var(--line-height-heading);
}

.blog-area .blog-item-box h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 44px 0 24px;
}

.blog-area .blog-item-box p {
    font-size: var(--font-size-base);
    line-height: 1.9;
    color: var(--color-text-secondary);
    margin-bottom: 18px;
}

.blog-area .blog-item-box blockquote {
    background: linear-gradient(135deg,
            var(--color-bg-blue-lighter),
            var(--color-bg-blue-light));
    border-left: 5px solid var(--color-primary);
    padding: 28px 32px;
    margin: 38px 0;
    border-radius: 14px;
    font-size: 17px;
    font-style: italic;
    color: var(--color-text-light);
}

.blog-area .blog-item-box blockquote cite {
    display: block;
    margin-top: 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
}

.blog-area .blog-item-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-area .blog-item-box ul li {
    background: var(--color-bg-primary);
    border: 1px solid var(--color-border-medium);
    border-radius: 16px;
    padding: 24px 26px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.blog-area .blog-item-box ul li:hover {
    border-color: var(--color-primary);
    background: var(--color-bg-blue-lighter);
    box-shadow: 0 12px 30px rgba(var(--color-primary-rgb), 0.18);
}

.blog-area .blog-item-box ul li strong:first-child {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
    display: block;
    margin-bottom: 6px;
}

.blog-area .blog-item-box ul li strong:nth-of-type(2) {
    font-weight: 600;
    color: var(--color-secondary);
}

@media (max-width: 576px) {
    .blog-area .blog-item-box h3 {
        font-size: 26px;
    }

    .blog-area .blog-item-box h4 {
        font-size: 20px;
    }

    .blog-area .blog-item-box p,
    .blog-area .blog-item-box ul li {
        font-size: 14px;
    }
}

/* ===============================
   Terms & Conditions
================================ */
.terms-page {
    padding: 50px 20px;
}

.terms-page .terms-wrapper {
    max-width: 920px;
    margin: auto;
    background: var(--color-bg-primary);
    border-radius: 20px;
    padding: 60px 65px;
    border: 1px solid var(--color-border-light);
    box-shadow: 0 22px 60px rgba(var(--color-primary-rgb), 0.08);
}

.terms-page .terms-wrapper h1 {
    font-size: 34px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 35px;
    line-height: var(--line-height-heading);
}

.terms-page .terms-wrapper h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-dark);
    margin-top: 45px;
    margin-bottom: 16px;
    padding-left: 16px;
    border-left: 4px solid var(--color-primary);
}

.terms-intro {
    font-size: 16px;
    color: var(--color-text-primary);
    margin-bottom: 20px;
}

.terms-page .terms-wrapper p {
    font-size: var(--font-size-base);
    line-height: 1.9;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

/* Lists */
.terms-page .terms-wrapper ul {
    padding-left: 22px;
    margin-top: 12px;
}

.terms-page .terms-wrapper ul li {
    font-size: var(--font-size-base);
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 10px;
}

/* Highlight Box */
.terms-page .terms-box {
    background: linear-gradient(135deg,
            var(--color-bg-blue-lighter),
            var(--color-bg-blue-light));
    border-left: 4px solid var(--color-primary);
    padding: 24px 28px;
    border-radius: 14px;
    margin: 28px 0;
}

/* Footer */
.terms-page .terms-footer {
    margin-top: 55px;
    padding-top: 25px;
    border-top: 1px solid var(--color-border-medium);
}

.terms-page .terms-footer a {
    font-weight: 600;
    color: var(--color-secondary);
    text-decoration: none;
}

.terms-page .terms-footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-page .terms-wrapper {
        padding: 35px 28px;
    }

    .terms-page .terms-wrapper h1 {
        font-size: 28px;
    }

    .terms-page .terms-wrapper h2 {
        font-size: 20px;
    }
}


/* ============================================================== 
     # Default Features
=================================================================== */
.default-features-area .item-box .single-item {
    margin-bottom: 30px;
}

.default-features-area .item-box .item {
    padding: 65px 30px;
    transition: all 0.35s ease-in-out;
    padding-top: 100px;
}

.default-features-area .item-box .single-item:nth-child(2n) .item,
.default-features-area .item-box .single-item .item:hover {
    box-shadow: 1px 4px 20px -2px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background: var(--color-white);
}

.default-features-area .item-box .single-item:nth-child(2) {
    margin-top: 80px;
}

.default-features-area .item-box .single-item:nth-child(3) {
    margin-top: 160px;
}

.default-features-area.default-design .item-box .single-item:nth-child(2),
.default-features-area.default-design .item-box .single-item:nth-child(3) {
    margin-top: 0;
}

.default-features-area.default-design .item-box .single-item .item {
    padding: 0;
}

.default-features-area.default-design .item-box .single-item .item a {
    display: block;
    background: var(--color-white) !important;
    border-radius: 10px !important;
    padding-top: 75px;
    padding-bottom: 30px;
    box-shadow: 1px 4px 20px -2px rgb(0 0 0 / 10%);
}

.default-features-area.default-design .item-box .single-item:nth-child(2n) .item,
.default-features-area.default-design .item-box .single-item .item:hover {
    box-shadow: inherit;
    border-radius: inherit;
    background: transparent;
}

.default-features-area.default-design .item-box .single-item .default-features-area .item-box .item a i {
    color: var(--color-primary) !important;
}

.default-features-area .item-box .item i {
    display: inline-block;
    font-size: 50px;
    color: var(--color-primaryr);
    position: relative;
    margin-bottom: 25px;
}

.default-features-area.default-design .item-box .item i {
    margin-bottom: 20px;
}

.default-features-area .item-box .item i::after {
    position: absolute;
    left: -25px;
    top: -40px;
    content: "";
    height: 80px;
    width: 80px;
    background: var(--color-primary);
    z-index: -1;
    opacity: 0.07;
    -webkit-clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
    clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
    border-radius: 5px;
    z-index: 1;
}

.default-features-area .item-box .single-item:first-child .item i::after {
    background: var(--color-primary);
}

.default-features-area .item-box .single-item:nth-child(3) .item i::after {
    background: var(--color-primary);
}

.default-features-area .item-box .single-item:nth-child(4) .item i::after {
    background: var(--color-primary);
}

.default-features-area .item-box .item h5 {
    text-transform: capitalize;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
}

.default-features-area .item-box .item h4 {
    text-transform: capitalize;
    font-weight: 700;
}

.default-features-area .item-box .item h5 a {
    font-weight: 800;
}

.default-features-area .item-box .item p {
    margin-bottom: 0;
    margin-top: 15px;
}

.default-features-area .item-box .item>a {
    text-transform: uppercase;
    font-weight: 800;
    display: inline-block;
    font-size: 14px;
    color: #666666;
}

.default-features-area .item-box .single-item:first-child .item i {
    color: var(--color-primary);
}

.default-features-area .item-box .single-item:nth-child(2) .item i {
    color: var(--color-primary);
}

.default-features-area .item-box .single-item:nth-child(3) .item i {
    color: var(--color-primary);
}

.default-features-area .item-box .single-item:nth-child(4) .item i {
    color: var(--color-primary);
}

/* ====================================
   Registration Form Section - Light Formal Classy
   ==================================== */
.registration-form-section {
    padding: 60px 0;
    background: linear-gradient(180deg,
            #fafbfc 0%,
            var(--color-white) 40%,
            #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.registration-form-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle,
            rgba(var(--color-primary-rgb), 0.05) 0%,
            transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.registration-form-section::after {
    content: "";
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle,
            rgba(7, 1, 108, 0.04) 0%,
            transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.registration-form-container {
    max-width: 650px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 45px 40px;
    box-shadow:
        0 8px 35px rgba(0, 0, 0, 0.08),
        0 2px 10px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.registration-form-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-dark) 100%);
    border-radius: 18px 18px 0 0;
}

/* Heading Styles */
.registration-form-section .heading-center {
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

.registration-form-section .heading-center h5 {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.registration-form-section .heading-center h5::before,
.registration-form-section .heading-center h5::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 35px;
    height: 1.5px;
    background: var(--color-primary);
}

.registration-form-section .heading-center h5::before {
    right: calc(100% + 12px);
}

.registration-form-section .heading-center h5::after {
    left: calc(100% + 12px);
}

.registration-form-section .heading-center h2 {
    color: var(--color-text-primary);
    font-weight: 800;
    font-size: 38px;
    margin-bottom: 16px;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.registration-form-section .heading-center p {
    color: var(--color-text-secondary);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.65;
    font-weight: 500;
}

.registration-form-container .reg-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.registration-form-container .reg-form .form-group {
    display: flex;
    flex-direction: column;
}

.registration-form-container .reg-form .form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.registration-form-container .reg-form .required {
    color: #ef4444;
    margin-left: 4px;
    font-size: 16px;
}

.registration-form-container .reg-form .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.registration-form-container .reg-form .input-icon {
    position: absolute;
    left: 16px;
    color: var(--color-primary);
    font-size: 16px;
    pointer-events: none;
    z-index: 2;
}

.registration-form-container .reg-form .form-input {
    width: 100%;
    padding: 14px 16px 14px 46px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    color: var(--color-text-primary);
    background: var(--color-white);
    transition: all 0.3s ease;
    font-family: inherit;
}

.registration-form-container .reg-form .form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(88, 207, 239, 0.1);
    background: #f8feff;
}

.registration-form-container .reg-form .form-input::placeholder {
    color: #9ca3af;
}

.registration-form-container .reg-form select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2358cfef' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 46px;
}

/* Phone Input Special Styling */
.registration-form-container .reg-form .phone-wrapper {
    display: flex;
    gap: 10px;
}

.registration-form-container .reg-form .country-code {
    width: 100px;
    padding: 14px 12px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    color: var(--color-text-primary);
    background: var(--color-white);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='%2358cfef' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    transition: all 0.3s ease;
}

.registration-form-container .reg-form .country-code:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(88, 207, 239, 0.1);
}

.registration-form-container .reg-form .phone-input {
    flex: 1;
    padding-left: 16px;
}

.registration-form-container .reg-form .phone-wrapper .input-icon {
    display: none;
}

/* Submit Button */
.registration-form-container .reg-form .form-submit {
    margin-top: 35px;
    text-align: center;
}

.registration-form-container .reg-form .btn-submit {
    padding: 16px 50px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    color: var(--color-white);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(88, 207, 239, 0.3);
    position: relative;
    overflow: hidden;
}

.registration-form-container .reg-form .btn-submit::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.registration-form-container .reg-form .btn-submit:hover::before {
    left: 100%;
}

.registration-form-container .reg-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(88, 207, 239, 0.4);
}

.registration-form-container .reg-form .btn-submit:active {
    transform: translateY(0);
}

/* ====================================
   Responsive Design
   ==================================== */
@media (max-width: 768px) {
    .registration-form-section {
        padding: 40px 0;
    }

    .registration-form-section .heading-center {
        margin-bottom: 40px;
    }

    .registration-form-section .heading-center h5 {
        font-size: 12px;
        letter-spacing: 2.5px;
    }

    .registration-form-section .heading-center h5::before,
    .registration-form-section .heading-center h5::after {
        width: 28px;
    }

    .registration-form-section .heading-center h2 {
        font-size: 30px;
    }

    .registration-form-section .heading-center p {
        font-size: 15px;
    }

    .registration-form-container {
        padding: 35px 25px;
        border-radius: 16px;
    }

    .registration-form-container .reg-form .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .registration-form-container .reg-form .btn-submit {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
    }
}

@media (max-width: 480px) {
    .registration-form-section {
        padding: 50px 0;
    }

    .registration-form-section .heading-center h2 {
        font-size: 26px;
    }

    .registration-form-section .heading-center p {
        font-size: 14px;
    }

    .registration-form-container {
        padding: 30px 20px;
        border-radius: 14px;
    }

    .registration-form-container .reg-form .form-input {
        padding: 12px 14px 12px 42px;
        font-size: 14px;
    }

    .registration-form-container .reg-form .input-icon {
        left: 14px;
        font-size: 14px;
    }

    .registration-form-container .reg-form select.form-input {
        background-position: right 14px center;
    }

    .registration-form-container .reg-form .phone-wrapper {
        flex-direction: column;
        gap: 12px;
    }

    .registration-form-container .reg-form .country-code {
        width: 100%;
    }
}

.language-courses-section {
    padding: 100px 0;
    background: linear-gradient(135deg,
            var(--color-bg-primary) 0%,
            var(--color-bg-blue-lighter) 50%,
            var(--color-bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative Background Elements */
.language-courses-section::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg,
            rgba(var(--color-primary-rgb), 0.08) 0%,
            transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.language-courses-section::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg,
            rgba(var(--color-primary-rgb), 0.06) 0%,
            transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Heading Styles */
.language-courses-section .heading-center {
    position: relative;
    z-index: 1;
}

.language-courses-section .heading-center h5 {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.language-courses-section .heading-center h5::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--color-primary) 50%,
            transparent 100%);
}

.language-courses-section .heading-center h2 {
    color: var(--color-text-primary);
    font-weight: 800;
    font-size: 38px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.language-courses-section .heading-center p {
    color: var(--color-text-secondary);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Courses Grid */
.language-courses-section .courses-grid {
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

/* Course Card */
.language-courses-section .course-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid var(--color-border-light);
}

.language-courses-section .course-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
            var(--color-primary) 0%,
            var(--color-dark) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.language-courses-section .course-card:hover::before {
    opacity: 1;
}

.language-courses-section .course-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(var(--color-primary-rgb), 0.15);
    border-color: rgba(var(--color-primary-rgb), 0.2);
}

/* Course Image */
.language-courses-section .course-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--color-bg-light);
}

.language-courses-section .course-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.4) 0%,
            transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.language-courses-section .course-card:hover .course-image::after {
    opacity: 1;
}

.language-courses-section .course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.language-courses-section .course-card:hover .course-image img {
    transform: scale(1.1);
}

/* Course Badge (Discount) */
.language-courses-section .course-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg,
            #fbbf24 0%,
            #f59e0b 100%);
    color: var(--color-white);
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
    z-index: 2;
    transition: all 0.3s ease;
}

.language-courses-section .course-card:hover .course-badge {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.5);
}

/* Course Content */
.language-courses-section .course-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Course Price */
.language-courses-section .course-price {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.language-courses-section .price-range {
    font-size: 26px;
    font-weight: 800;
    color: var(--color-text-primary);
    letter-spacing: -0.5px;
    background: linear-gradient(135deg,
            var(--color-primary) 0%,
            var(--color-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.language-courses-section .course-card:hover .price-range {
    letter-spacing: 0px;
}

.language-courses-section .price-label {
    font-size: 13px;
    color: var(--color-text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.language-courses-section .course-flag {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--color-border-light);
    transition: border-color 0.3s ease;
}

.language-courses-section .course-card:hover .course-flag {
    border-bottom-color: rgba(var(--color-primary-rgb), 0.2);
}

.language-courses-section .course-flag img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    border: 2px solid var(--color-white);
    transition: all 0.3s ease;
}

.language-courses-section .course-card:hover .course-flag img {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(var(--color-primary-rgb), 0.3);
    border-color: var(--color-primary);
}

.language-courses-section .course-flag span {
    font-size: 14px;
    color: var(--color-text-secondary);
    font-weight: 600;
    text-transform: capitalize;
}

/* Course Title */
.language-courses-section .course-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.language-courses-section .course-card:hover .course-title {
    color: var(--color-primary);
}

/* Course Location */
.language-courses-section .course-location {
    font-size: 15px;
    color: var(--color-text-secondary);
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.language-courses-section .course-location::before {
    content: "\f3c5";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--color-primary);
    font-size: 14px;
}

/* Courses Footer */
.language-courses-section .courses-footer {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.language-courses-section .btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: linear-gradient(135deg,
            var(--color-primary) 0%,
            var(--color-dark) 100%);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(var(--color-primary-rgb), 0.3);
    position: relative;
    overflow: hidden;
}

.language-courses-section .btn-view-all::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: left 0.6s ease;
}

.language-courses-section .btn-view-all:hover::before {
    left: 100%;
}

.language-courses-section .btn-view-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(var(--color-primary-rgb), 0.4);
    color: var(--color-white);
}

.language-courses-section .btn-view-all:active {
    transform: translateY(-1px);
}

.language-courses-section .btn-view-all i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.language-courses-section .btn-view-all:hover i {
    transform: translateX(6px);
}

/* ====================================
   Responsive Design
   ==================================== */

/* Tablet */
@media (max-width: 991px) {
    .language-courses-section {
        padding: 80px 0;
    }

    .language-courses-section .heading-center h2 {
        font-size: 32px;
    }

    .language-courses-section .courses-grid {
        margin-top: 50px;
    }

    .language-courses-section .course-image {
        height: 200px;
    }

    .language-courses-section .course-content {
        padding: 24px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .language-courses-section {
        padding: 60px 0;
    }

    .language-courses-section::before,
    .language-courses-section::after {
        display: none;
    }

    .language-courses-section .heading-center h5 {
        font-size: 13px;
    }

    .language-courses-section .heading-center h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .language-courses-section .heading-center p {
        font-size: 15px;
    }

    .language-courses-section .courses-grid {
        margin-top: 40px;
    }

    .language-courses-section .course-card {
        border-radius: 16px;
    }

    .language-courses-section .course-image {
        height: 180px;
    }

    .language-courses-section .course-badge {
        top: 16px;
        right: 16px;
        padding: 8px 14px;
        font-size: 16px;
    }

    .language-courses-section .course-content {
        padding: 20px;
    }

    .language-courses-section .price-range {
        font-size: 22px;
    }

    .language-courses-section .course-title {
        font-size: 20px;
    }

    .language-courses-section .course-location {
        font-size: 14px;
    }

    .language-courses-section .courses-footer {
        margin-top: 40px;
    }

    .language-courses-section .btn-view-all {
        width: 100%;
        justify-content: center;
        padding: 16px 35px;
        font-size: 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .language-courses-section {
        padding: 50px 0;
    }

    .language-courses-section .heading-center h2 {
        font-size: 24px;
    }

    .language-courses-section .course-image {
        height: 160px;
    }

    .language-courses-section .course-badge {
        padding: 6px 12px;
        font-size: 14px;
        border-radius: 10px;
    }

    .language-courses-section .price-range {
        font-size: 20px;
    }

    .language-courses-section .course-title {
        font-size: 18px;
    }

    .language-courses-section .course-flag img {
        width: 28px;
        height: 28px;
    }

    .language-courses-section .btn-view-all {
        padding: 14px 28px;
        font-size: 14px;
        letter-spacing: 0.5px;
    }
}

/* ================================================================
   BOOKING SECTION
   ================================================================ */
.booking-section {
    padding: 50px 0;
    background: var(--color-white);
    position: relative;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-white) 100%);
    z-index: 0;
}

.booking-section>.container {
    position: relative;
    z-index: 1;
}

.booking-section .booking-header {
    text-align: center;
    margin-bottom: 70px;
}

.booking-section .section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--color-bg-blue-light);
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    border-radius: 50px;
    margin-bottom: 18px;
    border: 1px solid var(--color-border-light);
}

.booking-section .booking-header h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 16px;
    line-height: var(--line-height-heading);
    letter-spacing: -0.5px;
}

.booking-section .section-subtitle {
    font-size: 17px;
    color: var(--color-text-secondary);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.booking-section .steps-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.booking-section .steps-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 55px;
    width: 2px;
    height: calc(100% - 110px);
    background: linear-gradient(to bottom,
            rgba(88, 207, 239, 0.25) 0%,
            rgba(88, 207, 239, 0.12) 50%,
            rgba(88, 207, 239, 0.06) 100%);
}

.booking-section .timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 55px;
    position: relative;
}

.booking-section .timeline-item:last-child {
    margin-bottom: 0;
}

.booking-section .timeline-marker {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.booking-section .marker-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary) 0%, rgba(88, 207, 239, 0.85) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 800;
    color: var(--color-white);
    box-shadow: 0 8px 28px rgba(88, 207, 239, 0.35);
    border: 5px solid var(--color-white);
    transition: all 0.35s ease;
    position: relative;
}

.booking-section .timeline-item:hover .marker-number {
    transform: scale(1.08);
    box-shadow: 0 12px 38px rgba(88, 207, 239, 0.45);
}

.booking-section .timeline-content {
    flex: 1;
    background: var(--color-white);
    padding: 40px 38px;
    border-radius: 20px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--color-border-light);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.booking-section .timeline-content::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 36px;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 12px solid var(--color-white);
    filter: drop-shadow(-2px 0 3px rgba(0, 0, 0, 0.03));
}

.booking-section .timeline-item:hover .timeline-content {
    transform: translateY(-4px);
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.09);
}

.booking-section .timeline-icon {
    width: 62px;
    height: 62px;
    background: var(--color-bg-blue-lighter);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: all 0.3s ease;
    border: 1px solid var(--color-border-light);
}

.booking-section .timeline-icon i {
    font-size: 26px;
    color: var(--color-primary);
}

.booking-section .timeline-item:hover .timeline-icon {
    background: var(--color-bg-blue-light);
    transform: scale(1.05);
}

.booking-section .timeline-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.booking-section .timeline-content>p {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 18px;
}

.booking-section .timeline-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.booking-section .timeline-list li {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    line-height: 1.75;
    margin-bottom: 13px;
    padding-left: 26px;
    position: relative;
}

.booking-section .timeline-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--color-primary);
    font-size: 12px;
}

.booking-section .timeline-list li:last-child {
    margin-bottom: 0;
}

/* CTA Section */
.booking-section .booking-cta {
    margin-top: 75px;
    padding: 48px 55px;
    background: linear-gradient(135deg, var(--color-primary) 0%, rgba(88, 207, 239, 0.9) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    box-shadow: 0 12px 48px rgba(88, 207, 239, 0.28);
    position: relative;
    overflow: hidden;
}

.booking-section .booking-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.booking-section .cta-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.booking-section .cta-content h3 {
    font-size: 30px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.booking-section .cta-content p {
    font-size: var(--font-size-base);
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
}

.booking-section .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 18px 42px;
    background: var(--color-white);
    color: var(--color-primary);
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.14);
    position: relative;
    z-index: 1;
}

.booking-section .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
    color: var(--color-primary);
}

.booking-section .cta-button i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.booking-section .cta-button:hover i {
    transform: translateX(5px);
}

/* Responsive - Tablets and Medium Devices */
@media (max-width: 991px) {
    .booking-section {
        padding: 30px 0;
    }

    .booking-section .booking-header {
        margin-bottom: 60px;
    }

    .booking-section .booking-header h1 {
        font-size: 36px;
    }

    .booking-section .section-subtitle {
        font-size: 16px;
    }

    .booking-section .steps-timeline::before {
        left: 36px;
    }

    .booking-section .marker-number {
        width: 72px;
        height: 72px;
        font-size: 24px;
        border: 4px solid var(--color-white);
    }

    .booking-section .timeline-content {
        padding: 34px 32px;
    }

    .booking-section .timeline-content h3 {
        font-size: 24px;
    }

    .booking-section .timeline-icon {
        width: 58px;
        height: 58px;
    }

    .booking-section .timeline-icon i {
        font-size: 24px;
    }

    .booking-section .booking-cta {
        padding: 40px 42px;
    }

    .booking-section .cta-content h3 {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .booking-section {
        padding: 35px 0;
    }

    .booking-section .booking-header {
        margin-bottom: 50px;
    }

    .booking-section .booking-header h1 {
        font-size: 32px;
    }

    .booking-section .section-badge {
        font-size: 11px;
        padding: 7px 18px;
        letter-spacing: 1.5px;
    }

    .booking-section .steps-timeline::before {
        left: 30px;
        top: 48px;
    }

    .booking-section .timeline-item {
        gap: 24px;
        margin-bottom: 45px;
    }

    .booking-section .marker-number {
        width: 62px;
        height: 62px;
        font-size: 21px;
    }

    .booking-section .timeline-content {
        padding: 28px 26px;
    }

    .booking-section .timeline-content::before {
        left: -11px;
        border-right-width: 11px;
        border-top-width: 11px;
        border-bottom-width: 11px;
    }

    .booking-section .timeline-content h3 {
        font-size: 21px;
    }

    .booking-section .timeline-content>p {
        font-size: 14px;
    }

    .booking-section .timeline-icon {
        width: 54px;
        height: 54px;
        border-radius: 14px;
        margin-bottom: 20px;
    }

    .booking-section .timeline-icon i {
        font-size: 22px;
    }

    .booking-section .timeline-list li {
        font-size: 14px;
        margin-bottom: 12px;
        padding-left: 24px;
    }

    .booking-section .timeline-list li::before {
        font-size: 11px;
    }

    .booking-section .booking-cta {
        flex-direction: column;
        text-align: center;
        padding: 34px 28px;
        gap: 24px;
        margin-top: 60px;
    }

    .booking-section .cta-content h3 {
        font-size: 24px;
    }

    .booking-section .cta-content p {
        font-size: 14px;
    }

    .booking-section .cta-button {
        width: 100%;
        justify-content: center;
        padding: 16px 38px;
    }
}

@media (max-width: 576px) {
    .booking-section {
        padding: 25px 0;
    }

    .booking-section .booking-header h1 {
        font-size: 28px;
    }

    .booking-section .section-subtitle {
        font-size: 15px;
    }

    .booking-section .steps-timeline::before {
        left: 25px;
    }

    .booking-section .timeline-item {
        gap: 20px;
        margin-bottom: 40px;
    }

    .booking-section .marker-number {
        width: 52px;
        height: 52px;
        font-size: 19px;
        border: 4px solid var(--color-white);
    }

    .booking-section .timeline-content {
        padding: 24px 20px;
    }

    .booking-section .timeline-content::before {
        left: -10px;
        border-right-width: 10px;
        border-top-width: 10px;
        border-bottom-width: 10px;
    }

    .booking-section .timeline-content h3 {
        font-size: 19px;
        margin-bottom: 12px;
    }

    .booking-section .timeline-content>p {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .booking-section .timeline-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        margin-bottom: 18px;
    }

    .booking-section .timeline-icon i {
        font-size: 20px;
    }

    .booking-section .timeline-list li {
        font-size: 13px;
        margin-bottom: 11px;
        padding-left: 22px;
    }

    .booking-section .timeline-list li::before {
        font-size: 10px;
    }

    .booking-section .booking-cta {
        padding: 28px 22px;
        border-radius: 20px;
        margin-top: 50px;
    }

    .booking-section .cta-content h3 {
        font-size: 22px;
    }

    .booking-section .cta-content p {
        font-size: 13px;
    }

    .booking-section .cta-button {
        padding: 16px 32px;
        font-size: 14px;
    }
}

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

    .booking-section .booking-header {
        margin-bottom: 40px;
    }

    .booking-section .booking-header h1 {
        font-size: 26px;
    }

    .booking-section .section-subtitle {
        font-size: 14px;
    }

    .booking-section .marker-number {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .booking-section .timeline-content {
        padding: 22px 18px;
    }

    .booking-section .timeline-content h3 {
        font-size: 18px;
    }

    .booking-section .timeline-icon {
        width: 46px;
        height: 46px;
    }

    .booking-section .timeline-icon i {
        font-size: 18px;
    }

    .booking-section .booking-cta {
        padding: 26px 20px;
    }

    .booking-section .cta-content h3 {
        font-size: 20px;
    }

    .booking-section .cta-button {
        padding: 15px 28px;
        font-size: 13px;
    }
}

/* ===================================
   UNIVERSITY SEARCH SECTION
==================================== */
.university-search-section {
    padding: 40px 0;
    background: #fafbfc;
}

/* Header */
.university-search-section .university-header {
    text-align: center;
    margin-bottom: 20px;
}

.university-search-section .section-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(88, 207, 239, 0.1);
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.university-search-section .university-header h1 {
    font-size: 46px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 18px;
    line-height: 1.2;
}

.university-search-section .section-subtitle {
    font-size: 18px;
    color: #6b7280;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Tabs */
.university-search-section .search-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    background: var(--color-white);
    padding: 6px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.university-search-section .search-tab {
    flex: 1;
    padding: 14px 28px;
    background: transparent;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.university-search-section .search-tab i {
    font-size: 15px;
}

.university-search-section .search-tab.active {
    color: var(--color-white);
    background: var(--color-primary);
    box-shadow: 0 4px 12px rgba(88, 207, 239, 0.3);
    border-color: var(--color-primary);
}

.university-search-section .search-tab.active i {
    color: var(--color-white);
}

.university-search-section .search-tab:hover:not(.active) {
    color: var(--color-primary);
    background: rgba(88, 207, 239, 0.08);
}

/* Search Form */
.university-search-section .search-form-container {
    background: var(--color-white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.university-search-section .search-content {
    display: none;
}

.university-search-section .search-content.active {
    display: block;
}

.university-search-section .form-row-search {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 20px;
    align-items: end;
}

.university-search-section .form-group {
    margin-bottom: 0;
}

.university-search-section .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.university-search-section .form-control,
.university-search-section .select2-container--default .select2-selection--single {
    height: 42px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0 16px;
    font-size: 10px;
    color: var(--color-text-primary);
    transition: all 0.2s ease;
    background: var(--color-white);
}

.university-search-section .form-control:focus,
.university-search-section .select2-container--default.select2-container--focus .select2-selection--single {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(88, 207, 239, 0.1);
    outline: none;
}

.university-search-section .form-control::placeholder {
    color: #9ca3af;
}

.university-search-section .select2-container {
    width: 100% !important;
}

.university-search-section .select2-container--default .select2-selection--single {
    display: flex;
    align-items: center;
}

.university-search-section .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 50px;
    padding-left: 0;
    color: var(--color-text-primary);
}

.university-search-section .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 50px;
    right: 12px;
}

.university-search-section .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999;
}

/* Search Button */
.university-search-section .btn-search {
    height: 52px;
    padding: 0 32px;
    background: var(--color-primary);
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.university-search-section .btn-search:hover {
    background: #3bb9d9;
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(88, 207, 239, 0.25);
}

.university-search-section .btn-search i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.university-search-section .btn-search:hover i {
    transform: translateX(4px);
}

/* Filter Section */
.university-search-section .filter-section {
    background: var(--color-white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
}

.university-search-section .filter-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 24px;
}

.university-search-section .filter-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}

.university-search-section .filter-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid #f3f4f6;
}

.university-search-section .results-count {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.university-search-section .results-count strong {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    margin-left: 10px;
    letter-spacing: -1px;
}

.university-search-section .btn-filter {
    padding: 12px 32px;
    background: var(--color-primary);
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.university-search-section .btn-filter:hover {
    background: #3bb9d9;
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(88, 207, 239, 0.25);
}

/* Programs Table */
.university-search-section .results-programs-table {
    margin-top: 40px;
}

.university-search-section .table-container {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.university-search-section .programs-table {
    width: 100%;
    border-collapse: collapse;
}

.university-search-section .programs-table thead {
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.university-search-section .programs-table thead th {
    padding: 16px 20px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: var(--color-primary);
}

.university-search-section .programs-table tbody tr {
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.2s ease;
    cursor: pointer;
}

.university-search-section .programs-table tbody tr:hover {
    background: #fafbfc;
    border-left: 2px solid var(--color-primary);
}

.university-search-section .programs-table tbody tr:last-child {
    border-bottom: none;
}

.university-search-section .programs-table tbody td {
    padding: 20px;
    vertical-align: middle;
}

.university-search-section .programs-table tbody td:last-child {
    border-right: none;
}

/* Table Cells */
.university-search-section .program-cell {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.university-search-section .program-cell h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.4;
}

.university-search-section .degree-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(88, 207, 239, 0.1);
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
}

.university-search-section .university-cell {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.university-search-section .uni-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
}

.university-search-section .rating-stars {
    display: flex;
    gap: 2px;
}

.university-search-section .rating-stars i {
    color: #fbbf24;
    font-size: 11px;
}

.university-search-section .location-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.university-search-section .location-cell .flag {
    font-size: 20px;
}

.university-search-section .location-cell .flag img {
    max-width: 25px;
}

.university-search-section .location-cell>div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.university-search-section .location-cell .city {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-dark);
}

.university-search-section .location-cell .country {
    font-size: 12px;
    color: #9ca3af;
}

.university-search-section .duration,
.university-search-section .start-date {
    font-size: 14px;
    color: var(--color-dark);
}

.university-search-section .fee {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
}

.university-search-section .btn-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(88, 207, 239, 0.1);
    border-radius: 8px;
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.university-search-section .btn-view:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.university-search-section .btn-view i {
    font-size: 14px;
}

/* University Cards */
.university-search-section .results-universities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.university-search-section .university-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.university-search-section .university-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.university-search-section .university-image {
    position: relative;
    height: 200px;
    width: 100%;
    overflow: hidden;
}

.university-search-section .university-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.university-search-section .university-card:hover .university-image img {
    transform: scale(1.05);
}

.university-search-section .university-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-dark);
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.university-search-section .university-badge i {
    color: #fbbf24;
    margin-right: 4px;
}

.university-search-section .university-content {
    padding: 24px;
}

.university-search-section .university-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 10px;
}

.university-search-section .country-flag {
    font-size: 16px;
}

.university-search-section .country-flag img {
    max-width: 25px;
}

.university-search-section .university-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.university-search-section .university-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 18px;
}

.university-search-section .university-stats {
    display: flex;
    gap: 20px;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
}

.university-search-section .stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--color-dark);
    font-weight: 500;
}

.university-search-section .stat-item i {
    color: var(--color-primary);
    font-size: 14px;
}

.university-search-section .university-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.university-search-section .university-price {
    font-size: 13px;
    color: #9ca3af;
}

.university-search-section .university-price strong {
    display: block;
    font-size: 18px;
    color: var(--color-dark);
    font-weight: 600;
    margin-top: 2px;
}

.university-search-section .btn-explore-uni {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.university-search-section .btn-explore-uni:hover {
    background: #3bb9d9;
    transform: translateY(-1px);
}

.university-search-section .btn-explore-uni i {
    transition: transform 0.3s ease;
}

.university-search-section .btn-explore-uni:hover i {
    transform: translateX(3px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .university-search-section .filter-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .university-search-section {
        padding: 40px 0;
    }

    .university-search-section .university-header h1 {
        font-size: 38px;
    }

    .university-search-section .search-form-container {
        padding: 32px;
    }

    .university-search-section .filter-section {
        padding: 28px;
    }

    .university-search-section .results-universities-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }

    .university-search-section .form-row-search {
        grid-template-columns: 1fr 1fr;
    }

    .university-search-section .form-row-search .btn-search {
        grid-column: 1 / -1;
        width: 100%;
    }

    .university-search-section .filter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .university-search-section .filter-footer {
        flex-direction: column;
        gap: 20px;
    }

    .university-search-section .btn-filter {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .university-search-section {
        padding: 30px 0;
    }

    .university-search-section .university-header h1 {
        font-size: 32px;
    }

    .university-search-section .section-badge {
        font-size: 11px;
        padding: 5px 14px;
    }

    .university-search-section .search-tabs {
        flex-direction: column;
        gap: 10px;
        padding: 8px;
    }

    .university-search-section .search-tab {
        padding: 12px 20px;
    }

    .university-search-section .search-form-container {
        padding: 28px 20px;
        border-radius: 12px;
    }

    .university-search-section .form-row-search {
        grid-template-columns: 1fr;
    }

    .university-search-section .filter-section {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .university-search-section .filter-grid {
        grid-template-columns: 1fr;
    }

    .university-search-section .results-universities-grid {
        grid-template-columns: 1fr;
    }

    .university-search-section .university-stats {
        flex-wrap: wrap;
        gap: 12px;
    }

    /* Table Responsive */
    .university-search-section .programs-table thead {
        display: none;
    }

    .university-search-section .programs-table,
    .university-search-section .programs-table tbody,
    .university-search-section .programs-table tr,
    .university-search-section .programs-table td {
        display: block;
        width: 100%;
    }

    .university-search-section .programs-table tr {
        margin-bottom: 16px;
        border-radius: 12px;
        border: 1px solid #e5e7eb;
        overflow: hidden;
    }

    .university-search-section .programs-table tr:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    }

    .university-search-section .programs-table td {
        padding: 14px 18px;
        text-align: left;
        border-bottom: 1px solid #f3f4f6;
    }

    .university-search-section .programs-table td:last-child {
        border-bottom: none;
        padding: 16px 18px;
        text-align: left;
    }

    .university-search-section .programs-table td:before {
        content: attr(data-label);
        display: block;
        font-weight: 600;
        font-size: 11px;
        color: #6b7280;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 6px;
    }

    .university-search-section .programs-table td:last-child:before {
        display: none;
    }

    .university-search-section .btn-view {
        width: 100%;
        border-radius: 8px;
        height: 44px;
    }
}

@media (max-width: 575px) {
    .university-search-section .university-header h1 {
        font-size: 28px;
    }

    .university-search-section .section-subtitle {
        font-size: 16px;
    }

    .university-search-section .search-form-container {
        padding: 24px 16px;
    }

    .university-search-section .form-control,
    .university-search-section .select2-container--default .select2-selection--single,
    .university-search-section .btn-search {
        height: 38px;
    }

    .university-search-section .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 46px;
    }

    .university-search-section .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 46px;
    }

    .university-search-section .filter-section {
        padding: 20px 16px;
    }

    .university-search-section .results-count strong {
        font-size: 24px;
    }

    .university-search-section .university-content {
        padding: 20px;
    }
}

/* ===================================
   COURSE DETAIL SECTION 
==================================== */
.course-detail-section {
    padding: 30px 0 80px;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    position: relative;
}

.course-detail-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e5e7eb 50%, transparent 100%);
}

/* Page Header */
.course-detail-section .course-page-header {
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.course-detail-section .course-page-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-dark));
    border-radius: 2px;
}

.course-detail-section .page-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.course-detail-section .page-subtitle {
    font-size: 15px;
    color: #6b7280;
    font-weight: 400;
    margin: 0;
    opacity: 0.85;
}

.course-detail-section .section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 24px;
    letter-spacing: -0.3px;
    position: relative;
    padding-left: 16px;
}

.course-detail-section .section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
}

.course-detail-section .course-header-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.course-detail-section .course-header-image:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.16), 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.course-detail-section .course-header-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    filter: brightness(0.95);
    transition: filter 0.3s ease, transform 0.4s ease;
}

.course-detail-section .course-header-image:hover img {
    filter: brightness(1);
    transform: scale(1.02);
}

.course-detail-section .discount-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: var(--color-white);
    padding: 2px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.35);
    letter-spacing: 0.3px;
}

.course-detail-section .course-description-section {
    margin-bottom: 35px;
}

.course-detail-section .course-text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

.course-detail-section .course-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 18px;
}

.course-detail-section .info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.course-detail-section .info-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 24px rgba(88, 207, 239, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.course-detail-section .info-item i {
    font-size: 22px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.course-detail-section .info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.course-detail-section .info-label {
    font-size: 11px;
    color: #9ca3af;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.course-detail-section .info-value {
    font-size: 15px;
    color: var(--color-dark);
    font-weight: 700;
    line-height: 1.4;
}

.course-detail-section .school-info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 32px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    margin-bottom: 48px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.course-detail-section .school-info-card:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1), 0 2px 12px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.course-detail-section .school-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.course-detail-section .school-logo {
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid var(--color-primary);
    box-shadow: 0 2px 12px rgba(88, 207, 239, 0.2);
    flex-shrink: 0;
}

.course-detail-section .school-name {
    font-size: 19px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.course-detail-section .school-rating {
    display: flex;
    gap: 4px;
    align-items: center;
}

.course-detail-section .school-rating i {
    color: #fbbf24;
    font-size: 14px;
}

.course-detail-section .school-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 24px;
}

.course-detail-section .additional-info-toggle {
    margin-bottom: 20px;
}

.course-detail-section .btn-toggle-info {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #f3f4f6 100%);
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-dark);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.course-detail-section .btn-toggle-info:hover {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(88, 207, 239, 0.1);
}

.course-detail-section .btn-toggle-info i {
    font-size: 14px;
    color: var(--color-primary);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.course-detail-section .additional-info-content {
    padding: 20px;
    background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 100%);
    border-radius: 10px;
    margin-top: 14px;
    border: 1px solid #f3f4f6;
}

.course-detail-section .info-text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.8;
    margin: 0;
}

/* Program Details Section */
.program-details-section {
    margin-bottom: 48px;
}

.detail-panel {
    background: var(--color-white);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.detail-panel:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.detail-panel.active {
    border-color: var(--color-primary);
}

.detail-panel.active .detail-panel-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #f3f4f6 100%);
    border-bottom: 1px solid #e5e7eb;
}

.detail-panel-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: var(--color-white);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
}

.detail-panel-header:hover {
    background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 100%);
}

.panel-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-dark);
    text-transform: capitalize;
    letter-spacing: -0.1px;
}

.detail-panel-header i {
    font-size: 14px;
    color: var(--color-primary);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.detail-panel.active .detail-panel-header i {
    transform: rotate(180deg);
}

.detail-panel-content {
    display: none;
    padding: 0 24px 24px 24px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid #f3f4f6;
}

.detail-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-label {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
    flex: 0 0 45%;
}

.detail-value {
    font-size: 13px;
    color: var(--color-dark);
    font-weight: 700;
    flex: 0 0 55%;
    text-align: right;
    line-height: 1.6;
}

/* Location Section */
.location-section {
    margin-bottom: 48px;
}

.location-text {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 20px;
    font-weight: 500;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Info Cards Row */
.info-cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    padding: 28px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    display: flex;
    gap: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.info-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 6px 32px rgba(88, 207, 239, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.info-card-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(88, 207, 239, 0.12), rgba(88, 207, 239, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(88, 207, 239, 0.2);
}

.info-card-icon i {
    font-size: 26px;
    color: var(--color-primary);
}

.info-card-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.info-card-content p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* City Info Section */
.city-info-section {
    margin-bottom: 48px;
}

.city-info-header {
    display: flex;
    gap: 14px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.city-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.city-badge:hover {
    box-shadow: 0 4px 16px rgba(88, 207, 239, 0.1);
    border-color: var(--color-primary);
}

.city-badge i {
    color: var(--color-primary);
    font-size: 16px;
}

.city-badge span {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-dark);
}

.city-image-gallery {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.city-main-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.city-image-gallery:hover .city-main-image {
    transform: scale(1.05);
}

.city-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.8;
}

/* Other Courses Slider Section */
.other-courses-section {
    margin-bottom: 48px;
}

.section-header-with-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.slider-navigation {
    display: flex;
    gap: 10px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.slider-btn:hover {
    background: linear-gradient(135deg, var(--color-primary) 0%, #3bb9d9 100%);
    border-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(88, 207, 239, 0.25);
    transform: translateY(-2px);
}

.slider-btn i {
    font-size: 14px;
    font-weight: 600;
}

.courses-slider-container {
    overflow: hidden;
}

.courses-slider {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
}

.course-slide {
    flex: 0 0 calc(50% - 12px);
}

.course-card {
    background: var(--color-white);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.course-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 8px 32px rgba(88, 207, 239, 0.2), 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.course-card-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.course-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-card:hover .course-card-image img {
    transform: scale(1.05);
}

.course-discount {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fbbf24;
    color: var(--color-white);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
}

.course-card-content {
    padding: 18px;
}

.course-flag {
    font-size: 16px;
    margin-right: 6px;
    display: flex;
}

.course-flag img {
    width: 20px;
    height: 20px;
    margin-right: 6px;
}

.course-type {
    font-size: 11px;
    color: #9ca3af;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.course-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.3;
}

.course-location {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 12px;
}

.course-price-row {
    padding-top: 12px;
    border-top: 1px solid #f3f4f6;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
}

.price-period {
    font-size: 11px;
    color: #9ca3af;
}

/* ===================================
   SIDEBAR - STICKY LUXURY
==================================== */
.course-sidebar-sticky {
    position: sticky;
    top: 10px;
}

.course-sidebar {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border-radius: 14px;
    padding: 24px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 6px rgba(0, 0, 0, 0.04);
}

/* Sidebar Cards */
.sidebar-card {
    margin-bottom: 16px;
}

.sidebar-card:last-of-type {
    margin-bottom: 0;
}

.sidebar-card label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
    letter-spacing: 0.2px;
}

.sidebar-card .form-control {
    width: 100%;
    padding: 5px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 13px;
    color: var(--color-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--color-white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.sidebar-card .form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(88, 207, 239, 0.1), 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Total Reservation */
.total-reservation {
    background: linear-gradient(135deg, var(--color-primary) 0%, #3bb9d9 100%);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 10px;
    box-shadow: 0 4px 20px rgba(88, 207, 239, 0.3);
}

.reservation-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.reservation-header i {
    font-size: 14px;
    color: var(--color-white);
}

.reservation-header span {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reservation-amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
}

/* Courses Card */
.courses-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #f3f4f6 100%);
    padding: 8px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.courses-card .card-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.courses-card .card-header i {
    font-size: 12px;
    color: var(--color-primary);
}

.courses-card .card-header span {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.course-item {
    background: var(--color-white);
    padding: 12px;
    border-radius: 6px;
    border-left: 3px solid var(--color-primary);
}

.course-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.course-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.3;
}

.course-item-header i {
    color: var(--color-primary);
    font-size: 11px;
}

.course-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.discounted-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-dark);
}

.discount-percentage {
    padding: 2px 6px;
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
}

/* Additional Costs Card */
.costs-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #f3f4f6 100%);
    padding: 18px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.costs-card .card-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.costs-card .card-header i {
    font-size: 12px;
    color: var(--color-primary);
}

.costs-card .card-header span {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.cost-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
}

.cost-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cost-row span:first-child {
    font-size: 12px;
    color: #6b7280;
}

.cost-row span:last-child {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-dark);
}

/* Sidebar Actions */
.sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-actions button {
    width: 100%;
    padding: 13px 18px;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
}

.btn-get-quote {
    background: linear-gradient(135deg, var(--color-primary) 0%, #3bb9d9 100%);
    color: var(--color-white);
    box-shadow: 0 2px 12px rgba(88, 207, 239, 0.2);
}

.btn-get-quote:hover {
    background: linear-gradient(135deg, #3bb9d9 0%, var(--color-primary) 100%);
    box-shadow: 0 6px 24px rgba(88, 207, 239, 0.35);
    transform: translateY(-2px);
}

.btn-apply-agent {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #4335e6 100%);
    color: var(--color-white);
    box-shadow: 0 2px 12px rgba(85, 70, 255, 0.2);
}

.btn-apply-agent:hover {
    background: linear-gradient(135deg, #4335e6 0%, var(--color-secondary) 100%);
    box-shadow: 0 6px 24px rgba(85, 70, 255, 0.35);
    transform: translateY(-2px);
}

.btn-phone-counseling {
    background: linear-gradient(135deg, #f8f9fa 0%, #f3f4f6 100%);
    color: var(--color-dark);
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.btn-phone-counseling:hover {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .course-main-content {
        padding-right: 0;
        margin-bottom: 35px;
    }

    .course-sidebar-sticky {
        position: relative;
        top: 0;
    }

    .course-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .course-detail-section {
        padding: 40px 0 60px;
    }

    .page-title {
        font-size: 24px;
    }

    .page-subtitle {
        font-size: 13px;
    }

    .course-header-image img {
        height: 240px;
    }

    .course-info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .info-item {
        padding: 14px;
    }

    .section-title {
        font-size: 17px;
    }

    .school-logo {
        width: 60px;
        height: 60px;
    }

    .school-name {
        font-size: 16px;
    }

    .detail-panel-header {
        padding: 12px 16px;
    }

    .panel-title {
        font-size: 13px;
    }

    .detail-panel-content {
        padding: 0 16px 16px 16px;
    }

    .detail-row {
        flex-direction: column;
        gap: 4px;
        padding: 10px 0;
    }

    .detail-label,
    .detail-value {
        flex: 1 1 100%;
        text-align: left;
    }

    .city-main-image {
        height: 220px;
    }

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

    .slider-navigation {
        display: none;
    }
}

.university-search-section .switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}

.university-search-section .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.university-search-section .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d1d5db;
    transition: 0.4s;
    border-radius: 34px;
}

.university-search-section .slider::before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .25);
}

.university-search-section .switch input:checked+.slider {
    background-color: var(--color-primary);
}

.university-search-section .switch input:checked+.slider::before {
    transform: translateX(24px);
}

/* =========================
   Country Hero Section
========================= */
.country-hero {
    background-color: var(--color-bg-primary);
    font-family: var(--font-primary);
}

/* Badge */
.country-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-dark);
    background: var(--color-bg-blue-light);
    border-radius: 999px;
    margin-bottom: 16px;
}

.country-hero__badge i {
    color: var(--color-primary);
}

/* Title */
.country-hero__title {
    font-size: 38px;
    font-weight: 800;
    color: var(--color-dark);
    line-height: var(--line-height-heading);
    margin-bottom: 18px;
}

/* Description */
.country-hero__description {
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-text-secondary);
    max-width: 520px;
    margin-bottom: 28px;
}

/* Feature Box */
.country-hero__feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border-radius: 18px;
    background: linear-gradient(135deg,
            rgba(var(--color-primary-rgb), 0.14),
            rgba(var(--color-primary-rgb), 0.05));
    border: 1px solid rgba(var(--color-primary-rgb), 0.25);
    max-width: 440px;
}

.country-hero__feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg,
            var(--color-primary),
            var(--color-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 18px;
    flex-shrink: 0;
}

.country-hero__feature-text h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
}

.country-hero__feature-text p {
    margin: 4px 0 0;
    font-size: 13px;
    color: var(--color-text-secondary);
}

/* Image */
.country-hero__image-wrapper {
    position: relative;
    padding: 14px;
    border-radius: 28px;
    background: linear-gradient(135deg,
            var(--color-bg-blue-light),
            var(--color-bg-blue-lighter));
    display: inline-block;
}

.country-hero__image {
    border-radius: 22px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 991px) {
    .country-hero__title {
        font-size: 30px;
    }

    .country-hero__description {
        max-width: 100%;
    }

    .country-hero__image-wrapper {
        margin-top: 10px;
    }
}

/* =========================
   Country Insights Section
========================= */

.country-insights {
    background: var(--color-bg-primary);
    font-family: var(--font-primary);
}

/* Header */
.country-insights__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.country-insights__title {
    font-size: 40px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.country-insights__subtitle {
    max-width: 620px;
    margin: 0 auto;
    color: var(--color-text-secondary);
    font-size: 15px;
}

/* FAQ */
.country-insights__faq {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.country-insights__faq-item {
    border-bottom: 1px solid var(--color-border-light);
    padding-bottom: 16px;
}

.country-insights__faq-question {
    background: none;
    border: none;
    width: 100%;
    padding: 0;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: var(--color-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.country-insights__faq-question i {
    font-size: 14px;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.country-insights__faq-answer {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin-top: 0;
}

/* Open State (JS Toggle) */
.country-insights__faq-item.active .country-insights__faq-answer {
    max-height: 200px;
    margin-top: 12px;
}

.country-insights__faq-item.active i {
    transform: rotate(45deg);
}

/* Video Card */
.country-insights__video-card {
    background: var(--color-bg-light);
    border-radius: 26px;
    padding: 16px;
}

.country-insights__video-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.country-insights__video-wrapper iframe {
    width: 100%;
    height: 300px;
    border: 0;
}

.country-insights__video-caption {
    padding: 16px 6px 6px;
}

.country-insights__video-caption h5 {
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--color-dark);
}

.country-insights__video-caption p {
    font-size: 14px;
    color: var(--color-text-secondary);
}

/* Responsive */
@media (max-width: 991px) {
    .country-insights__title {
        font-size: 30px;
    }

    .country-insights__video-wrapper iframe {
        height: 220px;
    }
}

/* =========================
   Countries Section
========================= */
.section-countries {
    background: linear-gradient(180deg, #FFFFFF 0%, #FBFCFE 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.section-countries .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 0 20px;
}

.section-countries .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.section-countries .section-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-dark));
}

.section-countries .section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
}

.section-countries .section-subtitle {
    font-size: 17px;
    color: var(--color-text-dark);
    max-width: 480px;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.8;
}

.section-countries .slider-nav {
    display: flex;
    gap: 12px;
}

.section-countries .slider-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.section-countries .slider-btn:hover {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(88, 207, 239, 0.2);
}

.section-countries .countries-swiper {
    padding: 40px 0 60px !important;
    overflow: hidden !important;
    width: 100%;
}

.section-countries .swiper-slide {
    height: auto;
}

.section-countries .country-card {
    display: block;
    height: 100%;
    background: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid var(--color-border-light);
}

.section-countries .country-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
    background: #f8f9fa;
    aspect-ratio: 1 / 1;
}

.section-countries .country-card span {
    display: block !important;
    padding: 24px 16px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--color-dark) !important;
    text-align: center !important;
    background: var(--color-white) !important;
    line-height: 1.4 !important;
    transition: color 0.3s ease !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 2;
}

/* Hover Effects */
.section-countries .country-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 48px rgba(7, 1, 108, 0.15);
    border-color: var(--color-primary);
}

.section-countries .country-card:hover span {
    color: var(--color-dark) !important;
}

.section-countries .country-card:hover img {
    transform: scale(1.05);
    transition: transform 0.6s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .section-countries {
        padding: 60px 0;
    }

    .section-countries .country-card img {
        height: 160px;
    }

    .section-countries .country-card span {
        padding: 20px 12px !important;
        font-size: 16px !important;
    }
}

/* =========================
   Articles Section - Sharp & Formal with Icon Boxes
========================= */
.section-articles {
    background: linear-gradient(180deg, #FBFCFE 0%, #FFFFFF 100%);
    padding: 120px 0;
    position: relative;
}

.section-articles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(85, 70, 255, 0.1) 50%,
            transparent 100%);
}

.section-articles .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    overflow: hidden;
    /* FIX: Prevent slider overflow */
}

/* Header Styling with Specificity */
.section-articles .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.section-articles .section-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-dark), var(--color-primary));
}

/* FIXED: Specific article titles */
.section-articles .section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
    position: relative;
}

.section-articles .section-title span {
    color: var(--color-dark);
    position: relative;
}

.section-articles .section-title span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-dark);
    opacity: 0.3;
}

.section-articles .section-subtitle {
    font-size: 17px;
    color: var(--color-text-dark);
    max-width: 480px;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.8;
    letter-spacing: 0.2px;
}

/* Navigation Buttons */
.section-articles .slider-nav {
    display: flex;
    gap: 12px;
}

.section-articles .slider-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.section-articles .slider-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-dark), var(--color-primary));
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-articles .slider-btn i {
    position: relative;
    z-index: 1;
    font-size: 16px;
    transition: all 0.3s ease;
}

.section-articles .slider-btn:hover {
    border-color: transparent;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 24px rgba(85, 70, 255, 0.2);
}

.section-articles .slider-btn:hover::before {
    left: 0;
}

.section-articles .slider-btn:hover i {
    color: var(--color-white);
    transform: scale(1.1);
}

/* FIXED: Swiper Container - No Overflow */
.section-articles .articles-swiper {
    padding: 40px 0 60px !important;
    overflow: hidden !important;
    /* Changed from 'visible' */
    width: 100%;
}

.section-articles .swiper-wrapper {
    align-items: stretch;
}

/* Article Card - Sharp & Formal */
.section-articles .swiper-slide {
    height: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
    transform: scale(0.95);
}

.section-articles .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.section-articles .swiper-slide-prev,
.section-articles .swiper-slide-next {
    opacity: 0.85;
    transform: scale(0.98);
}

.section-articles .article-card {
    display: block;
    height: 100%;
    background: var(--color-white);
    border-radius: 16px;
    /* Sharper corners */
    padding: 36px 30px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--color-border-light);
}

.section-articles .article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--color-dark), var(--color-primary)) border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* NEW: Sharp Icon Box */
.section-articles .article-card i {
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    /* Sharp corners */
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

/* FIXED: Specific article titles */
.section-articles .article-card h6 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
    line-height: 1.4;
    letter-spacing: -0.2px;
    transition: color 0.3s ease;
}

.section-articles .article-card p {
    font-size: 15px;
    color: var(--color-text-dark);
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.section-articles .article-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

.section-articles .article-card-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.section-articles .article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(85, 70, 255, 0.12);
    border-color: var(--color-dark);
}

.section-articles .article-card:hover::before {
    opacity: 1;
}

.section-articles .article-card:hover i {
    background: var(--color-dark);
    color: var(--color-white);
    border-color: var(--color-dark);
    transform: translateY(-4px) rotate(-5deg);
}

.section-articles .article-card:hover h6 {
    color: var(--color-dark);
}

.section-articles .article-card:hover p {
    opacity: 1;
    color: var(--color-text-primary);
}

.section-articles .article-card:hover .article-card-link {
    opacity: 1;
    transform: translateX(0);
}

.section-articles .article-card:hover .article-card-link i {
    transform: translateX(4px);
}

/* Article Number Badge */
.section-articles .article-number {
    position: absolute;
    top: 32px;
    right: 32px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(88, 207, 239, 0.05);
    line-height: 1;
    transition: all 0.4s ease;
    z-index: 0;
}

.section-articles .article-card:hover .article-number {
    color: rgba(85, 70, 255, 0.08);
    transform: scale(1.1);
}

/* =========================
   Swiper Customization
========================= */

.section-countries .swiper-slide,
.section-articles .swiper-slide {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-countries .swiper-slide-active .country-card,
.section-articles .swiper-slide-active .article-card {
    box-shadow: 0 20px 40px rgba(88, 207, 239, 0.2);
}

/* =========================
   Responsive Design
========================= */

@media (max-width: 1400px) {

    .section-countries .container,
    .section-articles .container {
        max-width: 1140px;
    }
}

@media (max-width: 1200px) {

    .section-countries,
    .section-articles {
        padding: 80px 0;
    }

    .section-countries .container,
    .section-articles .container {
        max-width: 960px;
        padding: 0 30px;
    }
}

@media (max-width: 992px) {

    .section-countries .section-title,
    .section-articles .section-title {
        font-size: 36px;
    }

    .section-countries .country-card-content,
    .section-articles .article-card {
        padding: 24px;
    }
}

@media (max-width: 768px) {

    .section-countries,
    .section-articles {
        padding: 60px 0;
    }

    .section-countries .section-header,
    .section-articles .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        margin-bottom: 40px;
    }

    .section-countries .section-title,
    .section-articles .section-title {
        font-size: 32px;
    }

    .section-countries .slider-nav,
    .section-articles .slider-nav {
        align-self: flex-start;
    }

    .section-countries .countries-swiper,
    .section-articles .articles-swiper {
        padding: 20px 0 40px !important;
    }
}

@media (max-width: 576px) {

    .section-countries .container,
    .section-articles .container {
        padding: 0 20px;
    }

    .section-countries .section-title,
    .section-articles .section-title {
        font-size: 28px;
    }

    .section-countries .section-subtitle,
    .section-articles .section-subtitle {
        font-size: 15px;
    }

    .section-countries .slider-btn,
    .section-articles .slider-btn {
        width: 44px;
        height: 44px;
    }

    .section-countries .country-card-content,
    .section-articles .article-card {
        padding: 20px;
    }

    .section-articles .article-card i {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

/* =========================
   Swiper Pagination
========================= */

.section-countries .swiper-pagination,
.section-articles .swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

.section-countries .swiper-pagination-bullet,
.section-articles .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--color-border-medium);
    opacity: 0.6;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.section-countries .swiper-pagination-bullet-active,
.section-articles .swiper-pagination-bullet-active {
    background: linear-gradient(135deg, var(--color-primary), var(--color-dark));
    opacity: 1;
    width: 32px;
    border-radius: 8px;
}

/* =========================
   Focus States
========================= */

.section-countries .country-card:focus,
.section-articles .article-card:focus,
.section-countries .slider-btn:focus,
.section-articles .slider-btn:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
}

/* ===================================
   UNIVERSITY PROGRAM SECTION
==================================== */
.university-program-section {
    padding: 60px 0 80px;
    background: #fafbfc;
}

/* Program Header */
.program-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.program-number {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.program-university {
    margin-bottom: 12px;
}

.university-link {
    font-size: 15px;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.university-link:hover {
    color: #3bb9d9;
    text-decoration: underline;
}

.university-location {
    font-size: 14px;
    color: #6b7280;
}

.program-question {
    font-size: 13px;
    color: #9ca3af;
    margin: 0;
}

.btn-apply-now {
    padding: 12px 32px;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary) 100%);
    color: var(--color-white);
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.2);
}

.btn-apply-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 71, 87, 0.3);
}

/* University Images Slider */
.university-images-slider {
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.university-images-container {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.university-image {
    width: 50%;
    flex-shrink: 0;
    height: 400px;
    object-fit: cover;
    filter: brightness(0.95);
    transition: filter 0.3s ease;
}

.slider-wrapper:hover .university-image {
    filter: brightness(1);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(8px);
    border: none;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    color: #1f2937;
}

.slider-arrow:hover {
    background: linear-gradient(135deg, var(--color-primary) 0%, #0891b2 100%);
    color: white;
    box-shadow: 0 8px 28px rgba(88, 207, 239, 0.4), 0 4px 12px rgba(88, 207, 239, 0.2);
    transform: translateY(-50%) scale(1.08);
}

.slider-arrow-left {
    left: 24px;
}

.slider-arrow-right {
    right: 24px;
}

.slider-arrow i {
    font-size: 18px;
    font-weight: 600;
}

/* Program Info Panel */
.program-info-panel {
    background: var(--color-white);
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.program-info-panel.active .program-panel-header {
    background: #f8f9fa;
    border-bottom: 1px solid #e5e7eb;
}

.program-panel-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--color-white);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: left;
}

.program-panel-header:hover {
    background: #f8f9fa;
}

.panel-header-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
    text-transform: capitalize;
}

.program-panel-header i {
    font-size: 13px;
    color: #9ca3af;
    transition: transform 0.3s ease;
}

.program-info-panel.active .program-panel-header i {
    transform: rotate(180deg);
}

.program-panel-content {
    display: none;
    padding: 20px;
}

.program-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.program-info-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid #f3f4f6;
}

.program-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-item-label {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
    flex: 0 0 42%;
}

.info-item-value {
    font-size: 13px;
    color: var(--color-dark);
    font-weight: 600;
    flex: 0 0 58%;
    text-align: right;
    line-height: 1.6;
}

.note-text {
    font-size: 11px;
    color: #9ca3af;
    font-weight: 400;
    font-style: italic;
    display: block;
    margin-top: 4px;
}

/* About University Section */
.about-university-section {
    margin-top: 32px;
    margin-bottom: 32px;
}

.university-section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 24px;
    letter-spacing: -0.3px;
    position: relative;
    padding-left: 16px;
}

.university-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
}

.university-subsection-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
    margin: 24px 0 12px 0;
}

.university-about-content p,
.university-location-text {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 12px;
}

.btn-show-more {
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.btn-show-more:hover {
    color: #3bb9d9;
}

/* University Details Card */
.university-details-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 24px 28px;
    margin-bottom: 28px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.university-details-card:hover {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.university-card-header {
    display: flex;
    align-items: center;
    gap: 18px;
}

.university-card-logo {
    flex-shrink: 0;
}

.university-logo-img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid var(--color-primary);
    box-shadow: 0 2px 8px rgba(88, 207, 239, 0.15);
}

.university-card-info {
    flex: 1;
}

.university-card-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-dark);
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
    transition: color 0.2s ease;
}

.university-card-name:hover {
    color: var(--color-primary);
}

.university-card-location {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    font-weight: 500;
}

.university-card-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    padding: 10px 18px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.2);
}

.university-card-rating i {
    color: var(--color-white);
    font-size: 15px;
}

.rating-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-white);
}

.university-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.university-info-section {
    background: var(--color-white);
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px 24px;
    transition: all 0.3s ease;
}

.university-info-section:hover {
    border-color: var(--color-primary);
    box-shadow: 0 2px 12px rgba(88, 207, 239, 0.08);
}

.info-section-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 14px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #f3f4f6;
}

.info-section-text {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 12px;
}

.btn-show-more-inline {
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.btn-show-more-inline:hover {
    color: #3bb9d9;
}

.university-map-container {
    margin-top: 12px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* University Details Section */
.university-details-section {
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    margin-bottom: 0;
    position: relative;
}

.university-details-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e5e7eb 50%, transparent 100%);
}

.university-hero-slider {
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.university-hero-images {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image {
    width: 50%;
    flex-shrink: 0;
    height: 400px;
    object-fit: cover;
    filter: brightness(0.95);
    transition: filter 0.3s ease;
}

.hero-slider-wrapper:hover .hero-image {
    filter: brightness(1);
}

.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(8px);
    border: none;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    color: #1f2937;
}

.hero-slider-arrow:hover {
    background: linear-gradient(135deg, var(--color-primary) 0%, #0891b2 100%);
    color: white;
    box-shadow: 0 8px 28px rgba(88, 207, 239, 0.4), 0 4px 12px rgba(88, 207, 239, 0.2);
    transform: translateY(-50%) scale(1.08);
}

.hero-arrow-left {
    left: 24px;
}

.hero-arrow-right {
    right: 24px;
}

.hero-slider-arrow i {
    font-size: 18px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-image {
        width: 100%;
        height: 280px;
    }

    .hero-slider-arrow {
        width: 40px;
        height: 40px;
    }

    .hero-arrow-left {
        left: 12px;
    }

    .hero-arrow-right {
        right: 12px;
    }

    .hero-slider-arrow i {
        font-size: 14px;
    }
}

.university-details-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 24px;
    align-items: start;
}

.university-logo-wrapper {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.university-logo-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, #0891b2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.university-logo-wrapper:hover::before {
    opacity: 1;
}

.university-logo-wrapper:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
    border-color: rgba(88, 207, 239, 0.3);
}

.university-main-logo {
    height: 160px;
    object-fit: cover;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.university-logo-wrapper:hover .university-main-logo {
    border-color: var(--color-primary);
}

.university-initials {
    font-size: 38px;
    font-weight: 900;
    margin: 0;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #0891b2 50%, #0e7490 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.university-info-column {
    background: linear-gradient(145deg, #ffffff 0%, #fefefe 100%);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px 36px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.university-info-column:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
}

.university-info-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 2px solid #f3f4f6;
    position: relative;
}

.university-info-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary) 0%, transparent 100%);
}

.university-main-name {
    font-size: 26px;
    font-weight: 800;
    color: var(--color-dark);
    margin: 0 0 10px 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.university-main-location {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.university-main-location i {
    color: var(--color-primary);
    font-size: 15px;
}

.university-rating-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 10px 18px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(251, 191, 36, 0.25), 0 1px 4px rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.2);
    transition: all 0.3s ease;
}

.university-rating-badge:hover {
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.35), 0 2px 6px rgba(251, 191, 36, 0.2);
    transform: translateY(-1px);
}

.university-rating-badge i {
    color: #f59e0b;
    font-size: 17px;
}

.rating-number {
    font-size: 17px;
    font-weight: 800;
    color: #92400e;
    letter-spacing: -0.3px;
}

.university-info-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 24px;
    border-bottom: 2px solid #f3f4f6;
}

.university-tab {
    padding: 12px 20px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s ease;
}

.university-tab.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.university-tab:hover:not(.active) {
    color: var(--color-dark);
}

.university-tab-content {
    display: none;
}

.university-tab-content.active {
    display: block;
}

.university-description {
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563;
    margin: 0 0 16px 0;
    max-height: 100px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.btn-university-show-more {
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.btn-university-show-more:hover {
    color: #0891b2;
    text-decoration: underline;
}

.university-map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .university-details-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .university-logo-column {
        position: relative;
        top: 0;
    }

    .university-info-header {
        flex-direction: column;
        gap: 16px;
    }

    .university-rating-badge {
        align-self: flex-start;
    }
}

/* University Profile Section */
.university-profile-section {
    margin-bottom: 40px;
}

.university-logo-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.university-logo-card:hover {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.profile-university-logo {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 16px;
    border: 2px solid #e5e7eb;
}

.profile-university-initials {
    font-size: 32px;
    font-weight: 900;
    color: var(--color-dark);
    margin: 0;
    letter-spacing: -1px;
}

.university-profile-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.profile-university-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.profile-university-location {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    font-weight: 500;
}

.profile-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    padding: 8px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.2);
}

.profile-rating i {
    color: var(--color-white);
    font-size: 14px;
}

.profile-rating-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-white);
}

.university-profile-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 24px;
    border-bottom: 2px solid #f3f4f6;
}

.profile-tab {
    padding: 12px 20px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s ease;
}

.profile-tab.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.profile-tab:hover:not(.active) {
    color: var(--color-dark);
}

.profile-tab-content {
    margin-bottom: 24px;
}

.profile-about-text {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 12px;
}

.btn-show-more-profile {
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.btn-show-more-profile:hover {
    color: #3bb9d9;
}

.profile-map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* Available Majors List Section */
.available-majors-list-section {
    margin-top: 48px;
    margin-bottom: 48px;
}

.majors-list-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 28px;
    letter-spacing: -0.4px;
    position: relative;
    padding-left: 18px;
}

.majors-list-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 28px;
    background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
    border-radius: 3px;
}

.majors-list-search {
    width: 100%;
    padding: 14px 50px 14px 20px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--color-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.majors-list-search:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(88, 207, 239, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08);
}

.majors-list-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 32px;
    border-bottom: 2px solid #e5e7eb;
}

.majors-list-tab {
    padding: 14px 28px;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 700;
    color: #6b7280;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.1px;
}

.majors-list-tab.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.majors-list-tab:hover:not(.active) {
    color: var(--color-dark);
    background: linear-gradient(180deg, transparent 0%, rgba(88, 207, 239, 0.05) 100%);
}

.tab-count {
    font-size: 13px;
    opacity: 0.7;
}

.majors-category-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.category-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 6px 28px rgba(88, 207, 239, 0.18), 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.category-card.expanded {
    border-color: var(--color-primary);
    box-shadow: 0 8px 32px rgba(88, 207, 239, 0.2), 0 2px 8px rgba(0, 0, 0, 0.08);
}

.category-card-header {
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 100%);
    transition: all 0.3s ease;
}

.category-card:hover .category-card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #f3f4f6 100%);
}

.category-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.category-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
    letter-spacing: -0.2px;
}

.category-card-count {
    font-size: 13px;
    color: #6b7280;
    font-weight: 700;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    padding: 4px 12px;
    border-radius: 8px;
}

.category-chevron {
    font-size: 14px;
    color: var(--color-primary);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-programs-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    border-top: 1px solid #f3f4f6;
}

.program-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.2s ease;
}

.program-item:last-child {
    border-bottom: none;
}

.program-item:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #f3f4f6 100%);
    padding-left: 24px;
}

.program-name {
    font-size: 13px;
    color: var(--color-dark);
    font-weight: 500;
    flex: 1;
}

.program-cost {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary);
    white-space: nowrap;
    margin-left: 16px;
}

/* Category Row Cards */
.category-row-card {
    background: var(--color-white);
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.category-row-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(88, 207, 239, 0.12);
}

.category-row-card.expanded {
    border-color: var(--color-primary);
}

.category-row-header {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-row-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0;
}

.category-row-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.category-row-count {
    font-size: 12px;
    color: #6b7280;
    font-weight: 600;
}

/* Available Majors Section */
.available-majors-section {
    margin-top: 48px;
    margin-bottom: 48px;
    padding: 40px;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 6px rgba(0, 0, 0, 0.04);
}

.majors-search-wrapper {
    position: relative;
    margin-bottom: 28px;
}

.majors-search-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--color-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    font-weight: 500;
}

.majors-search-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(88, 207, 239, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08);
}

.majors-search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-primary);
    font-size: 16px;
    pointer-events: none;
}

.majors-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 32px;
    padding: 8px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 12px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.majors-tab {
    flex: 1;
    padding: 14px 24px;
    background: transparent;
    border: none;
    font-size: 14px;
    font-weight: 700;
    color: #6b7280;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: -0.1px;
}

.majors-tab.active {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(88, 207, 239, 0.15), 0 1px 4px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.majors-tab:hover:not(.active) {
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    color: var(--color-dark);
}

.tab-label {
    font-size: 14px;
}

.tab-badge {
    font-size: 12px;
    opacity: 0.7;
}

.majors-categories {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.major-category {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.major-category:hover {
    border-color: var(--color-primary);
    box-shadow: 0 6px 28px rgba(88, 207, 239, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.major-category.active {
    border-color: var(--color-primary);
    box-shadow: 0 8px 32px rgba(88, 207, 239, 0.2), 0 2px 8px rgba(0, 0, 0, 0.08);
}

.category-header-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 28px;
    background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 100%);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-header-btn:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #f3f4f6 100%);
}

.major-category.active .category-header-btn {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.category-header-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.category-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--color-dark);
    margin: 0;
    letter-spacing: -0.3px;
}

.category-count {
    font-size: 13px;
    color: #6b7280;
    font-weight: 700;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    padding: 6px 14px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.category-toggle-icon {
    font-size: 15px;
    color: var(--color-primary);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
    font-weight: 600;
}

.major-category.active .category-toggle-icon {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.category-programs {
    padding: 20px 28px 24px 28px;
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
}

.program-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: var(--color-white);
    border: 1px solid #f3f4f6;
}

.program-row:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #f3f4f6 100%);
    transform: translateX(6px);
    box-shadow: 0 4px 16px rgba(88, 207, 239, 0.12);
    border-color: var(--color-primary);
}

.program-row:last-child {
    margin-bottom: 0;
}

.program-row-name {
    font-size: 14px;
    color: var(--color-dark);
    font-weight: 700;
    transition: color 0.3s ease;
    letter-spacing: -0.1px;
}

.program-row:hover .program-row-name {
    color: var(--color-primary);
}

.program-row-cost {
    font-size: 14px;
    color: #6b7280;
    font-weight: 800;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.program-row:hover .program-row-cost {
    background: linear-gradient(135deg, var(--color-primary) 0%, #3bb9d9 100%);
    color: var(--color-white);
    box-shadow: 0 2px 8px rgba(88, 207, 239, 0.3);
    transform: scale(1.05);
}

.similar-program-card {
    background: var(--color-white);
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}

.similar-program-header {
    padding: 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.similar-program-university {
    flex: 1;
}

.similar-university-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0 0 4px 0;
}

.similar-university-subname {
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
}

.similar-university-rating {
    display: flex;
    gap: 4px;
}

.similar-university-rating i {
    color: #fbbf24;
    font-size: 13px;
}

.similar-university-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #6b7280;
}

.location-flag {
    width: 16px;
    height: 12px;
}

.similar-program-table {
    padding: 0;
}

.similar-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
    padding: 14px 20px;
    background: #fafbfc;
    border-bottom: 1px solid #e5e7eb;
}

.similar-table-header span {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.similar-table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
    padding: 16px 20px;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.3s ease;
    cursor: pointer;
}

.similar-table-row:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #f3f4f6 100%);
    border-left: 4px solid var(--color-primary);
}

.similar-table-row:last-child {
    border-bottom: none;
}

.table-program-name {
    font-size: 13px;
    color: var(--color-dark);
    font-weight: 600;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.similar-table-row:hover .table-program-name {
    color: var(--color-primary);
}

.table-start-date {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.table-cost {
    font-size: 13px;
    color: var(--color-dark);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 991px) {
    .program-header {
        flex-direction: column;
        gap: 20px;
    }

    .program-header-action {
        width: 100%;
    }

    .btn-apply-now {
        width: 100%;
    }

    .university-image {
        width: 100%;
        height: 280px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .slider-arrow-left {
        left: 12px;
    }

    .slider-arrow-right {
        right: 12px;
    }

    .slider-arrow i {
        font-size: 14px;
    }

    .university-info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .university-program-section {
        padding: 40px 0 60px;
    }

    .program-number {
        font-size: 19px;
    }

    .university-image {
        width: 100%;
        height: 240px;
    }

    .university-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .university-card-rating {
        align-self: flex-start;
    }

    .university-info-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .university-profile-header {
        flex-direction: column;
        gap: 16px;
    }

    .profile-rating {
        align-self: flex-start;
    }

    .majors-category-list {
        grid-template-columns: 1fr;
    }

    .program-info-item {
        flex-direction: column;
        gap: 6px;
    }

    .info-item-label,
    .info-item-value {
        flex: 1 1 100%;
        text-align: left;
    }

    .majors-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .majors-tabs {
        flex-direction: column;
        gap: 8px;
        border-bottom: none;
    }

    .majors-tab {
        border-bottom: none;
        border-left: 2px solid transparent;
        padding: 10px 16px;
        text-align: left;
    }

    .majors-tab.active {
        border-bottom: none;
        border-left-color: var(--color-primary);
        background: #f8f9fa;
    }

    .similar-table-header,
    .similar-table-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .similar-table-header {
        display: none;
    }

    .table-program-name::before {
        content: "Program: ";
        font-weight: 600;
        color: #6b7280;
    }

    .table-start-date::before {
        content: "Start: ";
        font-weight: 600;
        color: #6b7280;
    }

    .table-cost::before {
        content: "Cost: ";
        font-weight: 600;
        color: #6b7280;
    }
}

/* ========================================
   Language Courses List Section - Formal Luxury
   ======================================== */

/* Main Section Container */
.language-list-section {
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 50%, #f9fafb 100%);
    padding: 90px 0 110px;
    position: relative;
    overflow: hidden;
}

.language-list-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--color-primary) 50%,
        transparent 100%);
    opacity: 0.3;
}

.language-list-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        #e2e8f0 50%,
        transparent 100%);
}

/* Section Header */
.language-list-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.language-list-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg,
        var(--color-primary) 0%,
        #2563eb 100%);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.language-list-main-title {
    font-size: 44px;
    font-weight: 800;
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 16px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.language-list-subtitle {
    font-size: 17px;
    font-weight: 400;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Filter Bar */
.language-list-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 50px;
    padding: 28px 32px;
    background: linear-gradient(145deg, #ffffff 0%, #fefeff 100%);
    border-radius: 16px;
    box-shadow:
        0 4px 16px rgba(15, 23, 42, 0.08),
        0 1px 4px rgba(15, 23, 42, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.language-filter-select {
    flex: 1;
    min-width: 180px;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 500;
    color: #1e293b;
    background: linear-gradient(145deg, #ffffff 0%, #f9fafb 100%);
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
    outline: none;
}

.language-filter-select:hover {
    border-color: var(--color-primary);
    box-shadow:
        0 2px 8px rgba(37, 99, 235, 0.12),
        0 1px 3px rgba(15, 23, 42, 0.06);
    transform: translateY(-1px);
}

.language-filter-select:focus {
    border-color: var(--color-primary);
    box-shadow:
        0 0 0 4px rgba(37, 99, 235, 0.12),
        0 4px 12px rgba(37, 99, 235, 0.15);
    background: linear-gradient(145deg, #ffffff 0%, #fefeff 100%);
}

.language-courses-count {
    flex: 0 0 auto;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
    background: linear-gradient(135deg,
        rgba(37, 99, 235, 0.08) 0%,
        rgba(37, 99, 235, 0.04) 100%);
    border-radius: 12px;
    border: 1.5px solid rgba(37, 99, 235, 0.2);
    white-space: nowrap;
}

/* Courses Grid */
.language-courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Course Card */
.language-course-card {
    background: linear-gradient(145deg, #ffffff 0%, #fefeff 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow:
        0 8px 24px rgba(15, 23, 42, 0.08),
        0 2px 6px rgba(15, 23, 42, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.language-course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--color-primary) 50%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.language-course-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 48px rgba(15, 23, 42, 0.14),
        0 4px 12px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(37, 99, 235, 0.3);
}

.language-course-card:hover::before {
    opacity: 1;
}

/* Course Image */
.language-course-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(145deg, #e2e8f0 0%, #cbd5e1 100%);
}

.language-course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.language-course-card:hover .language-course-image img {
    transform: scale(1.08);
}

.language-course-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
}

/* Discount Badge */
.language-discount-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    border-radius: 12px;
    box-shadow:
        0 6px 16px rgba(245, 158, 11, 0.45),
        0 2px 6px rgba(0, 0, 0, 0.12);
    z-index: 2;
    letter-spacing: 0.5px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

/* Course Body */
.language-course-body {
    padding: 24px;
}

/* Price Row */
.language-price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e2e8f0;
}

.language-price-old {
    font-size: 20px;
    font-weight: 600;
    color: #94a3b8;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}

.language-price-current {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.language-price-label {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    margin-left: auto;
}

/* Location */
.language-location {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.language-location i {
    font-size: 14px;
    color: var(--color-primary);
}

.language-location span {
    font-size: 15px;
    font-weight: 500;
    color: #475569;
}

/* Rating */
.language-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
}

.language-rating i {
    font-size: 16px;
    color: #fbbf24;
}

.language-rating i.far {
    color: #cbd5e1;
}

/* School Name */
.language-school-name {
    font-size: 23px;
    font-weight: 700;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 20px 0;
    line-height: 1.3;
    letter-spacing: -0.2px;
}

/* Course Details */
.language-course-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.language-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.language-detail-item:hover {
    background: linear-gradient(145deg, #eff6ff 0%, #dbeafe 100%);
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.1);
    transform: translateX(4px);
}

.language-detail-item i {
    font-size: 16px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.language-detail-item span {
    font-size: 14px;
    font-weight: 500;
    color: #334155;
}

/* ========================================
   Responsive Design
   ======================================== */

/* Tablets and Medium Devices */
@media (max-width: 991px) {
    .language-courses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .language-list-main-title {
        font-size: 36px;
    }

    .language-list-filters {
        padding: 24px;
    }
}

/* Mobile Devices */
@media (max-width: 767px) {
    .language-list-section {
        padding: 50px 0 60px;
    }

    .language-list-header {
        margin-bottom: 40px;
    }

    .language-list-main-title {
        font-size: 28px;
    }

    .language-list-subtitle {
        font-size: 15px;
    }

    .language-list-filters {
        flex-direction: column;
        padding: 20px;
        gap: 12px;
    }

    .language-filter-select {
        width: 100%;
        min-width: unset;
    }

    .language-courses-count {
        width: 100%;
        text-align: center;
    }

    .language-courses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .language-course-image {
        height: 200px;
    }

    .language-price-current {
        font-size: 28px;
    }

    .language-school-name {
        font-size: 20px;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .language-list-section {
        padding: 40px 0 50px;
    }

    .language-list-main-title {
        font-size: 24px;
    }

    .language-list-subtitle {
        font-size: 14px;
    }

    .language-list-filters {
        padding: 16px;
    }

    .language-filter-select {
        padding: 12px 14px;
        font-size: 14px;
    }

    .language-course-body {
        padding: 20px;
    }

    .language-price-current {
        font-size: 24px;
    }

    .language-price-old {
        font-size: 18px;
    }

    .language-school-name {
        font-size: 18px;
    }

    .language-discount-badge {
        padding: 6px 12px;
        font-size: 14px;
    }
}

