/*
Theme Name: Azerbaycan Edu Premium
Theme URI: https://azerbaycanuniversiteleri.com
Description: Azerbaycan Üniversiteleri Tanıtım, Bölüm Rehberi ve Online Başvuru Portalı için Ultra Modern Premium Tema.
Version: 2.0.0
Author: Antigravity AI
Text Domain: azerbaycan-edu
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
    --primary: #061224;
    --primary-deep: #030A14;
    --primary-light: #0D213F;
    --accent: #00B4D8;
    --accent-dark: #0077B6;
    --accent-light: #90E0EF;
    --accent-cyan: #06D6A0;
    --gold: #FFB703;
    --gold-hover: #FFA200;
    --gold-glow: rgba(255, 183, 3, 0.25);
    --cyan-glow: rgba(0, 180, 216, 0.28);
    --dark: #0F172A;
    --slate: #475569;
    --slate-light: #94A3B8;
    --light-bg: #F8FAFC;
    --card-bg: #FFFFFF;
    --border: #E2E8F0;
    --border-hover: #CBD5E1;
    --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-sm: 0 4px 10px -1px rgba(15, 23, 42, 0.06), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 16px 32px -6px rgba(15, 23, 42, 0.09), 0 6px 12px -3px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 28px 56px -12px rgba(6, 18, 36, 0.18);
    --shadow-glow: 0 0 40px rgba(0, 180, 216, 0.22);
    --radius-xs: 8px;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-full: 9999px;
    --font-heading: 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-ui: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--light-bg);
    color: var(--dark);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    color: var(--accent-dark);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Glass Nav Bar */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(3, 10, 20, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
}

.logo-img {
    height: 42px;
    width: auto;
    border-radius: var(--radius-xs);
    box-shadow: var(--shadow-xs);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.main-nav a {
    color: #E2E8F0;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 0;
    position: relative;
    transition: var(--transition);
}

.main-nav a:hover,
.main-nav .current-menu-item a {
    color: var(--accent);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav .current-menu-item a::after {
    width: 100%;
}

/* Modern Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    color: #ffffff !important;
    box-shadow: 0 4px 16px rgba(0, 180, 216, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 180, 216, 0.45);
}

.btn-gold {
    background: linear-gradient(135deg, #FFB703, #FB8500);
    color: var(--primary) !important;
    box-shadow: 0 4px 16px rgba(255, 183, 3, 0.35);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 183, 3, 0.5);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--primary);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: #ffffff !important;
}

.btn-sm {
    padding: 9px 16px;
    font-size: 0.88rem;
}

/* =====================================================
   KEYFRAME ANIMATIONS & GLOW EFFECTS
   ===================================================== */
@keyframes floatAnim {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.08); }
}

@keyframes pulseRadar {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes shimmerEffect {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* =====================================================
   HERO SECTION - COMPACT MODERN BANNER SLIDER
   ===================================================== */
:root {
    --hero-banner-height: 480px;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: var(--hero-banner-height, 480px);
    min-height: var(--hero-banner-height, 480px);
    max-height: var(--hero-banner-height, 480px);
    color: #ffffff;
    overflow: hidden;
    background-color: #030A14;
}

.hero-slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide-item {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.75s ease;
    z-index: 1;
    padding: 20px 0 35px;
    box-sizing: border-box;
}

.hero-slide-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    position: absolute;
}

/* Background Media (Image or Video) */
.hero-slide-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-slide-media img,
.hero-slide-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    transition: transform 7s ease-out;
}

.hero-slide-item.active .hero-slide-media img,
.hero-slide-item.active .hero-slide-media video {
    transform: scale(1);
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 180, 216, 0.32) 0%, transparent 50%),
        radial-gradient(circle at 80% 40%, rgba(255, 183, 3, 0.22) 0%, transparent 45%),
        linear-gradient(135deg, rgba(3, 10, 20, 0.92) 0%, rgba(6, 18, 36, 0.88) 50%, rgba(10, 25, 47, 0.84) 100%);
    pointer-events: none;
}

/* Ambient glow orbs in background */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 2;
    animation: pulseGlow 6s ease-in-out infinite alternate;
}

.hero-orb-1 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.35), rgba(0, 119, 182, 0.05));
    top: -80px;
    left: -80px;
}

.hero-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 183, 3, 0.28), rgba(251, 133, 0, 0.05));
    bottom: 20px;
    right: -60px;
    animation-delay: 2.5s;
}

.hero-content-wrap {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 0.84rem;
    font-weight: 700;
    margin-bottom: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    transition: var(--transition);
}

.hero-badge-pill:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(0, 180, 216, 0.5);
}

.hero-badge-pill span.dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: pulseRadar 2s infinite;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.9rem, 4.2vw, 3rem);
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
    font-weight: 900;
    line-height: 1.18;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-title-highlight {
    background: linear-gradient(135deg, #A5F3FC 0%, #38BDF8 35%, #00B4D8 70%, #FBBF24 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-top: 4px;
    animation: gradientShift 8s ease infinite;
}

.hero-description {
    font-size: clamp(0.92rem, 1.8vw, 1.08rem);
    color: #E2E8F0;
    margin: 0 auto 20px;
    max-width: 680px;
    line-height: 1.65;
    font-weight: 400;
}

/* Compact Glass Floating Search Terminal */
.hero-search-box {
    background: rgba(13, 33, 63, 0.78);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.40);
    margin: 0 auto 16px;
    max-width: 820px;
    position: relative;
}

.search-form-row {
    display: grid;
    grid-template-columns: 1.3fr 1fr auto;
    gap: 10px;
    align-items: center;
}

.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--slate);
    pointer-events: none;
}

.search-input-field {
    width: 100%;
    padding: 11px 14px 11px 42px;
    border-radius: var(--radius-sm);
    border: 1.5px solid rgba(226, 232, 240, 0.2);
    background: #ffffff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
    outline: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.search-input-field:focus {
    background: #ffffff;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.25);
}

/* Hero Action Buttons */
.hero-slide-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #00B4D8 0%, #0077B6 100%);
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 0.92rem;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 180, 216, 0.4);
    transition: var(--transition);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0, 180, 216, 0.6);
    color: #ffffff;
}

.btn-hero-glass {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-hero-glass:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: #ffffff;
    color: #ffffff;
}

/* Slider Controls: Arrows */
.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(6, 18, 36, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-slider-arrow:hover {
    background: rgba(0, 180, 216, 0.85);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.08);
}

.hero-slider-arrow.prev {
    left: 20px;
}

.hero-slider-arrow.next {
    right: 20px;
}

/* Slider Controls: Dots / Progress */
.hero-slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.35s ease;
}

.hero-dot.active {
    width: 32px;
    background: #00B4D8;
    box-shadow: 0 0 10px rgba(0, 180, 216, 0.8);
}

/* Hero Quick Filter Pills (Subtle) */
.hero-chips-wrap {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-decoration: none;
    transition: var(--transition);
}

.hero-chip:hover {
    background: rgba(0, 180, 216, 0.25);
    border-color: var(--accent);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 180, 216, 0.3);
}

/* Floating Stats Bento Ribbon */
.hero-stats-ribbon {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    text-align: center;
    transition: var(--transition);
}

.hero-stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 183, 3, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.hero-stat-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.3rem);
    color: var(--gold);
    font-weight: 800;
    margin: 0 0 4px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(255, 183, 3, 0.3);
}

.hero-stat-card p {
    font-size: 0.88rem;
    color: #CBD5E1;
    margin: 0;
    font-weight: 600;
}

/* =====================================================
   INFINITE MARQUEE TICKER RIBBON
   ===================================================== */
