@import url('./core/variable.css');
@import url('./core/utilities.css');
@import url('./layout/navbar.css');
@import url('./components/form.css');
@import url('./layout/footer.css');
@import url('./animation.css');
@import url('./responsive.css');

/*=====================================================
BODY OFFSET
======================================================*/
body {
    overflow-x: hidden;
}

/*=====================================================
SECTION
======================================================*/

section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.section-header {
    max-width: 720px;
    margin: 0 auto 70px;
    text-align: center;
}

.section-padding {
    padding: 50px 0;
}

.success-section {
    background: var(--white);
}

.reviews-section {
    background: var(--gray-50);
}

.smart-finder {
    background: var(--white);
}

.smart-match-section {
    background: linear-gradient(135deg, #091324 0%, #0f2347 50%, #1e40af 100%);
}

/* GLOBAL HEADINGS COMPONENTS */
.section-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.25;
    margin-top: 15px;
    margin-bottom: 20px;
}

.section-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 0;
}

/*=====================================================
HERO SECTION
======================================================*/
.hero-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 90px 0 80px;
    background:
        radial-gradient(circle at 0% 0%, rgba(37, 99, 235, .16), transparent 38%),
        radial-gradient(circle at 100% 0%, rgba(6, 182, 212, .12), transparent 35%),
        radial-gradient(circle at 50% 100%, rgba(124, 58, 237, .10), transparent 40%),
        linear-gradient(135deg, #fbfdff 0%, #f4f8ff 45%, #eef6ff 100%);
}

/*=====================================================
ANIMATED BACKGROUND
======================================================*/

.hero-section::before {
    content: '';
    position: absolute;
    width: 750px;
    height: 750px;
    top: -350px;
    right: -220px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            rgba(37, 99, 235, .18),
            rgba(6, 182, 212, .08));
    filter: blur(120px);
    animation: blobMove1 12s ease-in-out infinite alternate;
    z-index: -3;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    bottom: -280px;
    left: -180px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            rgba(37, 99, 235, .10),
            rgba(124, 58, 237, .12));
    filter: blur(120px);
    animation: blobMove2 14s ease-in-out infinite alternate;
    z-index: -3;
}

/*=====================================================
GRID OVERLAY
======================================================*/

.hero-section::marker {
    display: none;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    opacity: .035;
    background-image:
        linear-gradient(rgba(15, 23, 42, .12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, .12) 1px, transparent 1px);
    background-size: 48px 48px;
    z-index: -2;
}

/*=====================================================
WORLD MAP
======================================================*/

.hero-world-map {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
    pointer-events: none;
}

.hero-world-map img {
    width: min(80%, 1200px);
    opacity: .075;
    filter: grayscale(100%);
    animation: mapFloat 10s ease-in-out infinite;
    transition: .5s;
}

.hero-section:hover .hero-world-map img {
    opacity: .11;
    transform: scale(1.02);
}

/*=====================================================
ROW
======================================================*/

.hero-row {
    min-height: 760px;
    align-items: center;
}

/*=====================================================
LEFT CONTENT
======================================================*/

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 660px;
}

/*=====================================================
BADGE
======================================================*/

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    margin-bottom: 30px;
    background:
        rgba(255, 255, 255, .78);

    border: 1px solid rgba(255, 255, 255, .75);
    backdrop-filter: blur(22px);
    border-radius: 100px;
    box-shadow:
        0 12px 40px rgba(15, 23, 42, .08);
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    transition: .4s;
}

.hero-badge:hover {
    transform: translateY(-5px);
    box-shadow:
        0 20px 55px rgba(37, 99, 235, .15);

}

.badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #10b981;
    box-shadow:
        0 0 0 rgba(16, 185, 129, .5);
    animation: pulseDot 2s infinite;
}

/*=====================================================
TITLE
======================================================*/

.hero-title {
    margin-bottom: 28px;
    font-size: clamp(52px, 5vw, 76px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--dark);
}

.hero-title span {
    display: block;
    background:
        linear-gradient(135deg,
            #2563eb 0%,
            #0ea5e9 45%,
            #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/*=====================================================
DESCRIPTION
======================================================*/

.hero-description {
    max-width: 590px;
    font-size: 19px;
    line-height: 1.9;
    color: var(--gray-600);
    margin-bottom: 40px;
}

/*=====================================================
BUTTONS
======================================================*/

.hero-actions {
    display: flex;
    align-items: center;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/*=====================================================
BUTTONS
======================================================*/

.hero-buttons .btn {
    height: 60px;
    min-width: 220px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 60px;
    transition: .4s;
    position: relative;
    overflow: hidden;
}

/* shine */

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .45),
            transparent);

    transform: skewX(-20deg);
    transition: .8s;

}

.hero-buttons .btn:hover::before {
    left: 140%;
}

.hero-buttons .btn:hover {
    transform:
        translateY(-6px);

}

.hero-buttons .btn-premium {
    box-shadow:
        0 20px 45px rgba(37, 99, 235, .28);
}

.hero-buttons .btn-premium:hover {
    box-shadow:
        0 28px 60px rgba(37, 99, 235, .35);
}

.hero-buttons .btn-outline-premium {
    background: #fff;
    border: 2px solid rgba(37, 99, 235, .18);
    color: var(--primary);
}

.hero-buttons .btn-outline-premium:hover {
    background: var(--primary);
    color: #fff;
}

.hero-buttons .btn i {
    transition: .35s;
}

.hero-buttons .btn:hover i {
    transform: translateX(4px);
}

