:root {
    /* Renk Paleti */
    --primary: #e63946;
    /* MEB Kırmızısı Modernize Edilmiş */
    --primary-dark: #b91c1c;
    --secondary: #1d3557;
    /* Derin Lacivert */
    --accent: #457b9d;
    /* Mavi Ton */
    --light-bg: #f1faee;
    --white: #ffffff;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --gradient-hero: linear-gradient(135deg, #1d3557 0%, #457b9d 100%);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 12px;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #f8fafc;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar */
header {
    background: linear-gradient(135deg, #0f2440 0%, #1d3557 40%, #264b73 70%, #1d3557 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(15, 36, 64, 0.45);
    border-bottom: none;
}

/* Kırmızı alt şerit — ince ve zarif */
header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), #e6bf6e, var(--primary), transparent);
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0.6rem 2.5rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    padding-right: 1.5rem;

}

.logo img {
    height: 70px;
    width: auto;
    border-radius: 8px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.logo-text h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    letter-spacing: 0.04em;
    text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.logo-text span {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255,255,255,0.55);
}

.nav-links {
    display: flex;
    gap: 0.15rem;
    list-style: none;
    justify-content: center;
    align-items: center;
}

.nav-links > li > a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease, background 0.3s ease;
    position: relative;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    letter-spacing: 0.015em;
    display: block;
    white-space: nowrap;
}

.nav-links > li > a:hover {
    color: white;
    background: rgba(255,255,255,0.1);
}

/* Aktif link alt çizgisi */
.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.nav-links > li > a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* Genç Fikir özel stili */
.nav-links .nav-link-gencfikir {
    color: #f0d48a !important;
    font-weight: 700 !important;
    text-shadow: 0 0 12px rgba(230, 191, 110, 0.35);
    letter-spacing: 0.03em;
}

.nav-links .nav-link-gencfikir:hover {
    color: #ffe8a3 !important;
    background: rgba(230, 191, 110, 0.12) !important;
}

.nav-links .nav-link-gencfikir::after {
    background: #e6bf6e;
}

/* Etkinlik Paylaş — accent buton */
.nav-links .nav-link-cta {
    color: white !important;
    background: rgba(230, 57, 70, 0.85);
    font-weight: 600 !important;
    border-radius: 50px;
    padding: 0.4rem 1rem !important;
    font-size: 0.85rem !important;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(230, 57, 70, 0.25);
}

.nav-links .nav-link-cta:hover {
    background: var(--primary) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(230, 57, 70, 0.4);
}

.nav-links .nav-link-cta::after {
    display: none;
}

.btn-cta {
    background-color: var(--primary);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 6px rgba(230, 57, 70, 0.25);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(230, 57, 70, 0.3);
    background-color: var(--primary-dark);
}

/* Dropdown Menu Styles */
.nav-links li {
    position: relative;
}

/* Hover köprüsü: li'nin alt kısmını genişlet ki dropdown'a geçişte hover kopmasın */
.nav-links li.dropdown {
    padding-bottom: 10px;
    margin-bottom: -10px;
}

.dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: white;
    box-shadow: 0 8px 32px rgba(29, 53, 87, 0.18), 0 2px 8px rgba(0,0,0,0.08);
    border-radius: 12px;
    min-width: 210px;
    z-index: 1000;
    padding: 0.5rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    border-top: 3px solid var(--primary);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    padding: 0;
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    border-bottom: 1px solid #f1f5f9;
}

.dropdown-menu a::after {
    display: none;
    /* Remove underline animation for dropdown items */
}

