/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo a {
    color: #dc2626;
    font-weight: 700;
    font-size: 1.8rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-logo h2 {
    color: #dc2626;
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0;
}

.nav-logo a:hover {
    color: #b91c1c;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #dc2626;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #dc2626;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Nav Search */
.nav-search {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 1rem;
}
.nav-search-input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    padding: 6px 12px;
    border-radius: 18px;
    width: 160px;
}
.nav-search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Drop Zone */
.drop-zone {
    border: 2px dashed #dc2626;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    background: rgba(220, 38, 38, 0.06);
    color: #333;
}
.drop-zone.dragover {
    background: rgba(220, 38, 38, 0.12);
}

/* Admin Page Polishing */
.admin-page .section-header h2 {
    letter-spacing: 0.5px;
}
.admin-page .section-header p {
    opacity: 0.9;
}
.admin-page .services-grid {
    gap: 1.5rem;
}
.admin-page .service-card {
    border: 1px solid rgba(255,255,255,0.06);
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-radius: 16px;
}
.admin-page .service-icon {
    background: linear-gradient(135deg, rgba(220,38,38,0.15), rgba(220,38,38,0.05));
    border-radius: 12px;
    padding: 10px;
}
.admin-page form label {
    font-weight: 600;
    color: #222;
}
.admin-page form input,
.admin-page form select,
.admin-page form textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.12);
    background: #fafafa;
    color: #222;
}
.admin-page form textarea {
    resize: vertical;
}
.admin-page .city-btn.btn-primary {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #fff;
    border: none;
}
.admin-page .city-btn.btn-primary:hover {
    filter: brightness(1.1);
}
.drop-previews {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    margin-top: 10px;
}
.preview-item {
    position: relative;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}
.preview-item img,
.preview-item video {
    display: block;
    width: 100%;
    height: 90px;
    object-fit: cover;
}
.preview-remove {
    position: absolute;
    top: 6px;
    right: 6px;
    background: rgba(220,38,38,0.9);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 4px 6px;
    font-size: 12px;
    cursor: pointer;
}

/* Admin Media List */
.admin-list-filters .filter-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}
.admin-list-filters select,
.admin-list-filters input {
    flex: 1 1 160px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.12);
    background: #fafafa;
    color: #222;
}
.admin-media-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 12px;
}
.admin-media-list .empty {
    opacity: 0.75;
    padding: 10px;
}
.admin-media-item {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.admin-media-item .thumb {
    height: 120px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.admin-media-item .thumb img,
.admin-media-item .thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.admin-media-item .video-icon i {
    font-size: 24px;
}
.admin-media-item .meta {
    padding: 10px 12px;
    font-size: 0.95rem;
}
.admin-media-item .meta .muted {
    opacity: 0.8;
    font-size: 0.88rem;
    margin-top: 4px;
}
.admin-media-item .actions {
    display: flex;
    gap: 8px;
    padding: 10px 12px;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.btn-danger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 12px;
    cursor: pointer;
}
.btn-danger:hover { filter: brightness(1.05); }
.btn-outline-danger {
    background: transparent;
    color: #dc2626;
    border: 1px solid #dc2626;
    border-radius: 8px;
    padding: 6px 10px;
    cursor: pointer;
}
.btn-outline-danger:hover {
    background: #dc2626;
    color: #fff;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Görsel/video letterbox alanları için nötr arka plan */
    background-color: #000;
}

.slide-image img {
    width: 100%;
    height: 100%;
    /* Kaliteyi korumak için tam görünüm, yanlarda letterbox */
    object-fit: contain;
    object-position: center;
}

.slide-image video.hero-video {
    width: 100%;
    height: 100%;
    /* Kırpmayı önlemek için tüm videoyu görünür tut */
    object-fit: contain !important;
    object-position: center !important;
    position: relative;
    z-index: 1;
}

/* Arka planda aynı videonun blur edilmiş kopyası (fallback) */
.slide-image video.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(36px) saturate(0.95) brightness(0.75);
    transform: scale(1.12);
    z-index: 0;
}

/* Hero görsel/video için bulanık arka plan (yan boşlukları doldurur) */
.slide-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Aynı görseli arka plana alıp bulanıklaştırıyoruz */
    background-image: var(--slide-bg);
    background-size: cover;
    background-position: center;
    /* YouTube tarzı daha belirgin blur ve hafif koyulaştırma */
    filter: blur(36px) saturate(0.95) brightness(0.75);
    /* Blur kenarlarını gizlemek için hafif büyütme */
    transform: scale(1.12);
    opacity: 0.9;
    pointer-events: none;
}

/* Blur üzerine kenarlarda vinyet ve tint efekti */
.slide-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Kenarlarda renkli gölge (isteğe göre ayarlanabilir) */
    /* Varsayılan tint: hafif koyu; değişken ile mor/başka renge çekilebilir */
    --blur-tint: rgba(0, 0, 0, 0.35);
    background:
        linear-gradient(to right,
            var(--blur-tint) 0%,
            rgba(0,0,0,0) 12%,
            rgba(0,0,0,0) 88%,
            var(--blur-tint) 100%
        ),
        radial-gradient(ellipse at center,
            rgba(0,0,0,0.0) 40%,
            rgba(0,0,0,0.35) 100%
        );
}

.slide-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 3;
}

