/* ========================================
   Gazi Bilim Koleji - Modern Design System
   Color Palette: Navy + Gold
   ======================================== */

:root {
    --primary-gold: #e8b023;
    --primary-gold-light: #f5c54c;
    --primary-gold-dark: #d49b18;
    --navy-darkest: #090d2d;
    --navy-dark: #090d2d;
    --navy: #090d2d;
    --navy-light: #141b4d;
    --navy-lighter: #1e2663;
    --navy-card: #111742;
    --navy-card-border: rgba(212, 168, 67, 0.18);
    --text-white: #ffffff;
    --text-light: #e2e6f5;
    --text-muted: #b8c0db;
    --text-dark-muted: #9ba4c4;
    --glass: rgba(13, 17, 55, 0.85);
    --glass-light: rgba(255, 255, 255, 0.06);
    --glass-gold: rgba(212, 168, 67, 0.12);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 4px 30px rgba(212, 168, 67, 0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   Base Styles
   ======================================== */
body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--navy-dark);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    float: none;
    width: auto;
    color: var(--text-white);
    margin: 0;
    line-height: 1.3;
}

a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-gold-light);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

::selection {
    background: var(--primary-gold);
    color: var(--navy-dark);
}

/* ========================================
   Header / Navbar
   ======================================== */
header {
    background: transparent;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 0;
}

header.scrolled {
    background: rgba(6, 10, 30, 0.96) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(212, 168, 67, 0.15);
}

/* Navigation */
.menuduzenle {
    text-align: right;
}

.menuduzenle ul {
    list-style: none;
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
    align-items: center;
}

.menuduzenle ul li {
    position: relative;
}

.menuduzenle ul li a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.88rem;
    transition: var(--transition);
    padding: 12px 14px;
    display: block;
    letter-spacing: 0.3px;
    text-transform: none;
}

.menuduzenle ul li a:hover,
.menuduzenle ul li.active>a {
    color: var(--primary-gold);
    font-size: 0.88rem;
}

/* Dropdown */
.menuduzenle ul li ul {
    position: absolute;
    top: 100%;
    left: 0 !important;
    right: auto !important;
    text-align: left !important;
    background: var(--navy);
    box-shadow: var(--shadow-lg);
    min-width: 240px;
    display: none;
    padding: 12px 0;
    border-radius: var(--radius);
    z-index: 100;
    border: 1px solid var(--navy-card-border);
}

.menuduzenle ul li:hover>ul {
    display: block;
    animation: fadeInDown 0.3s ease;
}

.menuduzenle ul li ul li {
    width: 100%;
    display: block;
    padding: 0 15px;
    margin: 0 !important;
    text-align: left !important;
}

.menuduzenle ul li ul li a {
    padding: 10px 8px;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 500;
}

.menuduzenle ul li ul li a:hover {
    color: var(--primary-gold);
    padding-left: 12px;
}

.menuduzenle ul li ul li:last-child a {
    border-bottom: none;
}

/* Header Buttons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-header-search {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
}

.btn-header-search:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
}

.btn-header-gold {
    background: var(--primary-gold);
    color: var(--navy-dark);
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border: none;
    font-family: 'Outfit', sans-serif;
}

.btn-header-gold:hover {
    background: var(--primary-gold-light);
    color: var(--navy-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

/* ========================================
   Hero Section
   ======================================== */
.gazi-hero {
    background-color: var(--navy-dark);
    background-image: url('../img/head.webp');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
    position: relative;
    padding: 160px 0 150px;
    margin-top: -85px;
    overflow: hidden;
    min-height: 820px;
}

.hero-school-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url('../okul.webp');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    pointer-events: none;
    z-index: 1;
}

.gazi-hero::before,
.gazi-features::before,
footer::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, rgba(212, 168, 67, 0.02) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    animation: heroGlowPulse 4.5s ease-in-out infinite;
}

/* 4-5 Saniye Aralıklı Şık Parıltı & Işık Geçiş Efekti (Hero, Features, Footer) */
.gazi-hero::after,
.gazi-features::after,
footer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 250%;
    height: 200%;
    background: linear-gradient(
        115deg,
        transparent 0%,
        rgba(212, 168, 67, 0) 30%,
        rgba(212, 168, 67, 0.04) 45%,
        rgba(255, 255, 255, 0.09) 50%,
        rgba(212, 168, 67, 0.04) 55%,
        rgba(212, 168, 67, 0) 70%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
    animation: heroShimmerSweep 4.5s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

@keyframes heroShimmerSweep {
    0% {
        transform: translateX(-80%) rotate(18deg);
        opacity: 0;
    }
    15% {
        opacity: 0.45;
    }
    45% {
        transform: translateX(45%) rotate(18deg);
        opacity: 0.45;
    }
    55%, 100% {
        transform: translateX(100%) rotate(18deg);
        opacity: 0;
    }
}

@keyframes heroGlowPulse {
    0%, 100% {
        opacity: 0.2;
        transform: scale(0.96);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.04);
    }
}

.gazi-hero .container,
.gazi-features .container,
footer .container {
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(212, 168, 67, 0.12);
    color: var(--primary-gold);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(212, 168, 67, 0.2);
}

.gazi-hero .hero-title,
.hero-title {
    font-size: 3.2rem !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    margin-bottom: 1.2rem;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.gazi-hero .hero-title span,
.gazi-hero .hero-title strong,
.gazi-hero .hero-title b,
.hero-title span,
.hero-title strong,
.hero-title b {
    color: var(--primary-gold) !important;
    font-weight: 900 !important;
    display: inline !important;
}

.hero-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.8;
}

/* Hero Action Buttons (Birebir Referans Görseli) */
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.btn-pill-gold {
    background: #eeb527;
    color: #0a0e27;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.92rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 4px 15px rgba(238, 181, 39, 0.3);
}

.btn-pill-gold:hover {
    background: #f5c44c;
    color: #0a0e27;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 181, 39, 0.45);
}

.btn-video-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
    cursor: pointer;
}

.btn-video-cta .video-play-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #eeb527;
    color: #0a0e27;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    padding-left: 3px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(238, 181, 39, 0.3);
}

.btn-video-cta:hover {
    color: #eeb527;
}

.btn-video-cta:hover .video-play-circle {
    transform: scale(1.08);
    background: #f5c44c;
    box-shadow: 0 6px 18px rgba(238, 181, 39, 0.5);
}