.marquee-ribbon {
    background: linear-gradient(90deg, #0A1E38 0%, #061224 50%, #0A1E38 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 36px;
    animation: marqueeScroll 28s linear infinite;
}

.marquee-ribbon:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #E2E8F0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.marquee-item .item-icon {
    font-size: 1.2rem;
}

.marquee-item .badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    margin-left: 20px;
}

/* =====================================================
   MODERN SECTION SYSTEM & BACKGROUNDS (GÖRSEL ŞÖLEN)
   ===================================================== */
.section-modern-mesh {
    position: relative;
    padding: 100px 0;
    background-color: #FFFFFF;
    background-image: 
        radial-gradient(circle at 10% 15%, rgba(0, 180, 216, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 90% 85%, rgba(255, 183, 3, 0.05) 0%, transparent 40%),
        radial-gradient(rgba(0, 180, 216, 0.08) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 30px 30px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
}

.section-modern-slate {
    position: relative;
    padding: 100px 0;
    background-color: #F8FAFC;
    background-image: 
        radial-gradient(circle at 85% 15%, rgba(0, 180, 216, 0.07) 0%, transparent 50%),
        radial-gradient(circle at 15% 85%, rgba(99, 102, 241, 0.04) 0%, transparent 45%),
        radial-gradient(rgba(148, 163, 184, 0.14) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 32px 32px;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
}

.section-modern-tint {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(0, 180, 216, 0.06) 0%, transparent 60%),
        radial-gradient(rgba(0, 180, 216, 0.07) 1px, transparent 1px);
    background-size: 100% 100%, 28px 28px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
}

.section-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 54px;
    position: relative;
    z-index: 2;
}

.section-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    border-radius: var(--radius-full);
    background: rgba(0, 180, 216, 0.08);
    border: 1px solid rgba(0, 180, 216, 0.22);
    color: var(--accent-dark);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 18px;
    box-shadow: 0 4px 14px rgba(0, 180, 216, 0.08);
    transition: var(--transition);
}

.section-badge-pill:hover {
    background: rgba(0, 180, 216, 0.14);
    border-color: rgba(0, 180, 216, 0.4);
    transform: translateY(-2px);
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4.2vw, 2.75rem);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: -0.035em;
    line-height: 1.2;
}

.title-highlight {
    background: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.02rem, 2.2vw, 1.15rem);
    color: var(--slate);
    line-height: 1.75;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* =====================================================
   FILTER TABS COMPONENT
   ===================================================== */
.filter-tabs-wrapper {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    background: #F1F5F9;
    padding: 8px;
    border-radius: var(--radius-full);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--border);
}

.filter-tab-btn {
    padding: 10px 24px;
    border-radius: var(--radius-full);
    border: none;
    background: transparent;
    color: var(--slate);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-tab-btn:hover {
    color: var(--primary);
}

.filter-tab-btn.active {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(6, 18, 36, 0.2);
}

/* =====================================================
   CARDS GRID & MODERN UNIVERSITY CARDS (GÖRSEL ŞÖLEN)
   ===================================================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 32px;
}

.uni-card {
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    overflow: hidden;
    box-shadow: 0 4px 20px -4px rgba(15, 23, 42, 0.06), 0 2px 6px -1px rgba(15, 23, 42, 0.04);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.uni-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px -12px rgba(6, 18, 36, 0.14), 0 0 0 1.5px rgba(0, 180, 216, 0.3);
    border-color: rgba(0, 180, 216, 0.4);
}

.uni-card-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #061224;
}

.uni-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.uni-card:hover .uni-card-img-wrap img {
    transform: scale(1.08);
}

.uni-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 18, 36, 0.75) 0%, rgba(6, 18, 36, 0.1) 55%, transparent 100%);
    pointer-events: none;
}

.uni-logo-badge {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    padding: 3px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    border: 2px solid #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
    box-sizing: border-box;
    flex-shrink: 0;
}

.uni-card-img-wrap .uni-logo-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
}

.uni-logo-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.uni-logo-text-badge {
    padding: 0;
    line-height: 1;
    text-align: center;
}

.uni-card:hover .uni-logo-badge {
    transform: scale(1.08);
    border-color: var(--accent);
}

.uni-price-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(6, 18, 36, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--gold);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.84rem;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 183, 3, 0.35);
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.uni-city-tag {
    position: absolute;
    bottom: 12px;
    left: 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    padding: 5px 12px;
    border-radius: var(--radius-xs);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 3;
}

.uni-type-tag {
    position: absolute;
    bottom: 12px;
    right: 14px;
    background: rgba(6, 18, 36, 0.80);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #90E0EF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 5px 10px;
    border-radius: var(--radius-xs);
    border: 1px solid rgba(255,255,255,0.15);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.uni-card-body {
    padding: 24px 24px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.uni-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.35;
    min-height: 52px;
    display: flex;
    align-items: center;
}

.uni-card-title a {
    color: var(--primary);
    transition: var(--transition);
}

.uni-card-title a:hover {
    color: var(--accent-dark);
}

/* World Rankings Badges (QS, THE, CWTS) */
.uni-rankings-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.uni-rank-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.73rem;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding: 3px 8px;
    border-radius: 6px;
    background: #F8FAFC;
    color: #334155;
    border: 1px solid #E2E8F0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.uni-rank-pill.qs {
    background: #FFFBEB;
    color: #B45309;
    border-color: #FDE68A;
}

.uni-rank-pill.the {
    background: #FEF2F2;
    color: #DC2626;
    border-color: #FECACA;
}

.uni-rank-pill.cwts {
    background: #ECFDF5;
    color: #059669;
    border-color: #A7F3D0;
}

.uni-rank-pill:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

/* Modern Clean Specs Box */
.uni-specs-container {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.uni-spec-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
}

.uni-spec-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--slate);
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.uni-spec-val {
    color: var(--dark);
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-align: right;
}

.badge-yok {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.25);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 20px;
}

.uni-card-desc {
    font-size: 0.88rem;
    color: #64748B;
    margin-bottom: 20px;
    line-height: 1.6;
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.uni-card-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #F1F5F9;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-uni-details {
    flex: 1;
    background: #F1F5F9;
    color: var(--primary) !important;
    border: 1px solid #E2E8F0;
    padding: 11px 14px;
    border-radius: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    text-align: center;
    transition: var(--transition);
}

.btn-uni-details:hover {
    background: var(--primary);
    color: #ffffff !important;
    border-color: var(--primary);
}

.btn-uni-apply {
    flex: 1;
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    color: #ffffff !important;
    border: none;
    padding: 11px 14px;
    border-radius: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 800;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 180, 216, 0.3);
    transition: var(--transition);
}

.btn-uni-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 180, 216, 0.45);
}

/* =====================================================
   WHY AZERBAIJAN - BENTO GRID 2.0
   ===================================================== */
.why-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-bento-card {
    background: #ffffff;
    padding: 36px 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.3s ease;
    box-shadow: var(--shadow-xs);
    display: flex;
    flex-direction: column;
}

.why-bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-bento-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-light);
}

.why-bento-card:hover::before {
    opacity: 1;
}

.why-bento-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 180, 216, 0.1);
    color: var(--accent-dark);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 22px;
    transition: var(--transition);
}

.why-bento-card:hover .why-bento-icon-box {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    color: #ffffff;
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 8px 20px rgba(0, 180, 216, 0.35);
}

.why-bento-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.28rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.why-bento-card p {
    font-size: 0.94rem;
    color: var(--slate);
    line-height: 1.7;
    margin: 0;
}

/* =====================================================
   STEP PROCESS TIMELINE (4 ADIMDA KAYIT)
   ===================================================== */