.hero-nav button {
    background: rgba(220, 38, 38, 0.8);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.hero-nav button:hover {
    background: #dc2626;
    transform: scale(1.1);
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #dc2626;
    transform: scale(1.2);
}

/* Ultra‑wide screens: show full video (no crop) to preserve content */
@media screen and (min-aspect-ratio: 21/9) {
    .slide-image video.hero-video {
        /* Avoid cropping on very wide viewports */
        object-fit: contain;
    }
    .slide-image {
        /* Provide neutral background for letterboxing */
        background-color: #000;
    }
}

/* Mobilde dikeyde stretch (cover), yan kesikler sorun değil */
@media (max-width: 768px) {
    .slide-image img,
    .slide-image video.hero-video {
        object-fit: cover !important;
        object-position: center !important;
    }
    /* Mobilde arka plan blur video’yu gizle (ağ ve CPU tasarrufu) */
    .slide-image video.hero-video-bg { display: none; }
    /* Mobilde blur maliyetini azaltmak için yoğunluğu düşür */
    .slide-image::before {
        filter: blur(20px) saturate(0.9) brightness(0.75);
        transform: scale(1.05);
        opacity: 0.85;
    }
    /* Mobilde yan tint/vinyet opsiyonel: istersen kapatabilirsin */
    .slide-image::after {
        background:
            linear-gradient(to right,
                var(--blur-tint) 0%,
                rgba(0,0,0,0) 10%,
                rgba(0,0,0,0) 90%,
                var(--blur-tint) 100%
            );
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #dc2626;
}

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

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.9));
    border: 2px solid rgba(220, 38, 38, 0.1);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 
                0 5px 15px rgba(220, 38, 38, 0.1);
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.about-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.03) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

.about-content > * {
    position: relative;
    z-index: 1;
}

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

.about-text {
    text-align: center;
    width: 100%;
}

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

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

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

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

.feature p {
    font-size: 0.9rem;
    color: #666;
}



/* Şehir Butonları */
.city-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.city-btn {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border: none;
    border-radius: 15px;
    padding: 2rem 3rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
    min-width: 200px;
}

.city-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.4);
    background: linear-gradient(135deg, #b91c1c, #dc2626);
}

.city-btn i,
.city-btn-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.city-btn-icon {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #9ca3af;
    margin: 0 auto 0.5rem auto;
}

.city-btn span {
    font-size: 1.2rem;
    font-weight: bold;
    display: block;
    margin-bottom: 0.3rem;
}

.city-btn small {
    font-size: 0.9rem;
    opacity: 0.9;
    display: block;
}

@media (max-width: 768px) {
    .city-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .city-btn {
        min-width: 250px;
        padding: 1.5rem 2rem;
    }
}

/* Şehir Hero Icon */
.city-hero-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-right: 15px;
    vertical-align: middle;
    object-fit: cover;
}
.services {
    padding: 100px 0;
    background: white;
}

.services-grid {
    display: grid;
    /* Otomatik sığan kolonlar: öğe sayısına göre boş sütun bırakmaz */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

/* Services Carousel Styles */
.services-carousel {
    position: relative;
    display: none; /* Hidden by default, shown on mobile/tablet */
    max-width: 100%;
    margin: 0 auto;
    padding: 0 35px; /* Space for navigation buttons */
    overflow: hidden; /* viewport: clip moving track inside */
}

.carousel-container {
    display: flex;
    /* overflow hidden moved to parent to avoid shifting viewport itself */
    scroll-behavior: smooth;
    border-radius: 15px;
    width: 100%;
    max-width: 100%;
    transition: transform 0.3s ease;
    will-change: transform;
    /* Swipe: allow vertical panning, we handle horizontal ourselves */
    touch-action: pan-y;
}

.services-carousel .service-card {
    flex: 0 0 100%;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(220, 38, 38, 0.9);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background: #dc2626;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 12px;
}

.carousel-next {
    right: 12px;
}

/* Ensure buttons are above track */
.services-carousel .carousel-btn {
    z-index: 20;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #dc2626;
    transform: scale(1.2);
}

.service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #dc2626;
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 50%;
    border: 2px solid #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

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

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

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: #f8f9fa;
}

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

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

.tab-btn.active,
.tab-btn:hover {
    background: #dc2626;
    color: white;
}

.tab-btn.active {
    transform: scale(1.05);
}