/*=====================================================
RIGHT
======================================================*/
.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 760px;
}

/*=====================================================
HERO FORM CARD
======================================================*/

.hero-form {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 38px;
    overflow: hidden;

    background:
        rgba(255, 255, 255, .82);

    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);

    border: 1px solid rgba(255, 255, 255, .75);

    border-radius: 28px;

    box-shadow:
        0 30px 80px rgba(15, 23, 42, .12),
        0 10px 30px rgba(37, 99, 235, .08);

    transition: .45s;
}

.hero-form:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 45px 100px rgba(15, 23, 42, .15);

}

/*=====================================================
GRADIENT BORDER
======================================================*/

.hero-form::before {

    content: '';

    position: absolute;

    inset: 0;

    padding: 1px;

    border-radius: inherit;

    background:
        linear-gradient(135deg,
            rgba(37, 99, 235, .45),
            rgba(6, 182, 212, .25),
            rgba(255, 255, 255, 0));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/*=====================================================
TOP SHINE
======================================================*/

.hero-form::after {

    content: '';
    position: absolute;
    top: -120px;
    left: -40%;
    width: 180%;
    height: 180px;
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .65),
            transparent);
    transform: rotate(-6deg);
    pointer-events: none;
}

/*=====================================================
FORM HEADER
======================================================*/

.hero-form .form-top {
    text-align: center;
    margin-bottom: 34px;

}

.hero-form .section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    border-radius: 100px;
    background:
        rgba(37, 99, 235, .08);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-form h3 {
    margin-bottom: 12px;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1px;
    color: var(--dark);
}

.hero-form p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-600);
}

/*=====================================================
INPUT GROUP
======================================================*/

.hero-form .input-group {
    position: relative;
    margin-bottom: 18px;
    align-items: center;
}

.hero-form .input-group-text {

    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-right: none;
    border-radius: 18px 0 0 18px;
    font-size: 18px;
    color: var(--primary);
    transition: .35s;
    box-shadow: none;
}

/*=====================================================
INPUTS
======================================================*/

.hero-form .form-control,
.hero-form .form-select {
    height: 60px;
    border: 1px solid var(--gray-200);
    border-left: none;
    border-radius: 0 18px 18px 0;
    background: #fff;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    padding-left: 18px;
    padding-right: 18px;
    transition: .35s;
    box-shadow: none;
}

/*=====================================================
PLACEHOLDER
======================================================*/

.hero-form .form-control::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

/*=====================================================
SELECT
======================================================*/

.hero-form .form-select {
    cursor: pointer;
}

/*=====================================================
FOCUS
======================================================*/

.hero-form .input-group:focus-within .input-group-text {
    background: rgba(37, 99, 235, .06);
    border-color: var(--primary);
    color: var(--primary);
}

.hero-form .input-group:focus-within .form-control,
.hero-form .input-group:focus-within .form-select {
    border-color: var(--primary);
    box-shadow:
        0 0 0 5px rgba(37, 99, 235, .08);
}

/*=====================================================
ROW
======================================================*/

.hero-form .row {
    margin-left: -8px;
    margin-right: -8px;
}

.hero-form .row>* {
    padding-left: 8px;
    padding-right: 8px;
}

/*=====================================================
HALF WIDTH SELECTS
======================================================*/

.hero-form .row .form-select {
    height: 58px;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    padding-left: 16px;
}

/*=====================================================
EDUCATION LOAN
======================================================*/

.hero-form>.mb-4 .form-select {
    height: 60px;
    border-radius: 18px;
    border: 1px solid var(--gray-200);
    padding-left: 18px;
}

/*=====================================================
HOVER EFFECT
======================================================*/

.hero-form .form-control:hover,
.hero-form .form-select:hover {
    border-color: #cbd5e1;
}

/*=====================================================
AUTOFILL FIX
======================================================*/

.hero-form input:-webkit-autofill {
    -webkit-box-shadow:
        0 0 0 1000px #fff inset;
    -webkit-text-fill-color: #0f172a;
    transition: background-color 9999s;
}

/*=====================================================
BUTTONS
======================================================*/

.hero-form-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 10px;
    margin-bottom: 24px;
}

.hero-submit-btn,
.hero-whatsapp-btn {

    position: relative;
    overflow: hidden;

    height: 62px;

    border: none;

    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    font-size: 16px;
    font-weight: 700;

    transition: .4s;

    cursor: pointer;

}

/*=====================================================
SUBMIT BUTTON
======================================================*/

.hero-submit-btn {

    color: #fff;

    background:
        linear-gradient(135deg,
            #2563eb,
            #0ea5e9,
            #06b6d4);

    background-size: 200%;

    box-shadow:
        0 18px 40px rgba(37, 99, 235, .28);

}

.hero-submit-btn:hover {

    transform:
        translateY(-5px);

    background-position: right center;

    box-shadow:
        0 28px 55px rgba(37, 99, 235, .35);

}

.hero-submit-btn:active {

    transform:
        scale(.98);

}

/*=====================================================
WHATSAPP
======================================================*/

.hero-whatsapp-btn {

    color: #fff;

    background:
        linear-gradient(135deg,
            #25D366,
            #1EBE5D);

    box-shadow:
        0 18px 40px rgba(37, 211, 102, .22);

}

.hero-whatsapp-btn:hover {

    color: #fff;

    transform:
        translateY(-5px);

    box-shadow:
        0 28px 55px rgba(37, 211, 102, .32);

}

/*=====================================================
BUTTON SHINE
======================================================*/

.hero-submit-btn::before,
.hero-whatsapp-btn::before {

    content: '';

    position: absolute;

    top: 0;

    left: -120%;

    width: 70%;

    height: 100%;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .45),
            transparent);

    transform: skewX(-25deg);

    transition: .8s;

}