.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.step-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 36px 26px;
    border: 1px solid var(--border);
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-xs);
    display: flex;
    flex-direction: column;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.step-num-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: #E2E8F0;
    line-height: 1;
    transition: var(--transition);
}

.step-card:hover .step-num-badge {
    color: var(--accent-light);
    transform: scale(1.1);
}

.step-icon-wrap {
    width: 54px;
    height: 54px;
    background: rgba(0, 180, 216, 0.1);
    color: var(--accent-dark);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.step-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.91rem;
    color: var(--slate);
    line-height: 1.65;
    margin: 0;
}

/* =====================================================
   STUDENT TESTIMONIALS (BAŞARI HİKAYELERİ)
   ===================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 36px 30px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xs);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.testi-stars {
    color: #F59E0B;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testi-quote {
    font-size: 0.96rem;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
    flex-grow: 1;
}

.testi-student {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid #F1F5F9;
}

.testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testi-info h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0 0 2px;
}

.testi-info p {
    font-size: 0.82rem;
    color: var(--slate);
    margin: 0;
}

/* =====================================================
   FAQ ACCORDION 2.0
   ===================================================== */
.faq-grid {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.faq-item:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-xs);
}

.faq-item.open {
    border-left-color: var(--accent);
    box-shadow: var(--shadow-sm);
    border-color: var(--border);
}

.faq-question {
    padding: 22px 26px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.08rem;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.faq-question .faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #F1F5F9;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, color 0.3s ease;
}

.faq-item.open .faq-question .faq-icon {
    transform: rotate(45deg);
    background: var(--accent);
    color: #ffffff;
}

.faq-answer {
    padding: 0 26px;
    color: var(--slate);
    font-size: 0.98rem;
    line-height: 1.75;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.25s ease;
}

.faq-item.open .faq-answer {
    max-height: 320px;
    padding: 0 26px 24px;
}

/* Form Styles */
.form-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group-full {
    grid-column: span 2;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--accent-dark);
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.2);
}

/* Footer */
.site-footer {
    background: var(--primary);
    color: var(--slate-light);
    padding: 80px 0 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.15rem;
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-col a {
    color: var(--slate-light);
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 0.9rem;
}

/* =====================================================
   RESPONSIVE SYSTEM — Mobile-First, Touch Optimized
   ===================================================== */

/* Fluid Typography with clamp() */
:root {
    --text-xs:   clamp(0.72rem, 1.8vw, 0.8rem);
    --text-sm:   clamp(0.82rem, 2vw,   0.9rem);
    --text-base: clamp(0.9rem,  2.2vw, 1rem);
    --text-md:   clamp(1rem,    2.5vw, 1.15rem);
    --text-lg:   clamp(1.1rem,  3vw,   1.35rem);
    --text-xl:   clamp(1.25rem, 3.5vw, 1.75rem);
    --text-2xl:  clamp(1.5rem,  4.5vw, 2.4rem);
    --text-3xl:  clamp(1.8rem,  5.5vw, 3.4rem);
}

/* ── Hamburger Menu ─────────────────────────────────── */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 8px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 10px;
    transition: background 0.2s;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
}

.nav-toggle:hover {
    background: rgba(10, 25, 47, 0.06);
}

.nav-toggle span {
    display: block;
    height: 2.5px;
    border-radius: 2px;
    background: var(--primary);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}

.nav-toggle span:nth-child(1) { width: 22px; }
.nav-toggle span:nth-child(2) { width: 28px; }
.nav-toggle span:nth-child(3) { width: 18px; }

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
    width: 26px;
}
.nav-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
    width: 26px;
}

/* Mobile overlay nav */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 25, 47, 0.55);
    z-index: 10000;
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.mobile-nav-overlay.open {
    opacity: 1;
}

.main-nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100dvh;
    background: #ffffff;
    z-index: 10001;
    flex-direction: column;
    padding: 70px 24px 36px;
    gap: 8px;
    box-shadow: -8px 0 40px rgba(10, 25, 47, 0.22);
    overflow-y: auto;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-nav-mobile.open {
    right: 0;
}

.main-nav-mobile a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--primary);
    transition: background 0.2s, color 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.main-nav-mobile a:hover,
.main-nav-mobile a.active {
    background: rgba(0, 180, 216, 0.1);
    color: var(--accent-dark);
}

.mobile-nav-cta {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.mobile-nav-cta .btn {
    width: 100%;
    justify-content: center;
}

/* ── Breakpoint: 1200px ─────────────────────────────── */
@media (max-width: 1200px) {
    .container { padding: 0 20px; }

    .search-form-row {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .search-form-row .btn {
        grid-column: span 2;
    }

    .cards-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 24px;
    }

    .hero-title { font-size: var(--text-3xl); }
    .section-title { font-size: var(--text-2xl); }
}

/* ── Breakpoint: 1024px ─────────────────────────────── */
@media (max-width: 1024px) {
    /* Header: Show Hamburger & Hide Desktop Nav */
    .header-container {
        height: 70px;
        padding: 0 20px;
    }
    .nav-toggle { display: flex !important; }
    .main-nav { display: none !important; }
    .header-container > div:last-child > .btn { display: none !important; }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .hero-section { padding: 72px 0 88px; }

    /* Single uni: sidebar drops below content */
    .uni-detail-layout {
        flex-direction: column !important;
    }
    .uni-sidebar {
        width: 100% !important;
        max-width: 100% !important;
    }

    .hk-uni-list { gap: 20px; }
}

/* ── Breakpoint: 900px ──────────────────────────────── */
@media (max-width: 900px) {
    .paste-col-map {
        grid-template-columns: 1fr 1fr !important;
    }

    .uni-specs-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-stats-ribbon {
        flex-wrap: wrap;
        gap: 24px;
    }
}

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

    /* Header */
    .header-container {
        height: 64px;
        padding: 0 16px;
        position: relative;
    }

    .logo-brand {
        font-size: 1.1rem;
        gap: 10px;
    }
    .logo-img { height: 36px; }


    /* Show hamburger, hide desktop nav */
    .nav-toggle { display: flex; }
    .main-nav { display: none !important; }
    .header-container > div:last-child > .btn { display: none; }

    /* Hero */
    .hero-section {
        padding: 52px 0 68px;
    }

    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        letter-spacing: -0.025em;
    }

    :root {
        --hero-banner-height: 440px;
    }
    .hero-slider-container {
        height: 440px !important;
        min-height: 440px !important;
        max-height: 440px !important;
    }
    .hero-description {
        font-size: clamp(0.88rem, 3vw, 1rem);
        margin-bottom: 16px;
    }

    .hero-badge-pill {
        font-size: 0.78rem;
        padding: 5px 12px;
        margin-bottom: 12px;
    }

    .hero-search-box {
        padding: 20px;
        border-radius: 16px;
    }

    .search-form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .search-form-row .btn {
        grid-column: span 1;
        width: 100%;
        justify-content: center;
    }

    .hero-stats-ribbon {
        gap: 20px;
        margin-top: 32px;
        padding-top: 24px;
        flex-wrap: wrap;
    }
    .stat-box h3 { font-size: 1.75rem; }
    .stat-box p  { font-size: 0.8rem; }

    /* Cards */
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .uni-card-img-wrap { height: 190px; }

    .uni-card-body { padding: 20px; }

    .uni-card-title { font-size: 1.15rem; }

    .uni-specs-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 12px;
        font-size: 0.82rem;
    }

    /* Filter tabs: scroll horizontally */
    .filter-tabs-wrapper {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 8px;
        padding-bottom: 6px;
        margin-bottom: 28px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }
    .filter-tabs-wrapper::-webkit-scrollbar { height: 0; }

    .filter-tab-btn {
        white-space: nowrap;
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: 8px 18px;
        font-size: 0.85rem;
    }

    /* Sections */
    .section { padding: 60px 0; }
    .section-header { margin-bottom: 36px; }
    .section-title  { font-size: clamp(1.5rem, 5.5vw, 2rem); }
    .section-subtitle { font-size: 0.95rem; }

    /* Bento */
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bento-card {
        padding: 24px 20px;
        display: flex;
        align-items: flex-start;
        gap: 16px;
    }

    .bento-icon-box {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .bento-card h4 { font-size: 1.05rem; margin-bottom: 6px; }
    .bento-card p  { font-size: 0.88rem; }

    /* FAQ */
    .faq-question { padding: 18px 20px; font-size: 0.97rem; }
    .faq-answer   { padding: 0 20px 18px; font-size: 0.93rem; }

    /* Form */
    .form-card { padding: 24px 18px; }
    .form-grid { grid-template-columns: 1fr; gap: 16px; }
    .form-group-full { grid-column: span 1; }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 36px;
    }
    .site-footer { padding: 52px 0 28px; }
    .footer-col h4 { margin-bottom: 16px; font-size: 1rem; }

    /* Single Üniversite Detay Sayfası */
    .uni-hero-section { padding: 36px 0 !important; }
    .uni-hero-inner   { gap: 16px !important; }

    /* Tables: horizontal scroll */
    .uni-prog-table-wrap,
    #uniProgEditor { overflow-x: auto; }

    #uniProgTable {
        min-width: 560px;
        font-size: 0.78rem;
    }
    #uniProgTable th,
    #uniProgTable td { padding: 6px 6px; }

    /* Admin paste panel */
    .paste-col-map {
        grid-template-columns: 1fr 1fr !important;
    }

    /* Gallery grid */
    .gallery-preview-grid {
        gap: 8px;
    }
    .gallery-preview-item {
        width: 68px;
        height: 68px;
    }
}

