/*
Theme Name: Starship Education
Theme URI: https://starshipeducation.com
Author: Starship Education
Author URI: https://starshipeducation.com
Description: Custom theme for Starship Education - WordPress version
Version: 1.0.0
License: GPL v2 or later
Text Domain: starship
*/

/* ============================================================
   RESET & BASE
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #f5f7fb;
}

body .navbar {
    height: 45px;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    display: flex;
    align-items: center;
    padding: 14px 30px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-bottom: 1px solid #eee;
    justify-content: flex-start;
    gap: 20px;
}

.logo img {
    max-width: 320px;
    height: auto;
    margin-left: 20px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 10px;
    border-radius: 8px;
    transition: 0.2s;
}

.nav-links a:hover {
    background: #f0f6ff;
    color: #1e4ed8;
}

/* CTA BUTTON */
.cta-btn {
    background: linear-gradient(135deg, #1e4ed8, #2563eb);
    color: white !important;
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(30,78,216,0.25);
    transition: 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(30,78,216,0.35);
    color: white !important;
}

/* ============================================================
   DROPDOWN NAVBAR
   ============================================================ */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 100;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 10px;
    border-radius: 8px;
    transition: 0.2s;
}

.dropdown > a:hover {
    background: #f0f6ff;
    color: #1e4ed8;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    padding: 8px 0;
    min-width: 190px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    pointer-events: none;
    margin-top: -5px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown:hover > a {
    background: #f0f6ff;
    border-radius: 8px;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 14px;
    color: #374151;
    text-decoration: none;
    transition: 0.2s;
}

.dropdown-menu a:hover {
    background: #f0f6ff;
    color: #1e4ed8;
    padding-left: 18px;
}

.dropdown-menu a img {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
}

/* ============================================================
   HERO
   ============================================================ */
.hero-wrapper {
    position: relative;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.55) 0%,
        rgba(255,255,255,0.40) 18%,
        rgba(255,255,255,0.25) 35%,
        rgba(255,255,255,0.15) 50%,
        rgba(255,255,255,0.08) 65%,
        rgba(255,255,255,0.03) 80%,
        rgba(255,255,255,0) 100%
    ),
    url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhjpsWHh8UGNzI-hcDtW40VxBJbAtgt1mE-4hib4aSHkVMjckN2F6dDiWdZRGU3JiRQifZbLGuENHp86oMXueyDDmUn9aRdn8vZEs8YACRoqWbLC6ufpTPm3hrkEcsBrlLbp5n73OAP7bBj_I9Qkv7RX13xeIxlhJFwjyBUVz38fY9AyM8lfIPRTBg58f8/s1672/ChatGPT%20Image%20Apr%2027,%202026,%2001_52_59%20AM.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 720px;
    overflow: hidden;
}

.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 90px 0;
    gap: 70px;
    position: relative;
    min-height: 620px;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 40%, rgba(30,78,216,0.08), transparent 40%);
    pointer-events: none;
}

.hero-left {
    position: relative;
    z-index: 2;
    max-width: 620px;
    backdrop-filter: blur(2px);
}