.dropdown-menu a:hover {
    background-color: var(--light-bg);
    color: var(--primary);
    padding-left: 1.8rem;
    /* Slight shift effect */
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.nav-links .dropdown>a>i {
    font-size: 0.7rem;
    margin-left: 4px;
    vertical-align: middle;
    transition: transform 0.3s;
}

.nav-links .dropdown:hover>a>i {
    transform: rotate(180deg);
}

/* Scrollable Dropdown Extension */
.dropdown-scrollable {
    max-height: 400px;
    overflow-y: auto;
}

/* Custom Scrollbar for Dropdown */
.dropdown-scrollable::-webkit-scrollbar {
    width: 6px;
}

.dropdown-scrollable::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

.dropdown-scrollable::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.dropdown-scrollable::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Hero Section */
.hero {
    background: var(--gradient-hero);
    color: white;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 80px;
    /* Modern curve */
}

.hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -50px;
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, rgba(230, 57, 70, 0.2), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-text {
    flex: 1;
}

.hero-text h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Categories Section */
.categories {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: -3rem;
    /* Overlap effect */
    position: relative;
    z-index: 20;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-decoration: none;
    color: var(--text-dark);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.cat-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Features / Latest News - Slider Styles */
.section-header {
    text-align: center;
    margin: 5rem 0 3rem;
}

.section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Tabs & Slider CSS */
.tabs-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.tab-btn {
    padding: 0.8rem 1.8rem;
    border: 1px solid #e2e8f0;
    background: white;
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
    box-shadow: 0 4px 12px rgba(29, 53, 87, 0.2);
    transform: translateY(-1px);
}

.slider-section {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    padding: 0 3rem 5rem;
    /* Yanlardan buton payı */
}

.slider-wrapper {
    display: none;
    /* Varsayılan gizli */
    animation: fadeIn 0.4s ease-out;
}

.slider-wrapper.active {
    display: block;
}

.cards-scroll-container {
    overflow: hidden;
    /* Scrollbar gizlemek ve butonlarla kontrol etmek için */
    border-radius: var(--radius);
    padding: 10px 5px;
    /* Box shadow kesilmesin diye */
}

.cards-scroll {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 0 5px;
}

.cards-scroll::-webkit-scrollbar {
    display: none;
}

.news-card {
    min-width: 320px;
    /* Sabit genişlik */
    max-width: 320px;
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    border: 1px solid #f1f5f9;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.news-image {
    height: 200px;
    background-color: #e2e8f0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-image-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.7);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

.news-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.news-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.news-card:hover img {
    transform: scale(1.05); /* Resim hafif büyür */
    transition: 0.3s;
}
.news-card:hover .news-title {
    color: #000; /* Veya temanızın vurgu rengi */
}

.news-title {
    /* Yazı Boyutu ve Renk */
    font-size: 0.95rem; /* İdeal okuma boyutu */
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
    line-height: 1.5; /* Satır aralığını biraz açmak okunabilirliği artırır */

    /* Çok Satırlı Kısıtlama (Max 3 Satır) */
    display: -webkit-box;
    -webkit-line-clamp: 3; /* 2'den 3'e çıkardık */
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;

    /* Kart Boylarını Hizalama (Min-Height) */
    /* Formül: line-height (1.5) * font-size (0.95rem) * satır sayısı (3) */
    /* 1.5 * 0.95 * 3 = 4.275rem */
    min-height: 4.3rem;

    /* Kelime bazlı kesme yapmaması için (opsiyonel) */
    word-break: break-word;
}
.news-location {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 45%;
    /* Kartların ortasına denk gelmesi için */
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: none;
    color: var(--secondary);
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 0px;
}

.slider-btn.next {
    right: 0px;
}

@media (max-width: 768px) {
    .slider-section {
        padding: 0 1rem 3rem;
    }

    .slider-btn {
        display: none;
        /* Mobilde touch scroll yeterli */
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Map Section CTA */
.map-section {
    background: var(--secondary);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232a4875' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.map-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.map-btn {
    display: inline-block;
    margin-top: 2rem;
    background: white;
    color: var(--secondary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.map-btn:hover {
    background: var(--primary);
    color: white;
}

/* Footer */
footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 4rem 2rem 2rem;
    border-top: 4px solid var(--primary);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #1e293b;
    font-size: 0.9rem;
}

/* Sağ Header Logo */
.header-right-logo {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-left: 1.5rem;
}

.header-right-logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.header-right-logo:hover img {
    opacity: 1;
    transform: scale(1.03);
}

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
    border-radius: 8px;
    transition: background 0.2s;
}

.hamburger:hover {
    background: rgba(0, 0, 0, 0.05);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: white;
    border-radius: 3px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Nav Panel */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
}

.mobile-nav-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background: white;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav.open {
    display: block;
}

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

.mobile-nav.open .mobile-nav-panel {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.mobile-nav-header span {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
}

.mobile-nav-logo {
    height: 38px;
    width: auto;
    border-radius: 6px;
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--text-light);
    padding: 4px 8px;
    border-radius: 6px;
    transition: background 0.2s;
}

.mobile-nav-close:hover {
    background: #f1f5f9;
    color: var(--text-dark);
}

.mobile-nav-link {
    display: block;
    padding: 0.85rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 10px;
    transition: background 0.2s, color 0.2s;
}

.mobile-nav-link:hover {
    background: var(--light-bg);
    color: var(--primary);
}

.mobile-nav-section {
    margin-top: 0.5rem;
}

.mobile-nav-section-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    padding: 0.5rem 1rem;
}

.mobile-nav-sub {
    display: block;
    padding: 0.65rem 1.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

.mobile-nav-sub:hover {
    background: var(--light-bg);
    color: var(--primary);
}

.mobile-nav-cta {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
}

.mobile-nav-cta a {
    display: block;
    text-align: center;
    background: var(--primary);
    color: white;
    padding: 0.9rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
}

.mobile-nav-cta a:hover {
    background: var(--primary-dark);
}

/* Mobile Nav Dropdown Accordion */
.mobile-nav-dropdown {
    border-radius: 10px;
    overflow: hidden;
}

.mobile-nav-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.85rem 1rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    border-radius: 10px;
    transition: background 0.2s, color 0.2s;
}

.mobile-nav-dropdown-toggle:hover {
    background: var(--light-bg);
    color: var(--primary);
}

.mobile-nav-dropdown-toggle span {
    display: flex;
    align-items: center;
}

.mobile-nav-chevron {
    font-size: 0.7rem;
    color: var(--text-light);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-dropdown.open .mobile-nav-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.mobile-nav-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 0.5rem;
    background: #f8fafc;
    border-radius: 0 0 10px 10px;
    margin: 0 0.25rem;
}

.mobile-nav-dropdown.open .mobile-nav-dropdown-menu {
    max-height: 600px;
    padding: 0.5rem;
}

.mobile-nav-dropdown-scrollable {
    overflow-y: auto;
}

.mobile-nav-dropdown.open .mobile-nav-dropdown-scrollable {
    max-height: 250px;
}

/* Scrollbar for mobile dropdown */
.mobile-nav-dropdown-scrollable::-webkit-scrollbar {
    width: 4px;
}

.mobile-nav-dropdown-scrollable::-webkit-scrollbar-track {
    background: transparent;
}

.mobile-nav-dropdown-scrollable::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.mobile-nav-dropdown-scrollable::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.mobile-nav-dropdown-menu .mobile-nav-sub {
    padding: 0.6rem 1rem;
    font-size: 0.88rem;
    border-radius: 8px;
    margin-bottom: 2px;
}

.mobile-nav-dropdown-menu .mobile-nav-sub:hover {
    background: white;
    color: var(--primary);
    padding-left: 1.3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        border-bottom-left-radius: 40px;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

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

    .categories {
        margin-top: 0;
    }

    .nav-links {
        display: none;
    }

    header .btn-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header-right-logo {
        display: none;
    }

    .logo img {
        height: 50px;
    }

    .logo-text h1 {
        font-size: 1.4rem;
    }
}

/* Vertical Category Layout Styles */
.category-block {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.category-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    text-transform: uppercase!important;
}
.cat-header-sosyal_kulturel_sanatsal_etkinlikler{
    background: linear-gradient(135deg, #e9c46a 0%, #b08d57 100%);
}
.cat-header-turkiye-yuzyili-maarif-modeli-erdem-deger-eylem {
    background: linear-gradient(135deg, #e9c46a 0%, #b08d57 100%);
}
.cat-header-yesil-vatan-surdurulebilirlik-ve-cevre-bilinci {
    background: linear-gradient(135deg, #52b788 0%, #1b4332 100%);
}
.cat-header-dijital-etik-siber-guvenlik-ve-okuryazarlik {
    background: linear-gradient(135deg, #4cc9f0 0%, #4361ee 100%);
}
.cat-header-egitimde-aile-katilimi {
    background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
}
.cat-header-okul-disi-ogrenme-ortamlari-ve-etkinlikleri {
    background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
}
.cat-header-bilim_akademi_ve_teknoloji_odakli_etkinlikler{
    background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
}
.cat-header-egitimde-kapsayicilik-ve-onemi {
    background: linear-gradient(135deg, #ff4d6d 0%, #800f2f 100%);
}
.cat-header-sosyal-kulturel-etkinlikler-ve-akran-iliskileri {
    background: linear-gradient(135deg, #2a9d8f 0%, #264653 100%);
}
.cat-header-sportif_etkinlikler{
    background: linear-gradient(135deg, #2a9d8f 0%, #264653 100%);
}
.cat-header-girisimcilik-ve-liderlik-becerileri {
    background: linear-gradient(135deg, #e76f51 0%, #d62828 100%);
}
.cat-header-sosyal_sorumluluk_faaliyetleri{
    background: linear-gradient(135deg, #ff4d6d 0%, #800f2f 100%);
}
.cat-header-yazilim_ve_yayinlar{
    background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
}

.cat-header-sports {
    background: linear-gradient(135deg, #457b9d 0%, #1d3557 100%);
}

.category-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.view-all-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.2s;
}

.view-all-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.category-content {
    padding: 2rem;
    position: relative;
}

/* Adjusted slider for being inside a block */
.category-content .slider-btn {
    top: 50%;
    background: white;
    color: var(--text-dark);
    border: 1px solid #e2e8f0;
}

.category-content .slider-btn:hover {
    background: var(--text-dark);
    color: white;
}

.category-content .slider-btn.prev {
    left: 10px;
}

.category-content .slider-btn.next {
    right: 10px;
}

/* ===== SWIPER HERO ===== */
.hero-swiper {
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    /* Prevent horizontal spill */
}

.hero-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: 100% !important;
    /* Force single slide width */
    box-sizing: border-box;
    /* Include padding in width */
    padding: 0 2rem;
}

.hero-swiper .slide-content-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
}

/* Swiper nav buttons override */
.hero .swiper-button-prev,
.hero .swiper-button-next {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero .swiper-button-prev:hover,
.hero .swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.hero .swiper-button-prev::after,
.hero .swiper-button-next::after {
    font-size: 1rem;
    font-weight: 900;
}

/* Pagination bullets */
.hero .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    width: 10px;
    height: 10px;
    opacity: 1;
    transition: all 0.3s ease;
}

.hero .swiper-pagination-bullet-active {
    background: white;
    width: 28px;
    border-radius: 5px;
}

.hero .swiper-pagination {
    bottom: 20px;
}

/* Content animation classes */
.slide-text-wrap {
    flex: 1;
    text-align: left;
    padding-right: 2rem;
}

.slide-visual-wrap {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Elements that will be animated by GSAP */
.anim-tag,
.anim-title,
.anim-desc,
.anim-btns,
.anim-stats,
.anim-visual {
    will-change: transform, opacity;
}

.slide-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
}

/* ===== SWIPER CATEGORY CARDS ===== */
.cat-swiper {
    padding: 10px 5px 20px !important;
}

.cat-swiper .swiper-slide {
    height: auto;
}

/* Category swiper nav */
.cat-swiper-nav {
    position: relative;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding: 0 2rem 0.5rem;
}

.cat-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: 1px solid #e2e8f0;
    color: var(--secondary);
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.cat-nav-btn:hover {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
}

@media (max-width: 768px) {
    .hero-swiper {
        min-height: auto;
    }

    .hero-swiper .swiper-slide {
        padding: 0 1rem;
    }

    .hero-swiper .slide-content-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .slide-text-wrap {
        padding-right: 0;
        text-align: center;
    }

    .slide-text-wrap h2,
    .slide-text-wrap .anim-title,
    .hero-swiper .swiper-slide h2 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }

    .slide-text-wrap p,
    .slide-text-wrap .anim-desc {
        font-size: 1rem !important;
        margin-bottom: 1.2rem !important;
    }

    .slide-text-wrap .anim-btns {
        justify-content: center;
        margin-bottom: 1rem !important;
    }

    .slide-text-wrap .anim-btns .btn-cta {
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 1.2rem;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .slide-visual-wrap {
        display: none !important;
    }

    .hero .swiper-button-prev,
    .hero .swiper-button-next {
        display: none;
    }

    .hero .swiper-pagination {
        bottom: 10px;
        position: absolute;
    }

    .slide-tag {
        font-size: 0.7rem;
        padding: 0.25rem 0.8rem;
        margin-bottom: 0.8rem;
    }

    /* Category swiper mobile fixes */
    .cat-swiper {
        padding: 5px 2px 15px !important;
    }

    .category-content {
        padding: 1rem;
    }

    .category-header {
        padding: 1rem 1.2rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .category-header h3 {
        font-size: 1.1rem;
    }

    .cat-swiper-nav {
        padding: 0 1rem 0.3rem;
    }

    .cat-nav-btn {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }

    .news-card {
        min-width: 260px;
        max-width: 260px;
    }

    .news-image {
        height: 150px;
    }

    .news-content {
        padding: 1rem;
    }


    .view-all-btn {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

.breadcrumb {
    background: var(--secondary);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.breadcrumb h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.breadcrumb-links {
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb-links a {
    color: white;
    text-decoration: none;
}

.breadcrumb-links i {
    margin: 0 0.5rem;
    font-size: 0.8rem;
}

/* Event Layout */
.event-container {
    max-width: 1300px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 3rem;
}
.event-main {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.event-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 2rem;
}

.event-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-item i {
    color: var(--primary);
}
.event-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.event-text {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.05rem;
}

.event-text p {
    margin-bottom: 1.5rem;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.widget-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent);
}

.other-events-list {
    list-style: none;
}

.other-events-list li {
    margin-bottom: 1rem;
}

.other-event-link {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-dark);
    transition: transform 0.2s;
}

.other-event-link:hover {
    transform: translateX(5px);
    color: var(--primary);
}

.thumb {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    background: #e2e8f0;
    flex-shrink: 0;
    object-fit: cover;
}

.other-event-info h4 {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 0.3rem;
}

.other-event-info span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: var(--light-bg);
    color: var(--secondary);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.2s;
}

.tag:hover {
    background: #e2e8f0;
}
.category-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.category-hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Content Layout */
.content-container {

    margin: 3rem auto;
    padding: 0 4rem;
    max-width: 100%;
}

/* Sidebar Filters */
.filters {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.filter-options {
    list-style: none;
}

.filter-option {
    margin-bottom: 0.8rem;
}

.filter-option label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: color 0.2s;
}

.filter-option label:hover {
    color: var(--primary);
}

.filter-checkbox {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

/* Results Grid */
.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.result-count {
    color: var(--text-light);
    font-weight: 500;
}

.sort-select {
    padding: 0.5rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    color: var(--text-dark);
    cursor: pointer;
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: 2.5rem 2rem;
    justify-content: start;
}

/* Kategori sayfasındaki grid yapısında kartların taşmasını ve bitişik görünmesini engeller */
/* Tek kart olsa bile tam genişliğe yayılmasın */
.activity-grid .news-card {
    min-width: 0 !important;
    max-width: 400px !important;
    width: 100% !important;
}

.news-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #f1f5f9;
    position: relative;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.news-image {
    height: 180px;
    position: relative;
    background-color: #e2e8f0;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.news-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.news-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-location {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 4rem;
}

.page-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: white;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s;
}

.page-btn.active,
.page-btn:hover {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
}
.page-header {
    background: var(--gradient-hero);
    color: white;
    padding: 4rem 2rem 2rem;
    text-align: center;
}
.page-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 1rem;
}
.turkey-map-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
#svg-turkiye-haritasi {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 10px 25px rgba(29,53,87,0.15));
    overflow: visible;
}
#svg-turkiye-haritasi path {
    fill: #cbd5e1;
    stroke: #ffffff;
    stroke-width: 1.5;
    transition: all 0.3s ease;
    cursor: pointer;
    transform-origin: center;
}
#svg-turkiye-haritasi path:hover {
    fill: var(--primary);
    stroke: #ffffff;
    stroke-width: 2;
}
/* Özel popüler iller için mavi ton */
#svg-turkiye-haritasi #ankara path {
    fill: var(--accent);
}
#svg-turkiye-haritasi #ankara path:hover {
    fill: var(--primary);
}
.il-info-box {
    text-align: center;
    margin-bottom: 2rem;
    min-height: 40px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    font-family: 'Outfit', sans-serif;
    background: white;
    display: inline-block;
    padding: 0.5rem 2rem;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
@media (max-width: 768px) {
    .il-info-box { position: relative; left: auto; transform: none; display: block; margin: 0 auto 2rem; max-width: 80%; }
}

.form-wrapper {
    max-width: 800px;
    margin: -3rem auto 4rem;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}

.form-container {
    background: white;
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 4px 20px rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--primary);
}

.form-info-box {
    background: linear-gradient(135deg, #f1faee 0%, #e8f4fd 100%);
    padding: 1.5rem 1.75rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--accent);
    margin-bottom: 2.5rem;
    color: var(--secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.form-info-box strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--secondary);
    font-size: 0.95rem;
}

.form-label .required {
    color: var(--primary);
    margin-left: 2px;
}

.form-control {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8fafc;
    color: var(--text-dark);
}

.form-control::placeholder {
    color: #94a3b8;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(69, 123, 157, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 160px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient-hero);
    color: white;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(29, 53, 87, 0.3);
    letter-spacing: 0.5px;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 53, 87, 0.4);
}

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

.form-footer-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.form-footer-note i {
    color: var(--accent);
}
.page-header {
    background: var(--gradient-hero);
    color: white;
    padding: 5rem 2rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255,218,121,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(69,123,157,0.2) 0%, transparent 50%);
    pointer-events: none;
}
.page-header .header-icon {
    width: 80px; height: 80px;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    backdrop-filter: blur(10px);
}
.page-header .header-icon i {
    font-size: 2rem; color: #ffda79;
    filter: drop-shadow(0 0 10px rgba(255,218,121,0.5));
}
.page-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem; margin-bottom: 1rem;
    position: relative; z-index: 2; font-weight: 700;
}
.page-header p {
    font-size: 1.15rem; opacity: 0.9;
    max-width: 600px; margin: 0 auto;
    position: relative; z-index: 2; line-height: 1.7;
}

/* Contact Content */
.contact-wrapper {
    max-width: 1100px;
    margin: -3rem auto 4rem;
    padding: 0 1rem;
    position: relative; z-index: 10;
}

/* Info Strip — horizontal card */
.contact-strip {
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 2px 15px rgba(0,0,0,0.04);
    display: flex;
    align-items: stretch;
    overflow: hidden;
    margin-bottom: 2.5rem;
}
.contact-strip::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #ffda79, var(--accent));
    border-radius: var(--radius) var(--radius) 0 0;
}
.contact-strip-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.75rem 1.5rem;
    border-right: 1px solid #f1f5f9;
    transition: background 0.3s ease;
    text-decoration: none;
    color: inherit;
    position: relative;
}
.contact-strip-item:last-child { border-right: none; }
.contact-strip-item:hover { background: #f8fafc; }
.contact-strip-item .strip-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(29,53,87,0.2);
}
.contact-strip-item .strip-text h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-light);
    margin-bottom: 4px;
    font-weight: 600;
}
.contact-strip-item .strip-text p {
    font-size: 0.95rem;
    color: var(--secondary);
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}
.contact-strip-item .strip-text a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.contact-strip-item .strip-text a:hover { color: var(--primary); }