.hero-submit-btn:hover::before,
.hero-whatsapp-btn:hover::before {

    left: 150%;

}

/*=====================================================
ICONS
======================================================*/

.hero-submit-btn i,
.hero-whatsapp-btn i {

    font-size: 18px;

    transition: .35s;

}

.hero-submit-btn:hover i,
.hero-whatsapp-btn:hover i {

    transform: translateX(4px);

}

/*=====================================================
SECURE NOTE
======================================================*/

.secure-note {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    margin-top: 5px;

    padding: 14px 18px;

    border-radius: 16px;

    background:
        rgba(37, 99, 235, .05);

    border: 1px solid rgba(37, 99, 235, .08);

    font-size: 14px;

    font-weight: 600;

    color: #475569;

}

.secure-note i {

    color: #10b981;

    font-size: 17px;

}

/*=====================================================
FORM FLOAT
======================================================*/

.hero-form {

    animation:
        heroFloat 7s ease-in-out infinite;

}

@keyframes heroFloat {

    0%, 100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-10px);

    }

}

/*=====================================================
SCROLL INDICATOR
======================================================*/

.scroll-down {

    position: absolute;

    left: 50%;

    bottom: 30px;

    transform: translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;

    z-index: 30;

    animation:
        fadeScroll 2s infinite;

}

.scroll-down span {

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: #64748b;

}

.scroll-down i {

    font-size: 22px;

    color: var(--primary);

    animation:
        arrowMove 2s infinite;

}

/*=====================================================
ANIMATIONS
======================================================*/

@keyframes arrowMove {

    0%, 100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(10px);

    }

}

@keyframes fadeScroll {

    0%, 100% {

        opacity: 1;

    }

    50% {

        opacity: .55;

    }

}

/*=====================================================
HOVER EFFECTS
======================================================*/

.hero-form .form-control,
.hero-form .form-select,
.hero-submit-btn,
.hero-whatsapp-btn {

    will-change:
        transform;

}

.hero-form:hover {

    transform:
        translateY(-10px);

}

/*=====================================================
RESPONSIVE
======================================================*/

@media(max-width:1199px) {

    .hero-row {

        min-height: auto;

        padding: 40px 0;

    }

    .hero-right {

        min-height: auto;

        margin-top: 40px;

    }

    .hero-form {

        max-width: 100%;

    }

}

@media(max-width:991px) {

    .hero-section {

        padding: 80px 0 70px;

        text-align: center;

    }

    .hero-content {

        margin: 0 auto;

    }

    .hero-description {

        margin-inline: auto;

    }

    .hero-buttons {

        justify-content: center;

    }

    .hero-right {

        margin-top: 60px;

    }

    .hero-form {

        max-width: 620px;

    }

    .scroll-down {

        display: none;

    }

}

@media(max-width:768px) {

    .hero-title {

        font-size: 44px;

        line-height: 1.15;

    }

    .hero-description {

        font-size: 17px;

    }

    .hero-form {

        padding: 28px;

    }

    .hero-form-buttons {

        grid-template-columns: 1fr;

    }

    .hero-submit-btn,
    .hero-whatsapp-btn {

        height: 58px;

    }

    .hero-buttons {

        flex-direction: column;

    }

    .hero-buttons .btn {

        width: 100%;

    }

}

@media(max-width:576px) {

    .hero-section {

        padding: 70px 0 60px;

    }

    .hero-title {

        font-size: 36px;

        letter-spacing: -1px;

    }

    .hero-description {

        font-size: 16px;

        line-height: 1.8;

    }

    .hero-badge {

        font-size: 13px;

        padding: 12px 18px;

    }

    .hero-form {

        padding: 22px;

        border-radius: 22px;

    }

    .hero-form h3 {

        font-size: 28px;

    }

    .hero-form .form-control,
    .hero-form .form-select {

        height: 56px;

    }

    .hero-form .input-group-text {

        width: 56px;

        height: 56px;

    }

    .secure-note {

        font-size: 13px;

        padding: 12px;

    }

}


/*=====================================================
BADGE PREMIUM
======================================================*/
.badge-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    text-transform: uppercase;
    transition: all var(--transition);
}

/*=====================================================
COUNTRY BADGE
======================================================*/

.country-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 5;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 16px;

    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);

    color: var(--gray-900);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;

    border-radius: 999px;
    box-shadow: var(--shadow-sm);
}

/* ===========================        
HOVER
=========================== */
.badge-premium:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* BADGE POPULAR ITEM */
.destination-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(18px);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

/* ==========================================================        
BUTTON SYSTEM
========================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--body-font);
    font-size: var(--fs-base);
    font-weight: var(--fw-semibold);
    border: none;
    outline: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
    border-radius: var(--radius-lg);
    padding: 0 28px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

/* ========================================= */

.btn-sm {
    height: var(--btn-sm);
}

.btn-md {
    height: var(--btn-md);
}

.btn-lg {
    height: var(--btn-lg);
}

/*=====================================================
PREMIUM BUTTON
======================================================*/

.btn-premium {
    background: var(--gradient-primary);
    color: var(--white) !important;
    font-weight: 700;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
    transition: transform var(--transition), box-shadow var(--transition),
        background var(--transition);
}