.tab-btn:focus-visible {
    outline: 3px solid #dc2626;
    outline-offset: 3px;
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(220, 38, 38, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay i {
    font-size: 2rem;
    color: white;
}

/* Gallery Mobile Carousels */
.gallery-carousels {
    display: none; /* hidden on desktop */
}

/* Instagram Feed Strip */
.instagram-feed {
    position: relative;
    margin-top: 1.5rem;
    margin-bottom: 1rem; /* increase space below strip a bit */
    border-radius: 14px;
    /* allow inner strip to create its own scroll area */
    overflow: visible;
    background: #111;
    /* ensure CTA is perfectly centered relative to strip */
    display: flex;
    flex-direction: column;
    align-items: center;
}
.instagram-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(120px, 1fr);
    gap: 0;
    align-items: center;
    width: 100%;
    /* horizontal swipe-scrolling on mobile */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    scroll-snap-type: x proximity;
}
.instagram-strip img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    filter: brightness(0.92) saturate(1.05) blur(2px);
    scroll-snap-align: start;
}
.instagram-cta {
    position: absolute; /* overlay centered on the strip */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    background: #fff;
    color: #111;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    pointer-events: auto;
    z-index: 3;
}
.instagram-cta i {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
@media (max-width: 768px) {
    .instagram-strip img { height: 140px; }
    .instagram-strip { scrollbar-width: none; }
    .instagram-strip::-webkit-scrollbar { display: none; }
}

.gallery-carousel {
    position: relative;
    max-width: 100%;
    margin: 0 auto 2rem;
    padding: 0 35px; /* space for buttons */
    overflow: hidden; /* viewport clips moving track inside */
}
/* Photos carousel: remove side padding to match Instagram strip width */
.gallery-carousel.photos { 
    padding: 0; 
    border: 2px solid rgba(0,0,0,0.28);
    border-radius: 14px;
    background: #fff;
}

/* Videos carousel: match photo carousel visual style */
.gallery-carousel.videos {
    padding: 0;
    border: 2px solid rgba(0,0,0,0.28);
    border-radius: 14px;
    background: #fff;
}

.gallery-track {
    display: flex;
    border-radius: 15px;
    width: 100%;
    transition: transform 0.3s ease, height 0.3s ease;
    will-change: transform;
    align-items: center; /* vertically center media */
    min-height: 170px;   /* match Instagram image height */
    padding-bottom: 10px; /* breathing room for shadows/dots */
    gap: 12px; /* separator between slides */
    /* Swipe: allow vertical panning */
    touch-action: pan-y;
}
/* Stray children guard: only gallery items are allowed inside track */
.gallery-carousel .gallery-track > :not(.gallery-item) { display: none !important; }
/* Ensure only valid items render inside track and avoid layout clashes */
.gallery-carousel .gallery-track > * { box-sizing: border-box; }
.gallery-carousel.photos .gallery-track > :not(.gallery-item.photo) { display: none !important; }
.gallery-carousel.videos .gallery-track > :not(.gallery-item.video) { display: none !important; }

/* Photos carousel: match Instagram strip behavior and layout */
.gallery-carousel.photos .gallery-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(120px, 1fr);
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    scroll-snap-type: x proximity;
}
.gallery-carousel.photos .gallery-item { scroll-snap-align: start; }
.gallery-carousel.photos .carousel-dots { display: none; }

/* Videos carousel: adopt strip/grid behavior same as photos */
.gallery-carousel.videos .gallery-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(120px, 1fr);
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    scroll-snap-type: x proximity;
}
.gallery-carousel.videos .gallery-item { scroll-snap-align: start; }
.gallery-carousel.videos .carousel-dots { display: none; }

.gallery-carousel .gallery-item {
    flex: 0 0 100%;
    width: 100%;
    margin: 0;
}
/* Grid tabanlı (photos/videos) karosellerde flex temelini etkisizleştir */
.gallery-carousel.photos .gallery-item,
.gallery-carousel.videos .gallery-item { flex: initial; }

