/* --- RESET & VARIABLES --- */
:root {
    --primary: #B08D55; /* Antique Gold */
    --primary-dark: #8F6B35;
    --dark: #1a1a1a;
    --gray: #f9f9f9;
    --white: #ffffff;
    --font-head: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- LOADER (YÜKLEME EKRANI) --- */
.loader {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeOut 1s forwards 1.5s;
}

.loader-text {
    font-family: var(--font-head);
    font-size: 3rem;
    letter-spacing: 5px;
    color: var(--primary);
    animation: pulse 1s infinite;
}

@keyframes fadeOut {
    to { opacity: 0; visibility: hidden; }
}

@keyframes pulse {
    50% { opacity: 0.5; }
}

/* --- NAVBAR --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: 0.4s;
}

nav.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 15px 5%;
}

.logo {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 700;
    z-index: 1002;
    position: relative;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: 0.3s;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-btn {
    background: var(--primary);
    color: white !important;
    padding: 10px 25px;
    border-radius: 0;
    letter-spacing: 1px;
}

.nav-btn:hover {
    background: var(--primary-dark);
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1002;
    color: var(--dark);
}

/* --- HERO SECTION --- */
.hero {
    height: 85vh;
    background: url('uploads/mekan.jpeg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-subtitle {
    color: var(--primary);
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero h1 {
    font-family: var(--font-head);
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--primary);
}

.hero-desc {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.btn-main {
    display: inline-block;
    padding: 15px 40px;
    background: var(--dark);
    color: white;
    text-decoration: none;
    border-radius: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-main:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

/* --- STORIES BAR --- */
.stories-bar-wrapper {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.stories-row {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    align-items: center;
    padding-bottom: 5px;
}

.story-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 20px;
    border-right: 2px solid #f0f0f0;
    min-width: 180px;
}

.sp-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark);
}

.sp-text {
    display: flex;
    flex-direction: column;
}

.sp-text a {
    font-size: 0.8rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.story-circle {
    text-align: center;
    cursor: pointer;
    min-width: 80px;
}

.story-circle:hover .ring {
    transform: scale(1.05);
    border-color: var(--primary);
}

.story-circle .ring {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    padding: 3px;
    border: 2px solid transparent;
    background: linear-gradient(45deg, var(--primary), #C5A059);
    transition: 0.3s;
}

.story-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
}

.story-circle span {
    font-size: 0.75rem;
    margin-top: 5px;
    display: block;
    font-weight: 600;
}

/* --- MARQUEE (KAYAN YAZI) --- */
.marquee-section {
    background: var(--dark);
    color: white;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
    font-family: var(--font-head);
    letter-spacing: 3px;
    color: var(--primary);
}

@keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

/* --- GENERAL SECTION STYLES --- */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.sub-title {
    color: var(--primary);
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 0.9rem;
}

.section-header h2 {
    font-family: var(--font-head);
    font-size: 3rem;
    margin-top: 10px;
}

.bg-light {
    background: var(--gray);
}

/* --- SERVICES --- */
/* --- SERVICES (YATAY KAYDIRMALI) --- */
.services-grid {
    display: flex;            /* Yan yana dizmek için Flex */
    flex-wrap: nowrap;        /* Asla alt satıra inme */
    overflow-x: auto;         /* Yatay kaydırmayı aç */
    gap: 30px;                /* Kartlar arası boşluk */
    padding: 20px 5px 30px 5px; /* Alttan boşluk (scrollbar rahat görünsün diye) */
    
    /* Kaydırma hissiyatı (Mıknatıs etkisi) */
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* Mobilde akıcı kayma */
}

/* KART AYARLARI */
.service-card {
    /* Buradaki mantık şu: 
       Ekran genişliğinin 3'te 1'i kadar yer kapla ama 
       300px'ten de aşağı düşme. 
    */
    flex: 0 0 calc(33.333% - 20px); 
    min-width: 300px; /* Kartlar çok küçülmesin */
    
    background: #fff;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 3px solid var(--primary);
    border-radius: 8px;
    
    /* Mıknatıs hizalaması (Scroll durduğunda kart ortada dursun) */
    scroll-snap-align: start;
    
    /* İçerik düzeni */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto; /* Yükseklik içeriğe göre veya sabit olabilir */
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(176, 141, 85, 0.2);
}

/* İÇERİK STİLLERİ (Aynı kalabilir) */
.service-card h3 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 15px;
    word-break: break-word;
}

.divider {
    height: 2px;
    width: 60px;
    background: var(--primary);
    margin: 10px auto 20px auto;
}

.service-list {
    list-style: none;
    margin-top: 10px;
}

.service-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 8px;
    font-size: 0.95rem;
    gap: 10px;
}

.s-price {
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

/* --- SCROLLBAR TASARIMI (Senin Gold Renginle) --- */

/* Chrome, Edge, Safari */
.services-grid::-webkit-scrollbar {
    height: 8px; /* Çubuğun kalınlığı */
}

.services-grid::-webkit-scrollbar-track {
    background: #f1f1f1; /* Çubuğun yolu */
    border-radius: 10px;
    margin: 0 20px; /* Kenarlardan biraz içeride dursun */
}

.services-grid::-webkit-scrollbar-thumb {
    background: var(--primary); /* Gold rengi */
    border-radius: 10px;
    border: 2px solid #f1f1f1; /* Etrafında ince beyaz boşluk */
}

/* Firefox */
.services-grid {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #f1f1f1;
}

/* --- PARALLAX BANNER --- */
.parallax-banner {
    background: url('uploads/kadın1.jpeg') center/cover fixed;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.parallax-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.banner-content h2 {
    font-family: var(--font-head);
    font-size: 3rem;
    margin-bottom: 10px;
}

.btn-white {
    display: inline-block;
    padding: 12px 35px;
    background: white;
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-white:hover {
    background: var(--primary);
    color: white;
}

/* --- GALLERY & FILTER --- */
.gallery-section {
    padding: 80px 0;
    background: var(--gray);
    min-height: 600px;
}

.filter-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    
    /* Hizalama ve Kaydırma Ayarı */
    overflow-x: auto;
    flex-wrap: nowrap;
    white-space: nowrap;
    
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 40px auto;
    padding: 10px 20px;
    padding-bottom: 15px;
}

.filter-btn {
    flex: 0 0 auto;
    border: 1px solid #ddd;
    background: white;
    padding: 12px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--dark);
    transition: 0.3s;
    font-size: 0.9rem;
}

.filter-btn.active, .filter-btn:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(176, 141, 85, 0.3);
}

/* --- YATAY KAYDIRMALI GALERİ (SLIDER) --- */
.gallery-grid {
    display: flex;             /* Yan yana dizmek için şart */
    flex-wrap: nowrap;         /* Asla alt satıra geçmesin */
    overflow-x: auto;          /* Yatay scrollu aç */
    gap: 20px;                 /* Resimler arası boşluk */
    padding: 10px 5px 20px 5px; /* Alttan boşluk (scroll çubuğu rahat görünsün) */
    
    /* Kaydırma hissiyatı */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* Mobilde akıcı kayma */

    /* Scrollbar Tasarımı (Senin renklerinle) */
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #e0e0e0;
}

/* Chrome/Safari Scrollbar Tasarımı */
.gallery-grid::-webkit-scrollbar {
    height: 8px; /* Çubuğun kalınlığı */
}
.gallery-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.gallery-grid::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.gallery-item {
    flex: 0 0 auto;       /* Resimler sıkışmasın, boyutunu korusun */
    width: 300px;         /* Her bir kutunun genişliği (bunu değiştirebilirsin) */
    height: 400px;        /* Kutunun yüksekliği */
    
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    background-color: #f8f8f8;
    border: 1px solid #eee;
    
    /* İçerik hizalama */
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmi kutuya tam doldurur */
    transition: 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item.hide { display: none; }
.gallery-item.fade-out { opacity: 0; transform: scale(0.9); }
.gallery-item.fade-in { animation: fadeInAnim 0.5s forwards; }
@keyframes fadeInAnim { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* KESME YOK, SIĞDIRMA VAR */
    transition: 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* --- REVIEWS --- */
.reviews-container {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 0;
}

.review-card {
    min-width: 300px;
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
}

.stars {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.review-card p {
    font-style: italic;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.review-card h4 {
    font-family: var(--font-head);
    text-align: right;
    color: var(--dark);
}

/* --- CONTACT --- */
.contact-box {
    display: flex;
    flex-wrap: wrap;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

.contact-info {
    flex: 1;
    padding: 50px;
    background: var(--gray);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h3 {
    font-family: var(--font-head);
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.info-item i {
    color: var(--primary);
    font-size: 1.3rem;
}

.map-container {
    flex: 1.5;
    min-height: 450px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --- FOOTER --- */
footer {
    background: var(--dark);
    color: #aaa;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.footer-logo span {
    color: var(--primary);
}

.footer-socials a {
    font-size: 1.8rem;
    color: white;
    margin: 0 15px;
    transition: 0.3s;
}

.footer-socials a:hover {
    color: var(--primary);
}

.copyright {
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

/* --- FOOTER ADMIN LINK (KESİN ÇÖZÜM) --- */
.admin-login-link, 
.admin-login-link:visited, 
.admin-login-link:active {
    margin-top: 20px;
    font-size: 0.75rem;
    color: var(--primary) !important; /* !important ile rengi zorluyoruz */
    text-decoration: none;
    border: 1px solid var(--primary) !important; /* Çerçeveyi zorla gold yap */
    padding: 5px 15px;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 1 !important; /* Tam görünürlük */
}

/* Üzerine gelince (Hover) */
.admin-login-link:hover {
    background: var(--primary) !important;
    color: #fff !important; /* Yazı beyaz olsun */
    box-shadow: 0 0 15px rgba(176, 141, 85, 0.5);
    border-color: var(--primary) !important;
}

/* --- EXTRAS (WhatsApp & Modal) --- */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 999;
    animation: bounce 2s infinite;
    box-shadow: 0 10px 30px rgba(176, 141, 85, 0.4);
    transition: 0.3s;
}

.wa-float:hover {
    background: var(--primary-dark);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal.active .modal-content {
    transform: scale(1);
    opacity: 1;
}

.modal-content {
    max-height: 80vh;
    max-width: 90%;
    border-radius: 10px;
    transform: scale(0.8);
    opacity: 0;
    transition: 0.3s;
}

.close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease-out;
}

.scroll-animate.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- SCROLLBAR TASARIMI (PC: Görünür, Mobil: Gizli) --- */
.services-grid, 
.reviews-container, 
.stories-row, 
.filter-wrap {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 20px;
    scroll-behavior: smooth;
    
    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #e0e0e0;
}

/* Webkit (Chrome, Edge, Safari) */
.services-grid::-webkit-scrollbar, 
.reviews-container::-webkit-scrollbar, 
.stories-row::-webkit-scrollbar, 
.filter-wrap::-webkit-scrollbar {
    height: 8px;
    display: block;
    -webkit-appearance: none;
}

.services-grid::-webkit-scrollbar-track, 
.reviews-container::-webkit-scrollbar-track, 
.stories-row::-webkit-scrollbar-track, 
.filter-wrap::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 10px;
    margin: 0 20px;
}

.services-grid::-webkit-scrollbar-thumb, 
.reviews-container::-webkit-scrollbar-thumb, 
.stories-row::-webkit-scrollbar-thumb, 
.filter-wrap::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 10px;
    border: 2px solid #e0e0e0;
}

/* =========================================
   RESPONSIVE (MOBİL & TABLET) ÖZEL KURALLAR
   ========================================= */

/* --- TABLET (iPad vb.) --- */
@media (min-width: 769px) and (max-width: 1024px) {
    .container { width: 95%; }
    
    .services-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 20px; 
        display: grid; 
        overflow: hidden; 
        padding-bottom: 0;
    }
    
    /* TABLET GALERİ (YATAY KAYDIRMA) */
    .gallery-grid { 
        display: flex;          /* Grid yerine Flex */
        flex-wrap: nowrap;      /* Asla alt satıra inme */
        overflow-x: auto;       /* Yana kaydır */
        gap: 20px;
        padding-bottom: 20px;
    }

    .gallery-item {
        flex: 0 0 45%;          /* Ekrana 2 tane sığsın, birazı taşsın */
        width: 45%;
        height: 350px;
        margin-bottom: 0;
    }
    
    .hero h1 { font-size: 3.5rem; }
    .section-header h2 { font-size: 2.5rem; }
    .contact-box { flex-direction: column; }
    .map-container { height: 350px; }
}

/* --- MOBİL (Telefonlar) --- */
@media (max-width: 768px) {
    
    /* 1. GENEL */
    .container { width: 90%; padding: 0; }
    .section { padding: 60px 0; }
    
    /* 2. FULL SCREEN MENÜ */
    .menu-toggle { 
        display: block; 
        z-index: 1005; 
        position: relative; 
        color: var(--dark); 
        background: rgba(255,255,255,0.8); 
        width: 40px; height: 40px; 
        text-align: center; line-height: 40px; 
        border-radius: 50%; 
    }
    
    .nav-links { 
        position: fixed; top: 0; left: 0; width: 100%; height: 100vh; 
        background: var(--dark); 
        flex-direction: column; justify-content: center; align-items: center; gap: 40px; 
        z-index: 1001; 
        opacity: 0; visibility: hidden; pointer-events: none; 
        transform: scale(0.95); transition: all 0.4s ease-in-out; 
    }
    
    .nav-links.active { opacity: 1; visibility: visible; pointer-events: all; transform: scale(1); }
    
    .nav-links a { 
        color: var(--primary); 
        font-size: 2rem; 
        font-family: var(--font-head); 
        opacity: 0; transform: translateY(20px); transition: 0.5s; 
    }
    
    .nav-links.active a { opacity: 1; transform: translateY(0); }
    .nav-links.active a:nth-child(1) { transition-delay: 0.1s; } 
    .nav-links.active a:nth-child(2) { transition-delay: 0.2s; } 
    .nav-links.active a:nth-child(3) { transition-delay: 0.3s; } 
    .nav-links.active a:nth-child(4) { transition-delay: 0.4s; } 
    .nav-links.active a:nth-child(5) { transition-delay: 0.5s; }

    /* 3. HERO */
    .hero { 
        height: 80vh; 
        text-align: center; 
        padding: 0 20px; 
        background-position: 65% center; 
        align-items: flex-end; 
        padding-bottom: 120px; 
    }
    .hero h1 { font-size: 2.8rem; color: var(--dark); margin-bottom: 10px; }
    .hero-subtitle { font-size: 0.8rem; letter-spacing: 5px; color: var(--dark); }
    .hero-desc { display: none; }
    .btn-main { width: 100%; padding: 15px; font-size: 1rem; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

    /* 4. HİKAYELER */
    .stories-bar-wrapper { 
        padding: 20px 0; 
        position: relative; 
        z-index: 10; 
        margin-top: 0; 
        background: var(--white); 
        border-bottom: 1px solid #f0f0f0; 
    }

    .stories-row { 
        display: flex;
        align-items: center; 
        padding-left: 20px; 
        padding-right: 20px;
        gap: 15px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; 
    }
    
    .stories-row::-webkit-scrollbar { display: none; }

    /* PROFİL KISMI */
    .story-profile { 
        display: flex; 
        flex-direction: column; 
        align-items: center; 
        justify-content: center; 
        text-align: center;
        min-width: 80px; 
        max-width: 80px;
        padding-right: 15px; 
        border-right: 1px solid rgba(0,0,0,0.1);
        margin-right: 0;
        height: 100%; 
    }
    
    .sp-img { 
        width: 60px; 
        height: 60px; 
        font-size: 1.5rem; 
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        margin-bottom: 5px;
        border: 2px solid white;
    }

    .sp-text { 
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .sp-text b { 
        font-size: 0.65rem; 
        display: block; 
        white-space: nowrap; 
        overflow: hidden; 
        text-overflow: ellipsis; 
        width: 100%;
        color: var(--dark);
        margin-bottom: 2px;
    }
    
    .sp-text a { 
        font-size: 0.6rem; 
        background: var(--primary); 
        color: white; 
        padding: 2px 8px; 
        border-radius: 10px; 
        text-decoration: none;
        font-weight: 600;
    }

    /* HİKAYE YUVARLAKLARI */
    .story-circle { 
        min-width: 80px; 
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .story-circle .ring { 
        width: 60px; 
        height: 60px; 
        background: var(--white); 
        padding: 2px; 
        border-radius: 50%;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1); 
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .story-circle span { 
        font-size: 0.7rem; 
        margin-top: 5px; 
        display: block; 
        color: var(--dark);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }

    /* 5. HİZMETLER & YORUMLAR */
    .service-card, .review-card { 
        min-width: 85%; 
        scroll-snap-align: center; 
        border-top: none; 
        border-left: 4px solid var(--primary); 
    }
    .services-grid, .reviews-container { 
        display: flex; 
        padding-left: 20px; padding-right: 20px; 
        scroll-snap-type: x mandatory; 
    }
    
    /* MOBİLDE FİLTRE BUTONLARI */
    .filter-wrap { 
        width: 100%; 
        padding: 10px 15px; 
        justify-content: flex-start; 
    }
    .filter-wrap::-webkit-scrollbar { display: none; }
    .filter-btn { padding: 10px 20px; font-size: 0.85rem; }

    /* --- 6. GALERİ (MOBİL YATAY SLIDER - GÜNCELLENEN KISIM) --- */
    .gallery-grid { 
        display: flex;              /* Flex zorunlu */
        flex-wrap: nowrap;          /* Alt satıra geçme */
        overflow-x: auto;           /* Yana kaydır */
        justify-content: flex-start; 
        gap: 15px; 
        padding: 0 20px 20px 20px; /* Kenar boşlukları */
        
        scroll-snap-type: x mandatory; /* Mıknatıs etkisi */
        -webkit-overflow-scrolling: touch;
    }
    
    .gallery-grid::-webkit-scrollbar { display: none; } /* Scroll çubuğunu gizle */

    .gallery-item { 
        flex: 0 0 85%;            /* %85 genişlik (yandaki görünsün diye) */
        width: 85%; 
        height: 350px; 
        margin-bottom: 0; 
        
        scroll-snap-align: center; /* Ortaya hizala */
        opacity: 1 !important; 
        transform: none !important;
        
        background-color: #f8f8f8;
    }
    
    .gallery-item:only-child { 
        flex: 0 0 90%; 
        max-width: 90%; 
        height: 300px; 
    }

    /* 7. İLETİŞİM (ALT ALTA) */
    .contact-box { 
        display: flex; 
        flex-direction: column; 
        border-radius: 15px; 
        overflow: hidden; 
        background: var(--gray); 
        box-shadow: 0 5px 15px rgba(0,0,0,0.05); 
        margin-bottom: 30px; 
    }
    
    .map-container { 
        width: 100%; 
        height: 300px; 
        min-height: 300px; 
        order: 1; 
        position: relative; 
    }
    
    .map-container iframe { 
        position: absolute; top: 0; left: 0; 
        width: 100% !important; height: 100% !important; 
        border: none; display: block; 
    }
    
    .contact-info { 
        width: 100%; 
        padding: 40px 25px; 
        order: 2; 
        background: var(--gray); 
    }
    
    .contact-info h3 { 
        margin-top: 0; 
        font-size: 1.8rem; 
        text-align: center; 
        margin-bottom: 30px; 
    }

    /* 8. PARALLAX */
    .parallax-banner { 
        height: 300px; 
        background-attachment: scroll; 
        background-position: center; 
    }
    
    .banner-content h2 { font-size: 2rem; }
    
    /* MOBİLDE ANA KAYDIRMA ÇUBUKLARINI GİZLE */
    .services-grid::-webkit-scrollbar, 
    .reviews-container::-webkit-scrollbar, 
    .stories-row::-webkit-scrollbar {
        display: none; 
    }

    

        
}