.btn-premium:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(37, 99, 235, 0.4);
}

/*=====================================================
PREMIUM OUTLINE BUTTON
======================================================*/

.btn-outline-premium {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    transition: all var(--transition);
}

.btn-outline-premium:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/*=====================================================
PREMIUM CARD
======================================================*/
.card-premium {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    padding: var(--card-padding);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.card-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

/* ===========================        
HEADER
=========================== */
.card-header {
    padding: 0;
    background: none;
    border: none;
    margin-bottom: 24px;
}

.card-body {
    flex: 1;
    padding: 0;
}

.card-footer {
    background: none;
    border: none;
    padding: 0;
    margin-top: 30px;
}

.service-card {
    background: #fff;
    border-radius: 28px;
    padding: 40px 30px;
    border: 1px solid rgba(37, 99, 235, 0.08);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(37, 99, 235, 0.12);
    border-color: #2563eb;
}

.service-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2563eb, #06b6d4);
    transform: scaleX(0);
    transition: 0.4s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 78px;
    height: 78px;
    border-radius: 22px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    margin-bottom: 28px;
    transition: 0.4s;
}

.service-card:hover .service-icon {
    transform: rotate(-10deg) scale(1.08);
}

.service-card .icon-box {
    margin: 0 auto 25px;
}

.service-card h4 {
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 25px;
}

/*=====================================================
UNIVERSITIES SECTION
======================================================*/

.universities-section {
    position: relative;
    overflow: hidden;
}

/*=====================================================
UNIVERSITY STATS
======================================================*/

.university-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin: 55px 0 70px;
}

.uni-stat {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px;
    background: #fff;
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
    transition: 0.35s;
}

.uni-stat:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.16);
}

.uni-stat i {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: #fff;
    font-size: 24px;
}

.uni-stat h3 {
    margin: 0;
    font-size: 30px;
    font-weight: 800;
    color: var(--heading-color);
}

.uni-stat p {
    margin: 0;
    color: #6b7280;
}

/*=====================================================
FEATURED UNIVERSITY
======================================================*/

.featured-university {
    position: relative;
    overflow: hidden;
    min-height: 580px;
    border-radius: 34px;
    margin-bottom: 60px;
    box-shadow: 0 35px 80px rgba(15, 23, 42, 0.18);
}

.featured-university-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1.2s;
}

.featured-university:hover .featured-university-bg {
    transform: scale(1.08);
}

.featured-university-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(2, 6, 23, 0.92),
            rgba(2, 6, 23, 0.6),
            rgba(2, 6, 23, 0.15));
}

.featured-university-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 580px;
    padding: 70px;
    color: #fff;
}

.featured-university-left {
    max-width: 620px;
}

.featured-university-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    margin-bottom: 25px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(16px);
    font-weight: 600;
}

.featured-flag {
    width: 74px;
    height: 74px;
    margin-bottom: 22px;
}

.featured-flag img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.featured-university-left h2 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 18px;
}

.featured-university-left p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.university-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.university-tags span {
    padding: 10px 18px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    font-size: 14px;
    font-weight: 600;
}

.featured-university-right {
    width: 330px;
}

.university-info-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
    margin-bottom: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
}

.university-info-card i {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #2563eb;
    font-size: 22px;
}

.university-info-card strong {
    display: block;
    font-size: 22px;
    color: #fff;
}

.university-info-card span {
    color: rgba(255, 255, 255, 0.82);
}

/*=====================================================
UNIVERSITY CARDS
======================================================*/

.university-card-premium {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border-radius: 26px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    transition: 0.4s;
}

.university-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 70px rgba(37, 99, 235, 0.18);
}

.university-image {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.university-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

.university-card-premium:hover .university-image img {
    transform: scale(1.1);
}

.university-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 20px;
    transition: 0.35s;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.university-card:hover {
    transform: translateY(-10px);
}

.university-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.best-match {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #f59e0b;
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

.progress {
    height: 10px;
    border-radius: 50px;
}

.progress-bar {
    border-radius: 50px;
}

.university-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.65), transparent);
}

.qs-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    padding: 10px 16px;
    border-radius: 100px;
    background: #2563eb;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.country-flag {
    position: absolute;
    left: 25px;
    bottom: -28px;
    z-index: 2;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    background: #fff;
}

.country-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.university-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 42px 28px 28px;
}

.country-name {
    color: #2563eb;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.university-body h4 {
    margin: 10px 0;
    font-size: 26px;
    font-weight: 700;
    color: var(--heading-color);
}

.university-body p {
    margin-bottom: 18px;
    color: #6b7280;
}

.course-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.course-tags span {
    padding: 8px 14px;
    border-radius: 100px;
    background: #eef4ff;
    color: #2563eb;
    font-size: 13px;
    font-weight: 600;
}

.university-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.university-stats-row div {
    text-align: center;
    padding: 15px;
    border-radius: 16px;
    background: #f8fafc;
}

.university-stats-row strong {
    display: block;
    font-size: 18px;
    color: #111827;
}

.university-stats-row small {
    color: #6b7280;
}

.explore-university {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding: 15px;
    border-radius: 14px;
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: 0.35s;
}

.explore-university i {
    transition: 0.35s;
}

.explore-university:hover {
    color: #fff;
}

.explore-university:hover i {
    transform: translateX(6px);
}

/*=====================================================   
LOAN CHECKER SECTION
======================================================*/

.loan-checker-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: var(--white);
    padding: 50px 0;
}

.loan-checker-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    top: -220px;
    right: -180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    filter: blur(100px);
}

