/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Modern Hoş Geldiniz Ekranı */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

.welcome-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1dd1a1 0%, #0891b2 40%, #667eea 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.8s ease;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.welcome-screen::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1.5" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.8" fill="rgba(255,255,255,0.04)"/><circle cx="10" cy="60" r="1.2" fill="rgba(255,255,255,0.02)"/><circle cx="90" cy="30" r="0.6" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float 20s infinite linear;
    pointer-events: none;
}

.welcome-screen.fade-out {
    opacity: 0;
}

.welcome-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    padding: 5rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.welcome-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: welcomeSlideUp 1.5s ease-out;
}

.welcome-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    letter-spacing: 3px;
    text-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #ffffff, #f1f3f4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 2s ease-in-out infinite alternate;
}

.welcome-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin: 0;
    letter-spacing: 1px;
    opacity: 0.95;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: subtitleFade 2s ease-out 0.5s both;
}

.welcome-footer {
    animation: footerSlideUp 1.8s ease-out 1s both;
}

.welcome-loading {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: loadingFadeIn 2s ease-out 2s both;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-text {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    letter-spacing: 0.5px;
}

.welcome-footer h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    padding: 1.5rem 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    animation: borderPulse 3s ease-in-out infinite;
}

@keyframes welcomeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes subtitleFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 0.95;
        transform: translateY(0);
    }
}

@keyframes footerSlideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textGlow {
    0% {
        text-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.2);
    }

    100% {
        text-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 50px rgba(255, 255, 255, 0.4);
    }
}

@keyframes borderPulse {

    0%,
    100% {
        border-color: rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    }

    50% {
        border-color: rgba(255, 255, 255, 0.6);
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
    }
}