.hero h1 {
    font-size: clamp(38px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #0b1f4a 0%, #1e4ed8 50%, #2563eb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.5;
    font-weight: 400;
    max-width: 90%;
}

/* HERO BUTTONS */
.hero-btn-primary,
.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #1e4ed8, #2563eb);
    color: white;
    box-shadow: 0 8px 20px rgba(30, 78, 216, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(30, 78, 216, 0.4);
    color: white;
}

.hero-btn-secondary {
    background: transparent;
    color: #1e4ed8;
    border: 2px solid #1e4ed8;
}

.hero-btn-secondary:hover {
    background: rgba(30, 78, 216, 0.08);
    transform: translateY(-3px);
}

/* STATS */
.stats {
    display: flex;
    gap: 28px;
    margin-top: 28px;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
}

.stat-icon {
    width: 34px;
    height: 34px;
    background: #e8f0ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e4ed8;
}

/* MOBILE ONLY IMAGE */
.mobile-only-image {
    display: none;
    text-align: center;
    padding: 20px 16px;
}

.mobile-only-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    animation: floatImage 3s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

/* PARTNER SLIDER */
.partner-slider {
    margin-top: 40px;
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    gap: 50px;
    width: max-content;
    animation: scrollLogo 25s linear infinite;
}

.slider-track img {
    height: 38px;
    opacity: 0.75;
    filter: grayscale(100%);
    transition: 0.3s;
}

.slider-track img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes scrollLogo {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   FORM CARD
   ============================================================ */
.form-card {
    background: white;
    border-radius: 18px;
    width: 380px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,0.15);
    padding: 0;
    flex-shrink: 0;
    z-index: 2;
}

.form-header {
    background: linear-gradient(135deg, #1e4ed8, #2563eb);
    color: white;
    padding: 24px 20px;
    text-align: center;
}

.form-header h3 {
    font-size: 18px;
    margin-bottom: 6px;
    font-weight: 700;
}

.form-header p {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 10px;
}

.form-body {
    padding: 22px;
    height: 380px;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.label {
    font-size: 11px;
    color: #6b7280;
    margin-bottom: 6px;
}

.form-body h4 {
    font-size: 16px;
    margin-bottom: 14px;
}

/* STEPS */
.steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding: 0 10px;
    gap: 8px;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    margin: 0 auto 6px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.step-label {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    display: block;
}

.step-item.active .step-circle {
    background: white;
    color: #1e4ed8;
    border-color: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.step-item.active .step-label {
    color: white;
    font-weight: 600;
}

.step-item.completed .step-circle {
    background: #10b981;
    color: white;
    border-color: #10b981;
}

.step-item.completed .step-circle span {
    display: none;
}

.step-item.completed .step-circle::after {
    content: "✓";
    font-size: 16px;
}

.step-line {
    position: absolute;
    top: 18px;
    left: calc(50% + 20px);
    right: calc(-50% + 20px);
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.step-item:last-child .step-line {
    display: none;
}

/* COUNTRY GRID */
.country-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
}

.country {
    border: 1px solid #e5e7eb;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.2s;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.country:hover {
    border-color: #1e4ed8;
    background: #f0f6ff;
}

.country.active {
    border-color: #1e4ed8;
    background: #eaf1ff;
    font-weight: 600;
}

.country img {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

/* CUSTOM DROPDOWN */
.custom-select-wrapper {
    position: relative;
    margin-bottom: 14px;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
    background: #fff;
}

.selected-flag {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
}

.custom-dropdown {
    position: absolute;
    top: 110%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    display: none;
    max-height: 220px;
    overflow-y: auto;
    z-index: 99;
}

.custom-dropdown.show {
    display: block;
}

.custom-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    cursor: pointer;
}

.custom-option:hover {
    background: #f0f6ff;
}

.custom-option img {
    width: 22px;
    height: 16px;
    border-radius: 3px;
}

/* NEXT BUTTON */
.next-btn {
    width: 100%;
    padding: 14px;
    background: #1e4ed8;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.next-btn:hover {
    background: #1741b6;
}

/* FORM SECTIONS */
.form-group {
    margin-bottom: 16px;
    text-align: left;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    display: block;
    margin-bottom: 6px;
}

.form-group select,
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    background: #ffffff;
    transition: 0.2s;
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
    border-color: #1e4ed8;
    outline: none;
    box-shadow: 0 0 0 2px rgba(30,78,216,0.1);
}

.form-section {
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid #e5e7eb;
}

.form-section-title {
    font-size: 13px;
    font-weight: 700;
    color: #1e4ed8;
    margin-bottom: 10px;
}

.ielts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.ielts-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    transition: 0.2s;
}

.ielts-box:hover {
    border-color: #1e4ed8;
    box-shadow: 0 0 0 2px rgba(30,78,216,0.05);
}

.ielts-box label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 6px;
}

.ielts-box input {
    width: 100%;
    border: none;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    background: transparent;
    outline: none;
}

.ielts-overall {
    text-align: center;
    margin-top: 10px;
}

.ielts-overall label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #374151;
}

.ielts-overall input {
    width: 120px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

textarea {
    resize: vertical;
    min-height: 80px;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0b1f4a;
}

.final-message {
    background: #f0f6ff;
    border: 1px solid #dbeafe;
    padding: 14px;
    border-radius: 10px;
    font-size: 13px;
    margin-bottom: 16px;
    color: #1e3a8a;
}

/* ============================================================
   COURSE FINDER
   ============================================================ */
.course-finder-section {
    padding: 60px 0 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.course-finder-header {
    text-align: center;
    margin-bottom: 40px;
}

.course-finder-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0b1f4a;
    margin-bottom: 15px;
}

.course-finder-header p {
    font-size: 16px;
    color: #5a6475;
    max-width: 600px;
    margin: 0 auto;
}

.search-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.search-wrapper {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 28px;
    padding: 5px;
    margin-bottom: 10px;
    box-shadow: 0 15px 35px -12px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.15);
}

.search-form {
    display: flex;
    flex-direction: row;
    padding: 16px 20px;
    gap: 12px;
    background: white;
    border-radius: 24px;
}

.search-form input[type="text"],
.search-form select,
.search-form button {
    border-radius: 60px;
    border: 1.5px solid #e2e8f0;
    padding: 12px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: all 0.2s ease;
    background: #f8fafc;
}

.search-form input[type="text"] {
    flex: 2;
}