.loan-checker-section::after {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    bottom: -200px;
    left: -180px;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.12);
    filter: blur(100px);
}

.loan-checker-section .container {
    position: relative;
    z-index: 2;
}

.loan-benefits {
    list-style: none;
    padding: 0;
    margin: 35px 0 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.loan-benefits li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
}

.loan-benefits li i {
    color: #10b981;
    font-size: 20px;
}

.loan-calculator-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border-radius: 30px;
    padding: 40px;
    border: 1px solid rgba(37, 99, 235, 0.08);
    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.1);
    transition: all 0.4s ease;
}

.loan-calculator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #2563eb, #06b6d4);
}

.loan-calculator-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 90px rgba(37, 99, 235, 0.16);
}

.loan-calculator-card label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
}

.loan-calculator-card .form-control,
.loan-calculator-card .form-select {
    width: 100%;
    height: 58px;
    padding: 0 18px;
    font-size: 15px;
    color: #0f172a;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: none;
}

.loan-calculator-card .form-control:hover,
.loan-calculator-card .form-select:hover {
    border-color: #cbd5e1;
}

.loan-calculator-card .form-control:focus,
.loan-calculator-card .form-select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
    outline: none;
}

.loan-calculator-card .btn-premium {
    width: 100%;
    height: 60px;
    margin-top: 10px;
    border-radius: 18px;
    font-size: 18px;
    font-weight: 700;
}

.loan-result-card {
    margin-top: 25px;
    background: #ffffff;
    border-radius: 22px;
    padding: 28px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 15px 45px rgba(15, 23, 42, 0.08);
}

.loan-result-card h3 {
    font-size: 28px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 8px;
}

.loan-result-card p {
    margin: 0;
    color: #64748b;
}

.loan-disclaimer {
    margin-top: 25px;
    padding: 18px 22px;
    border-radius: 16px;
    background: #fff8e6;
    border-left: 5px solid #ffc107;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.8;
}

.loan-result-card {
    transition: 0.5s;
}

.loan-result-card.show {
    animation: resultAnimation 0.7s ease;
}

.score-green {
    color: #16a34a !important;
}

.score-orange {
    color: #f59e0b !important;
}

.score-red {
    color: #ef4444 !important;
}

.success-card {
    border: 2px solid #22c55e;
}

.warning-card {
    border: 2px solid #f59e0b;
}

.danger-card {
    border: 2px solid #ef4444;
}

/*=====================================================
DESTINATION CONTENT
======================================================*/

.destination-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    margin-top: auto;
    padding: 35px;
    color: #fff;
}

/*=====================================================
COUNTRY FLAG
======================================================*/

.country-flag {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.country-flag img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 50%;
}

/*=====================================================
CARD HOVER
======================================================*/

.country-name {
    transition: 0.35s ease;
}

.destination-card:hover .country-name {
    transform: translateY(-4px);
}

.destination-card .btn-premium {
    transition: 0.35s ease;
}

.destination-card:hover .btn-premium {
    transform: translateY(-3px);
}

/*=====================================================
TYPOGRAPHY
======================================================*/

.country-subtitle {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.country-title {
    margin-bottom: 15px;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
}

.country-description {
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/*=====================================================
FEATURED COUNTRY
======================================================*/

.featured-country {
    position: relative;
    grid-column: span 2;
    min-height: 640px;
    overflow: hidden;
    border-radius: 32px;
}

.featured-country::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(15, 23, 42, 0.08) 0%,
            rgba(15, 23, 42, 0.35) 40%,
            rgba(15, 23, 42, 0.92) 100%);
}

.featured-country:hover {
    transform: translateY(-12px);
    box-shadow: 0 45px 100px rgba(15, 23, 42, 0.25);
}

.featured-country .destination-image {
    transition: transform 1.2s ease;
}

.featured-country:hover .destination-image {
    transform: scale(1.1);
}

.destination-badge i {
    color: #ffd54f;
}

/*=====================================================
TOP UNIVERSITIES
======================================================*/

.top-universities {
    margin: 10px 0 25px;
}

.top-universities h6 {
    margin-bottom: 14px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
}

.university-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    backdrop-filter: blur(18px);
}

.university-list span,
.mini-universities span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 40px;
    backdrop-filter: blur(18px);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.university-list img,
.mini-universities img {
    width: 24px;
    height: 24px;
    padding: 2px;
    background: #fff;
    border-radius: 50%;
    object-fit: contain;
}

.mini-universities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

/*=====================================================
COUNTRY HIGHLIGHTS
======================================================*/

.country-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 25px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    backdrop-filter: blur(18px);
}

.highlight-item i {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #fff;
    color: var(--primary);
    border-radius: 50%;
    font-size: 18px;
}

.highlight-item strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.highlight-item span {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

/*=====================================================
COUNTRY LIST
======================================================*/

.country-list {
    margin: 0 0 25px;
    padding: 0;
    list-style: none;
}

.country-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.country-list i {
    font-size: 16px;
    color: #34d399;
}

/*=====================================================
DESTINATION ACTIONS
======================================================*/
.destination-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 20px;
}

.destination-footer .btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
}

.destination-arrow,
.country-link {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.destination-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.destination-card:hover .destination-arrow {
    background: #fff;
    color: var(--primary);
    transform: translateX(4px);
}

.country-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.country-link:hover i {
    transform: translateX(5px);
}

/*=====================================================
COUNTRIES SECTION
======================================================*/

.countries-section {
    position: relative;
    overflow: hidden;
}

/*=====================================================
TOP STATS
======================================================*/

.countries-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
    margin: 55px 0 70px;
    align-items: center;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.06);
    transition: 0.35s;
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.18);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    color: #fff;
    font-size: 24px;
}