@keyframes float {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes loadingFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Mobil uyumlu */
@media (max-width: 768px) {
    .welcome-container {
        padding: 3rem 1.5rem;
    }

    .welcome-content h1 {
        font-size: 3.2rem;
        letter-spacing: 2px;
    }

    .welcome-subtitle {
        font-size: 1.4rem;
        letter-spacing: 0.5px;
    }

    .welcome-footer h2 {
        font-size: 1.2rem;
        letter-spacing: 1px;
        padding: 1.2rem 2rem;
    }
}

@media (max-width: 480px) {
    .welcome-content h1 {
        font-size: 2.8rem;
    }

    .welcome-subtitle {
        font-size: 1.2rem;
    }

    .welcome-footer h2 {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
}


/* Navigasyon - Transparent Overlay */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    padding: 1rem 0;
    z-index: 100;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Scroll durumunda logo turkuaz, linkler siyah olsun */
.navbar.scrolled .nav-logo {
    color: #1dd1a1;
    text-shadow: none;
}

.navbar.scrolled .nav-link {
    color: #333;
    text-shadow: none;
}

.navbar.scrolled .nav-link:hover {
    color: #1dd1a1;
    text-shadow: none;
}

.navbar.scrolled .nav-toggle span {
    background: #333;
    box-shadow: none;
}

.navbar .nav-toggle span {
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 100%;
    margin: 0;
    padding: 0 15px;
    /* Daha az padding - daha fazla alan */
    display: flex;
    justify-content: space-between;
    /* Logo sol, menü sağ */
    align-items: center;
    width: 100%;
    /* Tam genişlik kullan */
    gap: 1rem;
    /* Daha az gap - logo için daha fazla alan */
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    /* Daha kompakt font boyutu */
    font-weight: 800;
    /* Kalın */
    color: #1dd1a1;
    text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 2px 2px 6px rgba(0, 0, 0, 0.9);
    letter-spacing: 1px;
    /* Harf arası */
    white-space: nowrap;
    /* PC'de tek satır */
    max-width: none;
    /* Sınırsız genişlik - tam görünsün */
    overflow: visible;
    /* Taşmayı göster */
    text-overflow: unset;
    /* Ellipsis kaldır */
    flex-shrink: 0;
    /* Küçülmeyi engelle */
    min-width: fit-content;
    /* İçeriğe göre minimum genişlik */
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin-left: auto;
    /* Menüyü sağa it */
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.nav-link:hover {
    color: #1dd1a1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1dd1a1;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(29, 209, 161, 0.5);
}

.nav-link:hover::after {
    width: 100%;
}

/* Kayıt Ol Butonu - CTA Stili */
.nav-cta {
    background: linear-gradient(135deg, #1dd1a1 0%, #0891b2 100%);
    padding: 0.6rem 1.5rem !important;
    border-radius: 25px;
    color: white !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(29, 209, 161, 0.4);
    transition: all 0.3s ease;
    text-shadow: none !important;
}

.nav-cta:hover {
    background: linear-gradient(135deg, #0891b2 0%, #1dd1a1 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 209, 161, 0.6);
}

.nav-cta::after {
    display: none !important;
}

.navbar.scrolled .nav-cta {
    color: white !important;
    text-shadow: none !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
    position: relative;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Hero Section - Full Screen Coverage */
.hero {
    min-height: 100vh;
    /* Tam ekran kapla */
    height: 100vh;
    /* Sabit tam ekran yükseklik */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0;
    /* Loading Background - Sadece Gradient */
    background: linear-gradient(45deg, rgba(29, 209, 161, 0.8) 0%, rgba(8, 145, 178, 0.7) 50%, rgba(12, 74, 110, 0.8) 100%);
    /* Animasyon kaldırıldı */
    position: relative;
}

@keyframes modernBokehAnimation {

    0%,
    100% {
        background-position: 0% 50%, 100% 50%, 50% 100%, 0% 0%, 75% 25%, 50% 50%;
    }

    25% {
        background-position: 100% 75%, 0% 25%, 75% 0%, 25% 75%, 50% 50%, 25% 75%;
    }

    50% {
        background-position: 50% 0%, 75% 100%, 0% 50%, 100% 25%, 25% 75%, 75% 25%;
    }

    75% {
        background-position: 25% 100%, 50% 0%, 100% 75%, 75% 50%, 0% 25%, 100% 100%;
    }
}



/* Hero Background - Şeffaf Overlay */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 1;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4) 100%);
}


@keyframes loadingPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes loadingFade {

    0%,
    100% {
        opacity: 0.9;
    }

    50% {
        opacity: 0.6;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
}

.hero-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
    position: relative;
    z-index: 10;
    /* Loading overlay ve diğer elementlerden daha yüksek */
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    /* Tam ekran yükseklik */
    height: 100vh;
    text-align: center;
    position: relative;
    padding: 0;
}

.hero-text {
    color: white;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    color: white;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}



.hero-slogan {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.4;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
}



.hero-buttons {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}

/* Hero Images - Full Background */
.hero-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.image-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.heroSwiper {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.heroSwiper .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.heroSwiper .swiper-slide {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.heroSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none;
    /* Tüm geçişler kaldırıldı */
    background: transparent;
    display: block !important;
    opacity: 1;
    /* Başlangıçta görünür */
    position: relative;
    z-index: 1;
    /* NET görüntü için optimizasyonlar */
    image-rendering: high-quality;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    transform: none;
    filter: none;
    /* Animasyonlar kaldırıldı */
    will-change: auto;
    content-visibility: auto;
}

/* Animasyonlar ve efektler kaldırıldı - sadece statik görseller */

.slide-overlay {
    display: none;
    /* Full background'da overlay gerekmez */
}

.heroSwiper .swiper-pagination {
    bottom: 20px;
    /* Kompakt hero için */
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    z-index: 99;
}

.heroSwiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
    width: 10px;
    height: 10px;
    margin: 0 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.heroSwiper .swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.8);
}

.heroSwiper .swiper-pagination-bullet-active {
    background: #1dd1a1;
    box-shadow: 0 6px 20px rgba(29, 209, 161, 0.6), 0 0 30px rgba(29, 209, 161, 0.4);
    border-color: rgba(255, 255, 255, 0.6);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    z-index: 99;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

/* Modern Hero Layout Stilleri */
.hero-main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Title Overlay - Mobilde Görünür */
.hero-title-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    text-align: center;
    width: 90%;
    max-width: 600px;
}

.hero-main-title-mobile {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin: 0;
    line-height: 1.2;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-text-section {
    color: white;
    text-align: center;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-text-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 209, 161, 0.1) 0%, rgba(8, 145, 178, 0.1) 100%);
    z-index: -1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(29, 209, 161, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(29, 209, 161, 0.3);
    color: #1dd1a1;
    font-weight: 600;
}

.hero-badge i {
    color: #1dd1a1;
}

.hero-main-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-main-title .highlight {
    background: linear-gradient(135deg, #1dd1a1 0%, #0891b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1dd1a1;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-top: 0.25rem;
}

.hero-features-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 2rem;
}

.hero-feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 209, 161, 0.1) 0%, rgba(8, 145, 178, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.hero-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(29, 209, 161, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1dd1a1 0%, #0891b2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    box-shadow: 0 5px 15px rgba(29, 209, 161, 0.3);
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.hero-feature-card h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.hero-feature-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Sağ Alt - Aksiyon İkonları - ALWAYS VISIBLE */
.hero-action-icons-corner {
    position: absolute;
    bottom: 2rem;
    right: 1rem;
    /* Daha sağa */
    display: flex;
    gap: 1.2rem;
    z-index: 1000;
    /* En üstte görünür */
    pointer-events: auto;
}

.action-icon-corner {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(29, 209, 161, 0.95);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: none;
    /* Animasyon kaldırıldı */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.action-icon-corner:hover {
    background: rgba(29, 209, 161, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(29, 209, 161, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.action-icon-corner i {
    font-size: 1.2rem;
    color: white;
}

/* Responsive Design - Hero Layout */
@media (max-width: 1024px) {
    .hero {
        min-height: 100vh;
        /* Tablet'te de tam ekran */
        height: 100vh;
    }

    .hero-content {
        min-height: 100vh;
        height: 100vh;
    }

    .hero-main-content {
        max-width: 600px;
    }

    /* Social Activities Responsive */
    .social-activities-modern .section-header h2 {
        font-size: 2rem;
    }

    .social-activities-content {
        padding: 2rem;
    }

    .social-activities-text-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .social-activity-item-modern {
        padding: 1rem;
    }

    .social-activity-item-modern i {
        font-size: 1.6rem;
        min-width: 35px;
    }

    .social-activity-item-modern span {
        font-size: 1rem;
    }

    /* Hoş Geldiniz Ekranı Mobile */
    .welcome-content {
        padding: 1rem;
        gap: 2rem;
    }

    .welcome-icon {
        width: 80px;
        height: 80px;
    }

    .welcome-icon i {
        font-size: 2.5rem;
    }

    .welcome-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .announcement-card {
        padding: 2rem 1.5rem;
    }

    .announcement-icon-large {
        width: 60px;
        height: 60px;
    }

    .announcement-icon-large i {
        font-size: 1.5rem;
    }

    .announcement-content-large h2 {
        font-size: 1.5rem;
    }

    .announcement-content-large p {
        font-size: 1rem;
    }

    .welcome-footer h3 {
        font-size: 1.4rem;
    }

    .welcome-dots span {
        width: 10px;
        height: 10px;
    }

    .hero-main-title {
        font-size: 2.5rem;
    }



    .hero-action-icons-corner {
        bottom: 1.5rem;
        right: 0.5rem;
        gap: 1rem;
        z-index: 998;
        /* Always visible */
    }

    .action-icon-corner {
        width: 30px;
        height: 30px;
    }

    .action-icon-corner i {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {

    /* Tablet ve mobil navbar optimizasyonu */
    .nav-logo {
        font-size: 1.5rem !important;
        /* Tablet'te uygun boyut */
        max-width: none !important;
        overflow: visible !important;
        white-space: normal !important;
        /* Çok uzunsa satır değiştirsin */
        line-height: 1.1;
    }

    .nav-container {
        padding: 0 10px;
        /* Daha az padding */
        gap: 0.5rem;
        /* Minimal gap */
    }

    .hero {
        min-height: 60vh;
        /* Mobilde daha kompakt */
        height: 60vh;
        padding: 0;
        margin: 0;
        overflow: hidden;
        position: relative;
    }

    .hero-content {
        min-height: 60vh;
        height: 60vh;
        padding: 0;
        margin: 0;
        position: relative;
    }

    .heroSwiper {
        height: 60vh;
        /* Kompakt yükseklik */
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        border-radius: 0 0 20px 20px;
        /* Alt köşelerde radius */
    }

    .heroSwiper .swiper-slide {
        height: 60vh !important;
        width: 100% !important;
        border-radius: 0 0 20px 20px;
        overflow: hidden;
    }

    .heroSwiper .swiper-slide img,
    .heroSwiper .swiper-slide>div {
        height: 60vh !important;
        width: 100% !important;
        object-fit: cover;
        border-radius: 0 0 20px 20px;
    }

    .hero-text-section {
        padding: 2rem;
    }

    .hero-main-title {
        font-size: 2rem;
    }



    .hero-action-icons-corner {
        bottom: 2rem;
        /* Mobilde görselin üzerinde */
        right: 1.5rem;
        gap: 1rem;
        z-index: 1001;
        /* Görselin ve her şeyin üzerinde */
        position: fixed;
        /* Fixed position for mobile */
    }

    .action-icon-corner {
        width: 60px;
        /* Mobilde daha büyük */
        height: 60px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        background: rgba(29, 209, 161, 0.9);
        backdrop-filter: blur(10px);
    }

    .action-icon-corner i {
        font-size: 1.4rem;
        /* Mobilde daha büyük ikon */
        color: white;
    }

    /* Mobilde about section padding */
    .about-section {
        padding: 2rem 0 !important;
        margin-top: 1rem !important;
        /* Hero altında küçük boşluk */
    }

    .about-section .container {
        padding: 0 0.5rem !important;
    }

    /* Mobilde navbar yurt adı 2 satır */
    .nav-logo {
        max-width: 250px;
        /* Daha geniş alan */
        white-space: normal;
        /* Çok satıra izin ver */
        overflow: visible;
        text-overflow: unset;
        line-height: 1.3;
        /* Satır arası boşluk artırıldı */
        text-align: left;
    }

    .nav-logo span {
        font-size: 1.3rem !important;
        /* Mobilde daha büyük */
        font-weight: 800 !important;
        /* Kalın font */
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        /* Gölge */
        letter-spacing: 0.5px;
        display: block;
        line-height: 1.2;
    }
}

/* Çok küçük ekranlar için ek optimizasyon */
@media (max-width: 480px) {
    .hero {
        min-height: 55vh !important;
        /* Küçük ekranlarda daha kompakt */
        height: 55vh !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden;
    }

    .hero-content {
        min-height: 55vh !important;
        height: 55vh !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .heroSwiper {
        height: 55vh !important;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        border-radius: 0 0 15px 15px;
    }


}

.yurt-name-top {
    font-size: 0.8rem;
    padding: 0.6rem 0.8rem;
    letter-spacing: 0.1px;
    min-width: 100px;
}

.hero-action-icons-corner {
    bottom: 1.5rem;
    /* Kompakt hero'da uygun pozisyon */
    right: 0.1rem;
    gap: 0.8rem;
    z-index: 1001;
    /* Always visible */
}

.action-icon-corner {
    width: 40px;
    /* Küçük ekranlar için optimal */
    height: 40px;
}

/* Çok küçük ekranlarda navbar */
.nav-logo {
    max-width: none;
    /* Küçük ekranlarda da sınırsız */
    font-size: 1.8rem !important;
    /* Büyütülmüş logo */
    overflow: visible;
}

.nav-logo span {
    font-size: 1.6rem !important;
    /* Daha büyük ve okunaklı */
    letter-spacing: 0.5px;
    line-height: 1.2;
    /* Satır arası boşluk */
    font-weight: 800 !important;
    /* Daha kalın */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}


.hero-text h1 {
    font-size: 2.2rem;
    /* Mobilde başlık daha büyük */
    margin-bottom: 1.5rem;
}

.hero-slogan {
    font-size: 1.5rem;
    padding: 0.8rem 1.5rem;
    margin-bottom: 1.5rem;
}

/* Scroll Indicator Styles */
.scroll-indicator {
    animation: modernBounce 3s ease-in-out infinite;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.scroll-indicator span {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.scroll-indicator i {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

@keyframes modernBounce {

    0%,
    100% {
        transform: translateY(0px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    50% {
        transform: translateY(-15px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }
}

/* Butonlar - Turkuaz Tema */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #1dd1a1 0%, #0891b2 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(29, 209, 161, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1.5rem 3rem;
    animation: buttonGlow 3s ease-in-out infinite;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(29, 209, 161, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
}

@keyframes buttonGlow {

    0%,
    100% {
        box-shadow: 0 8px 25px rgba(29, 209, 161, 0.4), 0 0 20px rgba(29, 209, 161, 0.2);
    }

    50% {
        box-shadow: 0 8px 25px rgba(29, 209, 161, 0.4), 0 0 40px rgba(29, 209, 161, 0.4);
    }
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem 3rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

/* Bölüm Başlıkları - Optimize Edilmiş Boşluklar */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    color: #333;
    font-weight: 700;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #1dd1a1 0%, #0891b2 100%);
    margin: 1rem auto;
    border-radius: 2px;
}

/* Hakkımızda - Turkuaz Tema */
.about-section {
    padding: 0;
    /* Boşluk tamamen kaldırıldı */
    background: #f8f9fa;
    margin: 0;
    /* Boşluk kaldırıldı */
    margin-top: 0 !important;
    /* Hero'nun hemen altında */
}

.about-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.aboutSwiper {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.aboutSwiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.about-image img,
.aboutSwiper .swiper-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.experience-overlay {
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.experience-badge-large {
    background: rgba(29, 209, 161, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 50%;
    text-align: center;
    color: white;
    min-width: 100px;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.experience-number-large {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-text-large {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.2;
}

.about-content-main h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 700;
}

.about-content-main p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: #666;
}

.feature-item i {
    color: #1dd1a1;
    font-size: 1.2rem;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 1rem;
}

.about-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, #1dd1a1 0%, #0891b2 100%);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.about-card i {
    font-size: 3.5rem;
    color: #1dd1a1;
    margin-bottom: 1.5rem;
}

.about-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 700;
}

.about-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}



/* Güvenlik Sistemi */
.security-section {
    padding: 4rem 0;
    background: white;
}

.security-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

/* Masaüstünde 4 kart için özel layout */
@media (min-width: 1200px) {
    .security-grid {
        max-width: 1400px;
        margin: 1rem auto 0;
        grid-template-columns: repeat(4, 1fr);
    }

    .security-card {
        min-width: 280px;
    }
}

.security-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.security-card:hover {
    transform: translateY(-10px);
    border-color: #1dd1a1;
    box-shadow: 0 25px 50px rgba(29, 209, 161, 0.2);
}

.security-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1dd1a1 0%, #0891b2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    position: relative;
}

.security-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
    vertical-align: middle;
}

.security-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 600;
}

.security-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Eğitim Desteği */
.education-section {
    padding: 2rem 0;
    background: #f8f9fa;
}

.education-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.education-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

/* Masaüstünde 4 kart için özel layout */
@media (min-width: 1200px) {
    .education-content {
        max-width: 1400px;
        margin: 1rem auto 0;
        grid-template-columns: repeat(4, 1fr);
    }

    .education-card {
        min-width: 280px;
    }
}

.education-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.education-card:hover {
    transform: translateY(-10px);
    border-color: #1dd1a1;
    box-shadow: 0 25px 50px rgba(29, 209, 161, 0.2);
}

.education-card i {
    font-size: 3rem;
    color: #1dd1a1;
    margin-bottom: 1.5rem;
    display: block;
    line-height: 1;
    vertical-align: top;
    text-align: center;
}

.education-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 600;
}

.education-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Etkinlikler */
.activities-section {
    padding: 2rem 0;
    background: white;
}

.activities-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}



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

.activity-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.activity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.activity-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.activity-icon.yellow {
    background: #f39c12;
}

.activity-icon.green {
    background: #1dd1a1;
}

.activity-icon.blue {
    background: #3498db;
}

.activity-icon.red {
    background: #e74c3c;
}

.activity-icon.purple {
    background: #9b59b6;
}

.activity-icon.orange {
    background: #e67e22;
}

.activity-icon.pink {
    background: #e91e63;
}

.activity-icon.cyan {
    background: #00bcd4;
}

.activity-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.activity-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Beslenme Bölümü */
.nutrition-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.nutrition-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nutrition-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

/* Masaüstünde 4 kart için özel layout */
@media (min-width: 1200px) {
    .nutrition-content {
        max-width: 1400px;
        margin: 1rem auto 0;
        grid-template-columns: repeat(4, 1fr);
    }

    .nutrition-card {
        min-width: 280px;
    }
}

.nutrition-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nutrition-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, #1dd1a1 0%, #0891b2 100%);
}

.nutrition-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.nutrition-card i {
    font-size: 3.5rem;
    color: #1dd1a1;
    margin-bottom: 1.5rem;
    display: block;
    line-height: 1;
    vertical-align: top;
    text-align: center;
}

.nutrition-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 700;
}

.nutrition-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* İmkanlar */
.facilities-section {
    padding: 4rem 0;
    background: white;
}

.facilities-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Modern Facilities Text Format */
.facilities-modern-list {
    margin-bottom: 4rem;
}

.facilities-content {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 1rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(29, 209, 161, 0.1);
}

.facilities-text-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: center;
}

.facility-item-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.facility-item-modern:hover {
    transform: translateY(-5px);
    border-color: #1dd1a1;
    box-shadow: 0 15px 35px rgba(29, 209, 161, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.facility-item-modern i {
    font-size: 1.8rem;
    color: #1dd1a1;
    min-width: 40px;
    text-align: center;
}

.facility-item-modern span {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
}

/* Modern Social Activities - Facilities Style */
.social-activities-modern {
    margin-top: 1rem;
    background: white;
}

.social-activities-modern .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.social-activities-modern .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    color: #333;
    font-weight: 700;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}



.social-activities-modern .section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.social-activities-content {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 1rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(29, 209, 161, 0.1);
}

.social-activities-text-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: center;
}

.social-activity-item-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.social-activity-item-modern:hover {
    transform: translateY(-5px);
    border-color: #1dd1a1;
    box-shadow: 0 15px 35px rgba(29, 209, 161, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.social-activity-item-modern i {
    font-size: 1.8rem;
    color: #1dd1a1;
    min-width: 40px;
    text-align: center;
}

.social-activity-item-modern span {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
}

gallery-section

/* Galeri */
.gallery-section {
    padding: 2rem 0;
    background: #f8f9fa;
}

.gallery-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid #1dd1a1;
    background: transparent;
    color: #1dd1a1;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: #1dd1a1;
    color: white;
}

.filter-btn i {
    margin-right: 0;
    font-size: 1.2rem;
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 16/10;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
    opacity: 1 !important;
    /* Zorla görünür yap */
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 209, 161, 0.9), rgba(8, 145, 178, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: white;
    font-size: 1.5rem;
    text-align: center;
    font-weight: 600;
}



/* Harita */
.map-section {
    height: 450px;
    margin-top: -1px;
}

#map-container {
    width: 100%;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
}

#map-iframe {
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

#map-iframe:hover {
    filter: grayscale(0%);
}

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.3rem 1.5rem;
    border: 2px solid #e8ecef;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafbfc;
    font-family: inherit;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1dd1a1;
    background: white;
    box-shadow: 0 4px 20px rgba(29, 209, 161, 0.15);
    transform: translateY(-2px);
}

.form-group label {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    color: #999;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 0.5rem;
}

.form-group input:focus+label,
.form-group textarea:focus+label,
.form-group input:valid+label,
.form-group textarea:valid+label {
    top: -0.5rem;
    left: 1rem;
    font-size: 0.85rem;
    color: #1dd1a1;
}



/* Yorumlar - Modern Tasarım */
.reviews-section {
    padding: 4rem 0;
    background: #ffffff;
}

.reviews-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.reviews-content {
    display: grid;
    gap: 3rem;
}

.review-stats {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.rating-overview {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid rgba(29, 209, 161, 0.1);
}

.rating-score-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.rating-score-display span {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1dd1a1 0%, #0891b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stars-display {
    display: flex;
    gap: 0.3rem;
    font-size: 1.5rem;
}

.stars-display i {
    color: #FFD700;
}

.review-form {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(29, 209, 161, 0.1);
}

.review-form h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #333;
    font-weight: 600;
}

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

.rating-selector {
    margin-bottom: 2rem;
    text-align: center;
}

.rating-selector label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #333;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.star-rating i {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s ease;
}

.star-rating i:hover,
.star-rating i.active {
    color: #FFD700;
}

#rating-text {
    color: #666;
    font-size: 0.9rem;
}

.reviews-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1dd1a1 0%, #0891b2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.reviewer-details h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.reviewer-details .review-date {
    color: #888;
    font-size: 0.85rem;
}

.show-all-reviews-container {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 1rem;
}

.show-all-reviews-btn {
    background: linear-gradient(135deg, #1dd1a1 0%, #0891b2 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(29, 209, 161, 0.3);
}

.show-all-reviews-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(29, 209, 161, 0.4);
}

.show-all-reviews-btn i {
    font-size: 0.9rem;
}

.review-loading {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.review-loading i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1dd1a1;
}

.review-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.review-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #1dd1a1, #0891b2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(29, 209, 161, 0.15);
    border-color: rgba(29, 209, 161, 0.2);
}

.review-item:hover::before {
    opacity: 1;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.reviewer-info h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.reviewer-info .review-date {
    color: #666;
    font-size: 0.85rem;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.review-rating .stars {
    display: flex;
    gap: 0.2rem;
}

.review-rating .stars i {
    color: #FFD700;
    font-size: 0.9rem;
}

.review-comment {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    padding-left: 1rem;
    border-left: 3px solid rgba(29, 209, 161, 0.3);
    margin-top: 0.5rem;
    font-style: italic;
}

/* Rating Info Section Styles */
.rating-info-section {
    margin-top: 1rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.rating-info-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(29, 209, 161, 0.05);
    border-radius: 10px;
    border-left: 4px solid #1dd1a1;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(29, 209, 161, 0.1);
    transform: translateX(5px);
}

.info-item i {
    font-size: 1.2rem;
    color: #1dd1a1;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.info-text strong {
    font-size: 0.9rem;
    color: #333;
    font-weight: 600;
}

.info-text span {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
}

/* Show More Reviews Styles */
.show-more-reviews-container {
    text-align: center;
    margin: 1rem 0;
}

.show-more-reviews-btn {
    background: rgba(29, 209, 161, 0.1) !important;
    color: #1dd1a1 !important;
    border: 2px solid #1dd1a1 !important;
    padding: 1rem 2rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
}

.show-more-reviews-btn:hover {
    background: #1dd1a1 !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(29, 209, 161, 0.3) !important;
}

.show-more-reviews-btn i {
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.hidden-reviews {
    margin-top: 1rem;
}

.hidden-reviews .review-item {
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.hidden-reviews .review-item:nth-child(1) {
    animation-delay: 0.1s;
}

.hidden-reviews .review-item:nth-child(2) {
    animation-delay: 0.2s;
}

.hidden-reviews .review-item:nth-child(3) {
    animation-delay: 0.3s;
}

.hidden-reviews .review-item:nth-child(4) {
    animation-delay: 0.4s;
}

.hidden-reviews .review-item:nth-child(5) {
    animation-delay: 0.5s;
}

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

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

/* İletişim */
.contact-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #1dd1a1 50%, transparent);
}

.contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-info-section {
    padding: 0;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.info-card-modern {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(29, 209, 161, 0.1);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.info-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1dd1a1, #0891b2);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.info-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(29, 209, 161, 0.2);
    border-color: rgba(29, 209, 161, 0.3);
}

.info-card-modern:hover::before {
    transform: scaleX(1);
}

.info-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1dd1a1 0%, #0891b2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.6rem;
    box-shadow: 0 8px 20px rgba(29, 209, 161, 0.3);
    transition: all 0.3s ease;
}

.info-card-modern:hover .info-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(29, 209, 161, 0.4);
}

.info-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.info-details p {
    color: #666;
    line-height: 1.5;
}

/* Combined Contact Card Styles */
.combined-contact-card {
    padding: 2.5rem !important;
}

.combined-contact-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e9ecef 20%, #e9ecef 80%, transparent);
    margin: 0.5rem 0;
}

.contact-item .info-icon {
    margin: 0;
    flex-shrink: 0;
}

.contact-item .info-details {
    text-align: left;
    flex: 1;
}

.contact-item .info-details h4 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.contact-item .info-details p {
    margin: 0;
    font-weight: 500;
}

.contact-form-section {
    position: relative;
}

.contact-form-modern {
    background: white;
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(29, 209, 161, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1dd1a1, #0891b2);
}

.contact-form-modern h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #333;
    text-align: center;
    font-weight: 700;
    position: relative;
}

.contact-form-modern h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1dd1a1, #0891b2);
    border-radius: 2px;
}

.contact-form-modern .btn-primary {
    width: 100%;
    margin-top: 1rem;
    padding: 1.4rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-form-modern .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-form-modern .btn-primary:hover::before {
    left: 100%;
}

.contact-form-modern .btn-primary i {
    margin-right: 0.8rem;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 1.5rem 0 2rem;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #1dd1a1;
    font-weight: 600;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-rating .stars {
    display: flex;
    gap: 0.2rem;
}

.footer-rating .stars i {
    color: #FFD700;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Scroll Top */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1dd1a1 0%, #0891b2 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(29, 209, 161, 0.3);
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(29, 209, 161, 0.4);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.modal-content-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 3rem;
    color: #f1f1f1;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 2001;
}

.modal-close:hover {
    color: #1dd1a1;
}

.modal-caption {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    font-size: 1.2rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem 2rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Bildirimler */
.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    padding: 1rem 2rem;
    border-radius: 10px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    background: linear-gradient(135deg, #1dd1a1, #0891b2);
}

.notification-error {
    background: linear-gradient(135deg, #f44336, #da190b);
}

.notification-info {
    background: linear-gradient(135deg, #48cae4, #0891b2);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification-content i {
    font-size: 1.2rem;
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .heroSwiper {
        height: 400px;
    }

    .about-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image img {
        height: 350px;
    }

    .security-grid,
    .education-content,
    .nutrition-content,
    .activities-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
        z-index: 1000;
        height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0;
        padding: 0.5rem 0;
    }

    .nav-menu .nav-link {
        color: #333;
        font-size: 1.2rem;
        padding: 0.8rem 2rem;
        display: block;
        border-radius: 10px;
        margin: 0 1rem;
        transition: all 0.3s ease;
    }

    .nav-menu .nav-link:hover {
        background: rgba(29, 209, 161, 0.1);
        color: #1dd1a1;
    }

    .nav-toggle {
        display: flex;
        padding: 10px;
        margin: 5px;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    .nav-toggle:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .nav-toggle:active {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(0.95);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-slogan {
        font-size: 1.4rem;
        padding: 0.8rem 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero {
        padding: 60px 0 1rem 0 !important;
    }

    .btn-primary,
    .btn-secondary {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }

    .rating-display {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem 1.5rem;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .facilities-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .activities-tabs {
        gap: 0.5rem;
    }

    .activity-tab {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .activities-grid {
        grid-template-columns: 1fr;
    }

    .about-content-main h3 {
        font-size: 1.8rem;
    }

    .experience-badge-large {
        min-width: 80px;
        min-height: 80px;
        padding: 1rem;
    }

    .experience-number-large {
        font-size: 2rem;
    }

    .experience-text-large {
        font-size: 0.8rem;
    }

    .hero-experience {
        margin-bottom: 1.5rem;
    }

    .experience-badge {
        padding: 0.8rem 1.2rem;
    }

    .experience-number {
        font-size: 1.5rem;
    }

    .experience-text {
        font-size: 0.8rem;
    }

    .security-grid,
    .education-content,
    .nutrition-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .security-card,
    .education-card,
    .nutrition-card {
        padding: 2rem 1.5rem;
    }

    .about-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title-bottom {
        bottom: 1rem;
        left: 1rem;
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
        max-width: 280px;
    }

    .modal-close {
        top: 1rem;
        right: 1.5rem;
        font-size: 2.5rem;
    }

    .modal-content {
        max-width: 95%;
        max-height: 70%;
    }

    .modal-caption {
        bottom: 1rem;
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .hero-content {
        gap: 2rem;
        min-height: 70vh;
    }

    .hero-title-corner {
        top: 1rem;
        right: 1rem;
        font-size: 1rem;
        padding: 0.8rem 1rem;
        max-width: 200px;
    }

    /* Tablet için container padding */
    .about-section .container,
    .security-section .container,
    .education-section .container,
    .activities-section .container,
    .nutrition-section .container,
    .facilities-section .container,
    .gallery-section .container,
    .reviews-section .container,
    .contact-section .container,
    .footer .container {
        padding: 0 30px;
    }

    /* Mobil için section padding'leri azalt */
    .about-section,
    .security-section,
    .education-section,
    .activities-section,
    .nutrition-section,
    .facilities-section,
    .gallery-section,
    .reviews-section,
    .contact-section {
        padding: 1rem 0 !important;
    }

    .section-header {
        margin-bottom: 1rem !important;
    }

    .section-header h2 {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Mobil yorumlar */
    .reviews-list {
        grid-template-columns: 1fr;
    }

    .review-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .review-item {
        padding: 1.5rem;
    }

    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Alt sayfa container'ları için padding */
    .about-section .container,
    .security-section .container,
    .education-section .container,
    .activities-section .container,
    .nutrition-section .container,
    .facilities-section .container,
    .gallery-section .container,
    .reviews-section .container,
    .contact-section .container,
    .footer .container {
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-slogan {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-card,
    .contact-form-modern,
    .review-form,
    .rating-overview {
        padding: 2rem 1.5rem;
    }

    .review-stats {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info-cards {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .info-card-modern {
        padding: 1.5rem 1rem;
    }

    .info-icon {
        width: 50px;
        height: 50px;
    }

    .info-icon i {
        font-size: 1.2rem;
    }

    .info-card-modern h4 {
        font-size: 0.9rem;
    }

    .info-card-modern p,
    .info-card-modern a {
        font-size: 0.8rem;
    }

    .contact-form-modern {
        padding: 2.5rem 2rem;
    }

    .contact-form-modern h3 {
        font-size: 1.8rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    /* Combined Contact Card Mobile */
    .combined-contact-content {
        gap: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .contact-item .info-details {
        text-align: center;
    }

    /* Rating Info Mobile */
    .rating-info-card {
        gap: 1rem;
    }

    .info-item {
        padding: 0.8rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .info-item:hover {
        transform: translateY(-2px);
    }

    .info-text {
        text-align: center;
    }

    .rating-score-large span {
        font-size: 3rem;
    }

    .scroll-top {
        width: 50px;
        height: 50px;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .heroSwiper .swiper-pagination {
        bottom: 10px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .rating-display {
        padding: 0.8rem 1rem;
    }

    .stars {
        font-size: 1.2rem;
    }

    .rating-score {
        font-size: 1.5rem;
    }

    .activities-tabs {
        flex-direction: column;
        align-items: center;
    }

    .activity-tab {
        min-width: 200px;
        text-align: center;
    }

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

    .experience-overlay {
        top: 1rem;
        right: 1rem;
    }

    .experience-badge-large {
        min-width: 70px;
        min-height: 70px;
        padding: 0.8rem;
    }

    .experience-number-large {
        font-size: 1.8rem;
    }

    .experience-text-large {
        font-size: 0.7rem;
    }

    .security-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .activity-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .security-card,
    .education-card,
    .nutrition-card {
        padding: 1.5rem 1.2rem;
    }

    .security-card h3,
    .education-card h3,
    .nutrition-card h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .security-card p,
    .education-card p,
    .nutrition-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .security-card i,
    .education-card i,
    .nutrition-card i {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .activities-grid {
        gap: 1rem;
    }

    .activity-item {
        padding: 1.5rem 1.2rem;
    }

    .activity-item h4 {
        font-size: 1.05rem;
        margin-bottom: 0.8rem;
    }

    .activity-item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .activity-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    /* Modern facilities mobile */
    .facilities-text-content {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem;
        margin: 0 -0.8rem;
        /* Daha fazla boşluk azaltma */
    }

    .facility-item-modern {
        padding: 1.4rem 0.6rem;
        font-size: 1.1rem;
        gap: 0.9rem;
        margin: 0 0.1rem;
        /* Minimal kenar boşluk */
    }

    .facility-item-modern i {
        font-size: 1.8rem;
        min-width: 38px;
    }

    .facility-item-modern span {
        font-size: 1.1rem;
        line-height: 1.3;
        font-weight: 600;
    }

    .social-activities-text-content {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem;
        margin: 0 -0.8rem;
        /* Daha fazla boşluk azaltma */
    }

    .social-activity-item-modern {
        padding: 1.4rem 0.6rem;
        font-size: 1.1rem;
        gap: 0.9rem;
        margin: 0 0.1rem;
        /* Minimal kenar boşluk */
    }

    .social-activity-item-modern i {
        font-size: 1.8rem;
        min-width: 38px;
    }

    .social-activity-item-modern span {
        font-size: 1.1rem;
        line-height: 1.3;
        font-weight: 600;
    }

    .social-activities-modern {
        padding: 2rem 0.5rem;
    }

    .facilities-section .container,
    .social-activities-modern .container {
        padding: 0 0.5rem !important;
    }

    .social-activities-modern h3 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .social-activities-modern h3 i {
        font-size: 1.2rem;
    }

    .activities-text-content p {
        font-size: 1rem;
    }

    /* Küçük ekranlar için daha az padding */
    .about-section,
    .security-section,
    .education-section,
    .activities-section,
    .nutrition-section,
    .facilities-section,
    .gallery-section,
    .reviews-section,
    .contact-section {
        padding: 1rem 0 !important;
    }

    .security-section .container,
    .education-section .container,
    .nutrition-section .container,
    .facilities-section .container,
    .activities-section .container {
        padding: 0 0.5rem !important;
    }

    .section-header {
        margin-bottom: 1.5rem !important;
    }
}

/* Orta-küçük ekranlar için */
@media (max-width: 480px) {

    .facilities-text-content,
    .social-activities-text-content {
        gap: 0.4rem;
        margin: 0 -0.6rem;
        /* Daha fazla negatif margin */
    }

    .facility-item-modern,
    .social-activity-item-modern {
        padding: 1.2rem 0.5rem;
        gap: 0.8rem;
        margin: 0 0.05rem;
    }

    .facility-item-modern i,
    .social-activity-item-modern i {
        font-size: 1.6rem;
        min-width: 32px;
    }

    .facility-item-modern span,
    .social-activity-item-modern span {
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.2;
    }

    .security-card,
    .education-card,
    .nutrition-card {
        padding: 1.2rem 1rem;
    }

    .security-card h3,
    .education-card h3,
    .nutrition-card h3 {
        font-size: 1rem;
    }

    .security-card p,
    .education-card p,
    .nutrition-card p {
        font-size: 0.85rem;
    }

    .security-card i,
    .education-card i,
    .nutrition-card i {
        font-size: 2rem;
    }

    .activities-grid {
        gap: 0.8rem;
    }

    .activity-item {
        padding: 1.2rem 1rem;
    }

    .activity-item h4 {
        font-size: 1rem;
    }

    .activity-item p {
        font-size: 0.85rem;
    }

    .activity-icon {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    /* Mobilde Galeri */
    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .gallery-item {
        max-height: 250px;
    }

    .gallery-item img {
        height: 250px;
    }
}

/* Çok küçük ekranlar */
@media (max-width: 350px) {

    .facilities-text-content,
    .social-activities-text-content,
    .security-grid,
    .education-content,
    .nutrition-content,
    .activities-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
}

.hero-text h1 {
    font-size: 1.8rem;
}

.hero-slogan {
    font-size: 1rem;
}

.heroSwiper .swiper-pagination {
    bottom: 5px;
}

.hero-content {
    gap: 1.5rem;
}

.rating-display {
    padding: 0.6rem 0.8rem;
}

.rating-score-display span {
    font-size: 2.5rem;
}

.review-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

/* Loading states */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn:disabled:hover {
    transform: none;
}

/* Accessibility */
.btn:focus,
.nav-link:focus,
.filter-btn:focus,
.activity-tab:focus {
    outline: 2px solid #1dd1a1;
    outline-offset: 2px;
}

/* Print styles */
@media print {

    .navbar,
    .hero-scroll,
    .scroll-top,
    .modal {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .section-header h2 {
        color: #000 !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        border: 2px solid #000;
    }

    .btn-secondary {
        background: #fff;
        color: #000;
        border: 2px solid #000;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .scroll-indicator {
        animation: none;
    }
}

/* Animasyonlar */
.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

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

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

/* Görsel yükleme hataları için stil */
.heroSwiper .swiper-slide img[src*="data:image/svg+xml"] {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-align: center;
}

/* Google Drive görsel yükleme durumu */
.heroSwiper .swiper-slide img[src*="drive.google.com"] {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

/* Yurt İsmi - Sol Alt Köşe */
.hero-title-bottom {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    font-size: 0.7 rem;
    font-weight: 600;
    color: white;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    z-index: 5;
    max-width: 350px;
    line-height: 1.3;
}

/* =====================================================
   KAYIT FORMU BÖLÜMÜ
   ===================================================== */

.registration-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.registration-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.registration-info {
    background: linear-gradient(135deg, #1dd1a1 0%, #0891b2 100%);
    padding: 2.5rem;
    border-radius: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.registration-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.registration-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.registration-benefits li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.registration-benefits li:last-child {
    border-bottom: none;
}

.registration-benefits i {
    color: #fff;
    font-size: 1.1rem;
}

.registration-note {
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.registration-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.registration-form h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.registration-form h3 i {
    color: #1dd1a1;
}

.registration-form .form-group {
    margin-bottom: 1.2rem;
    position: relative;
}

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

/* Registration form - floating label'ı ezme */
.registration-form .form-group label,
.registration-form label {
    display: block !important;
    position: static !important;
    top: auto !important;
    left: auto !important;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    pointer-events: auto !important;
    padding: 0 !important;
    background: transparent !important;
}

.registration-form label i {
    color: #0891b2;
    margin-right: 0.5rem;
}

.registration-form input,
.registration-form select,
.registration-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #333;
    position: relative;
    z-index: 0;
}

.registration-form input::placeholder,
.registration-form textarea::placeholder {
    color: #aaa;
    opacity: 1;
}

.registration-form input:focus,
.registration-form select:focus,
.registration-form textarea:focus {
    outline: none;
    border-color: #1dd1a1;
    box-shadow: 0 0 0 3px rgba(29, 209, 161, 0.1);
}

.btn-register {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #1dd1a1 0%, #0891b2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(29, 209, 161, 0.3);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .registration-wrapper {
        grid-template-columns: 1fr;
    }

    .registration-form .form-row {
        grid-template-columns: 1fr;
    }

    .registration-info,
    .registration-form-container {
        padding: 1.5rem;
    }
}

/* =====================================================
   HERO KAYIT OL BUTONU - ALT ORTA
   ===================================================== */

.hero-cta-bottom {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    text-align: center;
}

.hero-register-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #1dd1a1 0%, #0891b2 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(29, 209, 161, 0.5);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulseBtn 2s ease-in-out infinite;
}

.hero-register-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(29, 209, 161, 0.7);
    background: linear-gradient(135deg, #0891b2 0%, #1dd1a1 100%);
}

.hero-register-btn i {
    font-size: 1.3rem;
}

@keyframes pulseBtn {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(29, 209, 161, 0.5);
    }

    50% {
        box-shadow: 0 8px 40px rgba(29, 209, 161, 0.8);
    }
}

@media (max-width: 768px) {
    .hero-cta-bottom {
        bottom: 5rem;
    }

    .hero-register-btn {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }
}

/* Mobil Görsel & Layout İyileştirmeleri - REFERANS TASARIM */
@media (max-width: 768px) {

    /* Header Yurt İsmi - Mobilde 2 Satır */
    #nav-dormitory-name {
        font-size: 1rem !important;
        line-height: 1.25 !important;
        max-width: 220px;
        white-space: normal !important;
        text-align: center;
        word-wrap: break-word;
        font-weight: 700 !important;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        letter-spacing: 0.3px;
    }

    /* Hero Alanı: OPTIMIZE EDİLMİŞ */
    .hero {
        height: auto !important;
        display: flex !important;
        padding: 0 !important;
        position: relative;
        background: transparent !important;
        overflow: visible;
    }

    /* Slider: OPTIMIZE EDİLMİŞ */
    .heroSwiper {
        height: 70vh !important;
        /* Siyah alan olmasın */
        max-height: 600px !important;
        width: 100% !important;
        position: relative !important;
        top: 0;
        left: 0;
        z-index: 1;
    }

    .swiper-slide {
        height: 100% !important;
        width: 100% !important;
    }

    /* G\u00f6rsel: EKRANI KAPLA */
    .heroSwiper .swiper-slide img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center center !important;
    }

    /* Koyu Overlay */
    .hero-background {
        display: block !important;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%) !important;
        z-index: 2;
    }

    /* İçerik: Görsel Üzerinde - MOBİLDE GİZLE */
    .hero-content {
        display: none !important;
    }

    .hero-text {
        display: none;
    }

    .hero-text h1 {
        display: none;
    }

    .hero-slogan {
        font-size: 1rem !important;
        padding: 0.6rem 1.2rem !important;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        display: none !important;
        /* Desktop butonları gizle */
    }

    /* HEMEN KAYIT OL Butonu - MOBİLDE GİZLE */
    .hero-cta-bottom {
        display: none !important;
    }

    .hero-register-btn {
        display: inline-flex !important;
        align-items: center;
        gap: 0.5rem;
        padding: 0.8rem 1.5rem !important;
        font-size: 0.9rem !important;
        font-weight: 600;
        background: linear-gradient(135deg, #1dd1a1 0%, #0891b2 100%) !important;
        color: white !important;
        border-radius: 50px;
        box-shadow: 0 4px 20px rgba(29, 209, 161, 0.5);
        text-decoration: none;
        pointer-events: auto;
    }
}

/* =====================================================
   MOBILE BOTTOM NAVIGATION - MODERN TASARIM
   ===================================================== */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    justify-content: space-around;
    align-items: flex-end;
    padding: 0 5px 8px 5px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #94a3b8;
    font-size: 0.65rem;
    transition: all 0.3s ease;
    flex: 1;
    padding-top: 8px;
}

.mobile-bottom-nav .nav-item i {
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.mobile-bottom-nav .nav-item.active,
.mobile-bottom-nav .nav-item:hover {
    color: #1dd1a1;
}

/* Orta Buton (Kayıt Ol) - YUKARI TAŞAN */
.mobile-bottom-nav .nav-item-main {
    position: relative;
    top: -20px;
    color: white;
    flex: 1.2;
}

.mobile-bottom-nav .nav-item-main-inner {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(239, 68, 68, 0.5);
    border: 4px solid #0f172a;
    margin-bottom: 3px;
}

.mobile-bottom-nav .nav-item-main i {
    font-size: 1.3rem;
    margin: 0;
    color: white;
}

.mobile-bottom-nav .nav-item-main span {
    color: white;
    font-weight: 600;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }

    body {
        padding-bottom: 70px;
    }

    .scroll-top {
        bottom: 80px !important;
    }
}

/* =====================================================
   STATS BANNER - İSTATİSTİK KUTULARI (MODERN)
   ===================================================== */
.stats-banner {
    background: #ffffff;
    padding: 3rem 2rem;
    margin: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    flex: 1;
    min-width: 180px;
    max-width: 250px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #1dd1a1, #0891b2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-color: rgba(29, 209, 161, 0.3);
    box-shadow: 0 15px 40px rgba(29, 209, 161, 0.15);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1dd1a1 0%, #0891b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.4;
}

/* Mobil için stats düzenlemesi - MODERN */
@media (max-width: 768px) {
    .stats-banner {
        padding: 1.5rem 1rem;
        background: #ffffff;
        position: relative;
        z-index: 100;
        margin-top: 0;
    }

    .stats-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        padding: 0;
    }

    .stat-item {
        padding: 1.25rem 1rem;
        min-width: unset;
        max-width: unset;
        border-radius: 12px;
    }

    .stat-number {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .stat-label {
        font-size: 0.6rem;
        color: #555;
        letter-spacing: 1px;
        line-height: 1.3;
    }
}

/* =====================================================
   HARİTA BÖLÜMÜ
   ===================================================== */

.map-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 0;
}

.map-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    min-height: 400px;
}

.map-info-card {
    background: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-info-card h3 {
    color: #dc3545;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.map-info-card h3 i {
    margin-right: 0.5rem;
}

.map-info-card p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
    width: fit-content;
}

.btn-directions:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.5);
}

.map-embed {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* =====================================================
   FLOATİNG BUTONLAR (Masaüstü ve Mobil)
   ===================================================== */

.mobile-floating-buttons {
    display: block;
    position: fixed;
    bottom: 20px;
    z-index: 1000;
    width: 100%;
    pointer-events: none;
}

.floating-btn {
    position: fixed;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    pointer-events: auto;
}

.floating-location {
    background: linear-gradient(135deg, #4285f4, #1a73e8);
    left: 20px;
    bottom: 20px;
}

.floating-phone {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    right: 20px;
    bottom: 20px;
}

.floating-btn:hover {
    transform: scale(1.1);
}

/* Mobil için floating buton konumlarını ayarla */
@media (max-width: 768px) {
    .floating-phone {
        bottom: 85px;
    }

    .floating-location {
        bottom: 85px;
    }

    .map-container {
        grid-template-columns: 1fr;
    }

    .map-info-card {
        padding: 1.5rem;
        text-align: center;
    }

    .map-info-card h3 {
        font-size: 1.25rem;
    }

    .btn-directions {
        margin: 0 auto;
    }

    .map-embed {
        min-height: 300px;
    }
}