@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

/* =========================================
   1. DEĞİŞKENLER & AYARLAR
   ========================================= */
:root {
    /* FEMİNEN & MODERN PALET */
    --primary: #d67cb3;        /* Gül Kurusu / Canlı Pembe */
    --primary-soft: #fcebf4;   /* Çok Açık Pembe (Zemin) */
    
    --secondary: #9b72aa;      /* Lila / Mor - DÜZELTİLDİ: Eksik değişken adı eklendi */
    --accent: #ff9a9e;         /* Şeftali Tonu */
    --text-dark: #4a4a4a;      /* Yumuşak Siyah */
    --text-light: #888888;
    --white: #ffffff;
    
    /* YUVARLAK HATLAR */
    --radius-lg: 30px;
    --radius-btn: 50px;
    --radius-img: 20px;
    
    /* EFEKTLER */
    --gradient-main: linear-gradient(135deg, #d67cb3 0%, #9b72aa 100%);
    --gradient-hover: linear-gradient(135deg, #9b72aa 0%, #d67cb3 100%);
    --shadow-soft: 0 10px 40px rgba(214, 124, 179, 0.15);
    --shadow-hover: 0 20px 50px rgba(214, 124, 179, 0.25);
    
    /* FONTLAR */
    --font-head: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--primary-soft);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden; /* Sağa sola kaymayı engeller */
    width: 100%;
    position: relative;
}

a { text-decoration: none; color: inherit; transition: 0.3s ease; }
img { max-width: 100%; display: block; border-radius: var(--radius-img); }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 25px; }
.section-padding { padding: 100px 0; }

/* =========================================
   2. TİPOGRAFİ & BUTONLAR
   ========================================= */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; color: #2c2c2c; }

.section-header { text-align: center; margin-bottom: 60px; }

.sub-title {
    display: inline-block;
    background: rgb(255 0 156 / 60%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-title { font-size: 2.8rem; }

.btn {
    display: inline-block;
    padding: 15px 45px;
    border-radius: var(--radius-btn);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.btn-primary { background: var(--gradient-main); color: var(--white); box-shadow: 0 10px 20px rgba(214, 124, 179, 0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(214, 124, 179, 0.4); background: var(--gradient-hover); }

.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--primary-soft); }

/* =========================================
   3. NAVBAR
   ========================================= */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 30px rgba(0,0,0,0.03);
}

.navbar-container { display: flex; justify-content: space-between; align-items: center; }
.brand-logo { font-family: var(--font-head); font-size: 2rem; color: var(--secondary); font-weight: 700; }
.brand-logo span { color: var(--primary); }

.nav-menu { display: flex; gap: 30px; align-items: center; }
.nav-link { font-weight: 500; color: var(--text-dark); position: relative; }
.nav-link:hover { color: var(--primary); }

/* =========================================
   4. HERO SECTION (STATİK)
   ========================================= */
.hero-section {
    position: relative;
    padding: 180px 0 100px;
    background: radial-gradient(circle at top right, #fcebf4, #fff);
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
}
.blob-1 { top: -10%; right: -5%; width: 500px; height: 500px; background: #ffc3a0; }
.blob-2 { bottom: 10%; left: -10%; width: 400px; height: 400px; background: #d67cb3; }

.hero-wrapper { display: flex; align-items: center; gap: 50px; position: relative; z-index: 1; }
.hero-text { flex: 1; }
.hero-text h1 { font-size: 4rem; line-height: 1.2; margin-bottom: 25px; color: #2a2a2a; }
.hero-text p { font-size: 1.2rem; color: var(--text-light); margin-bottom: 35px; }

.hero-img { flex: 1; position: relative; }
.hero-main-img {
    width: 100%;
    border-radius: 40px 0 40px 40px;
    box-shadow: var(--shadow-soft);
    border: 10px solid var(--white);
}

/* =========================================
   5. HERO SLIDER (DİNAMİK)
   ========================================= */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    margin-top: -90px;
}

.slide-item {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;
    background-size: cover;
    background-position: center;
}

.slide-item::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to right, rgb(61 5 81 / 52%) 0%, rgb(255 255 255 / 0%) 60%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.slide-item.active { opacity: 1; visibility: visible; z-index: 2; }

.slide-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    padding-left: 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: 1s ease 0.5s;
}

.slide-item.active .slide-content { opacity: 1; transform: translateY(0); }
.slide-content h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 20px; color: #ffffff; }
.slide-content p { font-size: 1.2rem; color: #ffffff; margin-bottom: 30px; }

.slider-nav {
    position: absolute; 
    bottom: 90px; 
    z-index: 10;
    display: flex; 
    gap: 15px;

    /* ORTALAMA İÇİN GEREKLİ AYARLAR */
    left: 50%;
    transform: translateX(-50%);
}
.slider-btn {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
    display: flex; align-items: center; justify-content: center;
}
.slider-btn:hover { background: var(--primary); color: var(--white); }

/* =========================================
   6. HİZMETLER & KARTLAR
   ========================================= */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    transition: 0.4s;
    border: 1px solid rgba(255,255,255,0.5);
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }

.card-icon-wrapper {
    width: 80px; height: 80px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    transition: 0.4s;
}
.service-card:hover .card-icon-wrapper { background: var(--gradient-main); color: var(--white); }

.card-img-rounded {
    width: 100%; height: 200px; object-fit: cover;
    border-radius: 20px; margin-bottom: 20px;
}

/* =========================================
   7. HAKKIMIZDA BÖLÜMLERİ
   ========================================= */
.about-wrapper { display: flex; gap: 60px; align-items: center; }
.about-img-box { flex: 1; position: relative; }
.img-big { width: 85%; border-radius: 200px 200px 20px 20px; box-shadow: var(--shadow-soft); }

.img-badge {
    position: absolute; bottom: 30px; right: 20px;
    background: var(--white); padding: 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    text-align: center;
}
.img-badge h4 { color: var(--primary); font-size: 2rem; margin: 0; }
.about-content { flex: 1; }

/* Değerlerimiz (Hakkımızda Sayfası) */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.03);
    transition: 0.4s;
}
.value-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-soft); border-color: var(--primary-soft); }
.value-icon {
    width: 70px; height: 70px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; margin: 0 auto 25px;
}