/* Carousel slide media height aligns with grid */
.gallery-carousel .gallery-item img,
.gallery-carousel .gallery-item video {
    height: 170px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

/* Media frames: show a solid black border around items in photo/video carousels */
.gallery-carousel.photos .gallery-item,
.gallery-carousel.videos .gallery-item {
    border: 2px solid #000;
    border-radius: 14px;
    box-shadow: none;
    background: #fff;
}

.gallery-carousel .gallery-item:hover,
.gallery-carousel .gallery-item:hover img,
.gallery-carousels .gallery-item:hover,
.gallery-carousels .gallery-item:hover img {
    transform: none;
}

.gallery-carousel .gallery-prev { left: 12px; }
.gallery-carousel .gallery-next { right: 12px; }
.gallery-carousel .carousel-btn { z-index: 20; }

/* Hide nav buttons in gallery mobile carousels */
.gallery-carousels .gallery-prev,
.gallery-carousels .gallery-next,
.gallery-carousels .carousel-btn {
    display: none !important;
}

@media (max-width: 1023px) {
    .gallery-grid { display: none; }
    .gallery-carousels { display: block; }
}

/* Features Mobile/Tablet Carousel */
.features-carousel { display: none; }
@media (max-width: 1023px) {
    .about-features { display: none; }
    .features-carousel { display: block; }
    .features-carousel .gallery-prev { left: 12px; }
    .features-carousel .gallery-next { right: 12px; }
    .features-carousel .carousel-btn { z-index: 20; }
    .features-carousel .gallery-track {
        align-items: center; /* vertically center varying-height cards */
        padding-bottom: 10px; /* room for shadows and dots */
    }
    /* Prevent gallery-item base styles from affecting feature slides */
    .features-carousel .gallery-item {
        background: transparent;
        box-shadow: none;
        overflow: visible;
        cursor: default;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .features-carousel .gallery-item:hover { transform: none; }
    /* Ensure inner feature card sizes naturally inside slide */
    .features-carousel .feature {
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 140, 66, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.contact-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9));
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 15px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Explicit grid placement to prevent layout breaking on ultra-wide screens */
.contact-item .contact-icon {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.contact-item .contact-title {
    grid-column: 2;
    grid-row: 1;
}

.contact-item .contact-details {
    grid-column: 2;
    grid-row: 2;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
    grid-row: 2;
    grid-column: 1;
    align-self: center;
}

/* Telefon ikonu - Mavi */
.contact-item:nth-child(1) .contact-icon {
    background: linear-gradient(135deg, #007bff, #0056b3);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.contact-item:nth-child(1):hover .contact-icon {
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

/* WhatsApp ikonu - Yeşil */
.contact-item:nth-child(2) .contact-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.contact-item:nth-child(2):hover .contact-icon {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Instagram ikonu - Mor/Pembe gradient */
.contact-item:nth-child(3) .contact-icon {
    background: linear-gradient(135deg, #e4405f, #833ab4, #fd1d1d, #fcb045);
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.contact-item:nth-child(3):hover .contact-icon {
    box-shadow: 0 6px 20px rgba(228, 64, 95, 0.4);
}

/* Konum ikonu - Kırmızı */
.contact-item:nth-child(4) .contact-icon {
    background: linear-gradient(135deg, #dc3545, #c82333);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.contact-item:nth-child(4):hover .contact-icon {
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover .contact-icon::before {
    opacity: 0.7;
}

.contact-item:hover .contact-icon {
    transform: scale(1.05);
}

/* Telefon ikonu - Mavi */
.contact-item:nth-child(1) .contact-icon i {
    font-size: 1.3rem;
    color: #ffffff;
    transition: all 0.3s ease;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    line-height: 1;
}

/* WhatsApp ikonu - Yeşil */
.contact-item:nth-child(2) .contact-icon i {
    font-size: 1.3rem;
    color: #ffffff;
    transition: all 0.3s ease;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    line-height: 1;
}

/* Instagram ikonu - Beyaz (gradient arka plan üzerinde) */
.contact-item:nth-child(3) .contact-icon i {
    font-size: 1.3rem;
    color: #ffffff;
    transition: all 0.3s ease;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    line-height: 1;
}

/* Konum ikonu - Beyaz */
.contact-item:nth-child(4) .contact-icon i {
    font-size: 1.3rem;
    color: #ffffff;
    transition: all 0.3s ease;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    line-height: 1;
}

/* Telefon ikonu hover */
.contact-item:nth-child(1):hover .contact-icon i {
    transform: scale(1.05);
    color: #ffffff;
}

/* WhatsApp ikonu hover */
.contact-item:nth-child(2):hover .contact-icon i {
    transform: scale(1.05);
    color: #ffffff;
}

/* Instagram ikonu hover */
.contact-item:nth-child(3):hover .contact-icon i {
    transform: scale(1.05);
    color: #ffffff;
}

/* Konum ikonu hover */
.contact-item:nth-child(4):hover .contact-icon i {
    transform: scale(1.05);
    color: #ffffff;
}

.contact-details {
    flex: 1;
    z-index: 1;
    grid-row: 2;
    grid-column: 2;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, #333, #555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-details h4 {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateX(3px);
}

/* Başlığı kartın üstünde iki sütun boyunca ortala */
.contact-title {
    grid-column: 1 / -1;
    grid-row: 1;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, #333, #555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}
.contact-item:hover .contact-title {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-details p {
    color: #666;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.contact-person {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.contact-person:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.person-name {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
    min-width: 100px;
}

.phone-number {
    font-weight: 500;
    color: #555;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.instagram-handle {
    font-weight: 500;
    color: #e4405f;
    font-size: 0.95rem;
}

.location-name {
    font-weight: 500;
    color: #555;
    font-size: 0.95rem;
}

/* Tablet and Medium Screen Optimization - 769px to 1023px */
@media (min-width: 769px) and (max-width: 1023px) {
    /* Services Grid - Show Carousel on Tablet */
    .services-grid {
        display: block;
    }
    
    .services-grid > .service-card {
        display: none;
    }
    
    .services-grid > .services-carousel {
        display: block;
    }
    
    .contact-content {
        max-width: 900px;
        gap: 2.5rem;
    }
    
    .contact-info {
        gap: 1rem;
    }
    
    .contact-item {
        padding: 0.9rem 1rem;
        gap: 0.9rem;
        border-radius: 10px;
        grid-template-columns: 50px 1fr;
    }
    
    .contact-icon {
        width: 42px;
        height: 42px;
    }
    
    .contact-icon i {
        font-size: 1.1rem !important;
    }
    
    .contact-person {
        padding: 0.25rem 0;
        margin-bottom: 0.25rem;
    }
    
    .person-name {
        font-size: 0.8rem;
        min-width: 80px;
    }
    
    .phone-number,
    .instagram-handle,
    .location-name {
        font-size: 0.8rem;
    }
    
    .contact-details h4 {
        font-size: 1rem;
        margin-bottom: 0.7rem;
    }
}

/* Desktop Large Screen Optimization - 1024px+ */
@media (min-width: 1024px) {
    /* Services Grid - Show 4 column grid on desktop */
    .services-grid {
        display: grid !important;
        /* Geniş ekranda da öğe sayısına göre esnek kolonlar */
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
        gap: 1.5rem !important;
    }
    
    .services-grid > .service-card {
        display: block !important;
    }
    
    .services-grid > .services-carousel {
        display: none !important;
    }
    
    .contact-content {
        max-width: 1000px;
        gap: 3rem;
    }
    
    .contact-info {
        gap: 1.2rem;
    }
    
    .contact-item {
        padding: 1rem 1.2rem;
        gap: 1rem;
        border-radius: 12px;
        grid-template-columns: 60px 1fr;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon i {
        font-size: 1.2rem !important;
    }
    
    .contact-person {
        padding: 0.3rem 0;
        margin-bottom: 0.3rem;
    }
    
    .person-name {
        font-size: 0.85rem;
        min-width: 85px;
    }
    
    .phone-number,
    .instagram-handle,
    .location-name {
        font-size: 0.85rem;
    }
    
    .contact-details h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
}

/* Extra Large Desktop Optimization - 1200px+ */
@media (min-width: 1200px) {
    .contact-content {
        max-width: 1100px;
        gap: 3.5rem;
    }
    
    .contact-info {
        gap: 1.3rem;
    }
    
    .contact-item {
        padding: 1.1rem 1.3rem;
        gap: 1.1rem;
        grid-template-columns: 60px 1fr;
    }
    
    .contact-icon {
        width: 48px;
        height: 48px;
    }
    
    .contact-icon i {
        font-size: 1.25rem !important;
    }
    
    .person-name {
        font-size: 0.9rem;
        min-width: 95px;
    }
    
    .phone-number,
    .instagram-handle,
    .location-name {
        font-size: 0.9rem;
    }
    
    .contact-details h4 {
        font-size: 1.15rem;
        margin-bottom: 0.9rem;
    }
}

/* Ultra Wide Screen Optimization - 1600px+ */
@media (min-width: 1600px) {
    .contact {
        padding: 100px 0;
    }
    
    .contact-content {
        max-width: 1300px;
        gap: 4rem;
    }
    
    .contact-info {
        gap: 1.4rem;
    }
    
    .contact-item {
        padding: 1.1rem 1.4rem;
        gap: 1.1rem;
        grid-template-columns: 60px 1fr;
    }
    
    .contact-icon {
        width: 48px;
        height: 48px;
    }
    
    .contact-icon i {
        font-size: 1.25rem !important;
    }
    
    .person-name {
        font-size: 0.9rem;
        min-width: 95px;
    }
    
    .phone-number,
    .instagram-handle,
    .location-name {
        font-size: 0.9rem;
    }
    
    .contact-details h4 {
        font-size: 1.15rem;
        margin-bottom: 0.9rem;
    }
}

/* Extreme Wide Screen Limitation - 2000px+ */
@media (min-width: 2000px) {
    .contact-content {
        max-width: 1400px;
        gap: 4.5rem;
    }
    
    .contact-info {
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 1.2rem 1.5rem;
        gap: 1.2rem;
        grid-template-columns: 60px 1fr;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon i {
        font-size: 1.3rem !important;
    }
    
    .person-name {
        font-size: 0.95rem;
        min-width: 100px;
    }
    
    .phone-number,
    .instagram-handle,
    .location-name {
        font-size: 0.95rem;
    }
    
    .contact-details h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
}

/* City Contact Styles - Compact Layout
   Şehir sayfalarındaki küçük iletişim kartları için kapsayıcı.
   Sadece .contact-info.city-contact öğesini hedefleyerek bölüm (.city-contact)
   genişliğini kısıtlamayı önler ve geniş ekranda tam görünürlük sağlar. */
.contact-info.city-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-item.compact {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9));
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.contact-item.compact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.2);
}

.contact-icon-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

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

.contact-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

.contact-item:hover .contact-details p {
    color: #444;
    transform: translateX(3px);
}

.contact-form {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #dc2626;
}

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

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

.footer-section ul li {
    padding: 0.3rem 0;
    color: #ccc;
}

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

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

/* Footer Hizmetlerimiz için yönlendirme iptali */
.footer-section ul li a.disabled-link {
    pointer-events: none;
    cursor: default;
    color: #ccc;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

/* Mobile: sosyal bağlantıları ortala */
@media (max-width: 768px) {
    .footer .social-links {
        justify-content: center;
        align-items: center;
    }
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a i {
    font-size: 1.2rem;
    line-height: 1;
}

.social-links a:hover {
    transform: scale(1.1);
}

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

/* 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);
}

.modal-content {
    position: relative;
    z-index: 2000;
    margin: 0 auto;
    padding: 20px;
    /* Ekran boyutuna göre sabit boyut: içerik resmi değil, kap boyutu belirler */
    width: clamp(320px, 80vw, 1000px);
    height: clamp(240px, 80vh, 720px);
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content img,
.modal-content video {
    /* İçerik sabit kap boyutunu doldursun; resme göre büyüyüp küçülmesin */
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: contain;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

/* Modal blurred side glass effect for tall/narrow photos */
.modal.photo-mode::before,
.modal.photo-mode::after {
    content: '';
    position: fixed;
    top: 0;
    bottom: 0;
    width: 50vw;
    /* Karartılmış blend ile aşırı parlak renkleri yumuşat */
    background-image: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), var(--modal-bg);
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
    filter: blur(40px) saturate(0.85) brightness(0.6);
    opacity: 0.25;
    pointer-events: none;
    z-index: 1999;
}

.modal.photo-mode::before { left: 0; }
.modal.photo-mode::after { right: 0; }

@media (max-width: 768px) {
    /* Flex hizalama mobilde ortalama için; display değeri JS ile yönetilir */
    .modal { align-items: center; justify-content: center; }
    .modal-content { top: auto; transform: none; width: 94vw; height: 80vh; padding: 12px; margin: 0; display: flex; align-items: center; justify-content: center; }
    .modal.photo-mode::before,
    .modal.photo-mode::after { display: none; }
}

.close:hover {
    color: #dc2626;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 8px;
}

.modal-nav button {
    background: rgba(220, 38, 38, 0.8);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .modal-nav { padding: 0 6px; }
}

.modal-nav button:hover {
    background: #dc2626;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Şehir Sayfaları Stilleri */
.city-hero {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.city-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.city-hero-content {
    position: relative;
    z-index: 2;
}

.city-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.city-hero h1 i {
    margin-right: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.city-hero p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.city-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

/* Mobil düzen için şehir kahraman alanını modern ve kompakt yap */
@media (max-width: 768px) {
    .city-hero {
        padding: 4.75rem 0 2rem; /* dikey alanı daralt */
    }

    .city-hero-content {
        max-width: 680px;
        margin: 0 auto;
        padding: 1rem 1rem;
        background: rgba(255, 255, 255, 0.08); /* hafif cam efekti */
        backdrop-filter: saturate(140%) blur(10px);
        border-radius: 16px;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
    }

    .city-hero h1 {
        font-size: 2.2rem; /* başlığı küçült */
        margin-bottom: 0.6rem;
        font-weight: 700;
    }

    .city-hero p {
        font-size: 1rem; /* paragrafı küçült */
        margin-bottom: 1.4rem; /* daha az boşluk */
    }

    .city-hero-icon {
        width: 44px;
        height: 44px;
        border-width: 2px;
        margin-right: 10px;
    }

    .city-stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(90px, 1fr));
        gap: 0.75rem;
        margin-top: 1rem;
    }
    .stat-number {
        font-size: 1.4rem; /* biraz daha küçük */
        margin-bottom: 0.18rem;
    }
    .stat-label {
        font-size: 0.8rem; /* biraz daha küçük */
        opacity: 0.85;
    }
    .stat {
        padding: 0.5rem 0.25rem;
    }
}

/* Çok küçük ekranlar için ekstra küçültme */
@media (max-width: 420px) {
    .city-stats {
        grid-template-columns: repeat(3, minmax(80px, 1fr));
        gap: 0.6rem;
    }
    .stat-number {
        font-size: 1.25rem;
    }
    .stat-label {
        font-size: 0.75rem;
    }
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

.city-gallery {
    padding: 5rem 0;
    background: #f8fafc;
}

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

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

.filter-btn:hover,
.filter-btn.active {
    background: #dc2626;
    border-color: #dc2626;
    color: white;
    transform: translateY(-2px);
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.view-btn {
    background: #dc2626;
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.view-btn:hover {
    background: #b91c1c;
    transform: scale(1.05);
}

.city-contact {
    padding: 4rem 0;
    background: white;
}

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

.contact-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.contact-item p {
    color: #6b7280;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .city-hero h1 {
        font-size: 2.5rem;
    }
    
    .city-stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(90px, 1fr));
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .gallery-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Mobile: keep multi-column thumbnails consistent across pages */
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.5rem;
    }
}

/* Responsive Design */
@media (max-width: 1023px) and (min-width: 769px) {
    .services-grid {
        display: block;
        padding: 0 2rem;
    }
    
    .services-grid > .services-carousel {
        display: block;
        padding: 0 30px;
    }
    
    .services-grid > .service-card {
        display: none;
    }
    
    .services-carousel .service-card {
        padding: 2rem 1.5rem;
        margin: 0;
    }
    
    .services-carousel .service-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }
    
    .services-carousel .service-card p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
@media (max-width: 768px) {
    .about-content {
        padding: 2rem;
        max-width: 90%;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        display: block;
        padding: 0 0.5rem;
    }
    
    .services-grid > .service-card {
        display: none;
    }

    .services-grid > .services-carousel {
        display: block;
        padding: 0 15px;
    }
    
    .services-carousel .service-card {
        padding: 1.2rem 0.8rem;
        margin: 0;
        border-radius: 10px;
        flex: 0 0 100%;
        width: 100%;
    }
    
    .services-carousel .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }
    
    .services-carousel .service-card p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 0.5rem;
    }
    
    .services-carousel .service-card ul {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-top: 0.5rem;
    }
    
    .services-carousel .service-card li {
        margin-bottom: 0.3rem;
    }
    
    .services-carousel .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .services-carousel .carousel-prev {
        left: -5px;
    }
    
    .services-carousel .carousel-next {
        right: -5px;
    }
    
    .carousel-dots {
        margin-top: 1rem;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .contact-item {
        padding: 1.2rem;
        gap: 1.2rem;
        grid-template-columns: 50px 1fr;
    }
    
    .contact-person {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    
    .person-name {
        min-width: auto;
        font-size: 0.9rem;
    }
    
    .phone-number, .instagram-handle, .location-name {
        font-size: 0.9rem;
    }
    
    .city-contact {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .contact-item.compact {
        padding: 0.8rem 1rem;
        gap: 0.8rem;
    }
    
    .contact-icon-small {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .contact-label {
        font-size: 0.8rem;
    }
    
    .contact-value {
        font-size: 0.9rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    /* Telefon ikonu - Mobile */
    .contact-item:nth-child(1) .contact-icon i {
        font-size: 1.1rem;
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        line-height: 1;
    }
    
    /* WhatsApp ikonu - Mobile */
    .contact-item:nth-child(2) .contact-icon i {
        font-size: 1.1rem;
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        line-height: 1;
    }
    
    /* Instagram ikonu - Mobile */
    .contact-item:nth-child(3) .contact-icon i {
        font-size: 1.1rem;
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        line-height: 1;
    }
    
    /* Konum ikonu - Mobile */
    .contact-item:nth-child(4) .contact-icon i {
        font-size: 1.1rem;
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        line-height: 1;
    }
    
    .contact-details h4 {
        font-size: 1.1rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
    }
    /* Contact title: center across full card width on mobile */
    .contact-item .contact-title {
        grid-column: 1 / -1; /* span both columns */
        grid-row: 1;
        text-align: center;
    }
    /* Move icon below the title to avoid overlap */
    .contact-item .contact-icon {
        grid-row: 2;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-nav {
        padding: 0 20px;
    }
    
    .hero-nav button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.5rem;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.fade-in {
    animation: fadeInUp 0.6s ease;
}

/* Partner Banner (Kurumsal Firmalar) */
.partner-banner {
    background: #f8f9fa;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 12px 0 18px;
    margin-top: 70px; /* fixed navbar yüksekliği kadar boşluk */
}

.partner-header h3 {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
}

.partner-marquee {
    position: relative;
    overflow: hidden;
    /* İçerik, sol/sağ fade overlay altında başlamasın diye iç boşluk ekle */
    padding: 0 60px;
}

.partner-marquee::before,
.partner-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    pointer-events: none;
    z-index: 2;
}
.partner-marquee::before { left: 0; background: linear-gradient(to right, #f8f9fa 50%, rgba(248,249,250,0)); }
.partner-marquee::after { right: 0; background: linear-gradient(to left, #f8f9fa 50%, rgba(248,249,250,0)); }

.partner-track {
    display: flex;
    align-items: center;
    gap: 32px;
    width: max-content;
    padding: 6px 10px;
    will-change: transform;
    /* Default end translates half the track; JS updates this for pixel-perfect looping */
    --scroll-end: -50%;
    animation: partner-scroll 28s linear infinite;
}

.partner-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 999px;
    padding: 6px 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    /* Make items non-interactive like a GIF */
    pointer-events: none;
    user-select: none;
    cursor: default;
}

.partner-item img {
    height: 24px;
    width: auto;
    object-fit: contain;
    display: inline-block;
}

/* Inline SVG logos sizing and alignment */
.partner-item .svg-wrapper {
    display: inline-flex;
    align-items: center;
    height: 24px;
}
.partner-item .svg-wrapper svg {
    height: 24px;
    width: auto;
}

.partner-item span {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 24px; /* logo yüksekliği ile hizala */
}

/* Keep marquee running even on hover */
/* (Removed hover pause to behave like a GIF) */

@keyframes partner-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(var(--scroll-end)); }
}

@media (max-width: 768px) {
    .partner-header h3 { font-size: 1.05rem; }
    .partner-track { gap: 20px; animation-duration: 22s; }
    .partner-item { padding: 5px 10px; }
    .partner-item img { height: 20px; }
    .partner-item .svg-wrapper { height: 20px; }
    .partner-item .svg-wrapper svg { height: 20px; }
}

@media (max-width: 480px) {
    .partner-header h3 { font-size: 1rem; }
    .partner-track { gap: 14px; animation-duration: 18s; }
    .partner-item { padding: 4px 8px; }
    .partner-item span { font-size: 0.9rem; }
}

/* Admin Page Responsive Fix: Always show cards on mobile/tablet */
@media (max-width: 1023px) {
    .admin-page .services-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .admin-page .services-grid > .service-card { display: block; }
    .admin-page .services-grid > .services-carousel { display: none; }
}

@media (max-width: 480px) {
    .admin-page .service-card { padding: 1.25rem; }
    .admin-page .section-header h2 { font-size: 1.8rem; }
}

/* --- Mobile Gallery Visibility Fix ---
   Ensure homepage shows carousels on mobile and hides grid.
   Using !important to override earlier duplicate .gallery-grid rules. */
@media (max-width: 1023px) {
  .gallery-grid { display: none !important; }
  .gallery-carousels { display: block !important; }
}

/* Mobile: hide desktop-only subtitles to avoid duplicates; keep carousel subtitles */
@media (max-width: 1023px) {
  /* Homepage: hide grid headings */
  .gallery .gallery-subtitle { display: none; }
  /* City pages: hide grid headings */
  .city-gallery .gallery-subtitle { display: none; }
  /* Ensure carousel subtitles remain visible */
  .gallery-carousels .gallery-subtitle { display: block; }
}

/* Gallery subsection headings for stacked carousels */
.gallery-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 16px 0 10px;
    text-align: center;
}

/* City Contact: Match icons with global contact-info styles */
.contact-info.city-contact .contact-icon-small {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info.city-contact .contact-item:nth-child(1) .contact-icon-small {
    background: linear-gradient(135deg, #007bff, #0056b3);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.contact-info.city-contact .contact-item:nth-child(1):hover .contact-icon-small {
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.contact-info.city-contact .contact-item:nth-child(2) .contact-icon-small {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.contact-info.city-contact .contact-item:nth-child(2):hover .contact-icon-small {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.contact-info.city-contact .contact-item:nth-child(3) .contact-icon-small {
    background: linear-gradient(135deg, #e4405f, #833ab4, #fd1d1d, #fcb045);
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.contact-info.city-contact .contact-item:nth-child(3):hover .contact-icon-small {
    box-shadow: 0 6px 20px rgba(228, 64, 95, 0.4);
}

.contact-info.city-contact .contact-item:hover .contact-icon-small {
    transform: scale(1.05);
}

.contact-info.city-contact .contact-icon-small i {
    font-size: 1.3rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    line-height: 1;
}

@media (max-width: 768px) {
    .contact-info.city-contact .contact-icon-small {
        width: 45px;
        height: 45px;
    }
    .contact-info.city-contact .contact-icon-small i {
        font-size: 1.1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Mobile: reduce gallery item heights and spacing for all contexts */
@media (max-width: 1023px) {
  /* Ensure thumbnails stay small in grid and carousels */
  .gallery-item img,
  .gallery-item video,
  .gallery-carousel .gallery-item img,
  .gallery-carousel .gallery-item video,
  .gallery-carousels .gallery-item img,
  .gallery-carousels .gallery-item video {
    height: 170px !important;
  }
  /* Tighten spacing when grid is visible (city pages) */
  .gallery-grid {
    gap: 0.75rem !important;
  }
}

/* Mobile ≤768px: match Instagram strip height exactly */
@media (max-width: 768px) {
  .gallery-item img,
  .gallery-item video,
  .gallery-carousel .gallery-item img,
  .gallery-carousel .gallery-item video,
  .gallery-carousels .gallery-item img,
  .gallery-carousels .gallery-item video {
    height: 140px !important;
  }
}
/* Glowing ve Shining Efektleri */
@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(220, 38, 38, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(220, 38, 38, 0.8), 0 0 30px rgba(220, 38, 38, 0.6);
    }
    100% {
        box-shadow: 0 0 5px rgba(220, 38, 38, 0.5);
    }
}

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

@keyframes pulse-glow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(220, 38, 38, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(220, 38, 38, 0.8), 0 0 30px rgba(220, 38, 38, 0.6), 0 0 40px rgba(220, 38, 38, 0.4);
    }
}

@keyframes golden-glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.8), 0 0 35px rgba(255, 215, 0, 0.6);
    }
}

/* Ana sayfa nav-logo için glowing efekt */
.nav-logo h2 {
    color: #dc2626;
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0;
}

/* Hero başlık glow kaldırıldı */
.hero h1 { /* glow disabled */ }

/* CTA butonları için glow kaldırıldı */
.cta-btn {
    position: relative;
    overflow: hidden;
}

/* CTA shine kaldırıldı */
.cta-btn::before { content: none; }

/* Şehir butonları için glow kaldırıldı */
.city-btn {
    transition: all 0.3s ease;
}

.city-btn:hover {
    transform: translateY(-5px) scale(1.05);
}

/* Galeri öğeleri için glow kaldırıldı */
.gallery-item:hover { /* glow disabled */ }

/* Service kartları için subtle glow */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

/* İstatistik numaraları için glow kaldırıldı */
.stat-number { /* glow disabled */ }

/* Footer social linkler için glow kaldırıldı */
.social-links a:hover { /* glow disabled */ }

/* Modal glow kaldırıldı */
.modal-content { /* glow disabled */ }

/* View butonları için shine efekt */
.view-btn {
    position: relative;
    overflow: hidden;
}

/* View butonları shine kaldırıldı */
.view-btn::after { content: none; }

/* Contact form için glow efekt */
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
}

/* Navbar için subtle glow */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled { /* glow disabled */ }

@media (max-width: 768px) {
    .city-hero h1 {
        font-size: 2.5rem;
    }
    
    .city-stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(90px, 1fr));
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .gallery-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-nav {
        padding: 0 20px;
    }
    
    .hero-nav button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    /* Very small screens: still allow multiple columns when space permits */
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.fade-in {
    animation: fadeInUp 0.6s ease;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.fade-in {
    animation: fadeInUp 0.6s ease;
}
/* Always-visible play badge for video thumbnails */
.gallery-item.video .play-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(0,0,0,0.55);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    z-index: 3;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.gallery-item.video:hover .play-badge {
    transform: translate(-50%, -50%) scale(1.05);
}
.gallery-carousel .gallery-item.video .play-badge,
.gallery-carousels .gallery-item.video .play-badge {
    width: 40px;
    height: 40px;
    font-size: 20px;
}
.gallery-carousel { position: relative; }
.gallery-carousel .loading-banner {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.2));
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 30;
    pointer-events: none;
}
/* Yükleme durumunda minimum yükseklik korunur ve çerçeve çökmeyi önler */
.gallery-carousel.is-loading .gallery-track {
    min-height: 170px;
}
@media (max-width: 1023px) {
    .gallery-carousel .loading-banner { font-size: 0.9rem; }
}
@media (min-width: 1024px) {
    .gallery-carousel .loading-banner { font-size: 1rem; }
}
/* =================== */
/* Cookie Consent (KVKK & GDPR) */
/* =================== */
.cookie-consent-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 9999;
  pointer-events: auto;
}
.cookie-consent {
  width: min(720px, 96vw);
  background: #111;
  color: #fff;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  padding: 18px 20px;
  border: 1px solid #222;
}
.cookie-consent h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #f3f4f6;
}
.cookie-consent .cc-desc {
  margin: 0 0 12px;
  font-size: 14px;
  color: #c7c7c7;
}
.cookie-consent .cc-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 12px;
}
.cookie-consent .cc-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 10px;
  align-items: start;
  background: #0f0f0f;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 10px 12px;
}
.cookie-consent .cc-option input[type="checkbox"] {
  margin-top: 3px;
}
.cookie-consent .cc-option span {
  font-weight: 600;
  color: #e5e7eb;
}
.cookie-consent .cc-option small {
  grid-column: 2;
  color: #9ca3af;
  font-size: 12px;
}
.cookie-consent .cc-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-consent .cc-btn {
  appearance: none;
  border: none;
  padding: 8px 12px;
  border-radius: 10px;
  cursor: pointer;
  background: #1f2937;
  color: #fff;
  font-weight: 600;
}
.cookie-consent .cc-btn.primary {
  background: #dc2626;
}
.cookie-consent .cc-btn.outline {
  background: transparent;
  border: 1px solid #374151;
}
.cookie-consent .cc-note {
  margin-top: 10px;
  font-size: 12px;
  color: #9ca3af;
}

.manage-cookies-link {
  appearance: none;
  border: none;
  background: transparent;
  color: #9ca3af;
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
  margin-top: 6px;
}

/* Legal links inside cookie consent modal */
.cookie-consent .cc-legal {
  margin-top: 8px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  color: #9ca3af;
  font-size: 12px;
}
.cookie-consent .cc-link {
  color: #e5e7eb;
  text-decoration: underline;
}
.cookie-consent .cc-link:hover {
  color: #ffffff;
}
.cookie-consent .cc-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Legal links in footer */
.legal-links .cc-link {
  color: #9ca3af;
  font-size: 12px;
  text-decoration: underline;
}
.legal-links .cc-link:hover {
  color: #6b7280;
}
.legal-links .cc-link:focus-visible {
  outline: 2px solid #374151;
  outline-offset: 2px;
  border-radius: 4px;
}