.stat-box h3 {
    margin: 0;
    font-size: 30px;
    font-weight: 800;
    color: var(--heading-color);
}

.stat-box p {
    margin: 0;
    color: #6b7280;
    font-weight: 500;
}

.countries-btn {
    text-align: right;
}

/*=====================================================
FEATURED CARD
======================================================*/

.featured-country-card {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    min-height: 560px;
    margin-bottom: 55px;
    box-shadow: 0 35px 80px rgba(15, 23, 42, 0.18);
}

.featured-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1.2s;
}

.featured-country-card:hover .featured-bg {
    transform: scale(1.08);
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(2, 6, 23, 0.88),
            rgba(2, 6, 23, 0.55),
            rgba(2, 6, 23, 0.18));
}

.featured-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 560px;
    padding: 70px;
    color: #fff;
}

.featured-left {
    max-width: 620px;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    padding: 12px 24px;
    border-radius: 100px;
    margin-bottom: 28px;
    font-weight: 600;
}

.country-flag-large {
    width: 72px;
    height: 72px;
    margin-bottom: 22px;
}

.country-flag-large img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.featured-left h2 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 22px;
}

.featured-left h2 span {
    display: block;
    color: #7dd3fc;
}

.featured-left p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.92);
}

.country-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.country-tags span {
    padding: 10px 18px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    font-size: 14px;
    font-weight: 600;
}

.featured-right {
    width: 330px;
}

.feature-info {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
    margin-bottom: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
}

.feature-info i {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #2563eb;
    font-size: 22px;
}

.feature-info strong {
    display: block;
    font-size: 24px;
    color: #fff;
}

.feature-info span {
    color: rgba(255, 255, 255, 0.8);
}

/*=====================================================
COUNTRY GRID
======================================================*/

.country-card-premium {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    min-height: 430px;
    height: 100%;
    background: #fff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    transition: 0.45s;
}

.country-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 70px rgba(37, 99, 235, 0.2);
}

.country-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

.country-card-premium:hover .country-bg {
    transform: scale(1.12);
}

.country-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(3, 7, 18, 0.08) 0%,
            rgba(3, 7, 18, 0.45) 40%,
            rgba(3, 7, 18, 0.92) 100%);
    transition: 0.4s;
}

.country-card-premium:hover .country-overlay {
    background: linear-gradient(180deg,
            rgba(37, 99, 235, 0.15) 0%,
            rgba(37, 99, 235, 0.45) 40%,
            rgba(2, 6, 23, 0.94) 100%);
}

.country-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    color: #fff;
}

.country-flag {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.9);
    margin-bottom: 18px;
    transition: 0.4s;
}

.country-card-premium:hover .country-flag {
    transform: scale(1.1) rotate(8deg);
}

.country-label {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #cbd5e1;
}

.country-content h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #fff;
}

.country-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.country-features span {
    padding: 8px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.country-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 18px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    color: #2563eb;
    background: #fff;
    transition: 0.35s;
}

.country-card-premium {
    animation: floatCard 6s ease-in-out infinite;
}

.country-card-premium:nth-child(2) {
    animation-delay: 0.4s;
}

.country-card-premium:nth-child(3) {
    animation-delay: 0.8s;
}

.country-card-premium:nth-child(4) {
    animation-delay: 1.2s;
}

.country-btn i {
    transition: 0.35s;
}

.country-btn:hover {
    background: #2563eb;
    color: #fff;
}

.country-btn:hover i {
    transform: translateX(6px);
}

/*=====================================================
COUNTRIES CTA
======================================================*/

.countries-cta {
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    padding: 60px;
    color: #fff;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary), #1d4ed8);
}

.countries-cta::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.countries-cta-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.countries-cta h2 {
    margin-bottom: 15px;
    font-size: 42px;
    font-weight: 800;
}

.countries-cta p {
    margin-bottom: 30px;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

/*=====================================================
DESTINATION CARD SHINE
======================================================*/

.destination-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 50%;
    height: 100%;
    z-index: 3;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.25),
            transparent);
    transform: skewX(-25deg);
    transition: 0.8s;
}

.destination-card:hover::before {
    left: 150%;
}

/*=====================================================
CONTACT SECTION
======================================================*/

.contact-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
}

.contact-section h2,
.contact-section p,
.contact-section ul li {
    color: #fff;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -250px;
    right: -220px;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    filter: blur(120px);
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -180px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.15);
    filter: blur(120px);
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-info-card {
    height: 100%;
    padding: 45px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
    transition: 0.35s;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: #fff;
    font-size: 22px;
}

.contact-section .card-premium {
    position: relative;
    overflow: hidden;
    padding: 45px;
    background: #fff;
    border: 1px solid rgba(37, 99, 235, 0.08);
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.08);
    transition: 0.4s ease;
}

.contact-section .card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2563eb, #06b6d4);
}

.contact-section .card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 90px rgba(37, 99, 235, 0.15);
}

/*=====================================================
WHATSAPP FORM
======================================================*/

.whatsapp-form .form-label {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
}

.whatsapp-form .form-control,
.whatsapp-form .form-select {
    width: 100%;
    height: 58px;
    padding: 0 18px;
    font-size: 15px;
    color: #0f172a;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: none;
    transition: 0.3s ease;
}