/* Deneyim Adımları */
.process-step { text-align: center; position: relative; }
.step-number {
    font-size: 4rem; font-weight: 700; color: var(--primary-soft);
    position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
    z-index: 0; opacity: 0.5;
}
.step-content { position: relative; z-index: 1; }

/* =========================================
   8. TESTIMONIALS & FAQ & FORMS
   ========================================= */
.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.user-avatar {
    width: 80px; height: 80px; border-radius: 50%;
    margin: -80px auto 20px;
    border: 5px solid var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* FAQ Accordion */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.faq-item {
    background: var(--white);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: 0.3s;
    cursor: pointer;
}
.faq-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    font-weight: 600; color: var(--text-dark); font-size: 1.1rem;
}
.faq-question i { color: var(--primary); }
.faq-answer {
    margin-top: 15px; color: var(--text-light); font-size: 0.95rem; display: none; 
}
.faq-item.active .faq-answer { display: block; animation: fadeIn 0.5s; }

/* Home Form (Glass) */
.home-form-section {
    background: url('../img/formbg.jpg') no-repeat center center/cover;
    position: relative;
    padding: 100px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 50px 25px;
}
.form-overlay { position: absolute; inset: 0; background: rgba(44, 10, 30, 0.6); }
.form-container {
    position: relative; z-index: 2;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 50px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 600px;
    margin-left: auto;
    color: var(--white);
}
.form-group { margin-bottom: 20px; }
.form-control {
    width: 100%; padding: 15px 25px; border-radius: 50px; border: none;
    background: rgba(255, 255, 255, 0.9); font-family: var(--font-body); font-size: 1rem;
    outline: none; transition: 0.3s;
}
.form-control:focus { background: var(--white); box-shadow: 0 0 15px rgba(255,255,255,0.5); }
.form-title { font-size: 2.5rem; color: var(--white); margin-bottom: 10px; }

/* =========================================
   9. MARKALAR & LOGOLAR (KAYAN EFEKT)
   ========================================= */