/* ── Breakpoint: 480px ──────────────────────────────── */
@media (max-width: 480px) {
    .container { padding: 0 14px; }

    .hero-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }

    .hero-section { padding: 40px 0 56px; }

    .logo-brand span { display: none; }
    .logo-img { height: 34px; }

    .hero-search-box { padding: 16px; }

    .uni-card-img-wrap { height: 170px; }

    .uni-specs-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .section { padding: 44px 0; }

    .bento-card {
        padding: 18px 16px;
        flex-direction: column;
    }

    .filter-tab-btn {
        padding: 7px 14px;
        font-size: 0.8rem;
    }

    .btn { padding: 11px 18px; font-size: 0.88rem; }

    .hero-stats-ribbon {
        gap: 14px;
    }
    .stat-box h3 { font-size: 1.5rem; }

    .faq-question { font-size: 0.9rem; padding: 16px; }
    .faq-answer   { font-size: 0.88rem; padding: 0 16px 16px; }

    .form-card { padding: 20px 14px; border-radius: 16px; }

    .footer-grid { gap: 22px; }

    .site-footer { padding: 40px 0 24px; }

    /* Table: aggressive scroll on tiny screens */
    #uniProgTable { min-width: 480px; font-size: 0.74rem; }
}

/* =====================================================
   TRENDING & MOST VISITED SPOTLIGHT SHOWCASE (2026)
   ===================================================== */
.spotlight-section {
    padding: 50px 0 20px;
    position: relative;
    z-index: 2;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 20px;
}
@media (max-width: 900px) {
    .spotlight-grid { grid-template-columns: 1fr; }
}

.spotlight-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    overflow: hidden;
    box-shadow: 0 10px 30px -8px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.spotlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -12px rgba(6, 18, 36, 0.16);
}

.spotlight-card.searched {
    border-top: 4px solid #FF6B6B;
}

.spotlight-card.visited {
    border-top: 4px solid #00B4D8;
}

.spotlight-banner-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #061224;
}

.spotlight-banner-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.spotlight-card:hover .spotlight-banner-wrap img {
    transform: scale(1.06);
}

.spotlight-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 18, 36, 0.85) 0%, rgba(6, 18, 36, 0.2) 60%, transparent 100%);
    pointer-events: none;
}

.spotlight-badge-fire {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #FF6B6B, #EE5253);
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 0.82rem;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 14px rgba(238, 82, 83, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    z-index: 3;
}

.spotlight-badge-eye {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #00B4D8, #0077B6);
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 0.82rem;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 14px rgba(0, 180, 216, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    z-index: 3;
}

.spotlight-metric-pill {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(6, 18, 36, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #FFB703;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.82rem;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 183, 3, 0.35);
    z-index: 3;
}

.spotlight-content {
    padding: 24px 28px 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.spotlight-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #061224;
    line-height: 1.3;
    margin: 0 0 12px;
}

.spotlight-title a {
    color: #061224;
    transition: color 0.2s ease;
}

.spotlight-title a:hover {
    color: #0077B6;
}

.spotlight-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    color: #64748B;
    line-height: 1.65;
    margin-bottom: 18px;
}

.spotlight-footer {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid #F1F5F9;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* =====================================================
   ULTRA-MODERN ACADEMIC PROGRAMS BENTO CATALOG (2026)
   ===================================================== */
.dept-bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 28px;
}

.dept-bento-card {
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid #E2E8F0;
    padding: 26px;
    box-shadow: 0 4px 20px -4px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
    overflow: hidden;
}

.dept-bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00B4D8, #0077B6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dept-bento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -10px rgba(0, 180, 216, 0.16);
    border-color: #BAE6FD;
}

.dept-bento-card:hover::before {
    opacity: 1;
}

.dept-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.dept-icon-box {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.12) 0%, rgba(0, 119, 182, 0.18) 100%);
    color: #0077B6;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 180, 216, 0.12);
}

.dept-meta-pills {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dept-degree-pill {
    background: #F1F5F9;
    color: #475569;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
}

.dept-price-pill {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.88rem;
    color: #D97706;
    background: #FFFBEB;
    border: 1px solid #FDE68A;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(217, 119, 6, 0.1);
}

.dept-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.35;
    color: #061224;
    margin: 0 0 10px;
}

.dept-card-title a {
    color: #061224;
    transition: color 0.2s ease;
}

.dept-card-title a:hover {
    color: #0077B6;
}

.dept-features-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 14px 0 20px;
    padding: 12px 14px;
    background: #F8FAFC;
    border-radius: 12px;
    border: 1px solid #F1F5F9;
}

.dept-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.83rem;
    font-weight: 600;
    color: #334155;
}

.dept-feature-item svg {
    color: #059669;
    flex-shrink: 0;
}

.dept-card-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #F1F5F9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dept-popularity-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 0.76rem;
    padding: 4px 10px;
    border-radius: 8px;
}

.dept-popularity-tag.fire {
    background: rgba(239, 68, 68, 0.10);
    color: #DC2626;
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.dept-popularity-tag.eye {
    background: rgba(0, 180, 216, 0.10);
    color: #0077B6;
    border: 1px solid rgba(0, 180, 216, 0.25);
}

/* ── Breakpoint: 360px ──────────────────────────────── */
@media (max-width: 360px) {
    .hero-title { font-size: 1.5rem; }
    .section-title { font-size: 1.4rem; }
    .uni-card-body { padding: 16px; }
    .uni-card-title { font-size: 1.05rem; }
    .hero-stats-ribbon { gap: 10px; }
    .stat-box h3 { font-size: 1.35rem; }
}

/* ── Touch & Accessibility Improvements ─────────────── */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover transforms on touch devices */
    .uni-card:hover { transform: none; }
    .bento-card:hover { transform: none; }
    .btn-primary:hover { transform: none; }

    /* Larger tap targets */
    .filter-tab-btn { min-height: 44px; }
    .btn { min-height: 48px; }
    .faq-question { min-height: 52px; }
    .main-nav-mobile a { min-height: 52px; }
    .nav-toggle { min-height: 44px; min-width: 44px; }
}