/* Map — full width */
.contact-map-box {
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
}
.box-header {
    background: var(--gradient-hero);
    color: white;
    padding: 1.1rem 2rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem; font-weight: 600;
    display: flex; align-items: center; gap: 10px;
}
.box-header i { color: #ffda79; }
.contact-map-box iframe {
    width: 100%; height: 450px; border: none; display: block;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-strip {
        flex-direction: column;
    }
    .contact-strip-item {
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
    }
    .contact-strip-item:last-child { border-bottom: none; }
}
@media (max-width: 768px) {
    .contact-map-box iframe { height: 320px; }
    .page-header {
        padding: 3.5rem 1rem 5rem;
        clip-path: polygon(0 0, 100% 0, 100% 92%, 50% 100%, 0 92%);
    }
    .page-header h1 { font-size: 2rem; }
    .contact-wrapper { margin-top: -2rem; }
}
/* Main Content Wrapper */
.about-wrapper {
    max-width: 900px;
    margin: -4rem auto 5rem;
    padding: 0 1.25rem;
    position: relative; z-index: 10;
}

/* Content Card */
.about-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 2px 15px rgba(0,0,0,0.04);
    overflow: hidden;
}

/* Gold accent strip */
.about-card::before {
    content: '';
    display: block;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, #ffda79 50%, var(--accent) 100%);
}