.whatsapp-form .form-control::placeholder,
.whatsapp-form .form-select::placeholder {
    color: #94a3b8;
}

.whatsapp-form .form-control:hover,
.whatsapp-form .form-select:hover {
    background: #fff;
    border-color: #cbd5e1;
}

.whatsapp-form .form-control:focus,
.whatsapp-form .form-select:focus {
    outline: none;
    background: #fff;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.whatsapp-form .form-textarea {
    min-height: 170px;
    padding: 18px;
    resize: none;
}

.whatsapp-form .btn-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: 0.35s ease;
}

.whatsapp-form .btn-premium:hover {
    transform: translateY(-3px);
}

/*=====================================================
MODAL
======================================================*/

.modal-premium {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background: rgba(8, 28, 58, 0.65);
    backdrop-filter: blur(8px);
    z-index: var(--z-modal);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.modal-premium.show {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.modal-dialog {
    position: relative;
    width: 100%;
    max-width: 700px;
    animation: modalZoom 0.35s ease;
}

.modal-content {
    position: relative;
    overflow: hidden;
    background: var(--white);
    border: none;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 30px;
    border-bottom: 1px solid var(--gray-200);
}

.modal-title {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
}

.modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: var(--gray-100);
    color: var(--gray-700);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition);
}

.modal-close:hover {
    background: var(--primary);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
}

.modal-body p:last-child {
    margin-bottom: 0;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    padding: 25px 30px;
    border-top: 1px solid var(--gray-200);
}

.modal-apply .modal-header,
.modal-smart-match .modal-header {
    background: var(--gradient-primary);
    color: var(--white);
}

.modal-smart-match .modal-body {
    padding: 40px;
}

/*=====================================================
PREMIUM CTA
======================================================*/

.premium-cta {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    color: #fff;
    z-index: 1;
    background: linear-gradient(135deg,
            var(--primary),
            var(--primary-dark),
            #0f172a);
}

.premium-cta::before {
    content: '';
    position: absolute;
    top: -250px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(80px);
}

.premium-cta::after {
    content: '';
    position: absolute;
    bottom: -220px;
    left: -150px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    filter: blur(70px);
}

/*=====================================================
CTA STATS
======================================================*/

.cta-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.stat-card {
    padding: 28px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: 0.35s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.stat-card h3 {
    margin-bottom: 8px;
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.stat-card span {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/*=====================================================
CTA BUTTONS
======================================================*/

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.cta-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 58px;
    font-weight: 700;
    border-radius: 16px;
    transition: 0.35s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-5px);
}

/*=====================================================
CTA IMAGE
======================================================*/

.cta-image-wrapper {
    position: relative;
    text-align: center;
}

.cta-image-wrapper img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 480px;
    border-radius: 30px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
}

/*=====================================================
SECTION BACKGROUNDS
======================================================*/

.services-section,
.impact-section {
    background: #f8fafc;
}

.why-section {
    background: linear-gradient(180deg, #eff6ff, #dbeafe);
}

.journey-section,
.scholarship-section {
    background: #fff;
}

/*=====================================================
SERVICES
======================================================*/

.services-section .row.g-4>[class*='col-'] {
    display: flex;
}

.service-link {
    display: flex;
    width: 100%;
    color: inherit;
    text-decoration: none;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 38px 30px;
    border: 1px solid rgba(37, 99, 235, 0.08);
    border-radius: 28px;
    background: #fff;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 28px;
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.4s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.18);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 78px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    margin-bottom: 28px;
    font-size: 30px;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.3);
    transition: 0.4s;
}

.service-card:hover .service-icon {
    transform: rotate(-8deg) scale(1.08);
}

.service-badge {
    position: absolute;
    top: 22px;
    right: 22px;
    padding: 6px 14px;
    border-radius: 50px;
    background: #eef4ff;
    color: #2563eb;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.service-card h4 {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
}

.service-card p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
    min-height: 90px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--gray-700);
    font-size: 15px;
}

.service-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    flex-shrink: 0;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-weight: 600;
    color: var(--primary);
}

.service-arrow {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8fafc;
    transition: 0.4s;
}

.service-card:hover .service-arrow {
    background: var(--primary);
    color: #fff;
    transform: translateX(6px);
}

/*=====================================================
TRUSTED SECTION
======================================================*/

.trusted-section {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.trusted-section::before {
    content: '';
    position: absolute;
    top: -250px;
    right: -180px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.05);
    filter: blur(90px);
}

.logo-slider {
    position: relative;
    overflow: hidden;
}

.logo-track {
    display: flex;
    gap: 35px;
    animation: scrollLogo 35s linear infinite;
}

.partnerSwiper,
.universitySwiper {
    padding: 10px 0;
}

.logo-item {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 22px;
    transition: 0.35s;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.logo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.logo-item img {
    max-width: 150px;
    max-height: 70px;
    object-fit: contain;
    transition: 0.35s;
}

.logo-item:hover img {
    transform: scale(1.08);
}

/*=====================================================
FORM
======================================================*/

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/*=====================================================
SUCCESS STORIES
======================================================*/

.story-card {
    padding: 0;
}

.story-image {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition);
}

.story-card:hover .story-image img {
    transform: scale(1.06);
}

.story-image .play-button {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin: auto;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.story-card:hover .play-button {
    transform: scale(1.1);
}

.story-image .country-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    padding: 5px 14px;
    background: rgba(15, 23, 42, 0.75);
    color: var(--white);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.story-content {
    padding: 25px 30px 30px;
}

.story-content h4 {
    margin-bottom: 4px;
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
}

.story-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
    color: var(--gray-600);
}