/* ── Print ──────────────────────────────────────────── */
@media print {
    .site-header, .site-footer, .nav-toggle,
    .mobile-nav-overlay, .main-nav-mobile,
    .filter-tabs-wrapper, .hero-search-box,
    .btn, form { display: none !important; }

    .uni-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    body { font-size: 12pt; color: #000; }
    a { color: #000; text-decoration: underline; }
}

/* =====================================================
   REDESIGN 2026 — NEW HOMEPAGE COMPONENTS
   ===================================================== */

/* =====================================================
   REDESIGN 2026 — ULTRA MODERN HOMEPAGE COMPONENTS
   ===================================================== */

/* ── Trust Stats Bar ─────────────────────────────── */
.trust-stats-bar {
    background: linear-gradient(90deg, #030A14 0%, #061224 50%, #030A14 100%);
    border-bottom: 1px solid rgba(0, 180, 216, 0.15);
    padding: 26px 0;
    position: relative;
    z-index: 10;
}

.trust-stats-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.trust-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 8px;
    flex: 1;
    justify-content: center;
}

.trust-stat-icon {
    font-size: 1.8rem;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(0, 180, 216, 0.15);
}

.trust-stat-text {
    display: flex;
    flex-direction: column;
}

.trust-stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 2vw, 1.9rem);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.trust-stat-num span {
    color: var(--accent);
    font-size: 0.7em;
}

.trust-stat-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: #E2E8F0;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.trust-stat-sub {
    font-size: 0.72rem;
    color: #64748B;
    font-weight: 500;
    white-space: nowrap;
}

.trust-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

/* ── Interactive Smart Program & University Finder ── */
.section-smart-finder {
    background: #030A14;
    background-image:
        radial-gradient(circle at 50% 0%, rgba(0, 180, 216, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 85% 60%, rgba(255, 183, 3, 0.06) 0%, transparent 45%);
    padding: 70px 0 40px;
    position: relative;
}

.finder-glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 180, 216, 0.25);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 180, 216, 0.12);
    position: relative;
    overflow: hidden;
}

.finder-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--gold), transparent);
}

.finder-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 36px;
}

.finder-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: 999px;
    background: rgba(0, 180, 216, 0.12);
    border: 1px solid rgba(0, 180, 216, 0.3);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-bottom: 12px;
}

.finder-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    animation: pulseGlow 2s infinite ease-in-out;
}

.finder-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.6rem, 3.2vw, 2.3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 8px;
}

.finder-sub {
    font-size: 0.95rem;
    color: #94A3B8;
    line-height: 1.6;
}

.finder-controls-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.finder-control-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.finder-control-group label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #CBD5E1;
    display: flex;
    align-items: center;
    gap: 6px;
}

.finder-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.finder-chip {
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    color: #94A3B8;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.finder-chip:hover {
    background: rgba(0, 180, 216, 0.08);
    border-color: rgba(0, 180, 216, 0.35);
    color: #fff;
}

.finder-chip.active {
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.35), rgba(0, 180, 216, 0.25));
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 0 16px rgba(0, 180, 216, 0.25);
}

.finder-result-box {
    background: rgba(6, 18, 36, 0.85);
    border: 1.5px solid rgba(0, 180, 216, 0.3);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: var(--transition);
}

.frb-badge-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.frb-match-score {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 6px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34D399;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
}

.frb-tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 6px;
    background: rgba(255, 183, 3, 0.12);
    border: 1px solid rgba(255, 183, 3, 0.3);
    color: var(--gold);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
}

.frb-content-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}

.frb-uni-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.frb-program-name {
    font-size: 1rem;
    color: #00B4D8;
    font-weight: 600;
    margin-bottom: 16px;
}

.frb-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.85rem;
    color: #94A3B8;
}

.frb-meta-item strong {
    color: #E2E8F0;
    font-weight: 600;
}

.frb-pricing-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    min-width: 220px;
}

.frb-price-wrap {
    text-align: right;
}

.frb-price-label {
    display: block;
    font-size: 0.76rem;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.frb-price-val {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
}

.frb-price-note {
    display: block;
    font-size: 0.75rem;
    color: #34D399;
    font-weight: 600;
}

.frb-btns {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ── Shared Section Header (Light Theme Optimized) ── */
.section-header-dark {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 2;
}

.sdh-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 20px;
    border-radius: 999px;
    background: rgba(0, 119, 182, 0.08);
    border: 1px solid rgba(0, 119, 182, 0.22);
    color: #0077B6;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.sdh-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    font-weight: 900;
    color: #0F172A;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}

.sdh-highlight {
    background: linear-gradient(135deg, #0077B6, #00B4D8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sdh-sub {
    font-size: 1.02rem;
    color: #475569;
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto;
}

/* ── Shared CTA Center Button ────────────────────── */
.section-cta-center {
    text-align: center;
    margin-top: 48px;
}

.btn-ghost-glow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 30px;
    border-radius: 999px;
    border: 1.5px solid #0077B6;
    color: #0077B6;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 0.94rem;
    background: #FFFFFF;
    box-shadow: 0 4px 14px rgba(0, 119, 182, 0.12);
    transition: var(--transition);
    text-decoration: none;
}

.btn-ghost-glow:hover {
    background: #0077B6;
    color: #FFFFFF;
    border-color: #0077B6;
    box-shadow: 0 8px 24px rgba(0, 119, 182, 0.28);
    transform: translateY(-2px);
}

.btn-ghost-glow svg {
    transition: transform 0.25s ease;
}

.btn-ghost-glow:hover svg {
    transform: translateX(4px);
}

/* ── Universities Section (Light Theme) ──────────── */
.section-dark-uni {
    background: #FFFFFF;
    padding: 90px 0;
    position: relative;
    border-bottom: 1px solid #E2E8F0;
}

.uni-filter-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.uft-btn {
    padding: 9px 22px;
    border-radius: 999px;
    border: 1.5px solid #E2E8F0;
    background: #F8FAFC;
    color: #475569;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition);
}

.uft-btn:hover {
    border-color: #00B4D8;
    color: #0077B6;
    background: #EFF6FF;
}

.uft-btn.active {
    border-color: #0077B6;
    color: #FFFFFF;
    background: #0077B6;
    box-shadow: 0 4px 14px rgba(0, 119, 182, 0.25);
}

.uni-dark-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.uni-dark-card {
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

.uni-dark-card:hover {
    border-color: #00B4D8;
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 180, 216, 0.14);
}

.udc-image-wrap {
    position: relative;
    height: 190px;
    overflow: hidden;
    background: #0A192F;
}

.udc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.uni-dark-card:hover .udc-img {
    transform: scale(1.05);
}

.udc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,25,47,0.1) 40%, rgba(10,25,47,0.85) 100%);
}

.udc-logo-wrap {
    position: absolute;
    bottom: 12px;
    left: 14px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.udc-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 3px;
}

.udc-top-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    z-index: 3;
}