.about-body {
    padding: 3rem 3.5rem 3.5rem;
}

/* Section label */
.about-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f1faee 0%, #e8f4fd 100%);
    color: var(--accent);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}
.about-label i { font-size: 0.75rem; }

/* Paragraphs */
.about-body p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #374151;
    margin-bottom: 1.75rem;
    text-align: justify;
}
.about-body p:last-child {
    margin-bottom: 0;
}

/* First letter drop cap */
.about-body p.drop-cap::first-letter {
    font-family: 'Outfit', sans-serif;
    float: left;
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 0.85;
    padding-right: 0.6rem;
    padding-top: 0.1rem;
    color: var(--secondary);
}

/* Highlighted quote block */
.about-highlight {
    background: linear-gradient(135deg, #f8f9ff 0%, #f1faee 100%);
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    position: relative;
}

.about-highlight p {
    font-style: italic;
    font-weight: 500;
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: 0 !important;
}

/* Bottom signature/seal area */
.about-seal {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}
.seal-icon {
    width: 56px; height: 56px;
    background: var(--gradient-hero);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(29,53,87,0.2);
}
.seal-icon i { color: #ffda79; font-size: 1.3rem; }
.seal-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}
.seal-text strong {
    display: block;
    color: var(--secondary);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 4rem 1.25rem 6rem;
        clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
    }
    .page-header h1 { font-size: 2.2rem; }
    .about-wrapper { margin-top: -3rem; }
    .about-body { padding: 2rem 1.5rem 2.5rem; }
    .about-body p { font-size: 0.98rem; text-align: left; }
    .about-highlight { padding: 1.25rem 1.5rem; }
    .about-body p.drop-cap::first-letter { font-size: 3rem; }
}
.kat-hero {
    background: var(--gradient-hero);
    color: white;
    padding: 5.5rem 2rem 7rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 82%, 50% 100%, 0 82%);
}
.kat-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255,218,121,0.12) 0%, transparent 45%),
        radial-gradient(circle at 80% 20%, rgba(69,123,157,0.18) 0%, transparent 45%);
    pointer-events: none;
}
.kat-hero::after {
    content: '';
    position: absolute;
    top: -80px; right: -60px;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    pointer-events: none;
}
.kat-hero .hero-icon {
    width: 90px; height: 90px;
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    backdrop-filter: blur(10px);
    animation: katFloat 4s ease-in-out infinite;
}
@keyframes katFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.kat-hero .hero-icon i {
    font-size: 2.2rem; color: #ffda79;
    filter: drop-shadow(0 0 12px rgba(255,218,121,0.5));
}
.kat-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem; font-weight: 700;
    margin-bottom: 1rem;
    position: relative; z-index: 2;
}
.kat-hero .subtitle {
    font-size: 1.1rem; opacity: 0.85;
    max-width: 550px; margin: 0 auto;
    position: relative; z-index: 2;
    line-height: 1.7;
}

