:root {
    --primary-color: #ff6b35;
    --secondary-color: #004e89;
    --accent-color: #f77f00;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --overlay-gradient: linear-gradient(135deg, rgba(255, 107, 53, 0.9) 0%, rgba(247, 127, 0, 0.85) 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    height: auto;
}

 body.home-page {
     min-height: 100vh;
     display: flex;
     flex-direction: column;
     position: relative;
 }

 main {
     flex: 1;
 }

 body:not(.home-page) main {
     padding-top: 10px;
 }

 footer {
     margin-top: auto;
 }

 body.home-page header {
     position: sticky !important;
     top: 0;
 }

 body.home-page main {
     padding-top: 0;
     display: flex;
     flex-direction: column;
 }

 body.home-page footer {
     position: static;
 }

 .page-hero {
     background: linear-gradient(135deg, rgba(255, 107, 53, 0.14) 0%, rgba(0, 78, 137, 0.10) 100%);
     border-bottom: 1px solid rgba(0, 0, 0, 0.06);
 }

 .page-hero-inner {
     max-width: 1200px;
     margin: 0 auto;
     padding: 40px 20px 28px;
 }

 .page-breadcrumb {
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 14px;
     color: rgba(26, 26, 26, 0.7);
     margin-bottom: 14px;
     flex-wrap: wrap;
 }

 .page-breadcrumb a {
     color: rgba(26, 26, 26, 0.75);
     text-decoration: none;
     border-bottom: 1px solid rgba(0, 0, 0, 0.12);
 }

 .page-breadcrumb a:hover {
     color: var(--primary-color);
     border-bottom-color: rgba(255, 107, 53, 0.45);
 }

 .page-title {
     font-size: 44px;
     font-weight: 700;
     letter-spacing: -0.5px;
     color: #111;
     line-height: 1.15;
 }

 .page-shell {
     max-width: 1200px;
     margin: 0 auto;
     padding: 26px 20px 70px;
 }

 .page-card {
     background: rgba(255, 255, 255, 0.92);
     border-radius: 16px;
 }

 .page-content {
     font-size: 16px;
     line-height: 1.85;
     color: #222;
 }

 .blog-detail-container {
     max-width: 900px;
     margin: 0 auto;
     padding: 50px 20px 60px;
 }

 .page-content p {
     margin-bottom: 20px;
 }

 .page-content img {
     max-width: 100%;
     height: auto;
     border-radius: 10px;
     margin: 30px 0;
 }

 .page-content ul,
 .page-content ol {
     margin: 20px 0;
     padding-left: 30px;
 }

 .page-content li {
     margin-bottom: 10px;
 }

 .page-content a {
     color: var(--primary-color);
     text-decoration: none;
     border-bottom: 1px solid var(--primary-color);
 }

 .page-content a:hover {
     opacity: 0.8;
 }

 .page-content h1,
 .page-content h2,
 .page-content h3,
 .page-content h4,
 .page-content h5,
 .page-content h6 {
     margin-top: 34px;
     margin-bottom: 14px;
     font-weight: 700;
     color: #111;
     line-height: 1.25;
 }

 .page-content blockquote {
     margin: 24px 0;
     padding: 16px 18px;
     border-left: 4px solid var(--primary-color);
     background: rgba(255, 107, 53, 0.06);
     border-radius: 10px;
 }

 .page-content table {
     width: 100%;
     border-collapse: collapse;
     margin: 18px 0 26px;
     overflow: hidden;
     border-radius: 12px;
     border: 1px solid rgba(0, 0, 0, 0.06);
 }

 .page-content th,
 .page-content td {
     padding: 12px 14px;
     border-bottom: 1px solid rgba(0, 0, 0, 0.06);
     text-align: left;
 }

 .page-content th {
     background: rgba(0, 0, 0, 0.03);
     font-weight: 600;
 }

 @media (max-width: 768px) {
     .page-hero-inner {
         padding: 28px 16px 20px;
     }

     .page-shell {
         padding: 18px 16px 50px;
     }

     .page-card {
         border-radius: 14px;
     }

     .page-title {
         font-size: 30px;
     }

     .page-content {
         font-size: 16px;
         line-height: 1.75;
     }
 }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER - Gelişmiş ve Admin Panel Entegreli
   ============================================ */

/* Header Ana Container */
header {
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    /* Position, background ve renkler admin panelden inline style olarak gelecek */
}

/* Scroll Durumu */
header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

header.scrolled .header-container {
    padding: 8px 20px;
}

header.scrolled .logo-img {
    max-height: 40px;
}

/* Header İçerik Container */
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

/* Logo Bölümü */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

/* Logo Resmi */
.logo-img {
    display: block;
    object-fit: contain;
    max-height: 50px;
    max-width: 180px;
    height: auto;
    width: auto;
    /* Boyutlar admin panelden inline style olarak gelecek */
}

/* Logo Text Wrapper */
.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Logo Başlık */
.logo-text {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* Logo Slogan */
.logo-tagline {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.7;
    line-height: 1.2;
}

/* Navigasyon */
nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
    margin: 0;
    padding: 0;
}

/* Arama Butonu */
.search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.search-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* Breadcrumb Navigasyon */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
    margin-bottom: 20px;
    font-size: 14px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

.breadcrumb .separator {
    color: #999;
    font-weight: 300;
}