/* Dual Feature Cards (Yurtdışı Üniversite & Bursluluk Kartları - Birebir Görsel) */
.hero-dual-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.hero-feature-card {
    background: rgba(26, 32, 68, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.hero-feature-card:hover {
    border-color: rgba(238, 181, 39, 0.3);
    background: rgba(32, 40, 85, 0.85);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.hfc-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.hfc-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hfc-icon-gold {
    background: #eeb527;
    color: #0a0e27;
}

.hfc-icon-white {
    background: #ffffff;
    color: #0a0e27;
}

.hfc-title {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
    font-family: 'Outfit', sans-serif;
}

.hfc-divider {
    height: 1px;
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 12px;
}

.hfc-bottom {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hfc-check-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #eeb527;
    color: #0a0e27;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 900;
    flex-shrink: 0;
}

.hfc-stat-text {
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

.hero-feature-item i {
    color: var(--primary-gold);
    font-size: 0.8rem;
}

.hero-feature-item .check-icon {
    width: 22px;
    height: 22px;
    background: rgba(212, 168, 67, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-feature-item .check-icon i {
    font-size: 0.65rem;
}

/* ========================================
   Premium Global Education Portal (Küresel Üniversite Kabul Ağı)
   ======================================== */
.global-edu-portal {
    background: rgba(14, 18, 48, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 168, 67, 0.25);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65), 0 0 30px rgba(212, 168, 67, 0.08);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.global-edu-portal::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.portal-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.portal-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.3px;
}

.portal-title i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.portal-badge-live {
    font-size: 0.75rem;
    font-weight: 700;
    color: #4ade80;
    background: rgba(74, 222, 128, 0.12);
    border: 1px solid rgba(74, 222, 128, 0.28);
    padding: 5px 12px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.portal-badge-live .pulse-dot {
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 8px #4ade80;
    animation: livePulse 1.8s infinite;
}

/* Direct Country Grid (En Sağa Hizalı) */
.portal-country-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
    max-width: 480px !important;
    margin-left: auto !important;
    margin-right: 0 !important;
}

.portal-country-card {
    background: rgba(22, 28, 68, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 14px 16px;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.portal-country-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--primary-gold);
    opacity: 0;
    transition: var(--transition);
}

.portal-country-card:hover {
    background: rgba(32, 40, 95, 0.85);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 168, 67, 0.15);
}

.portal-country-card:hover::before {
    opacity: 1;
}

/* Specific Accent Borders on Hover */
.card-accent-uk:hover {
    border-color: rgba(245, 158, 11, 0.6);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(245, 158, 11, 0.25);
}
.card-accent-uk::before { background: #f59e0b; }

.card-accent-germany:hover {
    border-color: rgba(16, 185, 129, 0.6);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(16, 185, 129, 0.25);
}
.card-accent-germany::before { background: #10b981; }

.card-accent-france:hover {
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(59, 130, 246, 0.25);
}
.card-accent-france::before { background: #3b82f6; }

.card-accent-netherlands:hover {
    border-color: rgba(249, 115, 22, 0.6);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(249, 115, 22, 0.25);
}
.card-accent-netherlands::before { background: #f97316; }

.card-accent-switzerland:hover {
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(139, 92, 246, 0.25);
}
.card-accent-switzerland::before { background: #8b5cf6; }

.card-accent-usa:hover {
    border-color: rgba(6, 182, 212, 0.6);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(6, 182, 212, 0.25);
}
.card-accent-usa::before { background: #06b6d4; }

/* Card Internal Top */
.card-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.card-flag-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-flag-emoji {
    font-size: 1.4rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

.card-country-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 0.3px;
}

/* Online Status Icon & Pulsating Signal */
.online-indicator {
    position: relative;
    width: 8px;
    height: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
    flex-shrink: 0;
}

.online-indicator .online-dot {
    width: 7px;
    height: 7px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 0 8px #25D366, 0 0 3px #25D366;
    position: relative;
    z-index: 2;
}

.online-indicator .online-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(37, 211, 102, 0.55);
    transform: translate(-50%, -50%);
    animation: countryOnlineRadar 1.8s cubic-bezier(0.24, 0, 0.38, 1) infinite;
    z-index: 1;
}

@keyframes countryOnlineRadar {
    0% {
        width: 6px;
        height: 6px;
        opacity: 0.95;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        width: 18px;
        height: 18px;
        opacity: 0;
    }
}

.card-tag {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--primary-gold);
    background: rgba(212, 168, 67, 0.12);
    border: 1px solid rgba(212, 168, 67, 0.25);
    padding: 2px 7px;
    border-radius: 4px;
    text-transform: uppercase;
}

.card-unis-text {
    font-size: 0.76rem;
    color: #94a3b8;
    line-height: 1.35;
    font-weight: 500;
    margin-top: 2px;
}

.portal-country-card:hover .card-unis-text {
    color: #f1f5f9;
}

.card-arrow-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--primary-gold);
    transition: var(--transition);
    flex-shrink: 0;
}

.portal-country-card:hover .card-arrow-icon {
    background: var(--primary-gold);
    color: var(--navy-dark);
    transform: rotate(-45deg);
}

/* Portal Footer Note */
.portal-footer-hint {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(212, 168, 67, 0.2);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}

.portal-footer-hint i {
    color: var(--primary-gold);
    font-size: 1rem;
    flex-shrink: 0;
}

/* Video Modal Styles */
.modal-video-content {
    background: #0b0f2a !important;
    border: 1px solid rgba(212, 168, 67, 0.35) !important;
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9), 0 0 35px rgba(212, 168, 67, 0.15) !important;
}

.modal-video-header {
    background: rgba(18, 24, 60, 0.9) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 14px 22px !important;
    color: #ffffff;
}

.modal-video-header .modal-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
}

.modal-video-header .modal-title i {
    color: #eeb527;
}

/* University Modals */
.modal-uni-content {
    background: #101533 !important;
    border: 1px solid rgba(212, 168, 67, 0.3) !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(212, 168, 67, 0.15) !important;
    color: var(--text-light);
}

.modal-uni-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 20px 26px !important;
    background: rgba(255, 255, 255, 0.02);
}

.modal-uni-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.modal-uni-badge {
    background: rgba(212, 168, 67, 0.15);
    color: var(--primary-gold);
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid rgba(212, 168, 67, 0.25);
}

.modal-uni-body {
    padding: 24px 26px !important;
    max-height: 70vh;
    overflow-y: auto;
}

.uni-item-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius);
    padding: 16px 18px;
    margin-bottom: 12px;
    transition: var(--transition);
}

.uni-item-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 168, 67, 0.3);
    transform: translateX(4px);
}

.uni-item-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    gap: 10px;
}

.uni-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
}

.uni-rank {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary-gold);
    background: rgba(212, 168, 67, 0.12);
    border: 1px solid rgba(212, 168, 67, 0.2);
    padding: 3px 8px;
    border-radius: 6px;
    white-space: nowrap;
}

.uni-dept-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.uni-tag {
    font-size: 0.72rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    padding: 3px 8px;
    border-radius: 4px;
}

.uni-perk-box {
    background: rgba(212, 168, 67, 0.08);
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: var(--radius);
    padding: 14px 18px;
    margin-top: 18px;
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 12px;
}

.uni-perk-box i {
    color: var(--primary-gold);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.modal-uni-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 16px 26px !important;
}