.search-form button {
    background: linear-gradient(90deg, #7c3aed, #a855f7);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    flex: 0.8;
    box-shadow: 0 4px 10px rgba(124, 58, 237, 0.25);
    transition: all 0.2s ease;
}

.search-form button:hover {
    background: linear-gradient(90deg, #6d28d9, #9333ea);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}

.course-country-wrapper {
    position: relative;
    flex: 1.5;
}

.course-country-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border: 1.5px solid #e2e8f0;
    border-radius: 60px;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.2s ease;
}

.course-country-trigger:hover {
    border-color: #a855f7;
    background: white;
}

.course-selected-flag {
    width: 24px;
    height: 18px;
    border-radius: 3px;
    object-fit: cover;
}

.course-country-trigger .dropdown-arrow {
    margin-left: auto;
    font-size: 12px;
    color: #94a3b8;
    transition: transform 0.2s ease;
}

.course-country-trigger.active .dropdown-arrow {
    transform: rotate(180deg);
}

.course-country-dropdown {
    position: absolute;
    top: 110%;
    left: 0;
    right: 0;
    background: white;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 100;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.course-country-dropdown.show {
    display: block;
}

.course-country-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.course-country-option:hover {
    background: #f0f6ff;
}

.course-country-option img {
    width: 24px;
    height: 18px;
    border-radius: 3px;
    object-fit: cover;
}

/* ============================================================
   GLOBAL EXPLORER
   ============================================================ */
.global-explorer {
    max-width: 1400px;
    margin: 40px auto;
    margin-top: 0px;
    padding: 0 24px;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.explorer-header {
    text-align: center;
    margin-bottom: 32px;
}

.explorer-header h1 {
    font-size: 2.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e3c72, #2a5298, #4b6cb7);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.3px;
    margin-bottom: 12px;
}

.explorer-header p {
    font-size: 1.1rem;
    color: #2c3e66;
    margin-top: 8px;
    opacity: 0.85;
}

.stats-badge {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 20px;
    background: white;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 12px 28px;
    border-radius: 60px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.stats-badge span {
    font-weight: 700;
    font-size: 1.2rem;
    color: #1e4b8f;
}

.stats-badge i {
    margin-right: 6px;
    color: #f1c232;
}

.search-panel {
    background: white;
    border-radius: 28px;
    padding: 24px 28px;
    margin-bottom: 30px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.search-box {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.search-field {
    flex: 1;
    position: relative;
}

.search-field i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #7f8c8d;
    font-size: 1.2rem;
}

.search-field input {
    width: 100%;
    padding: 16px 20px 16px 52px;
    border: 2px solid #e2edf2;
    border-radius: 60px;
    font-size: 1rem;
    font-weight: 500;
    outline: none;
    transition: 0.2s;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
}

.search-field input:focus {
    border-color: #2a6fdb;
    box-shadow: 0 0 0 4px rgba(42,111,219,0.15);
}

.search-btn {
    background: linear-gradient(105deg, #1e4b8f, #2a6fdb);
    border: none;
    padding: 0 36px;
    border-radius: 60px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 12px rgba(30,75,143,0.3);
    font-family: 'Inter', sans-serif;
}

.search-btn:hover {
    background: linear-gradient(105deg, #123a6b, #1e5bc0);
    transform: translateY(-2px);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    margin: 10px 6px 20px 6px;
}

.results-counter {
    background: #eef3fc;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1e3c72;
}

.universities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 26px;
    margin-bottom: 40px;
}

.university-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.25s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    cursor: pointer;
    transform: translateY(0);
    opacity: 0;
    animation: cardRise 0.4s forwards;
}

@keyframes cardRise {
    to { opacity: 1; transform: translateY(0); }
}

.university-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 28px -12px rgba(0,0,0,0.2);
}

.university-card a {
    text-decoration: none;
    display: block;
    height: 100%;
    color: inherit;
}

.card-image-container {
    height: 350px;
    overflow: hidden;
    background: #f0f3f8;
}

.card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.university-card:hover .card-image-container img {
    transform: scale(1.05);
}

.card-content {
    padding: 20px 18px 24px;
    text-align: center;
}

.card-content p {
    font-weight: 700;
    font-size: 1rem;
    color: #1f2a44;
    margin: 0;
    letter-spacing: -0.2px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 30px 0 20px;
}

.pagination-container button {
    background: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 3px 8px rgba(0,0,0,0.06);
    color: #1f2f5c;
    font-family: 'Inter', sans-serif;
}

.pagination-container button.active {
    background: linear-gradient(135deg, #1e4b8f, #2a6fdb);
    color: white;
    box-shadow: 0 6px 14px rgba(42,111,219,0.3);
}

.pagination-container button:hover:not(:disabled) {
    background: #e0edff;
    transform: scale(1.02);
}

.pagination-container button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.pagination-nav {
    width: auto !important;
    padding: 0 18px;
    font-size: 0.9rem;
}

.loading-indicator,
.no-results-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: #ffffffc9;
    border-radius: 40px;
}

.no-results-message i {
    font-size: 3rem;
    color: #9aaec0;
    margin-bottom: 15px;
}

.no-results-message h3 {
    font-size: 1.6rem;
    color: #2a405c;
    margin-bottom: 10px;
}

/* ============================================================
   SCHOLARSHIP HUB
   ============================================================ */
.scholarship-hub {
    padding: 70px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.scholarship-hub::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(30, 78, 216, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.scholarship-header {
    text-align: center;
    margin-bottom: 45px;
}

.scholarship-title {
    font-size: 34px;
    font-weight: 800;
    background: linear-gradient(135deg, #0b1f4a, #1e4ed8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
}

.scholarship-title i {
    background: none;
    -webkit-background-clip: unset;
    color: #f59e0b;
    margin-right: 10px;
}

.scholarship-subtitle {
    color: #5a6e8a;
    font-size: 17px;
    font-weight: 400;
}

.scholarship-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 30px 0 40px;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 20px 35px;
    border-radius: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(30, 78, 216, 0.1);
    transition: all 0.3s ease;
    min-width: 140px;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(30, 78, 216, 0.12);
    border-color: rgba(30, 78, 216, 0.2);
}

.stat-item i {
    font-size: 32px;
    color: #f59e0b;
    display: block;
    margin-bottom: 12px;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #0b1f4a;
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-size: 13px;
    color: #5a6e8a;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.scholarship-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 45px;
}

.scholarship-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(30, 78, 216, 0.08);
    position: relative;
}

.scholarship-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px -12px rgba(30, 78, 216, 0.2);
    border-color: rgba(30, 78, 216, 0.15);
}

.scholarship-card-content {
    padding: 22px 18px 24px;
    text-align: left;
}

.scholarship-card-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.scholarship-logo {
    width: 60px;
    height: 60px;
    background: #f8fafc;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    object-fit: contain;
    padding: 6px;
    border: 2px solid #2a6fdb;
}

.scholarship-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.scholarship-info {
    flex: 1;
}

.scholarship-name {
    font-size: 16px;
    font-weight: 700;
    color: #0b1f4a;
    margin-bottom: 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.scholarship-country-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0f6ff;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 500;
    color: #1e4ed8;
    margin-top: 4px;
}

.scholarship-country-badge img {
    width: 16px;
    height: 12px;
    border-radius: 2px;
}

.scholarship-detail {
    font-size: 13px;
    color: #4a5568;
    margin: 12px 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.scholarship-program {
    display: inline-block;
    background: #eef2ff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: #1e4ed8;
    margin-top: 8px;
}

.scholarship-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 600;
    color: #25D366;
    text-decoration: none;
    transition: all 0.2s ease;
    background: rgba(37, 211, 102, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
}

.scholarship-link:hover {
    gap: 12px;
    background: #25D366;
    color: white;
}

.scholarship-footer-btn {
    text-align: center;
    margin-top: 20px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #1e4ed8, #2563eb);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(30, 78, 216, 0.25);
    border: none;
    cursor: pointer;
}

.btn-view-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(30, 78, 216, 0.35);
    gap: 16px;
}

.loading-scholarship-card {
    text-align: center;
    padding: 60px;
    color: #1e4ed8;
}

.loading-scholarship-card i {
    font-size: 32px;
    margin-bottom: 12px;
    display: inline-block;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================================
   SCHOLARSHIP MODAL
   ============================================================ */
.scholarship-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 999999;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scholarship-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.scholarship-modal {
    background: white;
    border-radius: 28px;
    width: 90%;
    max-width: 1200px;
    max-height: 85vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.scholarship-modal-header {
    padding: 20px 28px;
    background: linear-gradient(135deg, #0b1f4a, #1e4ed8);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.scholarship-modal-header h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.scholarship-modal-header h2 i {
    margin-right: 10px;
}

.modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.scholarship-search-bar {
    padding: 20px 28px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.scholarship-search-input {
    flex: 2;
    padding: 12px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.2s ease;
}

.scholarship-search-input:focus {
    border-color: #1e4ed8;
    box-shadow: 0 0 0 3px rgba(30, 78, 216, 0.1);
}

.scholarship-filter-select {
    flex: 1;
    padding: 12px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    background: white;
    cursor: pointer;
    outline: none;
}

.scholarship-table-container {
    overflow-x: auto;
    overflow-y: auto;
    flex: 1;
    padding: 0 24px 24px 24px;
}

.scholarship-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    table-layout: auto;
    min-width: 900px;
}

.scholarship-table th,
.scholarship-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: middle;
    text-align: left;
    white-space: nowrap;
}

.scholarship-table td {
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
}

.scholarship-table th {
    background: #f1f5f9;
    font-weight: 700;
    position: sticky;
    top: 0;
    z-index: 2;
}

.scholarship-table .country-cell {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.scholarship-table .country-cell img {
    width: 22px;
    height: 16px;
    border-radius: 3px;
    flex-shrink: 0;
}

.scholarship-table .apply-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #25D366;
    font-weight: 600;
    text-decoration: none;
    padding: 6px 12px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 20px;
    transition: all 0.2s ease;
    font-size: 12px;
    white-space: nowrap;
}

.scholarship-table .apply-link:hover {
    background: #25D366;
    color: white;
    transform: translateY(-2px);
}

.scholarship-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px 24px;
    border-top: 1px solid #e2e8f0;
    background: white;
}

.scholarship-pagination button {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 8px 14px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
    color: #1e293b;
}

.scholarship-pagination button:hover:not(:disabled) {
    background: #1e4ed8;
    color: white;
    border-color: #1e4ed8;
}

.scholarship-pagination button.active {
    background: #1e4ed8;
    color: white;
    border-color: #1e4ed8;
}

.scholarship-pagination button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ============================================================
   WHY STARSHIP
   ============================================================ */
.why-starship {
    padding: 80px 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-main {
    font-size: 32px;
    font-weight: 700;
    color: #0b1f4a;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title-main::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #1e4ed8, #2563eb);
    border-radius: 3px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid #f0f2f5;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(30, 78, 216, 0.1);
    border-color: rgba(30, 78, 216, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #eef2ff, #e0e8ff);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 32px;
    color: #1e4ed8;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #1e4ed8, #2563eb);
    transform: scale(1.05);
}

.feature-card:hover .feature-icon i {
    color: white;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #0b1f4a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.feature-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.starship-testimonial-root {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    background: #ffffff;
    text-align: center;
    padding: 60px 20px 50px;
    margin: 0 auto;
}

.testimony-title {
    font-size: 32px;
    margin-bottom: 15px;
    color: #0b1f4a;
}

.testimony-title span {
    background: linear-gradient(135deg, #1e4ed8, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.testimony-subtitle {
    color: #5a6475;
    margin-bottom: 40px;
    font-size: 16px;
}

.testimony-slider-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimony-cards {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

.testimony-card {
    min-width: 280px;
    background: white;
    border-radius: 24px;
    padding: 24px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border: 1px solid #eef2ff;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.testimony-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(30,78,216,0.12);
    border-color: rgba(30,78,216,0.2);
}

.avatar-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #1e4ed8;
    overflow: hidden;
    margin-bottom: 15px;
    background: #f0f6ff;
}

.testimony-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimony-profile-name {
    font-size: 18px;
    font-weight: 700;
    color: #0b1f4a;
    text-align: center;
    margin-top: 5px;
}

.testimony-country-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f0f6ff;
    padding: 5px 15px;
    border-radius: 30px;
    margin: 12px auto;
    width: fit-content;
}

.testimony-flag-icon {
    width: 22px;
    height: 16px;
    border-radius: 3px;
}

.testimony-profile-country {
    font-size: 13px;
    font-weight: 500;
    color: #1e4ed8;
}

.testimony-rating {
    margin: 8px 0;
}

.testimony-rating i {
    color: #fbbf24;
    font-size: 14px;
    margin: 0 1px;
}

.testimony-text {
    font-size: 14px;
    line-height: 1.5;
    color: #4b5563;
    text-align: center;
    font-style: italic;
    max-width: 220px;
    width: 100%;
    margin: 12px auto 0;
}

.testimony-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: #1e4ed8;
    border: 1px solid #e5e7eb;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.testimony-nav:hover {
    background: #1e4ed8;
    color: white;
    border-color: #1e4ed8;
}

.testimony-nav-prev {
    left: -15px;
}

.testimony-nav-next {
    right: -15px;
}

.testimony-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimony-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.2s ease;
}

.testimony-dot.active {
    width: 28px;
    border-radius: 5px;
    background: #1e4ed8;
}

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog-section {
    background: #f5f7fb;
    padding: 20px 0 40px;
    font-family: 'Inter', sans-serif;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 35px;
    gap: 15px;
    flex-wrap: wrap;
}

.blog-header h2 {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 4px;
    color: #111827;
}

.blog-header p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
    max-width: 550px;
}

.blog-viewall {
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    color: #2563eb;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
    white-space: nowrap;
}

.blog-viewall:hover {
    gap: 12px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.blog-thumb {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.blog-content {
    padding: 16px 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
    background: #eff6ff;
    color: #1e4ed8;
    width: fit-content;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.blog-title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    line-height: 1.4;
    margin: 0 0 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-readmore {
    font-size: 13px;
    font-weight: 600;
    color: #2563eb;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    transition: gap 0.2s;
}

.blog-card:hover .blog-readmore {
    gap: 12px;
}

.blog-readmore i {
    font-size: 12px;
}

.blog-loading {
    font-size: 14px;
    color: #6b7280;
    text-align: center;
    padding: 40px 0;
    grid-column: 1 / -1;
    display: none;
}

.blog-loading.visible {
    display: block;
}

/* ============================================================
   FOOTER MODERN
   ============================================================ */
.footer-modern {
    background: #0a0f2a;
    color: #ffffff;
    padding: 60px 0 20px;
    font-family: 'Inter', sans-serif;
    clear: both;
    position: relative;
    z-index: 1;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    color: #ffffff;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #1e4ed8, #2563eb);
    border-radius: 3px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b3c5;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #1e4ed8, #2563eb);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b3c5;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 12px;
    color: #1e4ed8;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact-info {
    list-style: none;
    padding: 0;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #b0b3c5;
}

.footer-contact-info li i {
    color: #1e4ed8;
    font-size: 16px;
    margin-top: 2px;
}

.footer-contact-info a {
    color: #b0b3c5;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-info a:hover {
    color: white;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-input-group {
    display: flex;
    background: rgba(255,255,255,0.08);
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.newsletter-input-group input {
    flex: 1;
    padding: 12px 18px;
    background: transparent;
    border: none;
    color: white;
    font-size: 13px;
    outline: none;
}

.newsletter-input-group input::placeholder {
    color: #8a8da3;
}

.newsletter-input-group button {
    background: linear-gradient(135deg, #1e4ed8, #2563eb);
    border: none;
    padding: 0 20px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.newsletter-input-group button:hover {
    opacity: 0.9;
}

.newsletter-note {
    font-size: 11px;
    color: #8a8da3;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 25px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 13px;
    color: #8a8da3;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: #8a8da3;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: white;
}

.footer-logo-img {
    max-width: 200px;
    height: auto;
    margin-bottom: 15px;
}

/* ============================================================
   WHATSAPP FLOATING
   ============================================================ */
.wa-floating-container {
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 1000;
}

.wa-floating-btn {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.wa-floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.wa-consultants-container {
    position: absolute;
    bottom: 85px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.wa-consultants-container.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.wa-consultant {
    display: flex;
    align-items: center;
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateX(20px);
    opacity: 0;
}

.wa-consultants-container.active .wa-consultant {
    transform: translateX(0);
    opacity: 1;
}

.wa-consultant:nth-child(1) { transition-delay: 0.1s; }
.wa-consultant:nth-child(2) { transition-delay: 0.2s; }

.wa-consultant:hover {
    transform: translateX(-5px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.15);
}

.wa-consultant .wa-icon-sm {
    width: 40px;
    height: 40px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.wa-consultant span {
    color: #2c3e50;
    font-weight: 600;
    white-space: nowrap;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================================
   SS WA FLOATING (DESKTOP)
   ============================================================ */
.ss-wa-floating-container {
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 999999;
}

.ss-wa-floating-btn {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(37,211,102,.4);
    transition: .3s ease;
    animation: ssPulse 2s infinite;
}

.ss-wa-floating-btn:hover {
    transform: scale(1.08);
}

.ss-wa-floating-btn svg {
    width: 35px;
    height: 35px;
}

.ss-wa-consultants-container {
    position: absolute;
    bottom: 85px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
    transition: .35s ease;
}

.ss-wa-consultants-container.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.ss-wa-consultant {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
    text-decoration: none;
    transition: .25s ease;
    font-family: system-ui,Segoe UI,sans-serif;
}

.ss-wa-consultant:hover {
    transform: translateX(-4px);
}

.ss-wa-icon-sm {
    width: 38px;
    height: 38px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.ss-wa-icon-sm svg {
    width: 20px;
    height: 20px;
}

.ss-wa-consultant span {
    color: #1f2937;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
}

@keyframes ssPulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,.6); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ============================================================
   SS MOBILE MENUBAR
   ============================================================ */
.ss-mobile-menubar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    z-index: 999999;
    box-shadow: 0 -6px 20px rgba(0,0,0,.15);
}

.ss-mobile-menubar .ss-menu-item {
    flex: 1;
    text-align: center;
    padding: 8px 0;
    cursor: pointer;
    color: #fff;
    font-size: 11px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    border: none;
    background: none;
    font-family: system-ui,Segoe UI,sans-serif;
    opacity: .95;
    transition: .25s ease;
    position: relative;
}

.ss-mobile-menubar .ss-menu-item i {
    font-size: 20px;
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0,0,0,.2);
}

.ss-mobile-menubar .ss-menu-item:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.ss-mobile-menubar .ss-menu-item::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #fff;
    border-radius: 0 0 3px 3px;
    transition: .25s ease;
}

.ss-mobile-menubar .ss-menu-item:hover::before {
    width: 60%;
}

@media(max-width:600px) {
    .ss-mobile-menubar {
        display: flex !important;
    }
}

/* ============================================================
   SS MOBILE DROPDOWN MENU
   ============================================================ */
.ss-mobile-dropdown-menu {
    position: fixed;
    bottom: 70px;
    left: 10px;
    right: 10px;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,.18);
    padding: 18px;
    transform: translateY(120%) scale(.95);
    transition: .35s cubic-bezier(.34,1.56,.64,1);
    z-index: 999998;
    max-height: 70vh;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
}

.ss-mobile-dropdown-menu.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.ss-mobile-dropdown-menu .ss-logo {
    text-align: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.ss-mobile-dropdown-menu .ss-logo img {
    max-width: 110px;
}

.ss-mobile-dropdown-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ss-mobile-dropdown-menu ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.ss-mobile-dropdown-menu ul li:last-child {
    border-bottom: none;
}

.ss-mobile-dropdown-menu ul li a {
    text-decoration: none;
    color: #111827;
    font-size: 15px;
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    transition: .25s ease;
}

.ss-mobile-dropdown-menu ul li a:hover {
    background: rgba(37,99,235,.06);
    transform: translateX(5px);
}

.ss-mobile-dropdown-menu ul li a i {
    margin-right: 10px;
    color: #2563eb;
    width: 20px;
    text-align: center;
}

/* ============================================================
   SS OVERLAY
   ============================================================ */
.ss-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999997;
    display: none;
    opacity: 0;
    transition: .25s ease;
}

.ss-modal-overlay.active {
    display: block;
    opacity: 1;
}

/* ============================================================
   SS SHARE POPUP
   ============================================================ */
.ss-share-popup {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
    padding: 18px;
    width: 90%;
    max-width: 320px;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
}

.ss-share-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.ss-share-popup .ss-promo-banner {
    width: 100%;
    height: 60px;
    background: linear-gradient(135deg,#2563eb,#7c3aed);
    border-radius: 10px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    text-align: center;
    padding: 0 10px;
    font-size: 13px;
}

.ss-share-popup .ss-share-buttons {
    display: flex;
    justify-content: space-around;
}

.ss-share-popup .ss-share-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
    transition: .2s ease;
}

.ss-share-popup .ss-share-button:hover {
    background: rgba(0,0,0,.05);
}

.ss-share-popup .ss-share-button i {
    font-size: 24px;
    margin-bottom: 5px;
}

.ss-share-popup .ss-share-button span {
    font-size: 12px;
    color: #111827;
}

.ss-share-popup .ss-share-button.whatsapp i { color: #25D366; }
.ss-share-popup .ss-share-button.instagram i { color: #E1306C; }
.ss-share-popup .ss-share-button.telegram i { color: #0088cc; }

/* ============================================================
   SS CHAT PROVIDER POPUP
   ============================================================ */
.ss-chat-provider-popup {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
    padding: 18px;
    width: 90%;
    max-width: 340px;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
}

.ss-chat-provider-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.ss-chat-provider-popup .ss-popup-header {
    text-align: center;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.ss-chat-provider-popup .ss-popup-header h3 {
    color: #111827;
    font-size: 16px;
    font-weight: 800;
}

.ss-chat-provider-popup .ss-provider-buttons {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
}

.ss-chat-provider-popup .ss-provider-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 14px 8px;
    border-radius: 12px;
    transition: .2s ease;
    background: rgba(0,0,0,.02);
    border: 1px solid rgba(0,0,0,.06);
}

.ss-chat-provider-popup .ss-provider-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,.12);
}

.ss-chat-provider-popup .ss-provider-button i {
    font-size: 26px;
    margin-bottom: 6px;
}

.ss-chat-provider-popup .ss-provider-button span {
    font-size: 12px;
    font-weight: 700;
    color: #111827;
    text-align: center;
}

.ss-chat-provider-popup .whatsapp i { color: #25D366; }
.ss-chat-provider-popup .line i { color: #00c300; }
.ss-chat-provider-popup .telegram i { color: #0088cc; }
.ss-chat-provider-popup .instagram i { color: #E1306C; }
.ss-chat-provider-popup .twitter i { color: #1DA1F2; }
.ss-chat-provider-popup .linkedin i { color: #0077b5; }

/* ============================================================
   SS JUMP TO TOP
   ============================================================ */
.ss-jump-to-top {
    position: fixed;
    bottom: 160px;
    right: 18px;
    width: 42px;
    height: 42px;
    background: rgba(0,0,0,.75);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
}

.ss-jump-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.ss-jump-to-top i {
    font-size: 18px;
}

/* ============================================================
   SS CALLOUT BALLOON
   ============================================================ */
.ss-callout-balloon {
    position: fixed;
    bottom: 62px;
    right: 105px;
    background: #fff;
    color: #2563eb;
    padding: 8px 12px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,.18);
    font-weight: 900;
    font-size: 14px;
    z-index: 999999;
    opacity: 0;
    transform: translateY(10px);
    transition: .25s ease;
    display: none;
}

.ss-callout-balloon.visible {
    opacity: 1;
    transform: translateY(0);
    display: block;
}

.ss-callout-balloon::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 18px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid white;
}

/* ============================================================
   PROMO POPUP
   ============================================================ */
.starship-popup * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

.starship-popup .promo-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 999999;
    justify-content: center;
    align-items: center;
}

.starship-popup .promo-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    width: 500px;
    max-width: 95%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.starship-popup .promo-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.starship-popup .promo-content {
    padding: 24px;
    text-align: center;
}

.starship-popup .promo-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.starship-popup .promo-subtitle {
    color: #666;
    margin: 10px 0 24px;
}

.starship-popup .promo-btn,
.starship-popup .submit-btn {
    background: #2563eb;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

.starship-popup .promo-btn:hover,
.starship-popup .submit-btn:hover {
    background: #1d4ed8;
}

.starship-popup .booking-container {
    display: none;
    padding: 24px;
}

.starship-popup .form-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    font-size: 14px;
}

.starship-popup .time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(100px,1fr));
    gap: 10px;
    margin-bottom: 12px;
}

.starship-popup .time-slot {
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
}

.starship-popup .time-slot:hover {
    border-color: #2563eb;
    background: #f0f6ff;
}

.starship-popup .time-slot.selected {
    background: #2563eb;
    color: white;
}

.starship-popup .success-message {
    display: none;
    padding: 40px;
    text-align: center;
}

.starship-popup .success-message i {
    font-size: 48px;
    color: #10b981;
    margin-bottom: 16px;
}

.starship-popup .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.8);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
}

.starship-popup .rocket-progress {
    width: 100%;
    height: 40px;
    margin-top: 12px;
    position: relative;
    display: none;
}

.starship-popup .progress-bar {
    position: absolute;
    left: 0;
    top: 50%;
    height: 6px;
    background: #2563eb;
    transform: translateY(-50%);
    width: 0%;
    border-radius: 6px;
}

.starship-popup .rocket {
    position: absolute;
    left: 0%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;
}

.starship-popup .progress-text {
    position: absolute;
    right: 0;
    top: -2px;
    font-size: 12px;
}

/* ============================================================
   CHAT AI
   ============================================================ */
.chat-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-overlay.active {
    opacity: 1;
    visibility: visible;
}

.chat-modal {
    width: 90%;
    max-width: 500px;
    height: 80vh;
    max-height: 600px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    transform: scale(0.8) translateY(50px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.chat-overlay.active .chat-modal {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ai-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ai-avatar {
    width: 42px;
    height: 42px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.ai-status h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.ai-status span {
    font-size: 0.75rem;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 5px;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.close-chat-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-chat-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.message {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    animation: fadeIn 0.3s ease;
    max-width: 85%;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.message.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.message.ai .message-avatar {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
}

.message.user .message-avatar {
    background: linear-gradient(135deg, #ff6b6b, #feca57);
}

.message-content {
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.5;
    word-wrap: break-word;
}

.message.ai .message-content {
    background: white;
    color: #333;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.message.user .message-content {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    border-bottom-right-radius: 4px;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: #999;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.chat-input-container {
    padding: 15px 20px;
    background: white;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

.chat-input {
    flex: 1;
    border: 2px solid #e0e7ff;
    border-radius: 25px;
    padding: 12px 18px;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
}

.chat-input:focus {
    border-color: #6a11cb;
}

.send-btn {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.send-btn:hover:not(:disabled) {
    transform: scale(1.1);
}

.send-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ============================================================
   YELLOW SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #facc15;
    border-radius: 10px;
    transition: 0.2s;
}

::-webkit-scrollbar-thumb:hover {
    background: #eab308;
}

.form-body::-webkit-scrollbar {
    width: 8px;
}

.form-body::-webkit-scrollbar-track {
    background: #eef2ff;
    border-radius: 10px;
}

.form-body::-webkit-scrollbar-thumb {
    background: #facc15;
    border-radius: 10px;
}

.form-body::-webkit-scrollbar-thumb:hover {
    background: #eab308;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #facc15 #f3f4f6;
}

/* ============================================================
   RESPONSIVE - GLOBAL
   ============================================================ */
/* Tablet & Mobile */
@media (max-width: 1024px) {
    .scholarship-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .features-grid {
        gap: 20px;
    }
    .feature-card {
        padding: 25px 15px;
    }
    .feature-title {
        font-size: 16px;
    }
    .feature-desc {
        font-size: 13px;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    .section-title-main {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    /* Navbar */
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 14px 16px;
        gap: 10px;
    }
    .logo img {
        max-width: 200px;
        margin: 0;
    }
    .nav-links {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    .nav-links a {
        margin: 0;
        font-size: 13px;
    }
    
    /* Hero */
    .hero {
        flex-direction: column;
        padding: 40px 0;
        gap: 30px;
    }
    .hero-left {
        max-width: 100%;
    }
    .hero h1 {
        font-size: 28px;
    }
    .hero p {
        font-size: 15px;
    }
    .stats {
        display: none;
    }
    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 12px 20px;
        font-size: 13px;
        flex: 1;
        text-align: center;
    }
    
    /* Form */
    .form-card {
        width: 100%;
        border-radius: 14px;
        margin-top: -85px;
    }
    .form-header {
        padding: 18px;
    }
    .form-body {
        padding: 16px;
        height: 60%;
    }
    .country-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .country {
        font-size: 13px;
        padding: 10px;
    }
    .step-circle {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
    .step-label {
        font-size: 9px;
    }
    .step-line {
        top: 15px;
        left: calc(50% + 15px);
        right: calc(-50% + 15px);
    }
    
    /* Scholarship */
    .scholarship-hub {
        padding: 50px 0;
    }
    .scholarship-title {
        font-size: 26px;
    }
    .scholarship-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .scholarship-stats {
        gap: 15px;
        margin: 20px 0 30px;
    }
    .stat-item {
        padding: 12px 20px;
        min-width: 100px;
    }
    .stat-item i {
        font-size: 24px;
        margin-bottom: 8px;
    }
    .stat-number {
        font-size: 24px;
    }
    .stat-label {
        font-size: 11px;
    }
    
    /* Scholarship Modal */
    .scholarship-search-bar {
        flex-direction: column;
    }
    .scholarship-modal-header h2 {
        font-size: 18px;
    }
    .scholarship-table-container {
        padding: 0 16px 16px 16px;
    }
    .scholarship-table thead {
        display: none;
    }
    .scholarship-table,
    .scholarship-table tbody,
    .scholarship-table tr,
    .scholarship-table td {
        display: block;
        width: 100%;
    }
    .scholarship-table tr {
        margin-bottom: 16px;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        background: white;
        padding: 12px;
    }
    .scholarship-table td {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 8px 0;
        border-bottom: none;
        text-align: left;
    }
    .scholarship-table td::before {
        content: attr(data-label);
        font-weight: 700;
        color: #0b1f4a;
        min-width: 110px;
        font-size: 12px;
    }
    .scholarship-table td:last-child {
        border-bottom: none;
    }
    .scholarship-table .country-cell {
        flex-wrap: wrap;
    }
    .scholarship-pagination {
        flex-wrap: wrap;
        gap: 8px;
    }
    .scholarship-pagination button {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    /* Testimonial */
    .testimony-nav-prev {
        left: -5px;
    }
    .testimony-nav-next {
        right: -5px;
    }
    .starship-testimonial-root {
        padding: 40px 16px;
    }
    .testimony-title {
        font-size: 24px;
    }
    .testimony-card {
        min-width: 260px;
        padding: 18px;
    }
    .avatar-wrapper {
        width: 80px;
        height: 80px;
    }
    .testimony-profile-name {
        font-size: 16px;
    }
    .testimony-text {
        max-width: 200px;
        font-size: 12px;
    }
    
    /* Blog */
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .blog-header h2 {
        font-size: 22px;
    }
    .blog-thumb {
        height: 180px;
    }
    
    /* Chat */
    .chat-modal {
        width: 95%;
        height: 85vh;
    }
}

@media (max-width: 700px) {
    .search-form {
        flex-direction: column;
        gap: 10px;
        padding: 16px;
    }
    .search-form input[type="text"],
    .search-form select,
    .search-form button {
        width: 100%;
    }
    .search-form button {
        flex: none;
    }
    .search-wrapper {
        margin: 0 0 10px 0;
    }
    .course-finder-section {
        padding: 40px 0 60px 0;
    }
    .course-finder-header h2 {
        font-size: 24px;
    }
    .course-country-wrapper {
        width: 100%;
    }
}

@media (max-width: 600px) {
    /* Navbar Mobile */
    .navbar .nav-links,
    .navbar .nav-cta,
    .navbar .dropdown {
        display: none !important;
    }
    .navbar {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 10px 0 !important;
        background: #fff !important;
        height: auto !important;
    }
    .navbar .logo {
        margin: 0 auto !important;
    }
    .navbar .logo img {
        max-width: 250px;
        margin: 0 auto;
        display: block;
    }
    .hero-wrapper {
        min-height: auto;
    }
    .partner-slider {
        display: none;
    }
    
    /* Footer */
    .footer-modern {
        padding: 40px 0 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .section-title-main {
        font-size: 24px;
    }
    .feature-card {
        padding: 25px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    .feature-icon i {
        font-size: 28px;
    }
}

@media (max-width: 550px) {
    .universities-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 500px) {
    .wa-floating-container {
        display: none;
    }
    .mobile-only-image {
        display: block;
    }
    .stats {
        display: none;
    }
}

@media (max-width: 480px) {
    .partner-slider {
        display: none;
    }
    .scholarship-modal {
        width: 95%;
        max-height: 90vh;
    }
    .scholarship-table td::before {
        min-width: 90px;
        font-size: 11px;
    }
    .scholarship-table .apply-link {
        white-space: normal;
        text-align: center;
    }
    .chat-modal {
        width: 95%;
        height: 85vh;
    }
}