.breadcrumb .current {
    color: #666;
    font-weight: 500;
    max-width: 400px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

nav ul li {
    position: relative;
}

nav ul li a {
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
    /* Renk PHP'den inline style olarak gelecek */
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

nav ul li:hover > a i {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: var(--shadow-md);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    margin-top: 10px;
}

nav ul li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown li:last-child {
    border-bottom: none;
}

.dropdown li a {
    padding: 12px 20px;
    display: block;
}

.dropdown li a:hover {
    background: #f8f8f8;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
    padding-bottom: 60px;
    overflow: hidden;
}

.hero-section:has(.hero-slider-mode) {
    padding: 0;
    align-items: stretch;
    display: block;
    height: 100vh;
}

 body.home-page .hero-section {
     padding-top: 0;
     padding-bottom: 0;
     min-height: auto;
 }

 body.home-page .hero-section:has(.hero-slider-mode) {
     padding: 0;
     height: auto;
 }

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-gradient);
    z-index: 2;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
}

.hero-content.hero-slider-mode {
    display: block;
    max-width: 100%;
    padding: 0;
    margin: 0;
    max-height: none;
    overflow: visible;
}

.hero-left {
    color: var(--text-light);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-badge-icon {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 14px;
}

.hero-badge-text {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 20px;
    opacity: 0.95;
}

.features-list {
    list-style: none;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-left: 3px solid rgba(255, 255, 255, 0.3);
    padding-left: 15px;
    margin-bottom: 10px;
    transition: var(--transition);
}

.feature-item:hover {
    border-left-color: white;
    transform: translateX(10px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 15px;
    margin-bottom: 3px;
}

.feature-content p {
    font-size: 12px;
    opacity: 0.9;
}

/* Hero Hızlı Erişim Butonları */
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.hero-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.hero-btn:hover i {
    transform: translateX(5px);
}

/* Primary Buton */
.hero-btn-primary {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.hero-btn-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Secondary Buton */
.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Outline Buton */
.hero-btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.hero-btn-outline:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 15px;
    }
}

/* Floating Action Button (FAB) Sistemi */
.hero-fab-container {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    z-index: 100;
}

.hero-fab-container.hero-fab-left {
    right: auto;
    left: 30px;
}

.hero-fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-fab:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.6);
}

.hero-fab.active {
    transform: rotate(135deg);
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
}

.hero-fab i {
    transition: transform 0.3s ease;
}

.hero-fab-buttons {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hero-fab-buttons.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hero-fab-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: scale(0);
    animation: fabButtonPop 0.3s ease forwards;
}

.hero-fab-btn:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-fab-btn:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-fab-btn:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fabButtonPop {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* FAB Buton Stilleri */
.hero-fab-btn-primary {
    background: white;
    color: var(--primary-color);
}

.hero-fab-btn-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.15);
}

.hero-fab-btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
}

.hero-fab-btn-secondary:hover {
    background: white;
    color: var(--accent-color);
    transform: scale(1.15);
}

.hero-fab-btn-outline {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.hero-fab-btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.15);
}

/* Tooltip */
.hero-fab-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 60px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.hero-fab-btn::after {
    content: '';
    position: absolute;
    right: 50px;
    border: 6px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* Sol pozisyon için tooltip */
.hero-fab-left .hero-fab-btn::before {
    right: auto;
    left: 60px;
}

.hero-fab-left .hero-fab-btn::after {
    right: auto;
    left: 50px;
    border-left-color: transparent;
    border-right-color: rgba(0, 0, 0, 0.8);
}

.hero-fab-btn:hover::before,
.hero-fab-btn:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .hero-fab-container {
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
    }
    
    .hero-fab-container.hero-fab-left {
        right: auto;
        left: 20px;
    }
    
    .hero-fab {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .hero-fab-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .hero-fab-btn::before {
        font-size: 12px;
        padding: 6px 10px;
    }
}

.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg);
}

.map-title {
    color: white;
    text-align: center;
    margin-bottom: 15px;
}

.map-title h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.map-title p {
    font-size: 15px;
    opacity: 0.9;
}

.map-image {
    max-width: 100%;
    height: auto;
    filter: brightness(1.1) contrast(1.1);
}

/* Header Logo Wrapper */
.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}

.logo-tagline {
    font-size: 12px;
    opacity: 0.8;
    font-weight: 400;
}

footer {
    background: #1a1a1a;
    color: #fff;
    padding: 12px 0;
    position: relative;
    z-index: 5;
}

footer .copyright {
    margin-top: 5px;
    font-size: 13px;
    opacity: 0.8;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color, #ff6b35);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-left p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin: 0;
    line-height: 1.4;
}

.footer-left a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-left a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer-right {
    display: flex;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 12px;
    margin: 0;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    font-size: 14px;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

@media (max-width: 968px) {
    .hero-section {
        height: 100vh;
        overflow: hidden;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        overflow-y: auto;
        max-height: calc(100vh - 160px);
        padding-bottom: 20px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 10px;
        padding: 0 20px;
        text-align: center;
    }
    
    .footer-left p {
        font-size: 11px;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow-md);
        padding: 20px;
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        width: 100%;
    }
    
    nav ul li a {
        padding: 12px 0;
    }
    
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0;
        padding-left: 20px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* Mobilde arama butonunu gizle */
    .search-btn {
        display: none;
    }
    
    /* Slider responsive görseller - mobilde mobil görseli göster */
    .slide-image-desktop {
        display: none !important;
    }
    
    .slide-image-mobile {
        display: block !important;
    }
    
    /* Mobil görsel yoksa desktop görseli göster */
    .slide:not(:has(.slide-image-mobile)) .slide-image-desktop {
        display: block !important;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 100vh;
        overflow: hidden;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-content {
        padding: 0 20px;
        overflow-y: auto;
        max-height: calc(100vh - 140px);
    }
    
    .map-container {
        padding: 15px;
    }
    
    .footer-content {
        padding: 0 15px;
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-left p {
        font-size: 10px;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading.hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