/* Hero Tabs */
.hero-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.hero-tab {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.hero-tab:hover,
.hero-tab.active {
    background: var(--primary-gold);
    color: var(--navy-dark);
    border-color: var(--primary-gold);
    font-weight: 700;
}

/* ========================================
   About Section
   ======================================== */
.gazi-about {
    padding: 100px 0;
    background: var(--navy-dark);
    position: relative;
}

/* ========================================
   About Section (Birebir Referans Tasarımı)
   ======================================== */
.gazi-about {
    padding: 100px 0 110px;
    background: var(--navy-dark);
    position: relative;
    overflow: hidden;
}

.about-image-composition {
    position: relative;
    padding-right: 25px;
    padding-bottom: 25px;
}

.about-main-card {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

.about-main-card img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
    border-radius: 26px;
}

.about-experience-badge {
    position: absolute;
    bottom: 22px;
    left: 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(10, 14, 39, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 22px;
    border-radius: 50px;
    border: 1px solid rgba(238, 181, 39, 0.35);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.about-experience-badge .badge-icon-wrap {
    font-size: 1.9rem;
    color: #eeb527;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-experience-badge .badge-text-wrap {
    color: #eeb527;
    font-weight: 800;
    font-size: 0.95rem;
    line-height: 1.25;
    font-family: 'Outfit', sans-serif;
}

.about-floating-thumb {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 165px;
    height: 165px;
    border-radius: 24px;
    border: 5px solid #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    z-index: 3;
    background: #000000;
}

.about-floating-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* About Right Content */
.about-hero-title {
    margin-bottom: 20px;
}

.about-hero-title .title-sub {
    font-size: 1.85rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.25;
    letter-spacing: -0.3px;
    font-family: 'Outfit', sans-serif;
}

.about-hero-title .title-main {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.25;
    letter-spacing: -0.5px;
    font-family: 'Outfit', sans-serif;
}

.about-lead-text,
.about-content-area p {
    color: #cbd5e1;
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 14px;
    font-weight: 400;
}

/* About Action 4 Cards Grid */
.about-action-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 30px;
}

.about-action-card {
    background: #e8ecf2;
    border-radius: 12px;
    padding: 18px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: #111827;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.about-action-card i {
    font-size: 1.75rem;
    color: #111827;
    transition: transform 0.3s ease;
}

.about-action-card span {
    font-size: 0.92rem;
    font-weight: 800;
    color: #111827;
}

.about-action-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    background: #f1f5f9;
}

.about-action-card:hover i {
    transform: scale(1.1);
}

.about-action-card-gold {
    background: #d99b26;
}

.about-action-card-gold:hover {
    background: #eeb527;
    box-shadow: 0 10px 25px rgba(217, 155, 38, 0.45);
}

.about-icon-btn.active {
    background: var(--primary-gold);
    color: var(--navy-dark);
    border-color: var(--primary-gold);
}

.about-icon-btn.active i {
    color: var(--navy-dark);
}

/* ========================================
   Features Section (Sınırları Aşan Eğitim - Birebir Referans Tasarımı)
   ======================================== */
.gazi-features {
    padding: 100px 0 110px;
    background-color: var(--navy-dark);
    background-image: url('../img/head.webp');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    position: relative;
    overflow: hidden;
}

.gazi-features-header {
    text-align: center;
    margin-bottom: 45px;
}

.gazi-features-header .feat-subtitle {
    font-size: 1.85rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.25;
    letter-spacing: -0.3px;
    font-family: 'Outfit', sans-serif;
}

.gazi-features-header .feat-title {
    font-size: 2.35rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0;
    line-height: 1.25;
    letter-spacing: -0.5px;
    font-family: 'Outfit', sans-serif;
}

/* Feature Modern Cards & Carousel */
.feature-modern-carousel .owl-stage {
    display: flex;
    padding: 12px 0 16px;
}

.feature-modern-carousel .owl-item {
    display: flex;
    flex: 1 0 auto;
    height: auto;
}

.feature-modern-carousel .owl-item .item {
    width: 100%;
    height: 100%;
    display: flex;
}

.feature-modern-carousel .owl-item .feature-modern-card {
    width: 100%;
}

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

.feature-modern-card {
    background: rgba(26, 32, 68, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    height: 100%;
}

.feature-modern-card:hover {
    transform: translateY(-6px);
    border-color: rgba(238, 181, 39, 0.4);
    background: rgba(32, 40, 85, 0.92);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(238, 181, 39, 0.15);
}

.fmc-top {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.fmc-icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #eeb527;
    color: #0a0e27;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(238, 181, 39, 0.3);
}

.fmc-title {
    color: #ffffff;
    font-weight: 800;
    font-size: 0.96rem;
    line-height: 1.3;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.fmc-img-wrap {
    border-radius: 14px;
    overflow: hidden;
    height: 145px;
    margin: 14px 0 14px;
    width: 100%;
    background: #111827;
}

.fmc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.feature-modern-card:hover .fmc-img-wrap img {
    transform: scale(1.05);
}

.fmc-desc {
    color: #cbd5e1;
    font-size: 0.82rem;
    line-height: 1.55;
    margin-bottom: 16px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fmc-link {
    color: #eeb527;
    font-weight: 800;
    font-size: 0.88rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Outfit', sans-serif;
    transition: all 0.2s ease;
    margin-top: auto;
}

.fmc-link:hover {
    color: #f5c44c;
    transform: translateX(3px);
}

/* Bottom Pill Button (Tüm Farklarımız) */
.btn-all-features {
    background: rgba(28, 36, 75, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 12px 36px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    font-family: 'Outfit', sans-serif;
}

.btn-all-features:hover {
    background: #eeb527;
    color: #0a0e27;
    border-color: #eeb527;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 181, 39, 0.35);
}

/* ========================================
   Programs Section (Kartlar)
   ======================================== */
.gazi-programs {
    padding: 80px 0;
    background: var(--navy-dark);
}

.program-card {
    background: var(--navy-card);
    border: 1px solid var(--navy-card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 168, 67, 0.2);
}

.program-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.program-card-body {
    padding: 22px;
}

.program-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.6rem;
}

.program-card-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.program-card-link {
    color: var(--primary-gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.program-card-link:hover {
    color: var(--primary-gold-light);
    gap: 10px;
}

.btn-see-all {
    display: inline-block;
    padding: 12px 32px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.btn-see-all:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

/* ========================================
   FAQ Section (Gazi Bilim Koleji Sık Sorulanlar)
   ======================================== */
.gazi-faq {
    padding: 110px 0 120px;
    background: var(--navy-dark);
    position: relative;
}

.faq-title-gold {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1.25;
    margin-bottom: 4px;
    font-family: 'Outfit', sans-serif;
}

.faq-title-white {
    font-size: 2.45rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
    font-family: 'Outfit', sans-serif;
}

.faq-desc-text {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 480px;
    font-weight: 400;
}

.faq-pill-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-faq-pill-gold {
    background: var(--primary-gold);
    color: #0a0e27;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 12px 28px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(232, 176, 35, 0.3);
    font-family: 'Outfit', sans-serif;
}

.btn-faq-pill-gold:hover {
    background: #f5c44c;
    color: #0a0e27;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(232, 176, 35, 0.45);
}

.btn-faq-pill-white {
    background: #ffffff;
    color: #0a0e27;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 12px 28px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-family: 'Outfit', sans-serif;
}

.btn-faq-pill-white:hover {
    background: #f1f5f9;
    color: #0a0e27;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(255, 255, 255, 0.35);
}

/* FAQ Modern Accordion Cards */
.faq-modern-item {
    background: rgba(28, 35, 75, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-modern-item:hover {
    border-color: rgba(232, 176, 35, 0.3);
    background: rgba(32, 40, 85, 0.92);
}

.faq-modern-btn {
    background: transparent;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.02rem;
    padding: 18px 24px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    box-shadow: none;
    display: block;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: color 0.2s ease;
}

.faq-modern-btn.collapsed {
    color: #ffffff;
}

.faq-modern-btn:not(.collapsed) {
    color: #ffffff;
}

.faq-modern-body {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 24px 22px;
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.65;
    font-weight: 400;
}

.faq-accordion .accordion-collapse {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* ========================================
   Footer Section (Birebir Referans Tasarımı)
   ======================================== */
footer {
    background-color: var(--navy-dark);
    background-image: url('../img/head.webp');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto;
    padding: 85px 0 35px;
    color: #cbd5e1;
    font-family: 'Outfit', sans-serif;
    position: relative;
    overflow: hidden;
}

.footer-brand-logo {
    display: inline-block;
    margin-bottom: 22px;
}

.footer-brand-logo img {
    max-height: 100px;
    width: auto;
    object-fit: contain;
}

.footer-address-text {
    color: #cbd5e1;
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 20px;
    font-weight: 400;
    max-width: 360px;
}

.footer-phone-number {
    font-size: 1.9rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
    font-family: 'Outfit', sans-serif;
}

.footer-phone-number a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-phone-number a:hover {
    color: var(--primary-gold);
}

.footer-email-link {
    color: #cbd5e1;
    font-size: 0.88rem;
    margin-bottom: 22px;
    text-decoration: none;
    display: inline-block;
    transition: color 0.2s ease;
}

.footer-email-link:hover {
    color: #ffffff;
}

.footer-social-circles {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}

.footer-circle-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-circle-icon:hover {
    border-color: var(--primary-gold);
    background: var(--primary-gold);
    color: #090d2d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 176, 35, 0.4);
}

.footer-col-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-family: 'Outfit', sans-serif;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 8px;
}

.footer-links-list li a {
    color: #cbd5e1;
    font-size: 0.88rem;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-links-list li a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-bottom-line {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: #cbd5e1;
    font-size: 0.85rem;
    font-weight: 400;
}

.footer-bottom a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--primary-gold);
}

/* ========================================
   Section Utilities
   ======================================== */
.section-padding {
    padding: 100px 0;
}

.bg-slate {
    background-color: var(--navy);
}

.bg-dark-slate {
    background-color: var(--navy-dark);
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(212, 168, 67, 0.1);
    color: var(--primary-gold);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    border: 1px solid rgba(212, 168, 67, 0.15);
}

/* ========================================
   Cards (CMS Override)
   ======================================== */
.cms-card {
    background: var(--navy-card);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--navy-card-border);
    height: 100%;
}

.cms-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 168, 67, 0.2);
}

.btn-modern {
    background: var(--primary-gold);
    color: var(--navy-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    transition: var(--transition);
    font-family: 'Outfit', sans-serif;
}

.btn-modern:hover {
    background: var(--primary-gold-light);
    color: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ========================================
   Stat Items
   ======================================== */
.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ========================================
   Image Stack
   ======================================== */
.image-stack {
    position: relative;
    height: 450px;
}

.image-stack-item {
    position: absolute;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(212, 168, 67, 0.2);
}

.image-stack-item-1 {
    width: 80%;
    height: 80%;
    top: 0;
    left: 0;
    z-index: 2;
    object-fit: cover;
}

.image-stack-item-2 {
    width: 60%;
    height: 60%;
    bottom: 0;
    right: 0;
    z-index: 1;
    object-fit: cover;
}

/* ========================================
   Feature Box
   ======================================== */
.feature-box {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--navy-card);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow);
    color: var(--primary-gold);
    font-size: 1.5rem;
    border: 1px solid var(--navy-card-border);
}

/* ========================================
   CTA Banner
   ======================================== */
.cta-banner {
    background: linear-gradient(135deg, rgba(212, 168, 67, 0.9), rgba(184, 146, 46, 0.95));
    padding: 100px 0;
    color: var(--navy-dark);
    border-radius: var(--radius-xl);
    text-align: center;
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-gold {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(212, 168, 67, 0.3);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(212, 168, 67, 0);
    }
}

/* ========================================
   Mobile Toggle
   ======================================== */
.mobile-toggle i {
    color: var(--text-white);
    font-size: 1.3rem;
}

/* ========================================
   Page General Overrides
   ======================================== */
.sayfa {
    background: var(--navy-card);
    color: var(--text-light);
    box-shadow: var(--shadow);
    border-radius: var(--radius-lg);
}

.sayfa h1 {
    color: var(--text-white);
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
    background: var(--navy-card) !important;
    border: 1px solid var(--navy-card-border) !important;
    color: var(--text-light) !important;
    box-shadow: none !important;
}

.sayfa button,
.iletisimform button {
    background: var(--primary-gold);
    color: var(--navy-dark);
    border-radius: 10px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-image-wrapper {
        text-align: center;
        margin-top: 2rem;
    }

    .hero-image-wrapper img {
        max-height: 350px;
    }

    .section-title-center {
        font-size: 1.8rem;
    }

    .about-title {
        font-size: 1.7rem;
    }

    .faq-left-title {
        font-size: 1.6rem;
    }

    .about-icons-row {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .gazi-hero {
        padding: 20px 0 30px;
        margin-top: -75px;
        padding-top: 95px;
        min-height: auto;
        background-size: cover;
    }

    .hero-school-bg {
        max-width: 100%;
        height: 60%;
        opacity: 0.35;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-features-box {
        padding: 18px;
    }

    .hero-tabs {
        justify-content: center;
    }

    .header-actions {
        display: none;
    }

    .gazi-about,
    .gazi-features,
    .gazi-programs,
    .gazi-faq {
        padding: 60px 0;
    }

    .about-image-wrapper img {
        height: 280px;
    }

    .section-title-center {
        font-size: 1.5rem;
    }

    .about-title {
        font-size: 1.4rem;
        margin-top: 1.5rem;
    }

    .about-icons-row {
        gap: 8px;
    }

    .about-icon-btn {
        min-width: 80px;
        padding: 14px 16px;
    }

    .faq-left-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .footer-phone {
        font-size: 1.1rem;
    }

    .program-card-img {
        height: 180px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .map-mosaic-wrapper {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .slice-uk { grid-column: 1 / 2; grid-row: auto; }
    .slice-netherlands { grid-column: 2 / 3; grid-row: auto; }
    .slice-germany { grid-column: 1 / 3; grid-row: auto; }
    .slice-france { grid-column: 1 / 2; grid-row: auto; }
    .slice-switzerland { grid-column: 2 / 3; grid-row: auto; }
    .slice-usa { grid-column: 1 / 3; grid-row: auto; flex-direction: column; align-items: flex-start; }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        text-align: center;
        justify-content: center;
    }

    .about-action-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .feature-modern-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-floating-thumb {
        width: 120px;
        height: 120px;
        bottom: 0px;
        right: 0px;
    }
}

/* ========================================
   Scrollbar
   ======================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--navy-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--navy-lighter);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold-dark);
}

/* ========================================
   Style.css Overrides (MUST be last)
   ======================================== */

/* Fix h-tag floats from style.css */
.gazi-hero h1,
.gazi-about h2,
.gazi-features h2,
.gazi-features h4,
.gazi-programs h4,
.gazi-faq h2,
.section-title-center,
.section-subtitle-center,
.about-title,
.about-subtitle,
.feature-card-title,
.program-card-title,
.faq-left-title,
.hero-title {
    float: none !important;
    width: auto !important;
}

/* Explicit size overrides for hero & section titles */
.hero-title {
    font-size: 3.2rem !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
}

.hero-title span,
.hero-title strong,
.hero-title b {
    color: var(--primary-gold) !important;
    font-weight: 900 !important;
}

.about-title {
    font-size: 2.2rem !important;
    font-weight: 800 !important;
}

.section-title-center {
    font-size: 2.4rem !important;
    font-weight: 800 !important;
}

.faq-left-title {
    font-size: 2rem !important;
    font-weight: 800 !important;
}

.feature-card-title {
    font-size: 1.05rem !important;
    font-weight: 700 !important;
}

.program-card-title {
    font-size: 1rem !important;
    font-weight: 700 !important;
}

/* Fix body background */
body {
    background: var(--navy-dark) !important;
}

/* Fix header text for white/light text */
.menuduzenle a {
    color: var(--text-light) !important;
    font-size: 1rem !important;
    text-transform: none !important;
}

.menuduzenle ul li:hover>a,
.menuduzenle ul li.active>a {
    color: var(--primary-gold) !important;
    font-size: 1rem !important;
}

.menuduzenle ul ul {
    background: var(--navy) !important;
    border-radius: var(--radius) !important;
    border: 1px solid var(--navy-card-border) !important;
    padding: 12px 0 !important;
    min-width: 240px !important;
    left: 0 !important;
    right: auto !important;
    text-align: left !important;
}

.menuduzenle ul ul a {
    color: var(--text-muted) !important;
    font-size: 0.88rem !important;
    text-align: left !important;
    justify-content: flex-start !important;
}

.menuduzenle ul li ul a:hover {
    color: var(--primary-gold) !important;
    background: none !important;
    font-size: 0.88rem !important;
}

/* Fix header button gold color */
.btn-header-gold {
    background: var(--primary-gold) !important;
    color: var(--navy-dark) !important;
}

.btn-header-gold:hover {
    background: var(--primary-gold-light) !important;
    color: var(--navy-dark) !important;
}

/* Fix footer background & colors */
footer {
    background-color: #090d2d !important;
    background-image: url('../img/head.webp') !important;
    background-repeat: no-repeat !important;
    background-position: center bottom !important;
    background-size: 100% auto !important;
    color: var(--text-light) !important;
    margin: 0 !important;
    position: relative !important;
    overflow: hidden !important;
}

footer .footer-title {
    color: var(--text-white) !important;
    float: none !important;
    width: auto !important;
}

footer a {
    color: var(--text-muted) !important;
}

footer a:hover {
    color: var(--primary-gold) !important;
}

.fososyal a {
    float: none !important;
    width: auto !important;
    height: auto !important;
}

/* Fix logo */
.logo {
    margin: 0 !important;
}


/* Fix border colors for dark theme */
.border-end {
    border-color: rgba(255, 255, 255, 0.06) !important;
}

/* Fix breadcrumb for dark theme */
.breadcrumb {
    background: var(--navy-card) !important;
}

.breadcrumb a {
    color: var(--text-light) !important;
}

/* Fix sayfa and forms for dark theme */
.sayfa {
    background: var(--navy-card) !important;
    color: var(--text-light) !important;
}

.sayfa h1 {
    color: var(--text-white) !important;
}

/* Fix iletisim pages */
.iletisimbilgi,
.iletisimform {
    background: var(--navy-card) !important;
    color: var(--text-light) !important;
    box-shadow: var(--shadow) !important;
}

.iletisimbilgi h1,
.iletisimform h1 {
    color: var(--text-white) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

/* Fix haber cards */
.habertek {
    background: var(--navy-card) !important;
    box-shadow: var(--shadow) !important;
}

.habertek h1,
.habertek h5 {
    color: var(--text-light) !important;
}

/* Fix general text colors */
.siyah {
    background: var(--navy-dark) !important;
}

.beyaz {
    background: var(--navy-card) !important;
    color: var(--text-light) !important;
}

/* Altkisim */
.altkisim {
    background: var(--navy-darkest) !important;
}

.alttek a {
    color: var(--text-muted) !important;
}

.alttek a:hover {
    color: var(--primary-gold) !important;
}

.alttek h1 {
    color: var(--text-white) !important;
}

/* Fix pagination */
ul.pagination li {
    background: var(--navy-card) !important;
    border-color: var(--navy-card-border) !important;
    color: var(--text-light) !important;
}

/* Fix accordion overrides */
.accordion-item {
    background-color: transparent !important;
    border: none !important;
}

/* ========================================
   Modern WhatsApp Floating Widget & Signal Pulse
   ======================================== */
.modern-wa-widget {
    position: fixed;
    bottom: 30px;
    z-index: 99999;
    display: flex;
    align-items: center;
}

.wa-btn-main {
    display: inline-flex;
    align-items: center;
    text-decoration: none !important;
    position: relative;
    cursor: pointer;
}

.wa-signal-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.45);
    z-index: 1;
    pointer-events: none;
    animation: waSignalPulse 2.2s cubic-bezier(0.25, 0.8, 0.25, 1) infinite;
}

.wa-signal-wave.wave-2 {
    animation-delay: 1.1s;
}

@keyframes waSignalPulse {
    0% {
        transform: scale(0.95);
        opacity: 0.85;
    }
    60% {
        opacity: 0.4;
    }
    100% {
        transform: scale(1.85);
        opacity: 0;
    }
}

.wa-icon-circle {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    z-index: 3;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wa-btn-main:hover .wa-icon-circle {
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

.wa-drawer-pill {
    background: #ffffff;
    color: #090d2d;
    font-weight: 700;
    font-size: 0.92rem;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    white-space: nowrap;
    overflow: hidden;
    max-width: 0;
    opacity: 0;
    margin-left: -20px;
    padding: 0;
    z-index: 2;
    transition: max-width 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, padding 0.45s ease;
    pointer-events: none;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    height: 44px;
}

.wa-drawer-pill.is-open,
.wa-btn-main:hover .wa-drawer-pill {
    max-width: 220px;
    opacity: 1;
    padding: 0 20px 0 28px;
    pointer-events: auto;
}

.wa-drawer-text {
    color: #090d2d;
    font-weight: 800;
    letter-spacing: -0.2px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wa-drawer-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #25D366;
    display: inline-block;
    animation: waDotBlink 1.2s infinite;
}

@keyframes waDotBlink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

/* ========================================
   Modern Contact Page Styling
   ======================================== */
.contact-hero-section {
    position: relative;
    background-color: var(--navy-dark);
    background-image: url('../img/head.webp');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    padding: 70px 0 90px;
    overflow: hidden;
    text-align: center;
    border-bottom: 1px solid rgba(212, 168, 67, 0.12);
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    animation: heroGlowPulse 4.5s ease-in-out infinite;
}

.contact-hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 250%;
    height: 200%;
    background: linear-gradient(
        115deg,
        transparent 0%,
        rgba(212, 168, 67, 0.04) 45%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(212, 168, 67, 0.04) 55%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
    animation: heroShimmerSweep 4.5s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

.contact-hero-section .container {
    position: relative;
    z-index: 2;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 18px;
    background: rgba(212, 168, 67, 0.12);
    border: 1px solid rgba(212, 168, 67, 0.3);
    color: var(--primary-gold);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 16px;
    font-family: 'Outfit', sans-serif;
}

.contact-hero-subtitle {
    color: #cbd5e1;
    font-size: 1.05rem;
    max-width: 680px;
    margin: 0 auto 24px;
    line-height: 1.65;
}

.contact-breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(9, 13, 45, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.88rem;
    color: #cbd5e1;
}

.contact-breadcrumb-nav a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-breadcrumb-nav a:hover {
    color: #ffffff;
}

/* Quick Info Cards (Floating under hero) */
.quick-contact-grid {
    margin-top: -50px;
    position: relative;
    z-index: 5;
    margin-bottom: 60px;
}

.quick-contact-card {
    background: rgba(28, 35, 75, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 168, 67, 0.16);
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    height: 100%;
}

.quick-contact-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-gold);
    box-shadow: 0 16px 40px rgba(232, 176, 35, 0.18);
}

.quick-contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(232, 176, 35, 0.2), rgba(232, 176, 35, 0.05));
    border: 1px solid rgba(232, 176, 35, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.quick-contact-info h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.quick-contact-info p {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 6px;
    line-height: 1.4;
}

.quick-contact-info a {
    color: var(--primary-gold);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s ease;
}

.quick-contact-info a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

/* Contact Main Section */
.contact-main-wrapper {
    margin-bottom: 100px;
}

.contact-info-card {
    background: rgba(28, 35, 75, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 168, 67, 0.15);
    border-radius: 24px;
    padding: 38px 32px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    height: 100%;
}

.contact-section-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
}

.contact-section-desc {
    color: #cbd5e1;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 28px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(232, 176, 35, 0.1);
    border: 1px solid rgba(232, 176, 35, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-detail-text h5 {
    color: var(--primary-gold);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-detail-text p,
.contact-detail-text a {
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 0;
    text-decoration: none;
    line-height: 1.5;
}

.contact-detail-text a:hover {
    color: var(--primary-gold);
}

.contact-hours-badge {
    background: rgba(9, 13, 45, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 18px;
    margin: 24px 0;
}

.contact-hours-title {
    color: var(--primary-gold);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    color: #cbd5e1;
    margin-bottom: 4px;
}

.contact-hours-row:last-child {
    margin-bottom: 0;
}

.contact-hours-row span.open {
    color: #25D366;
    font-weight: 700;
}

/* Contact Map Wrapper */
.contact-map-wrapper {
    margin-top: 24px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 168, 67, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    min-height: 220px;
}

.contact-map-wrapper iframe {
    width: 100% !important;
    height: 240px !important;
    border: none !important;
    display: block;
}

/* Contact Form Card */
.contact-form-card {
    background: rgba(28, 35, 75, 0.9);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 24px;
    padding: 42px 36px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.contact-input-group {
    margin-bottom: 20px;
    position: relative;
}

.contact-input-group label {
    display: block;
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.contact-input-group label span.required {
    color: #ff5252;
}

/* Bootstrap Input Group Custom Styling */
.modern-input-group {
    background: rgba(9, 13, 45, 0.75) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    width: 100% !important;
}

.modern-input-group:focus-within {
    border-color: var(--primary-gold) !important;
    box-shadow: 0 0 0 3px rgba(232, 176, 35, 0.2) !important;
    background: rgba(9, 13, 45, 0.95) !important;
}

.modern-input-group .input-group-text {
    background: transparent !important;
    border: none !important;
    color: var(--primary-gold) !important;
    padding: 0 12px 0 16px !important;
    font-size: 1.05rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    width: auto !important;
    height: 100% !important;
    margin: 0 !important;
}

.modern-input-group .contact-form-control {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #ffffff !important;
    padding: 13px 16px 13px 4px !important;
    font-size: 0.92rem !important;
    font-family: 'Outfit', sans-serif !important;
    outline: none !important;
    flex: 1 1 auto !important;
    width: 1% !important;
    min-width: 0 !important;
    height: auto !important;
    margin: 0 !important;
}

.modern-input-group .contact-form-control::placeholder {
    color: rgba(203, 213, 225, 0.5) !important;
}

.modern-input-group .contact-select {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #ffffff !important;
    padding: 13px 40px 13px 4px !important;
    font-size: 0.92rem !important;
    font-family: 'Outfit', sans-serif !important;
    outline: none !important;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e8b023'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    flex: 1 1 auto !important;
    width: 1% !important;
    min-width: 0 !important;
    height: auto !important;
    margin: 0 !important;
}

.modern-input-group .contact-select option {
    background: #090d2d !important;
    color: #ffffff !important;
    padding: 10px !important;
}

.modern-input-group .contact-textarea {
    padding: 14px 16px !important;
    min-height: 115px !important;
    resize: vertical;
    width: 100% !important;
    flex: 1 1 100% !important;
}

.char-counter-text {
    font-size: 0.8rem;
    color: #cbd5e1;
    text-align: right;
    margin-top: 6px;
}

.contact-kvkk-box {
    background: rgba(9, 13, 45, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 20px;
}

.contact-kvkk-box label {
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.88rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.contact-kvkk-box input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary-gold);
    flex-shrink: 0;
}

.contact-kvkk-box a {
    color: var(--primary-gold);
    text-decoration: underline;
    font-weight: 700;
}

.contact-captcha-wrapper {
    background: rgba(9, 13, 45, 0.75);
    border: 1px solid rgba(212, 168, 67, 0.25);
    border-radius: 14px;
    padding: 12px 18px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    transition: all 0.3s ease;
}

.contact-captcha-wrapper:focus-within {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(232, 176, 35, 0.2);
    background: rgba(9, 13, 45, 0.95);
}

.captcha-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
    flex-wrap: nowrap;
}

.captcha-badge .math-pill {
    background: linear-gradient(135deg, #e8b023, #d4a843);
    color: #090d2d;
    padding: 5px 14px;
    border-radius: 20px;
    font-weight: 900;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(232, 176, 35, 0.3);
}

.captcha-input-container {
    flex: 0 0 110px;
    max-width: 120px;
}

.captcha-form-control {
    width: 100% !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border-radius: 10px !important;
    padding: 8px 12px !important;
    font-size: 1rem !important;
    font-weight: 800 !important;
    text-align: center !important;
    outline: none !important;
    font-family: 'Outfit', sans-serif !important;
    transition: all 0.2s ease !important;
    -moz-appearance: textfield;
}

.captcha-form-control::-webkit-outer-spin-button,
.captcha-form-control::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.captcha-form-control:focus {
    border-color: var(--primary-gold) !important;
    background: rgba(255, 255, 255, 0.14) !important;
    box-shadow: 0 0 0 2px rgba(232, 176, 35, 0.3) !important;
}

.captcha-form-control::placeholder {
    color: rgba(203, 213, 225, 0.5) !important;
    font-weight: 500;
}

/* ========================================
   Standard Page / Hakkımızda Styling
   ======================================== */
.page-hero-section {
    position: relative;
    background-color: var(--navy-dark);
    background-image: url('../img/head.webp');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    padding: 70px 0 90px;
    overflow: hidden;
    text-align: center;
    border-bottom: 1px solid rgba(212, 168, 67, 0.12);
}

.page-hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    animation: heroGlowPulse 4.5s ease-in-out infinite;
}

.page-hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 250%;
    height: 200%;
    background: linear-gradient(
        115deg,
        transparent 0%,
        rgba(212, 168, 67, 0.04) 45%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(212, 168, 67, 0.04) 55%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
    animation: heroShimmerSweep 4.5s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

.page-hero-section .container {
    position: relative;
    z-index: 2;
}

.page-content-wrapper {
    margin-top: -40px;
    margin-bottom: 100px;
    position: relative;
    z-index: 5;
}

.page-content-card {
    background: rgba(28, 35, 75, 0.88);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 168, 67, 0.18);
    border-radius: 24px;
    padding: 44px 38px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.page-featured-img-wrap {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(212, 168, 67, 0.2);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
    margin-bottom: 32px;
}

.page-featured-img-wrap img {
    width: 100%;
    height: auto;
    max-height: 440px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.page-featured-img-wrap:hover img {
    transform: scale(1.03);
}

.page-content-body {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #cbd5e1;
    font-family: 'Outfit', sans-serif;
}

.page-content-body p {
    margin-bottom: 1.4rem;
    color: #cbd5e1;
}

.page-content-body p.about-lead-text,
.page-content-body .lead {
    font-size: 1.15rem;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.8;
}

.page-content-body h2,
.page-content-body h3,
.page-content-body h4 {
    color: #ffffff;
    font-weight: 800;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-content-body blockquote {
    border-left: 4px solid var(--primary-gold);
    padding: 18px 24px;
    background: rgba(9, 13, 45, 0.6);
    border-radius: 0 16px 16px 0;
    margin: 2rem 0;
    color: #ffffff;
    font-style: italic;
    font-size: 1.1rem;
}

.page-gallery-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    margin: 35px 0 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 15px;
}

.page-gallery-item {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    aspect-ratio: 4/3;
    display: block;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

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

.page-gallery-item:hover img {
    transform: scale(1.08);
}

/* Sidebar Styling */
.sidebar-sticky-wrap {
    position: sticky;
    top: 105px;
}

.sidebar-nav-card {
    background: rgba(28, 35, 75, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 168, 67, 0.16);
    border-radius: 22px;
    padding: 28px 24px;
    margin-bottom: 24px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.sidebar-nav-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav-list li {
    margin-bottom: 8px;
}

.sidebar-nav-list li:last-child {
    margin-bottom: 0;
}

.sidebar-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(9, 13, 45, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: #cbd5e1;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-nav-link i {
    font-size: 0.8rem;
    color: rgba(212, 168, 67, 0.6);
    transition: transform 0.2s ease, color 0.2s ease;
}

.sidebar-nav-link:hover,
.sidebar-nav-link.active {
    background: linear-gradient(135deg, rgba(232, 176, 35, 0.15), rgba(232, 176, 35, 0.05));
    border-color: var(--primary-gold);
    color: #ffffff;
    transform: translateX(4px);
}

.sidebar-nav-link:hover i,
.sidebar-nav-link.active i {
    color: var(--primary-gold);
    transform: translateX(3px);
}

.sidebar-cta-card {
    background: linear-gradient(145deg, rgba(28, 35, 75, 0.95), rgba(18, 24, 60, 0.95));
    backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 168, 67, 0.3);
    border-radius: 22px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
}

.sidebar-cta-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(232, 176, 35, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.sidebar-cta-badge {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(212, 168, 67, 0.15);
    border: 1px solid rgba(212, 168, 67, 0.3);
    color: var(--primary-gold);
    font-size: 0.78rem;
    font-weight: 800;
    border-radius: 30px;
    text-transform: uppercase;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.sidebar-cta-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.35;
}

.sidebar-cta-desc {
    font-size: 0.88rem;
    color: #cbd5e1;
    margin-bottom: 20px;
    line-height: 1.5;
}

.sidebar-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 20px;
    background: linear-gradient(135deg, #e8b023, #d4a843);
    color: #090d2d !important;
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(232, 176, 35, 0.35);
    transition: all 0.3s ease;
}

.sidebar-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(232, 176, 35, 0.5);
    background: linear-gradient(135deg, #f0be3a, #e8b023);
    color: #090d2d !important;
}

.contact-btn-submit {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #e8b023, #d4a843);
    color: #090d2d;
    font-weight: 900;
    font-size: 1.05rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(232, 176, 35, 0.35);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(232, 176, 35, 0.5);
    background: linear-gradient(135deg, #f0be3a, #e8b023);
    color: #090d2d;
}

.contact-btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* ========================================
   FAQ (Sık Sorulan Sorular) Page Styling
   ======================================== */
.faq-page-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-page-item {
    background: rgba(28, 35, 75, 0.88);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 168, 67, 0.18);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.faq-page-item:hover {
    border-color: rgba(212, 168, 67, 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.faq-page-btn {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 22px 26px;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-page-btn i.toggle-icon {
    font-size: 0.88rem;
    color: var(--primary-gold);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-page-btn:not(.collapsed) i.toggle-icon {
    transform: rotate(180deg);
}

.faq-page-btn:not(.collapsed) {
    color: var(--primary-gold);
}

.faq-page-body {
    padding: 0 26px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.75;
    padding-top: 16px;
}

.faq-page-body p:last-child {
    margin-bottom: 0;
}

.faq-pagination-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.faq-pagination-wrapper .pagination {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-pagination-wrapper .page-item .page-link {
    background: rgba(28, 35, 75, 0.85);
    border: 1px solid rgba(212, 168, 67, 0.2);
    color: #cbd5e1;
    border-radius: 10px;
    padding: 10px 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.faq-pagination-wrapper .page-item.active .page-link,
.faq-pagination-wrapper .page-item .page-link:hover {
    background: var(--primary-gold);
    color: #090d2d;
    border-color: var(--primary-gold);
}

.accordion-button:focus {
    box-shadow: none !important;
    border-color: transparent !important;
}

/* ========================================
   Scholarship Query & Result Portal Styling
   ======================================== */
.query-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(212, 168, 67, 0.12);
    border: 1px solid rgba(212, 168, 67, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.query-card-title {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}

.query-card-subtitle {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.query-card-badge {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #10b981;
    font-size: 0.76rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
}

/* Official Result Document Card */
.scholarship-result-card {
    border: 1px solid rgba(212, 168, 67, 0.35);
    background: linear-gradient(145deg, rgba(20, 26, 62, 0.95), rgba(12, 16, 42, 0.98));
    position: relative;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5), 0 0 35px rgba(212, 168, 67, 0.08);
}

.result-header-bar {
    padding-bottom: 8px;
}

.result-school-logo {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(212, 168, 67, 0.15);
    border: 1px solid rgba(212, 168, 67, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-corp-name {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--primary-gold);
}

.result-doc-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
}

.result-verify-code {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.78rem;
    color: #cbd5e1;
    display: inline-block;
}

.result-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.4), transparent);
    margin: 18px 0 22px;
}

/* Result Info Box */
.result-info-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 16px 18px;
    height: 100%;
}

.info-box-header {
    font-size: 0.92rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-family: 'Outfit', sans-serif;
}

.result-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.result-info-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    font-size: 0.88rem;
}

.result-info-list li:last-child {
    border-bottom: none;
}

.info-label {
    color: var(--text-muted);
}

.info-val {
    color: #ffffff;
}

/* Scholarship Grant Highlight Banner */
.scholarship-grant-banner {
    background: linear-gradient(135deg, rgba(212, 168, 67, 0.18), rgba(20, 26, 62, 0.85));
    border: 1px solid rgba(212, 168, 67, 0.5);
    border-radius: 16px;
    padding: 22px 24px;
    position: relative;
    overflow: hidden;
}

.grant-status-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-gold);
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.grant-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
}

.grant-status-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
}

.grant-status-desc {
    color: #cbd5e1;
    font-size: 0.92rem;
    line-height: 1.6;
}

.grant-badge-seal {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4a843, #f5c44c);
    color: #090d2d;
    box-shadow: 0 0 25px rgba(212, 168, 67, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.6);
}

.grant-seal-number {
    font-size: 1.65rem;
    font-weight: 900;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.grant-seal-text {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Sidebar Scholarship Tiers */
.scholarship-tier-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 12px;
    border-radius: 8px;
    margin-bottom: 6px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.scholarship-tier-row.active,
.scholarship-tier-row:hover {
    background: rgba(212, 168, 67, 0.1);
    border-color: rgba(212, 168, 67, 0.3);
}

.tier-rank {
    color: #ffffff;
    font-weight: 600;
}

.tier-badge {
    font-size: 0.75rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
}

.badge-100 {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #10b981;
}

.badge-75 {
    background: rgba(212, 168, 67, 0.15);
    border: 1px solid rgba(212, 168, 67, 0.4);
    color: var(--primary-gold);
}

.badge-50 {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: #3b82f6;
}

.badge-25 {
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.4);
    color: #8b5cf6;
}

/* ========================================
   Quick Actions Modal (8'li Hızlı İşlemler Portalı)
   ======================================== */
.quick-actions-modal .modal-content {
    background: linear-gradient(145deg, rgba(16, 22, 54, 0.96), rgba(8, 12, 34, 0.98)) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    border: 1px solid rgba(212, 168, 67, 0.35) !important;
    border-radius: 24px !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 45px rgba(212, 168, 67, 0.12) !important;
    overflow: hidden;
}

.quick-modal-header {
    padding: 22px 28px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.quick-modal-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(212, 168, 67, 0.15);
    border: 1px solid rgba(212, 168, 67, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.quick-modal-badge {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--primary-gold);
}

.quick-modal-title {
    font-size: 1.35rem;
    font-weight: 900;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
}

.quick-modal-close {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.75;
    transition: all 0.25s ease;
}

.quick-modal-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.quick-modal-body {
    padding: 24px 28px !important;
}

.quick-modal-footer {
    padding: 16px 28px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: rgba(0, 0, 0, 0.2);
}

.quick-footer-help {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* 8 Quick Action Cards */
.quick-action-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 18px 14px;
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 145px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.quick-action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--primary-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-action-card:hover {
    transform: translateY(-5px);
    background: rgba(28, 36, 85, 0.85);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 168, 67, 0.15);
}

.quick-action-card:hover::before {
    opacity: 1;
}

.qa-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.quick-action-card:hover .qa-icon-wrap {
    transform: scale(1.1) rotate(5deg);
}

.qa-title {
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 800;
    margin-bottom: 3px;
    line-height: 1.25;
    font-family: 'Outfit', sans-serif;
}

.qa-desc {
    color: #94a3b8;
    font-size: 0.74rem;
    line-height: 1.35;
    margin-bottom: 0;
    font-weight: 400;
}

.qa-arrow {
    position: absolute;
    bottom: 14px;
    right: 14px;
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.4;
    transition: all 0.3s ease;
}

.quick-action-card:hover .qa-arrow {
    opacity: 1;
    color: var(--primary-gold);
    transform: translateX(3px);
}

/* Themed Action Cards Colors */
.qa-card-gold .qa-icon-wrap {
    background: rgba(212, 168, 67, 0.15);
    color: #eeb527;
    border: 1px solid rgba(212, 168, 67, 0.35);
}
.qa-card-gold:hover { border-color: rgba(212, 168, 67, 0.5); }
.qa-card-gold::before { background: #eeb527; }

.qa-card-cyan .qa-icon-wrap {
    background: rgba(6, 182, 212, 0.15);
    color: #06b6d4;
    border: 1px solid rgba(6, 182, 212, 0.35);
}
.qa-card-cyan:hover { border-color: rgba(6, 182, 212, 0.5); }
.qa-card-cyan::before { background: #06b6d4; }

.qa-card-emerald .qa-icon-wrap {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.35);
}
.qa-card-emerald:hover { border-color: rgba(16, 185, 129, 0.5); }
.qa-card-emerald::before { background: #10b981; }

.qa-card-purple .qa-icon-wrap {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
    border: 1px solid rgba(168, 85, 247, 0.35);
}
.qa-card-purple:hover { border-color: rgba(168, 85, 247, 0.5); }
.qa-card-purple::before { background: #a855f7; }

.qa-card-amber .qa-icon-wrap {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.35);
}
.qa-card-amber:hover { border-color: rgba(245, 158, 11, 0.5); }
.qa-card-amber::before { background: #f59e0b; }

.qa-card-blue .qa-icon-wrap {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.35);
}
.qa-card-blue:hover { border-color: rgba(59, 130, 246, 0.5); }
.qa-card-blue::before { background: #3b82f6; }

.qa-card-rose .qa-icon-wrap {
    background: rgba(244, 63, 94, 0.15);
    color: #f43f5e;
    border: 1px solid rgba(244, 63, 94, 0.35);
}
.qa-card-rose:hover { border-color: rgba(244, 63, 94, 0.5); }
.qa-card-rose::before { background: #f43f5e; }

.qa-card-whatsapp .qa-icon-wrap {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.35);
}
.qa-card-whatsapp:hover { border-color: rgba(37, 211, 102, 0.5); }
.qa-card-whatsapp::before { background: #25D366; }

/* ========================================
   Mobile Menu Toggle Button & Offcanvas Navigation Drawer
   ======================================== */
.mobile-menu-toggle-btn {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(212, 168, 67, 0.35);
    color: #ffffff;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.mobile-menu-toggle-btn:hover,
.mobile-menu-toggle-btn:focus,
.mobile-menu-toggle-btn:active {
    background: var(--primary-gold);
    color: var(--navy-dark);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 168, 67, 0.35);
}

.mobile-nav-offcanvas {
    background: linear-gradient(165deg, #090d2d 0%, #060920 100%) !important;
    border-left: 1px solid rgba(212, 168, 67, 0.25) !important;
    width: 320px !important;
    max-width: 88vw !important;
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.8) !important;
    z-index: 1055 !important;
}

.mobile-offcanvas-header {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(6, 10, 30, 0.95);
}

.mobile-brand-logo img {
    max-height: 44px;
    width: auto;
    object-fit: contain;
}

.mobile-brand-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-gold);
    font-family: 'Outfit', sans-serif;
}

.mobile-offcanvas-close {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.75;
    transition: all 0.25s ease;
    padding: 8px;
}

.mobile-offcanvas-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.mobile-offcanvas-body {
    padding: 20px 18px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 168, 67, 0.3) transparent;
}

/* Hızlı Aksiyon Butonları */
.mobile-quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.mobile-btn-burs {
    background: linear-gradient(135deg, #e8b023, #c99312);
    color: #090d2d !important;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 11px 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(232, 176, 35, 0.3);
    transition: all 0.25s ease;
    border: none;
}

.mobile-btn-burs:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 176, 35, 0.45);
    color: #090d2d !important;
}

.mobile-btn-actions {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 168, 67, 0.3);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 11px 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Outfit', sans-serif;
}

.mobile-btn-actions:hover {
    background: rgba(212, 168, 67, 0.15);
    border-color: var(--primary-gold);
    color: var(--primary-gold) !important;
    transform: translateY(-2px);
}

.mobile-nav-section-title {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: var(--primary-gold);
    margin-bottom: 12px;
    opacity: 0.85;
}

/* Menü Listesi */
.mobile-navigation {
    margin-bottom: 20px;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-item {
    border-radius: 10px;
    transition: background 0.2s ease;
}

.mobile-menu-header-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    color: #e2e8f0 !important;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none !important;
    border-radius: 8px;
    flex-grow: 1;
    transition: all 0.2s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    color: var(--primary-gold) !important;
    background: rgba(255, 255, 255, 0.04);
}

.mobile-link-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-gold);
    opacity: 0.5;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.mobile-menu-link:hover .mobile-link-dot {
    opacity: 1;
    transform: scale(1.4);
    box-shadow: 0 0 6px var(--primary-gold);
}

.mobile-submenu-toggle {
    background: none;
    border: none;
    color: #94a3b8;
    padding: 11px 14px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.mobile-submenu-toggle:hover {
    color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.04);
}

.mobile-submenu-toggle i {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-submenu-toggle:not(.collapsed) i {
    transform: rotate(180deg);
    color: var(--primary-gold);
}

/* Alt Menü Collapse */
.mobile-submenu-list {
    list-style: none;
    padding: 6px 0 6px 20px;
    margin: 4px 0 6px 10px;
    border-left: 2px solid rgba(212, 168, 67, 0.25);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-submenu-link {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    color: #94a3b8 !important;
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none !important;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.mobile-submenu-link:hover {
    color: var(--primary-gold) !important;
    padding-left: 16px;
    background: rgba(212, 168, 67, 0.06);
}

/* İletişim Kartı */
.mobile-contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 16px 14px;
}

.mobile-contact-card-title {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.mobile-contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 10px;
    border-radius: 8px;
    text-decoration: none !important;
    color: inherit;
    transition: background 0.2s ease;
    margin-bottom: 4px;
}

.mobile-contact-row:last-child {
    margin-bottom: 0;
}

.mobile-contact-row:hover {
    background: rgba(255, 255, 255, 0.05);
}

.mcr-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(212, 168, 67, 0.12);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.mcr-icon.text-whatsapp {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
}

.mcr-info {
    display: flex;
    flex-direction: column;
}

.mcr-label {
    font-size: 0.72rem;
    color: #64748b;
    line-height: 1.2;
}

.mcr-val {
    font-size: 0.84rem;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.3;
}

/* Sosyal Medya İkonları */
.mobile-drawer-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
}

.mobile-social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    text-decoration: none !important;
    transition: all 0.25s ease;
}

.mobile-social-icon:hover {
    background: var(--primary-gold);
    color: var(--navy-dark) !important;
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

/* ========================================================
   MASTER RESPONSIVE OVERRIDES (MOBILE & TABLET OPTIMIZATION)
   ======================================================== */
@media (max-width: 991.98px) {
    #mainHeader .row {
        height: 72px !important;
    }

    .logo img {
        max-height: 48px;
        width: auto;
        object-fit: contain;
    }

    .hero-title {
        font-size: 2.3rem !important;
        line-height: 1.25 !important;
    }

    .hero-desc {
        font-size: 0.96rem;
        line-height: 1.6;
    }

    .portal-country-grid {
        max-width: 100% !important;
        margin: 24px auto 0 !important;
    }

    .about-title,
    .title-main {
        font-size: 1.85rem !important;
    }

    .section-title-center {
        font-size: 1.9rem !important;
    }

    .faq-left-title {
        font-size: 1.7rem !important;
    }

    .gazi-features,
    .gazi-faq {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }
}

@media (max-width: 767.98px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
    }

    #mainHeader {
        padding: 0 4px;
    }

    #mainHeader .row {
        height: 68px !important;
    }

    .logo img {
        max-height: 44px;
    }

    /* Hero Responsive */
    .gazi-hero {
        padding: 24px 0 40px !important;
        margin-top: 0 !important;
        min-height: auto !important;
    }

    .hero-tag {
        font-size: 0.75rem;
        padding: 5px 14px;
        margin-bottom: 12px;
    }

    .hero-title {
        font-size: 1.85rem !important;
        line-height: 1.25 !important;
        letter-spacing: -0.5px;
        margin-bottom: 14px;
    }

    .hero-desc {
        font-size: 0.92rem;
        line-height: 1.6;
        margin-bottom: 22px;
    }

    .hero-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 24px !important;
    }

    .btn-pill-gold,
    .btn-video-cta {
        padding: 12px 20px;
        font-size: 0.88rem;
    }

    .hero-dual-feature-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        margin-bottom: 20px !important;
    }

    .hero-feature-card {
        padding: 14px 16px !important;
    }

    .hfc-title {
        font-size: 0.88rem !important;
    }

    .hfc-icon {
        width: 38px !important;
        height: 38px !important;
        font-size: 16px !important;
    }

    .hero-tabs {
        display: flex !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        flex-wrap: nowrap !important;
        gap: 8px !important;
        padding-bottom: 6px !important;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .hero-tabs::-webkit-scrollbar {
        display: none;
    }

    .hero-tab {
        padding: 7px 16px !important;
        font-size: 0.82rem !important;
        flex-shrink: 0;
    }

    /* Portal Country Grid */
    .portal-country-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        max-width: 100% !important;
        margin-top: 20px !important;
    }

    .portal-country-card {
        padding: 12px 12px !important;
    }

    .card-country-title {
        font-size: 0.88rem !important;
    }

    .card-tag {
        font-size: 0.65rem !important;
        padding: 2px 7px !important;
    }

    .card-unis-text {
        font-size: 0.74rem !important;
        line-height: 1.35 !important;
    }

    /* About Section */
    .gazi-about {
        padding: 50px 0 !important;
    }

    .about-image-composition {
        max-width: 340px;
        margin: 0 auto 30px;
    }

    .about-main-card img {
        height: 260px !important;
        object-fit: cover;
    }

    .about-floating-thumb {
        width: 110px !important;
        height: 110px !important;
        bottom: -15px !important;
        right: -10px !important;
    }

    .about-experience-badge {
        padding: 8px 12px !important;
        left: 10px !important;
        bottom: 15px !important;
    }

    .badge-icon-wrap {
        width: 32px !important;
        height: 32px !important;
        font-size: 14px !important;
    }

    .badge-text-wrap {
        font-size: 0.72rem !important;
    }

    .about-title,
    .title-main {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }

    .title-sub {
        font-size: 0.82rem !important;
    }

    .about-lead-text,
    .about-content-area {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }

    .about-action-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        margin-top: 20px !important;
    }

    .about-action-card {
        padding: 12px 10px !important;
        font-size: 0.82rem !important;
    }

    /* Features Section */
    .gazi-features {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .feat-subtitle {
        font-size: 0.8rem !important;
    }

    .feat-title {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }

    .feature-modern-card {
        padding: 18px 16px !important;
    }

    .fmc-title {
        font-size: 0.98rem !important;
    }

    .fmc-desc {
        font-size: 0.84rem !important;
    }

    /* FAQ Section */
    .gazi-faq {
        padding-top: 50px !important;
        padding-bottom: 60px !important;
    }

    .faq-title-gold {
        font-size: 0.8rem !important;
    }

    .faq-title-white,
    .faq-left-title {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }

    .faq-desc-text {
        font-size: 0.88rem !important;
        line-height: 1.6 !important;
    }

    .faq-pill-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 24px;
    }

    .btn-faq-pill-gold,
    .btn-faq-pill-white {
        padding: 10px 18px !important;
        font-size: 0.82rem !important;
    }

    .faq-modern-btn {
        padding: 14px 16px !important;
        font-size: 0.9rem !important;
    }

    .faq-modern-body {
        padding: 0 16px 14px !important;
        font-size: 0.85rem !important;
    }

    /* Quick Actions Modal */
    .quick-modal-header {
        padding: 16px 18px !important;
    }

    .quick-modal-body {
        padding: 16px 18px !important;
    }

    .quick-modal-title {
        font-size: 1.15rem !important;
    }

    .quick-action-card {
        padding: 14px 10px !important;
        min-height: 120px !important;
    }

    .qa-icon-wrap {
        width: 36px !important;
        height: 36px !important;
        font-size: 16px !important;
        margin-bottom: 8px !important;
    }

    .qa-title {
        font-size: 0.82rem !important;
    }

    .qa-desc {
        font-size: 0.68rem !important;
    }

    /* Floating WhatsApp */
    .modern-wa-widget {
        bottom: 20px !important;
        right: 18px !important;
    }

    .wa-icon-circle {
        width: 50px !important;
        height: 50px !important;
    }

    .wa-signal-wave {
        width: 50px !important;
        height: 50px !important;
    }

    /* Footer Responsive */
    .gazi-footer {
        padding: 45px 0 20px !important;
        background-size: cover !important;
    }

    .footer-brand-logo img {
        max-height: 44px;
        margin-bottom: 12px;
    }

    .footer-phone-number a {
        font-size: 1.25rem !important;
    }

    .footer-address-text,
    .footer-email-link {
        font-size: 0.85rem !important;
    }

    .footer-circle-icon {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.85rem !important;
    }

    .footer-col-title {
        font-size: 0.85rem !important;
        margin-top: 10px;
    }

    .footer-links-list li a {
        font-size: 0.84rem !important;
        padding: 3px 0;
    }
}

@media (max-width: 440px) {
    .hero-title {
        font-size: 1.55rem !important;
    }

    .portal-country-grid {
        grid-template-columns: 1fr !important;
    }

    .btn-pill-gold,
    .btn-video-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .about-action-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}

/* ========================================
   Modern Pagination (Dark & Gold Theme)
   ======================================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 0;
    flex-wrap: wrap;
}

.pagination .page-item .page-link {
    background: rgba(26, 32, 68, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #cbd5e1;
    border-radius: 12px;
    padding: 10px 18px;
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.pagination .page-item .page-link:hover {
    background: rgba(238, 181, 39, 0.18);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(238, 181, 39, 0.2);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #d4a843, #f3d078);
    border-color: #d4a843;
    color: #0a0e27;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(212, 168, 67, 0.4);
    transform: translateY(-2px);
}

.pagination .page-item.disabled .page-link {
    background: rgba(15, 20, 45, 0.5);
    border-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.25);
    cursor: not-allowed;
    box-shadow: none;
}

/* ========================================
   Bizimle Başaranlar (Success Stories Section)
   ======================================== */
.gazi-success-section {
    position: relative;
    padding: 60px 0 65px;
    background: #06091f;
    border-top: 1px solid rgba(212, 168, 67, 0.12);
    overflow: hidden;
}

.gazi-success-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.gazi-success-section .container {
    position: relative;
    z-index: 2;
}

.success-header {
    text-align: center;
    margin-bottom: 32px;
}

.success-badge-tag {
    display: inline-block;
    padding: 5px 16px;
    background: rgba(212, 168, 67, 0.12);
    border: 1px solid rgba(212, 168, 67, 0.25);
    color: var(--primary-gold);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.success-section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

#successCarousel {
    position: relative;
    width: 100%;
}

#successCarousel .owl-stage-outer {
    padding: 4px 0 8px;
    overflow: visible;
}

#successCarousel .owl-item {
    /* do NOT override display here — owl needs block */
}

#successCarousel .owl-item .item {
    width: 100%;
}

.success-story-card {
    width: 100%;
    background: rgba(26, 32, 68, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 10px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.35s ease,
                box-shadow 0.35s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.success-story-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 168, 67, 0.45);
    background: rgba(32, 40, 85, 0.95);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 168, 67, 0.18);
}

/* Görsel kutusu — 4:5 oran + cover ile sündürmesiz doldurma */
.ssc-image-wrap {
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 3 / 5;
    position: relative;
    background: #080c24;
}

.ssc-image-wrap a {
    position: absolute;
    inset: 0;
    display: block;
}

.ssc-image-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 10px;
    transition: transform 0.4s ease;
}

.success-story-card:hover .ssc-image-wrap img {
    transform: scale(1.04);
}

.ssc-title {
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
    margin-top: 10px;
    text-align: center;
    line-height: 1.3;
}

#successCarousel.owl-theme .owl-dots {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 0;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

#successCarousel.owl-theme .owl-dot {
    display: inline-block;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    outline: none;
}

#successCarousel.owl-theme .owl-dot span {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.25);
    display: block;
    border-radius: 50%;
    margin: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#successCarousel.owl-theme .owl-dot:hover span {
    background: rgba(212, 168, 67, 0.6);
}

#successCarousel.owl-theme .owl-dot.active span {
    width: 28px;
    border-radius: 10px;
    background: var(--primary-gold);
}

/* ========================================
   Etkinlik Takvimi (Event Calendar Section)
   ======================================== */
.gazi-events-section {
    position: relative;
    padding: 85px 0 90px;
    background: #070a22;
    background: radial-gradient(circle at 50% 0%, rgba(26, 35, 78, 0.45) 0%, #06091f 70%);
    border-top: 1px solid rgba(212, 168, 67, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.gazi-events-section::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 350px;
    background: radial-gradient(ellipse, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.gazi-events-section .container {
    position: relative;
    z-index: 2;
}

.events-header {
    text-align: center;
    margin-bottom: 45px;
}

.events-badge-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(212, 168, 67, 0.12);
    border: 1px solid rgba(212, 168, 67, 0.28);
    color: var(--primary-gold, #d4a843);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.events-section-title {
    font-size: 2.35rem;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.events-section-subtitle {
    color: #94a3b8;
    font-size: 0.98rem;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Event Card */
.event-card {
    background: rgba(22, 28, 60, 0.7);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.event-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 168, 67, 0.45);
    background: rgba(28, 36, 78, 0.9);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55), 0 0 25px rgba(212, 168, 67, 0.15);
}

/* Event Card Header (Image or Decorative Top) */
.event-card-header {
    position: relative;
    width: 100%;
    height: 190px;
    overflow: hidden;
    background: linear-gradient(135deg, #10163a 0%, #1e265c 100%);
}

.event-card-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.event-card:hover .event-card-header img {
    transform: scale(1.06);
}

.event-card-no-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #11173d 0%, #1c2559 100%);
    position: relative;
}

.event-card-no-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(212, 168, 67, 0.15), transparent 70%);
}

.event-calendar-icon-bg {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    bottom: -10px;
    right: 15px;
}

.event-category-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: rgba(10, 15, 45, 0.85);
    backdrop-filter: blur(8px);
    color: #f1c40f;
    border: 1px solid rgba(212, 168, 67, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Event Date Ribbon/Chip */
.event-date-chip {
    position: absolute;
    bottom: 14px;
    left: 14px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 10px;
    background: rgba(6, 9, 31, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.event-date-chip i {
    color: var(--primary-gold, #d4a843);
}

/* Event Body */
.event-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.event-meta-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.8rem;
    color: #94a3b8;
}

.event-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.event-meta-item i {
    color: var(--primary-gold, #d4a843);
}

.event-title {
    color: #ffffff;
    font-size: 1.18rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    line-height: 1.35;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.event-card:hover .event-title {
    color: var(--primary-gold, #d4a843);
}

.event-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
    font-size: 0.86rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.event-location i {
    color: #eab308;
    font-size: 0.95rem;
}

.event-desc {
    color: #94a3b8;
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 16px;
    flex-grow: 1;
}

.event-card-footer {
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.event-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.76rem;
    font-weight: 600;
    color: #38bdf8;
}

.event-status-pill::before {
    content: '';
    width: 7px;
    height: 7px;
    background: #38bdf8;
    border-radius: 50%;
    box-shadow: 0 0 8px #38bdf8;
}

#eventsCarousel.owl-theme .owl-dots {
    text-align: center;
    margin-top: 28px;
    margin-bottom: 0;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

#eventsCarousel.owl-theme .owl-dot {
    display: inline-block;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    outline: none;
}

#eventsCarousel.owl-theme .owl-dot span {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.25);
    display: block;
    border-radius: 50%;
    margin: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#eventsCarousel.owl-theme .owl-dot:hover span {
    background: rgba(212, 168, 67, 0.6);
}

#eventsCarousel.owl-theme .owl-dot.active span {
    width: 28px;
    border-radius: 10px;
    background: var(--primary-gold, #d4a843);
}

/* ========================================
   Modern Dark Pagination Styling
   ======================================== */
.pagination {
    display: flex;
    gap: 8px;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination .page-item .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 12px;
    background: rgba(26, 32, 68, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pagination .page-item:hover .page-link {
    background: rgba(212, 168, 67, 0.2);
    border-color: var(--primary-gold, #d4a843);
    color: var(--primary-gold, #d4a843);
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #d4a843 0%, #b88a2a 100%);
    border-color: var(--primary-gold, #d4a843);
    color: #0b102b;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(212, 168, 67, 0.4);
}

.pagination .page-item.disabled .page-link {
    opacity: 0.4;
    cursor: not-allowed;
    background: rgba(26, 32, 68, 0.4);
    border-color: rgba(255, 255, 255, 0.05);
}

/* ========================================
   Accessibility & Performance Enhancements (PageSpeed 100)
   ======================================== */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 16px;
    background: #eeb527;
    color: #0a0e27;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.95rem;
    z-index: 999999;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    transition: top 0.2s ease-in-out;
}

.skip-to-content:focus {
    top: 16px;
    outline: 3px solid #ffffff;
}

/* Focus Visible for Keyboard Accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary-gold, #d4a843) !important;
    outline-offset: 3px !important;
}

/* Stabilize Carousels */
#featuresCarousel.owl-loaded,
#successCarousel.owl-loaded {
    min-height: 250px;
}

/* Contrast enhancement for small helper texts */
.text-muted,
.card-unis-text,
.feat-subtitle,
.about-content-area,
.faq-desc-text {
    color: #cbd5e1 !important;
}