.stars i {
    margin-right: 2px;
    font-size: 14px;
    color: #fbbf24;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    color: var(--primary);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.read-more-link:hover i {
    transform: translateX(4px);
    transition: transform 0.2s ease;
}

/*=====================================================
STUDENT REVIEWS
======================================================*/

.review-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    padding: 32px;
    background: #fff;
    border: 1px solid rgba(37, 99, 235, 0.08);
    border-radius: 28px;
    box-shadow: 0 15px 45px rgba(15, 23, 42, 0.06);
    transition: all 0.4s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: rgba(37, 99, 235, 0.18);
    box-shadow: 0 30px 70px rgba(37, 99, 235, 0.14);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2563eb, #06b6d4);
    transform: scaleX(0);
    transition: 0.4s;
}

.review-card:hover::before {
    transform: scaleX(1);
}

.review-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.review-top img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border: 4px solid #eff6ff;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    transition: 0.4s ease;
}

.review-card:hover .review-top img {
    transform: scale(1.08);
}

.review-top h5 {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}

.review-top small {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
}

.rating {
    margin: 8px 0 18px;
}

.rating i {
    margin-right: 2px;
    font-size: 17px;
    color: #fbbf24;
    transition: 0.3s ease;
}

.review-text,
.review-card p {
    flex: 1;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.8;
    color: #475569;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid #e2e8f0;
}

.review-footer span {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.review-footer i {
    font-size: 20px;
    color: #2563eb;
}

.review-card:hover .review-footer span {
    background: #2563eb;
    color: #fff;
}

.review-card:hover .rating i {
    transform: scale(1.08);
}

/*=====================================================
AI FINDER
======================================================*/

.finder-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.finder-item {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-900);
}

.finder-card label {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
}

.finder-card .form-control,
.finder-card .form-select {
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    background: var(--gray-50);
}

.finder-card .form-control:focus,
.finder-card .form-select:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.finder-toolbar {
    background: #fff;
    padding: 24px;
    border-radius: 20px;

    box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
    margin-bottom: 35px;
}

.results-counter {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.results-counter span {
    font-size: 34px;
    color: var(--primary-color);
    margin-right: 10px;
}

.favourite-btn {
    width: 48px;
}

.compare-btn {
    white-space: nowrap;
}

/*=====================================================
SMART MATCH
======================================================*/

.smart-match-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.match-benefits {
    margin: 0;
    padding: 0;
    list-style: none;
}

.match-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.match-benefits li i {
    color: #34d399;
}

.smart-card {
    border: none !important;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25) !important;
}

.smart-card label {
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900);
}

.smart-card h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--gray-900);
}

/* ===========================
TAB BUTTON
=========================== */

.tab-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--white);
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: var(--shadow-xs);
}

.tab-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}

.tab-btn i {
    font-size: 16px;
}

/* ===========================
TAB CONTENT
=========================== */

.tab-content {
    display: none;
    animation: tabFade 0.4s ease;
}

.tab-content.active {
    display: block;
}

.tab-pane {
    width: 100%;
}

/*=====================================================
FAQ SECTION
======================================================*/

.tab-btn:hover i {
    transform: translateY(-2px);
}

.faq-section {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    background: linear-gradient(180deg, #f8fbff 0%, var(--white) 100%);
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -220px;
    right: -180px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.05);
    filter: blur(100px);
}

.faq-section .container {
    position: relative;
    z-index: 2;
}

/*=====================================================
ACCORDION
======================================================*/
.accordion-premium {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-item {
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(37, 99, 235, 0.08);
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.05);
    transition: all var(--transition);
}

.accordion-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(37, 99, 235, 0.1);
}

.accordion-item.active {
    border-color: var(--primary);
    box-shadow: 0 28px 65px rgba(37, 99, 235, 0.14);
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 24px 30px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--dark);
    font-size: 18px;
    font-weight: 600;
    transition: color var(--transition);
}

.accordion-button:hover {
    color: var(--primary);
}

.faq-question {
    display: flex;
    align-items: center;
    flex: 1;
}

.faq-number {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    margin-right: 16px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    font-size: 15px;
    font-weight: 700;
    transition: all var(--transition);
}

.accordion-item.active .faq-number {
    background: var(--primary);
    color: var(--white);
}

.accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    font-size: 16px;
    transition: all var(--transition);
}

.accordion-item.active .accordion-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: rotate(180deg);
}

.accordion-collapse {
    display: none;
    overflow: hidden;
}

.accordion-item.active .accordion-button {
    color: var(--primary-color);
}

.accordion-button {
    cursor: pointer;
}

.accordion-item.active .accordion-collapse {
    display: block;
}

.accordion-body {
    padding: 0 30px 30px 88px;
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.8;
}

/*=====================================================
FORM VALIDATION
======================================================*/

.is-valid {
    border-color: #10b981 !important;
}

.is-invalid {
    border-color: #ef4444 !important;
}

.invalid-feedback {
    display: block;
    margin-top: 8px;
    color: #ef4444;
    font-size: 13px;
    font-weight: 500;
}

#backToTop {
    position: fixed;
    right: 25px;
    bottom: 30px;
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    color: #fff;
    font-size: 20px;
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.35);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.35s;
    z-index: 999;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    transform: translateY(-5px);
}

.whatsapp-float {
    position: fixed;
    left: 25px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #fff;
    font-size: 32px;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: 0.35s;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-6px);

    color: #fff;
}