.brands-section {
    background: var(--white);
    border-top: 1px solid #f0f0f0;
    padding: 50px 0;
    overflow: hidden;
}

/* Kapsayıcı (Pencere) */
.brands-scroller {
    width: 100%;
    overflow: hidden; /* Taşanları gizle */
    position: relative;
    /* Kenarları hafifçe silikleştirir (Estetik Görünüm) */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

/* Hareket Eden Ray */
.brands-track {
    display: flex;
    gap: 60px; /* Logolar arası boşluk */
    width: max-content; /* İçerik kadar uza */
    padding: 20px 0;
    /* Animasyon Ayarları */
    animation: scroll 30s linear infinite;
}

/* Animasyon Tanımı */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        /* İçerik 2 kere basıldığı için %50 kaydırınca başa döner */
        transform: translateX(-50%);
    }
}

/* Mouse ile üzerine gelince dursun */
.brands-track:hover {
    animation-play-state: paused;
}

/* Logo Stilleri */
.brand-item {
    flex: 0 0 auto;
    width: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-item img {
    width: 100%;
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Mobil için biraz daha hızlı aksın */
@media (max-width: 768px) {
    .brands-track {
        gap: 30px;
        animation-duration: 20s; /* Hızlandı */
    }
    .brand-item {
        width: 100px; /* Mobilde biraz küçült */
    }
}

/* =========================================
   10. ALT SAYFA MODÜLLERİ (HEADER, SIDEBAR, GALERİ)
   ========================================= */
.page-header {
    padding: 35px 0 35px;
    background: radial-gradient(circle at 10% 10%, #fcebf4, #ffffff 90%);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
}
.page-header h1 { font-size: 3.5rem; margin-bottom: 15px; color: #2c2c2c; position: relative; z-index: 2; }
.breadcrumb { font-size: 0.95rem; color: var(--text-light); position: relative; z-index: 2; }
.breadcrumb a { color: var(--primary); font-weight: 600; }

.sidebar-box {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    margin-bottom: 30px;
    border: 1px solid rgba(0,0,0,0.02);
}
.sidebar-title { font-size: 1.3rem; margin-bottom: 20px; border-bottom: 2px solid var(--primary-soft); padding-bottom: 10px; }
.category-list li { border-bottom: 1px solid #f4f4f4; }
.category-list li:last-child { border-bottom: none; }
.category-list a { display: flex; justify-content: space-between; padding: 15px 0; color: var(--text-dark); font-weight: 500; }
.category-list a:hover, .category-list a.active { color: var(--primary); padding-left: 10px; }

.service-detail-img { width: 100%; height: 400px; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 30px; }
.content-area p { margin-bottom: 20px; color: #555; }
.content-area h2, .content-area h3 { margin: 30px 0 20px; color: var(--text-dark); }
.content-area ul { margin-bottom: 20px; padding-left: 20px; }
.content-area li { list-style: disc; margin-bottom: 10px; color: #666; }

.contact-info-box {
    text-align: center; background: var(--white); padding: 40px 20px;
    border-radius: var(--radius-lg); box-shadow: var(--shadow-soft);
    transition: 0.3s; height: 100%;
}
.contact-info-box:hover { transform: translateY(-5px); }
.contact-icon {
    width: 60px; height: 60px; background: var(--primary-soft); color: var(--primary);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin: 0 auto 20px;
}

/* =========================================
   11. EXTRA BÖLÜMLER (STATS, CTA, FOOTER)
   ========================================= */

/* --- STATS (SAYAÇLAR) --- */
.stats-bar {
    background: var(--white);
    padding: 50px 0;
    margin-top: -50px;
    position: relative;
    z-index: 5;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex; justify-content: space-around; flex-wrap: wrap; gap: 30px;
}
.stat-item { text-align: center; }
.stat-item h3 { font-size: 2.5rem; color: var(--primary); margin-bottom: 5px; }
.stat-item p { color: var(--text-light); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

/* --- CTA (ÇAĞRI ALANI) --- */
.cta-section {
    background: var(--gradient-main);
    border-radius: 40px;
    margin: 50px 25px;
    padding: 80px 40px;
    text-align: center;
    color: var(--white);
}
.cta-section h2 { color: var(--white); margin-bottom: 20px; }
.cta-section .btn { background: var(--white); color: var(--primary); }

/* --- FOOTER (DARK MODE) --- */
.soft-footer {
    background: #55003d; /* Koyu Zemin */
    color: #eee;      /* Açık renk yazı */
    padding-top: 80px;
    border-top-left-radius: 150px;
    border-top-right-radius: 150px;
    margin-top: 80px;
    position: relative;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
}

.footer-logo { 
    font-size: 2.5rem; 
    font-family: var(--font-head); 
    color: #fff; /* Logo Beyaz */
    margin-bottom: 20px; 
    display: inline-block; 
}
.footer-logo span { color: var(--primary); } /* 'Beauty' kısmı pembe kalsın */

.footer-desc { 
    max-width: 300px; 
    margin-bottom: 30px; 
    color: #aaa; /* Gri açıklama */
}

.footer-links-title { 
    font-size: 1.2rem; 
    margin-bottom: 25px; 
    color: #fff; /* Başlık Beyaz */
    font-weight: 600; 
}

.footer-menu li { margin-bottom: 12px; }

.footer-menu a { 
    color: #bbb; /* Linkler Gri */
    transition: 0.3s; 
}
.footer-menu a:hover { 
    color: var(--primary); /* Hoverda Pembe */
    padding-left: 5px; 
}

.footer-social a {
    display: inline-flex; width: 40px; height: 40px;
    background: rgba(255,255,255,0.1); /* Şeffaf Beyaz */
    color: #fff;
    border-radius: 50%; justify-content: center; align-items: center;
    margin-right: 10px; transition: 0.3s;
    box-shadow: none;
}
.footer-social a:hover { 
    background: var(--primary); 
    color: var(--white); 
    transform: translateY(-3px); 
}

.copyright-bar {
    margin-top: 60px; padding: 30px 0; 
    border-top: 1px solid rgba(255,255,255,0.1); /* Çizgi şeffaf */
    text-align: center; font-size: 0.9rem; color: #777;
}


/* =========================================
   MÜŞTERİ YORUMLARI (SLIDER CSS - FİNAL)
   ========================================= */

/* Kapsayıcı: Sürükleme Alanı */
.reviews-slider-container {
    overflow-x: auto;          
    cursor: grab;              /* Tut işareti */
    padding: 20px 0 40px;      
    
    /* Scrollbar Gizle */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;     
    -ms-overflow-style: none;  
    
    /* Seçimi Engelle */
    user-select: none;
    -webkit-user-select: none;
}

.reviews-slider-container::-webkit-scrollbar {
    display: none;
}

/* Sürüklerken (Active) */
.reviews-slider-container.active {
    cursor: grabbing;          /* Sıkma işareti */
}

/* --- ÖNEMLİ DÜZELTME: Sürüklerken Snap'i Buradan Kapatıyoruz --- */
.reviews-slider-container.active .reviews-slider {
    scroll-snap-type: none;    /* Sürüklerken yapışmayı iptal et */
}

/* Slider Rayı */
.reviews-slider {
    display: flex;
    gap: 30px;
    scroll-snap-type: x mandatory; /* Normalde yapışkan olsun */
    transition: all 0.3s;          /* Yumuşaklık kat */
}

/* Slaytlar */
.review-slide {
    flex: 0 0 calc((100% - 60px) / 3); /* 3'lü Görünüm */
    scroll-snap-align: start;
    min-width: 300px;
    
    /* İçerik sürüklenmesin */
    pointer-events: none; 
}

/* Kart Stili */
.review-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
    transition: 0.4s ease;
    height: 100%;
    
    /* Kartın kendisine tıklanabilsin ama sürüklenmesin */
    pointer-events: auto; 
    user-select: none;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(214, 124, 179, 0.15);
    border-color: var(--primary-soft);
}

/* Resim Sürükleme Engeli */
.review-card img, 
.quote-icon,
.review-stars {
    -webkit-user-drag: none;
    user-drag: none;
}

/* İçerik Detayları */
.quote-icon { position: absolute; top: 30px; right: 30px; font-size: 3rem; color: var(--primary-soft); opacity: 0.5; }
.review-stars { color: #ffc107; font-size: 0.9rem; margin-bottom: 20px; }
.review-text { color: #555; font-style: italic; line-height: 1.6; margin-bottom: 30px; min-height: 80px; }
.review-meta { display: flex; align-items: center; gap: 15px; border-top: 1px solid #f9f9f9; padding-top: 20px; margin-top: auto; }
.review-avatar { width: 50px; height: 50px; background: var(--primary-soft); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 700; font-family: var(--font-head); }
.review-author { font-size: 1rem; color: var(--text-dark); margin: 0; line-height: 1.2; }
.review-service { font-size: 0.85rem; color: var(--text-light); }

/* MOBİL UYUM */
/* Tablet (2'li Görünüm) */
@media (max-width: 992px) {
    .review-slide {
        /* (100% - 30px boşluk) / 2 */
        flex: 0 0 calc((100% - 30px) / 2);
    }
}

/* Mobil (Tekli ve Kenardan Taşan Görünüm - Instagram Story Gibi) */
@media (max-width: 768px) {
    .review-slide {
        flex: 0 0 85%; /* Ekranın %85'ini kaplasın, kalanı yanda görünsün */
        min-width: auto;
    }
    .reviews-slider { 
        gap: 15px; 
        padding: 0 15px; /* Mobilde kenarlardan biraz boşluk bırak */
    }
    .d-md-none { display: block !important; } /* Mobilde ipucu yazısını göster */
}
@media (min-width: 769px) {
    .d-md-none { display: none !important; } /* Masaüstünde gizle */
}


/* =========================================
   RANDEVU ALANI (SOL YAZI - SAĞ FORM)
   ========================================= */

/* Kapsayıcı: Yan yana dizilim */
.appointment-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr; /* İki eşit kolon */
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Sol Taraftaki Yazı Alanı */
.appointment-text {
    color: var(--white);
}

.appointment-text .script-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--primary); /* Pembe renk */
    display: block;
    margin-bottom: 10px;
}

.appointment-text h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
    font-family: var(--font-head);
}

.appointment-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 90%;
}

/* Avantajlar Listesi */
.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1); /* Cam Efekti */
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: 0.3s;
}

.benefit-list li:hover .icon-box {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.benefit-list strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 4px;
    font-family: var(--font-head);
}

.benefit-list span {
    font-size: 0.9rem;
    opacity: 0.7;
    display: block;
}

/* Sağ Taraftaki Form Kutusu (Mevcut koda ek ayar) */
.form-container {
    background: rgba(255, 255, 255, 0.1); /* Daha şeffaf */
    backdrop-filter: blur(20px);         /* Daha buzlu */
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    margin-left: 0; /* Eski margin'i sıfırla */
    max-width: 100%; /* Genişlik kapsayıcıya uysun */
}

/* MOBİL UYUM (Responsive) */
@media (max-width: 992px) {
    .appointment-wrapper {
        grid-template-columns: 1fr; /* Alt alta al */
        gap: 40px;
        text-align: center;
    }
    
    .appointment-text h2 { font-size: 2.5rem; }
    .appointment-text p { margin: 0 auto 30px; }
    
    /* Mobilde listeyi ortala */
    .benefit-list li {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .appointment-text .script-text { font-size: 1.2rem; }
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* =========================================
   12. MEDIA QUERIES (MOBİL UYUM & MENÜ)
   ========================================= */
@media (max-width: 768px) {
    /* --- GENEL AYARLAR --- */
    .hero-wrapper, .about-wrapper { flex-direction: column; text-align: center; }
    .hero-text h1 { font-size: 2.5rem; }
    
    /* Markalar Mobilde Kaydırılsın */
    .brands-grid { gap: 30px; justify-content: flex-start; }
    .brand-item img { height: 35px; }
    
    /* İletişim & Detay Sayfaları Tek Kolon Olsun */
    .contact-layout, .detail-layout, .faq-grid, .stats-bar { grid-template-columns: 1fr !important; }
    .stats-bar { gap: 30px; }

    .soft-footer {
        padding-top: 50px;
        border-top-left-radius: 75px;
        border-top-right-radius: 75px;
    }

    /* --- MOBİL MENÜ SİSTEMİ --- */
    
    /* Hamburger Butonunu Göster */
    .menu-toggle {
        display: block !important; /* JS ile kontrol edilecek */
        cursor: pointer;
        z-index: 1001;
    }

    /* Menü Listesi (Varsayılan: Gizli) */
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98); /* Neredeyse opak beyaz */
        backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        gap: 25px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
        
        /* Animasyon Başlangıç Durumu */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: 0.4s ease;
    }

    /* Menü Açıkken (Active Class'ı JS ile eklenir) */
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Linkler Mobilde Daha Büyük Olsun */
    .nav-link { font-size: 1.1rem; color: var(--text-dark); }
    
    /* Slider Yazıları Küçülsün */
    .slide-content h1 { font-size: 2.2rem; }
    .slide-content { padding: 0 20px; text-align: center; }

}

/* --- GALERİ GRID --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-img);
    height: 250px;
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

/* Hover'da çıkan büyüteç */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(214, 124, 179, 0.4); /* Tema rengi şeffaf */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
}
.gallery-overlay i {
    color: #fff;
    font-size: 2rem;
    transform: translateY(20px);
    transition: 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay i { transform: translateY(0); }


/* --- LIGHTBOX (MODAL) --- */
.lightbox {
    display: none; /* Varsayılan gizli */
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 0 50px rgba(255,255,255,0.1);
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

/* Kapat Butonu */
.close-btn {
    position: absolute;
    top: 30px;
    right: 45px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}
.close-btn:hover { color: var(--primary); }



/* Mobil Uyum Lightbox */
@media only screen and (max-width: 700px){
    .lightbox-content { width: 95%; }
    .prev, .next { padding: 10px; font-size: 20px; }
}


/* =========================================
   13. YÜZEN İLETİŞİM MENÜSÜ (FAB) - FINAL FIX
   ========================================= */
.fab-wrapper {
    position: fixed;
    bottom: 30px;    /* Ekranın en altından mesafe */
    right: 30px;     /* Ekranın sağından mesafe */
    z-index: 9999;   /* En üst katman */
    width: 60px;     /* Genişlik sadece buton kadar olsun */
    height: 60px;    /* Yükseklik sadece buton kadar olsun */
}

/* Ana Tetikleyici Buton */
.fab-main-btn {
    width: 60px;
    height: 60px;
    background: var(--gradient-main);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(214, 124, 179, 0.4);
    border: none;
    outline: none;
    position: relative;
    z-index: 20; /* Her zaman en üstte */
    transition: transform 1s ease, background 1s;
    transition: all 1s ease;
}

/* Menü Açıkken Ana Butonun Dönmesi */
.fab-wrapper.active .fab-main-btn {
    transform: rotate(360deg);
    background: #55003d; /* Koyu renk (kapatma modu) */
}

/* Alt Menü Linkleri (Genel Ayarlar) */
.fab-action-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    text-decoration: none;
    position: absolute; /* Ana butona göre konumlanır */
    bottom: 5px;        /* Başlangıçta butonun arkasında */
    left: 5px;          /* Ortalamak için */
    z-index: 10;        /* Butonun altında */
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: scale(0.5);
}

/* Tooltip (Yanda çıkan yazılar) */
.fab-action-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 60px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #333;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    opacity: 0; 
    pointer-events: none;
    transition: 0.3s;
}

.fab-action-btn:hover::after { opacity: 1; }

/* Renkler */

.fab-action-btn.whatsapp { background: #25D366; color: white; }
.fab-action-btn.instagram { background: #E1306C; color: white; }
.fab-action-btn.phone { background: var(--secondary); color: white; }
.fab-action-btn.mail { background: var(--accent); color: white; }

.fab-action-btn.whatsapp:hover { color: #25D366; background: white; }
.fab-action-btn.instagram:hover { color: #E1306C; background: white; }
.fab-action-btn.phone:hover { color: var(--secondary); background: white; }
.fab-action-btn.mail:hover { color: var(--accent); background: white; }

/* === AÇILMA ANİMASYONU (MANUEL KONUMLANDIRMA) === */
.fab-wrapper.active .fab-action-btn {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/* Her bir butonu manuel olarak yukarı itiyoruz */
/* Telefon (En Alttaki) */
.fab-wrapper.active .fab-action-btn.phone { bottom: 75px; transition-delay: 0.05s; }
/* Mail */
.fab-wrapper.active .fab-action-btn.mail { bottom: 135px; transition-delay: 0.1s; }
/* Instagram */
.fab-wrapper.active .fab-action-btn.instagram { bottom: 195px; transition-delay: 0.15s; }
/* WhatsApp (En Üstteki) */
.fab-wrapper.active .fab-action-btn.whatsapp { bottom: 255px; transition-delay: 0.2s; }

/* Mobilde sağa yaslama ayarı */
@media (max-width: 768px) {
    .fab-wrapper { right: 20px; bottom: 20px; }
    .fab-action-btn::after { display: none; } /* Mobilde yazıları gizle */
}

/* =========================================
   14. 404 HATA SAYFASI
   ========================================= */
.error-section {
    min-height: 80vh; /* Ekranın çoğunu kaplasın */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, #fff 0%, var(--primary-soft) 100%);
    text-align: center;
}

.error-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 20px;
}

/* Devasa 404 Yazısı */
.error-title {
    font-size: 12rem;
    font-weight: 700;
    font-family: var(--font-head);
    line-height: 1;
    margin-bottom: 10px;
    
    /* Gradient Yazı Efekti */
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Hafif Yüzme Animasyonu */
    animation: floatText 6s ease-in-out infinite;
}

.error-subtitle {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-family: var(--font-head);
}

.error-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Yüzme Animasyonu */
@keyframes floatText {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Mobilde 404 yazısını biraz küçültelim */
@media (max-width: 768px) {
    .error-title { font-size: 8rem; }
    .error-subtitle { font-size: 1.8rem; }
}

/* =========================================
   15. KAYAN YAZI ŞERİDİ (MARQUEE TEXT)
   ========================================= */
.scrolling-text-section {
    background: var(--gradient-main); /* Pembe/Mor Gradient */
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    z-index: 4;

}

.scrolling-text-track {
    display: flex;
    white-space: nowrap;
    width: max-content;
    gap: 0; /* Elemanlar arası boşluğu padding ile vereceğiz */
    animation: scrollText 12s linear infinite;
}

.scrolling-text-item {
    font-family: var(--font-head); /* Başlık fontu */
    font-size: 1.4rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 400;
    padding: 0 20px; /* Yazılar arası mesafe */
    display: flex;
    align-items: center;
    gap: 40px; /* Yazı ile ikon arası mesafe */
}

/* Ayraç İkonu (Yıldız/Elmas) */
.separator-icon {
    font-size: 1.2rem;
    font-weight: 100;
    color: rgba(255, 255, 255, 0.6); /* Hafif soluk beyaz */
    animation: spinSlow 10s linear infinite;
}

/* Yazı Kayma Animasyonu */
@keyframes scrollText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* İkon Dönme Animasyonu */
@keyframes spinSlow {
    100% { transform: rotate(360deg); }
}

/* Mouse ile üzerine gelince dursun (Okumak isteyenler için) */
.scrolling-text-section:hover .scrolling-text-track {
    animation-play-state: paused;
}

/* =========================================
   16. DİL DEĞİŞTİRME BUTONU
   ========================================= */
.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid var(--primary); /* İnce pembe çerçeve */
    border-radius: 50px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
    background: transparent;
}

.lang-btn:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(214, 124, 179, 0.3);
    transform: translateY(-2px);
}

.lang-btn i {
    font-size: 1rem;
}

/* Mobil Menü İçin Ayar */
@media (max-width: 768px) {
    .lang-btn {
        width: 100%; /* Mobilde tam genişlik */
        justify-content: center;
        padding: 12px;
        background: var(--primary-soft); /* Mobilde zemin hafif renkli olsun */
        border: none;
    }
}