/* ===== Categories Grid ===== */
.kat-wrapper {
    max-width: 1100px;
    margin: -4rem auto 5rem;
    padding: 0 1.25rem;
    position: relative; z-index: 10;
}

.kat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.kat-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06), 0 2px 10px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
}
.kat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12), 0 4px 15px rgba(0,0,0,0.06);
}

.kat-card-header {
    padding: 1.5rem 2rem 1rem;
    position: relative;
    overflow: hidden;
    min-height: 100px;
    display: flex;
    align-items: center;
}
/* Per-category gradient backgrounds */

.kat-card-header::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 160px; height: 160px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    pointer-events: none;
}
.kat-card-header::after {
    content: '';
    position: absolute;
    bottom: -30px; left: -20px;
    width: 100px; height: 100px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    pointer-events: none;
}

.kat-card-icon {
    width: 64px; height: 64px;
    background: rgba(255,255,255,0.18);
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
    position: relative; z-index: 2;
    backdrop-filter: blur(8px);
}
.kat-card-icon i {
    font-size: 1.6rem; color: white;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
}

.kat-card-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    position: relative; z-index: 2;
}

.kat-card-body {
    padding: 1.75rem 2rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.kat-card-body p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.kat-card-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.kat-stat {
    text-align: center;
    flex: 1;
}
.kat-stat-num {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
}
.kat-stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.kat-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.3s ease, color 0.3s ease;
}
.kat-card:hover .kat-card-link {
    gap: 14px;
    color: var(--primary);
}

/* Breadcrumb */
.kat-breadcrumb {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 1.25rem 0;
}
.kat-breadcrumb a,
.kat-breadcrumb span {
    font-size: 0.85rem;
    text-decoration: none;
    color: var(--text-light);
}
.kat-breadcrumb a:hover { color: var(--primary); }
.kat-breadcrumb i {
    font-size: 0.65rem;
    margin: 0 6px;
    color: #cbd5e1;
}
.kat-breadcrumb span { color: var(--secondary); font-weight: 600; }

/* Responsive */
@media (max-width: 768px) {
    .kat-hero {
        padding: 4rem 1.25rem 6rem;
        clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
    }
    .kat-hero h1 { font-size: 2.2rem; }
    .kat-wrapper { margin-top: -3rem; }
    .kat-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .kat-card-header { padding: 2rem 1.5rem 1.5rem;
        min-height: clamp(150px, 10vh, 250px);
    }
    .kat-card-body { padding: 1.5rem; }
}