.udc-type-badge {
    padding: 4px 10px;
    border-radius: 999px;
    background: #0077B6;
    color: #FFFFFF;
    font-size: 0.72rem;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.udc-price-badge {
    padding: 4px 10px;
    border-radius: 999px;
    background: #FFB703;
    color: #0A192F;
    font-size: 0.72rem;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.udc-city-tag {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(10,25,47,0.85);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 3;
}

.udc-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.udc-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 8px;
    line-height: 1.3;
}

.udc-title a {
    color: #0F172A;
    text-decoration: none;
}

.udc-title a:hover {
    color: #0077B6;
}

.udc-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.udc-spec {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    color: #334155;
    font-size: 0.76rem;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.udc-spec-green {
    background: #ECFDF5;
    border-color: #A7F3D0;
    color: #059669;
}

.udc-desc {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
}

.udc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid #F1F5F9;
    padding-top: 16px;
    margin-top: auto;
}

.udc-btn-detail {
    color: #0077B6;
    font-weight: 800;
    font-size: 0.88rem;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: var(--transition);
}

.udc-btn-detail:hover {
    color: #00B4D8;
}

.udc-btn-apply {
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, #0077B6, #00B4D8);
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.udc-btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 180, 216, 0.35);
}

/* ── Popular Departments Section (Light Theme) ───── */
.section-dark-dept {
    background: #F8FAFC;
    padding: 90px 0;
    position: relative;
    border-bottom: 1px solid #E2E8F0;
}

.section-dark-dept .dept-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.section-dark-dept .dept-bento-card {
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    border-radius: var(--radius-md);
    padding: 24px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
}

.section-dark-dept .dept-bento-card:hover {
    border-color: #00B4D8;
    background: #FFFFFF;
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 180, 216, 0.12);
}

.section-dark-dept .dept-icon-box {
    font-size: 2rem;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: rgba(0, 119, 182, 0.08);
    border: 1px solid rgba(0, 119, 182, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-dark-dept .dept-card-title {
    color: #0F172A;
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0;
}

.section-dark-dept .dept-card-title a {
    color: #0F172A;
    text-decoration: none;
}

.section-dark-dept .dept-card-title a:hover {
    color: #0077B6;
}

.section-dark-dept .dept-card-desc {
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.section-dark-dept .dept-degree-pill {
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    color: #334155;
    font-weight: 700;
    font-size: 0.76rem;
    padding: 4px 10px;
    border-radius: 8px;
}

.section-dark-dept .dept-price-pill {
    background: #FFFBEB;
    border: 1px solid #FDE68A;
    color: #D97706;
    font-weight: 800;
    font-size: 0.76rem;
    padding: 4px 10px;
    border-radius: 8px;
}

.section-dark-dept .dept-features-list {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 10px 14px;
    margin: 4px 0 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.section-dark-dept .dept-feature-item {
    color: #334155;
    font-size: 0.82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-dark-dept .dept-card-footer {
    border-top: 1px solid #F1F5F9;
    padding-top: 14px;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-dark-dept .dept-popularity-tag {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 0.76rem;
    padding: 4px 10px;
    border-radius: 8px;
}

.section-dark-dept .dept-popularity-tag.fire {
    background: #FFF7ED;
    border: 1px solid #FED7AA;
    color: #EA580C;
}

.section-dark-dept .dept-popularity-tag.eye {
    background: #F0F9FF;
    border: 1px solid #BAE6FD;
    color: #0077B6;
}

/* ── Why Azerbaijan Section (Light Theme) ────────── */
.section-glass-bento {
    background: #FFFFFF;
    padding: 90px 0;
    position: relative;
    border-bottom: 1px solid #E2E8F0;
}

.glass-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.glass-bento-card {
    background: #F8FAFC;
    border: 1.5px solid #E2E8F0;
    border-radius: var(--radius-md);
    padding: 30px 26px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.glass-bento-card:hover {
    border-color: #00B4D8;
    background: #FFFFFF;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 180, 216, 0.1);
}

.glass-bento-card.glass-featured {
    grid-column: span 1;
    background: #F0F9FF;
    border-color: #BAE6FD;
}

.gbc-glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.gbc-icon-ring {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.glass-bento-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.glass-bento-card p {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.65;
    margin: 0;
}

/* ── Comparison Matrix Section (Light Theme) ─────── */
.section-comparison {
    background: #F8FAFC;
    padding: 90px 0;
    position: relative;
    border-bottom: 1px solid #E2E8F0;
}

.compare-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.compare-table th,
.compare-table td {
    padding: 18px 22px;
    border-bottom: 1px solid #E2E8F0;
    vertical-align: middle;
}

.compare-table thead th {
    background: #0A192F;
    font-family: 'Outfit', sans-serif;
    font-size: 0.98rem;
    font-weight: 800;
    color: #FFFFFF;
}

.compare-table thead .highlight-header {
    background: #0077B6;
    border-left: 2px solid #00B4D8;
    border-right: 2px solid #00B4D8;
    position: relative;
}

.az-pill {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    background: #FFB703;
    color: #0A192F;
    font-size: 0.72rem;
    font-weight: 900;
    margin-bottom: 4px;
}

.th-title {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 800;
}

.td-feature strong {
    display: block;
    color: #0F172A;
    font-size: 0.95rem;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.td-feature span {
    display: block;
    font-size: 0.8rem;
    color: #64748B;
}

.highlight-cell {
    background: #F0F9FF;
    border-left: 2px solid #00B4D8;
    border-right: 2px solid #00B4D8;
}

.comp-badge-success {
    display: inline-block;
    font-size: 0.92rem;
    font-weight: 800;
    color: #059669;
}

.comp-badge-danger {
    display: inline-block;
    font-size: 0.92rem;
    font-weight: 800;
    color: #DC2626;
}

.comp-badge-warning {
    display: inline-block;
    font-size: 0.92rem;
    font-weight: 800;
    color: #D97706;
}

.compare-table td small {
    display: block;
    font-size: 0.78rem;
    color: #64748B;
    margin-top: 4px;
}

/* ── Registration Steps Timeline (Light Theme) ───── */
.section-steps {
    background: #FFFFFF;
    padding: 90px 0;
    border-bottom: 1px solid #E2E8F0;
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.step-timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 0 12px;
}

.sti-num-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.sti-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0077B6, #00B4D8);
    color: #FFFFFF;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 119, 182, 0.3);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.sti-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, #00B4D8, transparent);
    margin: 0 auto;
}

.sti-card {
    background: #F8FAFC;
    border: 1.5px solid #E2E8F0;
    border-radius: var(--radius-md);
    padding: 22px 18px;
    text-align: center;
    flex: 1;
    transition: var(--transition);
    width: 100%;
}

.sti-card:hover {
    border-color: #00B4D8;
    background: #FFFFFF;
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 180, 216, 0.1);
}

.sti-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: #0077B6;
    font-size: 1.3rem;
}

.sti-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.02rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.sti-card p {
    font-size: 0.86rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* ── Life in Baku Guide (Light Theme) ────────────── */
.section-student-life {
    background: #F8FAFC;
    padding: 90px 0;
    border-bottom: 1px solid #E2E8F0;
}

.life-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.life-card {
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    border-radius: var(--radius-md);
    padding: 26px 22px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
}

.life-card:hover {
    border-color: #00B4D8;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 180, 216, 0.12);
}

.life-icon-wrap {
    font-size: 2rem;
    margin-bottom: 12px;
}

.life-badge-pill {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 6px;
    background: #F0F9FF;
    border: 1px solid #BAE6FD;
    color: #0077B6;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 12px;
    align-self: flex-start;
}

.life-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 8px;
}

.life-card p {
    font-size: 0.86rem;
    color: #475569;
    line-height: 1.65;
    margin: 0;
}

/* ── Student Testimonials (Light Theme) ──────────── */
.section-testimonials {
    background: #FFFFFF;
    padding: 90px 0;
    border-bottom: 1px solid #E2E8F0;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testi-card {
    background: #F8FAFC;
    border: 1.5px solid #E2E8F0;
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: var(--transition);
    position: relative;
}

.testi-card:hover {
    border-color: #00B4D8;
    background: #FFFFFF;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 180, 216, 0.1);
}

.testi-card-featured {
    border-color: #BAE6FD;
    background: #F0F9FF;
}

.testi-card .testi-stars {
    color: #F59E0B;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.testi-card .testi-quote {
    font-size: 0.92rem;
    color: #334155;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 22px;
    flex: 1;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #E2E8F0;
    padding-top: 16px;
}

.testi-author .testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 0.9rem;
    color: #FFFFFF;
    flex-shrink: 0;
}

.testi-author strong {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.94rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 2px;
}

.testi-author span {
    display: block;
    font-size: 0.78rem;
    color: #64748B;
}

/* ── FAQ Section (Light Theme) ───────────────────── */
.section-faq {
    background: #F8FAFC;
    padding: 90px 0;
    border-bottom: 1px solid #E2E8F0;
}

.section-faq .faq-grid {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-faq .faq-item {
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.section-faq .faq-item.open {
    border-color: #00B4D8;
    box-shadow: 0 6px 20px rgba(0, 180, 216, 0.1);
}

.section-faq .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.96rem;
    font-weight: 800;
    color: #0F172A;
    background: #FFFFFF;
    transition: var(--transition);
    user-select: none;
}

.section-faq .faq-question:hover {
    color: #0077B6;
}

.section-faq .faq-icon {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0077B6;
    line-height: 1;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.section-faq .faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: #00B4D8;
}

.section-faq .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.75;
    padding: 0 22px;
    background: #FFFFFF;
}

.section-faq .faq-item.open .faq-answer {
    max-height: 280px;
    padding: 0 22px 18px;
}

/* ── Final CTA Banner ────────────────────────────── */
.section-cta-final {
    background: linear-gradient(135deg, #0A192F 0%, #112240 60%, #0077B6 100%);
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
    animation: pulseGlow 5s ease-in-out infinite;
}

.cta-glow-1 {
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.22) 0%, transparent 70%);
}

.cta-glow-2 {
    bottom: -60px;
    left: -60px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 183, 3, 0.18) 0%, transparent 70%);
    animation-delay: 2.5s;
}

.cta-final-inner {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
}

.cta-final-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 999px;
    background: rgba(255,183,3,0.12);
    border: 1px solid rgba(255,183,3,0.3);
    color: var(--gold);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.83rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 24px;
}

.cta-final-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.cta-final-title span {
    background: linear-gradient(135deg, var(--gold), #FB8500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-final-desc {
    font-size: 1.07rem;
    color: #94A3B8;
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 999px;
    background: rgba(37, 211, 102, 0.1);
    border: 1.5px solid rgba(37, 211, 102, 0.3);
    color: #25D366;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

.cta-wa-btn:hover {
    background: rgba(37, 211, 102, 0.18);
    border-color: rgba(37, 211, 102, 0.6);
    color: #25D366;
    transform: translateY(-2px);
}

/* =====================================================
   ULTRA COMPLETE & FLAWLESS MOBILE RESPONSIVE SUITE (320px - 1024px)
   ===================================================== */

/* Global Mobile Overflow & Touch Protection */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

img, video, iframe, canvas, svg {
    max-width: 100% !important;
    height: auto;
}

/* Container Spacing for Small Screens */
@media (max-width: 768px) {
    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* ─────────────────────────────────────────────────────
   TABLET & MEDIUM SCREENS (max-width: 1024px)
   ───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .uni-dark-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 20px; }
    .section-dark-dept .dept-bento-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 16px; }
    .glass-bento-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 18px; }
    .steps-timeline { grid-template-columns: repeat(2, 1fr) !important; gap: 24px; }
    .life-cards-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 20px; }
    .testi-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 20px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 32px; }
    .cards-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 20px; }
    .adv-results-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ─────────────────────────────────────────────────────
   MOBILE DEVICES (max-width: 768px)
   ───────────────────────────────────────────────────── */
@media (max-width: 768px) {

    /* Top Bar */
    .top-bar-modern, .top-bar-text {
        font-size: 0.76rem !important;
        padding: 7px 12px !important;
        text-align: center !important;
        line-height: 1.4 !important;
    }

    /* Header & Navigation */
    .site-header {
        position: sticky !important;
        top: 0;
    }
    .header-container {
        height: 60px !important;
        padding: 0 14px !important;
    }
    .site-logo-img, .site-logo img {
        max-height: 34px !important;
        width: auto !important;
    }
    .header-actions {
        gap: 8px !important;
    }
    .header-search-link {
        width: 36px !important;
        height: 36px !important;
        font-size: 1.05rem !important;
    }
    .header-cta-btn {
        padding: 7px 12px !important;
        font-size: 0.78rem !important;
        font-weight: 700 !important;
        border-radius: 8px !important;
    }

    /* Hero Slider & Banner */
    .hero-slider-container {
        min-height: 520px !important;
        height: auto !important;
        padding: 24px 0 32px !important;
    }
    .hero-slide-item {
        padding: 20px 0 !important;
    }
    .hero-content-wrap {
        padding: 20px 12px !important;
    }
    .hero-badge-pill {
        font-size: 0.74rem !important;
        padding: 5px 12px !important;
        margin-bottom: 14px !important;
        max-width: 96% !important;
        white-space: normal !important;
        text-align: center !important;
        display: inline-flex !important;
        line-height: 1.3 !important;
    }
    .hero-title {
        font-size: clamp(1.4rem, 6vw, 1.95rem) !important;
        line-height: 1.25 !important;
        letter-spacing: -0.02em !important;
        margin-bottom: 12px !important;
    }
    .hero-title-highlight {
        display: inline !important;
    }
    .hero-description {
        font-size: 0.86rem !important;
        line-height: 1.55 !important;
        margin-bottom: 18px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .hero-slider-arrow {
        width: 34px !important;
        height: 34px !important;
    }
    .hero-slider-arrow.prev { left: 8px !important; }
    .hero-slider-arrow.next { right: 8px !important; }

    /* Hero Search Box / Terminal */
    .hero-search-box {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px !important;
        border-radius: 14px !important;
        margin: 0 auto 16px !important;
        box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
    }
    .search-form-row {
        flex-direction: column !important;
        gap: 8px !important;
        width: 100% !important;
    }
    .search-form-row .input-with-icon {
        width: 100% !important;
    }
    .search-input-field {
        width: 100% !important;
        height: 44px !important;
        font-size: 0.88rem !important;
        padding-left: 36px !important;
    }
    .search-form-row .btn-primary, .search-form-row button[type="submit"] {
        width: 100% !important;
        height: 44px !important;
        font-size: 0.92rem !important;
        justify-content: center !important;
    }

    /* Hero Quick Chips */
    .hero-chips-wrap {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 6px !important;
    }
    .hero-chip {
        padding: 4px 10px !important;
        font-size: 0.76rem !important;
    }

    /* Hero Slide Action Buttons */
    .hero-slide-actions {
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
    }
    .btn-hero-primary, .btn-hero-glass {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
    }

    /* Trust Stats Bar */
    .trust-stats-bar {
        padding: 18px 0 !important;
    }
    .trust-stats-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        width: 100% !important;
        flex-direction: unset !important;
    }
    .trust-stat-item {
        padding: 12px 10px !important;
        width: 100% !important;
        background: #FFFFFF !important;
        border: 1px solid #E2E8F0 !important;
        border-radius: 12px !important;
        box-shadow: 0 2px 6px rgba(0,0,0,0.03) !important;
    }
    .trust-stat-divider {
        display: none !important;
    }
    .trust-stat-icon {
        font-size: 1.4rem !important;
    }
    .trust-stat-num {
        font-size: 1.15rem !important;
    }
    .trust-stat-label {
        font-size: 0.78rem !important;
    }
    .trust-stat-sub {
        font-size: 0.68rem !important;
        display: block !important;
    }

    /* Marquee Ribbon */
    .marquee-ribbon {
        padding: 10px 0 !important;
    }
    .marquee-item {
        font-size: 0.8rem !important;
        gap: 8px !important;
    }

    /* Section Headings */
    .section-dark-uni, .section-dark-dept, .section-glass-bento,
    .section-comparison, .section-steps, .section-student-life,
    .section-testimonials, .section-faq, .section-cta-final {
        padding: 48px 0 !important;
    }
    .section-header-dark, .section-header {
        margin-bottom: 24px !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 4px !important;
    }
    .sdh-badge, .section-badge {
        font-size: 0.74rem !important;
        padding: 4px 12px !important;
        margin-bottom: 10px !important;
    }
    .sdh-title, .section-title {
        font-size: clamp(1.3rem, 5.2vw, 1.7rem) !important;
        line-height: 1.25 !important;
        margin-bottom: 8px !important;
    }
    .sdh-sub, .section-subtitle {
        font-size: 0.84rem !important;
        line-height: 1.55 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Filter Tabs (Horizontal Swipeable Pill Strip) */
    .uni-filter-tabs, .hk-filter-tabs {
        display: flex !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        flex-wrap: nowrap !important;
        gap: 6px !important;
        padding-bottom: 10px !important;
        margin-bottom: 20px !important;
        scrollbar-width: none !important;
    }
    .uni-filter-tabs::-webkit-scrollbar, .hk-filter-tabs::-webkit-scrollbar {
        display: none !important;
    }
    .uft-btn, .filter-tab-btn {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        font-size: 0.78rem !important;
        padding: 7px 13px !important;
        border-radius: 999px !important;
    }

    /* Grids to 1 Column on Mobile */
    .uni-dark-grid, .cards-grid,
    .section-dark-dept .dept-bento-grid,
    .glass-bento-grid, .steps-timeline,
    .life-cards-grid, .testi-grid,
    .adv-results-grid, .sehir-grid, .dorm-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        width: 100% !important;
    }

    /* University Cards */
    .uni-dark-card, .uni-card, .hk-uni-card {
        border-radius: 16px !important;
        width: 100% !important;
    }
    .udc-image-wrap {
        height: 180px !important;
    }
    .udc-body {
        padding: 16px 14px !important;
    }
    .udc-title {
        font-size: 1.02rem !important;
        margin-bottom: 8px !important;
    }

    /* World Rankings Strip on Cards (Wrap Safely) */
    .uni-rankings-strip {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 5px !important;
        margin-bottom: 10px !important;
    }
    .uni-rank-pill {
        font-size: 0.7rem !important;
        padding: 3px 8px !important;
        border-radius: 6px !important;
    }

    .udc-specs {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 5px !important;
        margin-bottom: 10px !important;
    }
    .udc-desc {
        font-size: 0.82rem !important;
        line-height: 1.5 !important;
        margin-bottom: 14px !important;
    }
    .udc-footer {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
    }
    .udc-btn-detail, .udc-btn-apply {
        width: 100% !important;
        height: 40px !important;
        font-size: 0.82rem !important;
        text-align: center !important;
        justify-content: center !important;
        padding: 0 10px !important;
        border-radius: 8px !important;
    }

    /* Department Cards */
    .dept-bento-card {
        min-height: 200px !important;
        padding: 16px !important;
        border-radius: 16px !important;
    }
    .dbc-title {
        font-size: 1.05rem !important;
    }

    /* Advantages Glass Bento */
    .glass-bento-card {
        padding: 20px 16px !important;
        border-radius: 16px !important;
    }

    /* Comparison Table Horizontal Scroll Wrap */
    .compare-table-wrap {
        width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        border-radius: 12px !important;
        border: 1px solid #E2E8F0 !important;
        margin-bottom: 12px !important;
        background: #FFFFFF !important;
    }
    .compare-table {
        min-width: 540px !important;
        font-size: 0.82rem !important;
    }
    .compare-table th, .compare-table td {
        padding: 12px 14px !important;
        white-space: nowrap !important;
    }

    /* Steps Timeline */
    .step-card {
        padding: 20px 16px !important;
        border-radius: 16px !important;
    }

    /* Student Life Cards */
    .life-card {
        border-radius: 16px !important;
    }
    .life-card-img {
        height: 170px !important;
    }
    .life-card-body {
        padding: 16px !important;
    }

    /* FAQ Accordion */
    .faq-grid, .section-faq .faq-grid {
        width: 100% !important;
        max-width: 100% !important;
        gap: 10px !important;
    }
    .faq-item {
        border-radius: 12px !important;
    }
    .faq-question {
        padding: 14px 16px !important;
        font-size: 0.88rem !important;
    }
    .faq-answer {
        padding: 0 16px 14px !important;
        font-size: 0.84rem !important;
        line-height: 1.55 !important;
    }

    /* CTA Final Section */
    .section-cta-final {
        padding: 40px 16px !important;
    }
    .cta-final-inner {
        width: 100% !important;
        max-width: 100% !important;
    }
    .cta-final-title {
        font-size: clamp(1.4rem, 5.5vw, 1.85rem) !important;
        margin-bottom: 12px !important;
    }
    .cta-final-desc {
        font-size: 0.88rem !important;
        line-height: 1.55 !important;
        margin-bottom: 24px !important;
    }
    .cta-final-btns {
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
    }
    .cta-final-btns .btn, .cta-wa-btn {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        padding: 13px 20px !important;
        font-size: 0.9rem !important;
    }

    /* Footer */
    .site-footer {
        padding: 40px 0 20px !important;
    }
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }
    .footer-bottom {
        flex-direction: column !important;
        text-align: center !important;
        gap: 8px !important;
        padding-top: 20px !important;
    }

    /* Floating WhatsApp Button */
    .whatsapp-float-btn {
        bottom: 16px !important;
        right: 16px !important;
        width: 48px !important;
        height: 48px !important;
        font-size: 24px !important;
    }
    .wa-tooltip {
        display: none !important;
    }

    /* Modal Dialogs */
    .basvuru-modal-wrap, .modal-dialog {
        width: 94% !important;
        max-width: 420px !important;
        padding: 20px 16px !important;
        border-radius: 18px !important;
        max-height: 90vh !important;
        overflow-y: auto !important;
    }
    .form-group input, .form-group select, .form-group textarea {
        height: 44px !important;
        font-size: 0.9rem !important;
    }

    /* Single University, Program & City Pages Table Responsiveness */
    .su-tabs-nav, .uni-prog-tabs {
        display: flex !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 6px !important;
        scrollbar-width: none !important;
    }
    .su-tab-btn, .uni-prog-tab {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        font-size: 0.8rem !important;
        padding: 8px 14px !important;
    }
    .su-table-wrap, .uni-prog-table-wrap {
        width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        border-radius: 12px !important;
    }
    #uniProgTable {
        min-width: 480px !important;
        width: 100% !important;
    }
}

/* ─────────────────────────────────────────────────────
   EXTRA SMALL PHONES (max-width: 480px)
   ───────────────────────────────────────────────────── */
@media (max-width: 480px) {
    .trust-stats-grid {
        grid-template-columns: 1fr !important;
    }
    .hero-title {
        font-size: 1.45rem !important;
    }
    .sdh-title, .section-title {
        font-size: 1.35rem !important;
    }
    .udc-footer {
        grid-template-columns: 1fr !important;
    }
    .hero-chips-wrap {
        display: none !important;
    }
}





