/*
 * GÜZELLİK SALONU - ANA STİL DOSYASI (v10 - Stage 8.1 Cozy)
*/

/* 1. :root Değişkenleri
-------------------------------------------------- */
:root {
    --color-primary: #1E4D2B;
    --color-primary-light: #3A6B4A;
    --color-secondary: #F0F4F2;
    /* Cozy Arkaplan */
    --color-dark: #111111;
    --color-text: #444444;
    --color-white: #FFFFFF;
    --color-border: #EAEAEA;
    --color-star: #FFC107;

    /* YENİ: Ekip Renkleri (ZARİF ve COZY - İstenildiği gibi) */
    --color-cozy-1: #F0F4F2;
    /* secondary */
    --color-cozy-2: #E3D5C9;
    /* Önceki bej */
    --color-cozy-3: #D4E0D9;
    /* Soluk yeşil */
    --color-cozy-4: #F5EAE4;
    /* Soluk şeftali */

    --font-family-base: 'Poppins', sans-serif;
    --font-family-heading: 'Montserrat', sans-serif;

    --border-radius: 8px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --box-shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.05);
    --transition-fast: all 0.3s ease;
    --transition-slow: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

/* 2. Global Reset & Body
-------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family-base);
    font-size: 16px;
    line-height: 1.75;
    font-weight: 400;
    color: var(--color-text);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: var(--transition-fast);
}

a:hover {
    color: var(--color-primary-light);
}

/* 3. Tipografi ve Yardımcı Sınıflar
-------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-heading);
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 4rem;
}

h2.section-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.7rem;
}

/* Standart (Sıkışık) Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* YENİ: Full Width Container (İsteğin üzerine) */
.container-fluid {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
    margin-left: auto;
    margin-right: auto;
}

.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

.bg-light {
    background-color: var(--color-secondary);
}

.text-center {
    text-align: center;
}

.section-bottom-link {
    margin-top: 40px;
}

.section-subtitle {
    font-family: var(--font-family-base);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

/* 4. Buton Stilleri
-------------------------------------------------- */
.btn {
    display: inline-block;
    font-family: var(--font-family-base);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 35px;
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-light);
    border-color: var(--color-primary-light);
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-outline-white:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
}

/* 5. Header (FULL WIDTH)
-------------------------------------------------- */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: background-color 0.4s ease, padding 0.4s ease;
}

/* Artık container-fluid kullanıyor */
.main-header .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    line-height: 1.2;
}

.logo .logo-main {
    font-family: var(--font-family-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-white);
    display: block;
    transition: var(--transition-fast);
}

.logo .logo-sub {
    font-family: var(--font-family-base);
    font-size: 0.8rem;
    color: var(--color-white);
    opacity: 0.8;
    display: block;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
}

.main-nav ul {
    display: flex;
    align-items: center;
}

.main-nav ul li {
    margin-left: 35px;
    position: relative;
}

.main-nav ul li a {
    color: var(--color-white);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.main-nav ul li a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--color-white);
    transition: width .3s;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

.has-dropdown .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    box-shadow: var(--box-shadow);
    min-width: 220px;
    z-index: 10;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.has-dropdown:hover .dropdown {
    display: block;
}

.has-dropdown .dropdown li {
    margin-left: 0;
}

.has-dropdown .dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    text-transform: none;
    color: var(--color-dark);
}

.has-dropdown .dropdown li a:hover {
    background-color: var(--color-secondary);
}

.has-dropdown .dropdown li a::after {
    display: none;
}

/* KAYDIRMA SONRASI HEADER */
.main-header.header-scrolled {
    position: fixed;
    background: var(--color-white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.main-header.header-scrolled .logo .logo-main {
    color: var(--color-dark);
}

.main-header.header-scrolled .logo .logo-sub {
    color: var(--color-text);
    opacity: 1;
}

.main-header.header-scrolled .main-nav ul li a {
    color: var(--color-dark);
}

.main-header.header-scrolled .main-nav ul li a::after {
    background: var(--color-primary);
}

.main-header.header-scrolled .header-cta .btn {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.header-cta .btn {
    background-color: var(--color-white);
    color: var(--color-dark);
    padding: 10px 25px;
}

.header-cta .btn:hover {
    background-color: var(--color-secondary);
    color: var(--color-dark);
}

/* 6. Hero (FULL WIDTH)
-------------------------------------------------- */
.hero-section {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    color: var(--color-white);
    overflow: hidden;
    /* WP Kartı için */
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 54, 34, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

/* Artık container-fluid kullanıyor */
.hero-section .container-fluid {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
}

.hero-title .text-green {
    color: var(--color-primary);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    /* Kalınlaştı */
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Hero Entegre WhatsApp Kartı (DÜZELTİLDİ: En alta sabitlendi) */
.hero-whatsapp-prompt {
    position: absolute;
    bottom: 30px;
    /* Viewport'un altından 30px yukarıda */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1140px;
    /* Full width'e uyum sağlasın */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 3;
}

.hero-whatsapp-prompt .fab {
    font-size: 2.5rem;
    color: #25D366;
}

.hero-whatsapp-prompt .prompt-text {
    flex-grow: 1;
}

.hero-whatsapp-prompt .prompt-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--color-white);
}

.hero-whatsapp-prompt .prompt-text span {
    font-size: 0.9rem;
    color: var(--color-white);
    opacity: 0.8;
}

.hero-whatsapp-prompt .btn-whatsapp {
    background-color: #25D366;
    color: var(--color-white);
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.hero-whatsapp-prompt .btn-whatsapp:hover {
    background-color: #1EBE56;
}

/* 7. YENİ: "Biz Kimiz" Cozy Bölümü (v8 - Hayal Ettiğin) (FULL WIDTH)
-------------------------------------------------- */
.section-about-cozy-v8 {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.about-cozy-overlay {
    position: absolute;
    inset: 0;
    background: rgba(240, 244, 242, 0.85);
    /* --color-secondary + opacity */
    backdrop-filter: blur(5px);
}

.about-cozy-grid-v8 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.about-cozy-content-v8 p {
    font-size: 1.1rem;
    font-weight: 400;
    /* Kalınlaştı */
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.about-cozy-content-v8 .btn {
    margin-top: 10px;
}

/* Dağınık Görsel Alanı (Senin Hayalin) */
.about-cozy-image-cluster-v8 {
    position: relative;
    min-height: 500px;
}

.image-box {
    position: absolute;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition-fast);
}

.image-box:hover {
    transform: scale(1.05) !important;
    z-index: 10;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.large-image {
    width: 70%;
    height: 450px;
    top: 0;
    left: 0;
    transform: rotate(-3deg);
    z-index: 1;
}

.small-image-1 {
    width: 40%;
    height: 250px;
    top: 100px;
    right: 0;
    transform: rotate(4deg);
    z-index: 2;
    border: 4px solid var(--color-white);
}

.small-image-2 {
    width: 35%;
    height: 200px;
    top: 300px;
    /* Altta, diğerlerinin üstünde */
    left: 10%;
    transform: rotate(2deg);
    z-index: 3;
    border: 4px solid var(--color-white);
}


/* 8. YENİ: "Cozy" Hizmet Bölümleri (Stage 5 - Dağınık Estetik) (FULL WIDTH)
-------------------------------------------------- */
.service-feature-block {
    position: relative;
    padding: 100px 0;
    min-height: 60vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.service-feature-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.service-feature-block .container-fluid {
    position: relative;
    z-index: 2;
    display: flex;
}

.service-feature-block.align-right .container-fluid {
    justify-content: flex-end;
}

.service-feature-content {
    color: var(--color-white);
    max-width: 550px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    border-radius: var(--border-radius);
    position: relative;
}

/* "Dağınık ama estetik" küçük kare fotolar */
.content-images {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.img-box {
    position: absolute;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
    border: 3px solid var(--color-white);
    box-shadow: var(--box-shadow);
}

.img-box-1 {
    width: 100px;
    height: 100px;
    top: -30px;
    right: -50px;
    transform: rotate(10deg);
}

.img-box-2 {
    width: 130px;
    height: 130px;
    bottom: -40px;
    right: 20px;
    transform: rotate(-8deg);
}

.service-feature-block.align-right .img-box-1 {
    left: -50px;
    right: auto;
    transform: rotate(-10deg);
}

.service-feature-block.align-right .img-box-2 {
    left: 20px;
    right: auto;
    transform: rotate(8deg);
}

.content-text {
    position: relative;
    z-index: 2;
}

.service-feature-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-feature-title {
    color: var(--color-white);
    font-size: 2.5rem;
    margin-top: 5px;
    margin-bottom: 15px;
}

.service-feature-content p {
    font-size: 1.1rem;
    font-weight: 400;
    /* Kalınlaştı */
    margin-bottom: 20px;
}

/* 4. CTA KARTI (DÜZELTİLDİ: Yeşil overlay gitti) */
.service-feature-block.cta-block .service-feature-overlay {
    background: rgba(0, 0, 0, 0.5);
    /* Standart overlay */
}

.service-feature-block.cta-block .service-feature-content {
    margin: 0 auto;
    background: none;
    backdrop-filter: none;
    text-align: center;
}

.service-feature-block.cta-block .btn-primary {
    /* Bu buton artık .btn-outline-white (index.php'de düzeltildi) */
}


/* 9. YENİ Ekip Bölümü (v11 - Stage 8.1 FİX)
   (DÜZELTME: MOBİL GÖRÜNÜM - "KOCAMAN" SORUNU ÇÖZÜLDÜ)
   (DÜZELTME: Masaüstü görünümü eklendi)
-------------------------------------------------- */
.section-featured-team-v11 {
    padding: 80px 0;
    background-color: var(--color-white);
    /* Beyaz zemin */
}

.section-featured-team-v11 .section-title {
    margin-bottom: 40px;
}

.team-grid-v11 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 90%;
    margin: 0;
    box-sizing: border-box;
    align-items: start;
}

/* Kartlar */
.team-card-v11 {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 90%;
    background: #fff;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.team-card-v11:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Pastel, ama biraz daha yoğun arkaplanlar */
.team-card-v11:nth-child(4n+1) {
    background-color: #e4dcff;
    /* Lavanta daha canlı */
}

.team-card-v11:nth-child(4n+2) {
    background-color: #ffe7cc;
    /* Şeftali ton */
}

.team-card-v11:nth-child(4n+3) {
    background-color: #d8f9ea;
    /* Canlı mint */
}

.team-card-v11:nth-child(4n+4) {
    background-color: #ffe0ed;
    /* Pembe ton */
}

/* İçerik alanı */
.team-card-v11__inner {
    text-align: center;
    box-sizing: border-box;
    width: 100%;
}

/* Küçültülmüş, ortalanmış kare görsel */
.team-card-v11__image {
    width: 80%;
    /* Kartın ortasında daha küçük */
    aspect-ratio: 1 / 1;
    /* Kare */
    margin: 0 auto 15px;
    /* Ortala ve alt boşluk bırak */
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: #ccc;
}

.team-card-v11__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card-v11:hover .team-card-v11__image img {
    transform: scale(1.08);
}

/* Metin alanları */
.team-card-v11__name {
    font-size: 1.1rem;
    color: #222;
    font-weight: 600;
    margin-bottom: 4px;
}

.team-card-v11__title {
    font-size: 0.85rem;
    font-weight: 500;
    color: #5b43f2;
    margin-bottom: 10px;
}

/* Etiketler */
.team-card-v11__specialties {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}

.specialty-tag {
    font-size: 0.75rem;
    font-weight: 500;
    background-color: rgba(255, 255, 255, 0.4);
    color: #222;
    padding: 4px 10px;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

.specialty-tag:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

/* Mobil görünüm */
@media (max-width: 768px) {
    .team-grid-v11 {
        grid-template-columns: 1fr;
    }
}


/* 10. YENİ "Cozy" Galeri (L-Grid) (FULL WIDTH)
-------------------------------------------------- */
.section-cozy-gallery {
    background-color: var(--color-white);
}

.section-cozy-gallery .section-title {
    margin-bottom: 40px;
}

/* YENİ FULL WIDTH GRID */
.cozy-gallery-grid-full {
    display: grid;
    /* 4 Kolonlu bir L-Grid */
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 200px);
    /* 200px'lik 3 satır */
    gap: 15px;
}

.gallery-item {
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow-soft);
    transition: var(--transition-slow);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--box-shadow);
    z-index: 5;
}

/* "Garip L-Grid" Düzeni (4 Kolonlu) */
.gallery-item.item-1 {
    grid-column: 1 / 3;
    /* 2 genişlik */
    grid-row: 1 / 3;
    /* 2 yükseklik (Büyük Sol Kare) */
}

.gallery-item.item-2 {
    grid-column: 3 / 4;
    /* Sağ üst */
    grid-row: 1 / 2;
}

.gallery-item.item-3 {
    grid-column: 4 / 5;
    /* En Sağ üst */
    grid-row: 1 / 2;
}

.gallery-item.item-4 {
    grid-column: 3 / 5;
    /* 2 genişlik (Sağ orta) */
    grid-row: 2 / 3;
}

.gallery-item.item-5 {
    grid-column: 1 / 5;
    /* Tam genişlik alt */
    grid-row: 3 / 4;
}

/* 11. Google Yorumları (FULL WIDTH)
-------------------------------------------------- */
.section-testimonials {
    /* bg-light (cozy) */
}

/* Artık container-fluid kullanıyor */
.section-testimonials .container-fluid {
    position: relative;
}

.testimonial-slider {
    overflow: hidden;
    padding: 10px;
    /* Full width slider için padding */
    padding-left: 30px;
    padding-right: 30px;
}

.testimonial-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow-soft);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-user h4 {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.testimonial-user span {
    font-size: 0.9rem;
    color: var(--color-text);
}

.testimonial-platform .fab {
    font-size: 1.5rem;
    color: var(--color-primary);
    /* Yeşil Google İkonu */
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating .fa-star {
    color: var(--color-star);
}

.testimonial-comment {
    font-size: 1rem;
    font-style: italic;
    color: var(--color-dark);
    border-left: 3px solid var(--color-primary);
    padding-left: 15px;
    font-weight: 400;
    /* Kalınlaştı */
}

.testimonial-slider-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.testimonial-slider-nav .swiper-button {
    position: static;
    transform: none;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: var(--color-white);
    color: var(--color-primary);
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: var(--box-shadow-soft);
}

.testimonial-slider-nav .swiper-button::after {
    display: none;
}

.testimonial-slider-nav .swiper-button:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* YENİ: Google Yorum Link Butonu */
.btn-google {
    background-color: var(--color-white);
    color: var(--color-dark);
    border: 2px solid var(--color-border);
    padding: 12px 30px;
    font-weight: 600;
}

.btn-google .fab {
    margin-right: 10px;
    color: #DB4437;
    /* Google kırmızısı */
}

.btn-google:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

/* 12. Footer
-------------------------------------------------- */
.main-footer {
    background-color: var(--color-dark);
    color: #ababab;
    padding-top: 60px;
}

/* Footer'ı da full-width yapalım */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 1200px;
    /* Ama içeriği ortala */
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.widget-title {
    color: var(--color-white);
    font-size: 1.4rem;
}

.footer-widget p {
    font-size: 0.9rem;
}

.footer-widget ul li {
    margin-bottom: 8px;
}

.footer-widget ul li a {
    color: #ababab;
    font-size: 0.9rem;
}

.footer-widget ul li a:hover {
    color: var(--color-white);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    margin-top: 5px;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border-radius: 50%;
    margin-right: 10px;
}

.footer-social a:hover {
    background-color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    font-size: 0.9rem;
    text-align: center;
}

/* 13. Responsive
-------------------------------------------------- */
@media (max-width: 1200px) {

    /* Full width container'ların padding'ini azalt */
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 992px) {
    .main-nav {
        display: none;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-whatsapp-prompt {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px;
    }

    .hero-whatsapp-prompt .btn-whatsapp {
        width: 100%;
        text-align: center;
    }

    .about-cozy-grid-v8 {
        grid-template-columns: 1fr;
    }

    /* "Biz Kimiz" mobilde alt alta */
    .about-cozy-image-cluster-v8 {
        margin-top: 40px;
        min-height: 450px;
    }

    .team-grid-v11 {
        grid-template-columns: 1fr;
    }
}

/* YENİ: MOBİL EKİP KARTI DÜZELTMESİ (STAGE 8.1 FİX)
   (Artık "kocaman" değil, %40-50 yükseklikte)
-------------------------------------------------- */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .service-feature-block {
        padding: 80px 0;
        min-height: 40vh;
    }

    .service-feature-title {
        font-size: 2rem;
    }

    .content-images {
        display: none;
    }

    /* "Dağınık" görselleri mobilde gizle */
    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* "Kocaman olmuş" hatasını düzelten MOBİL KART stili */
    .team-card-v11__inner {
        display: grid;
        /* Grid'e çevir */
        grid-template-columns: 120px 1fr;
        /* Sol 120px resim, sağ taraf kalan */
        align-items: center;
        gap: 20px;
        padding: 20px;
        text-align: left;
        /* Yazıyı sola hizala */
    }

    .team-card-v11__image {
        width: 120px;
        /* Sabit resim genişliği */
        height: 120px;
        padding-top: 0;
        /* 1:1 oranı kaldır */
        flex-shrink: 0;
        /* Resim büzülmesin */
        margin-bottom: 0;
    }

    .team-card-v11__name {
        font-size: 1.3rem;
    }

    .cozy-gallery-grid-full {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 200px);
    }

    /* Galeri mobilde alt alta */
    .gallery-item.item-1,
    .gallery-item.item-2,
    .gallery-item.item-3,
    .gallery-item.item-4,
    .gallery-item.item-5 {
        grid-column: auto;
        grid-row: auto;
        /* Grid'i sıfırla */
    }
}

/* ========================================
   🔥 PHONK EDİT v12.1 - ACİL DÜZELTME
======================================== */

/* === GLOBAL === */
body {
    background: #000;
    overflow-x: hidden;
}

/* === HER SECTION AYNI YAPI === */
/* v12.1 DÜZELTME: "Çift" arkaplan olmasın diye
   .service-feature-block ve .section-about-cozy-v8
   bu ana parallax kuralından ÇIKARILDI. */
.hero-section,
.section-featured-team-v11,
.section-cozy-gallery,
.section-testimonials {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* Overlay kuralı da bu 3 ana section için geçerli */
.hero-section::before,
.section-featured-team-v11::before,
.section-cozy-gallery::before,
.section-testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

/* v12.1 YENİ: "Nefes Alma" Bölümleri (Hizmetler & Biz Kimiz)
   Bunlar artık parallax değil, basit, koyu "breather" bölümler */
.service-feature-block,
.section-about-cozy-v8 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    /* 100vh değil */
    padding: 120px 0;
    /* Standart padding */
    background: #080808;
    /* Saf siyah değil, koyu gri */
}

/* Bu bölümlerde parallax overlay olmasın */
.service-feature-block::before,
.section-about-cozy-v8::before {
    display: none;
}


/* İçerik hep üstte */
.hero-content,
.service-feature-content,
.about-cozy-content-v8,
.team-content-wrapper,
.gallery-content-wrapper,
.testimonials-content-wrapper,
.section-testimonials .container-fluid,
.section-cozy-gallery .container-fluid {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    width: 100%;
    padding: 0 60px;
}

/* === YENİ HEADER (v12.1) === */
.main-header {
    position: fixed;
    /* Akıllı header için 'fixed' olmalı */
    background-color: transparent !important;
    /* Başlangıçta şeffaf */
    backdrop-filter: none !important;
    padding: 15px 0 !important;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.4, 1),
        background-color 0.4s ease !important;
}

/* v12.1 YENİ: Sadece sayfanın en üstündeyken şeffaf */
.main-header.header-top {
    background-color: transparent !important;
    backdrop-filter: none !important;
}

/* v12.1 YENİ: Kaydırma başlayınca (ama gizli değilken) */
.main-header:not(.header-top) {
    background-color: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(10px) !important;
}

/* v12.1 YENİ: Aşağı kaydırınca gizle */
.main-header.header-hidden {
    transform: translateY(-100%);
}

.main-header .logo .logo-main,
.main-header .logo .logo-sub,
.main-header .main-nav ul li a {
    color: var(--color-white) !important;
}

.main-header .header-cta .btn {
    background-color: var(--color-white) !important;
    color: var(--color-dark) !important;
}

.main-header.header-scrolled {
    /* Bu sınıfın PHONK'taki tüm etkilerini sıfırla */
    background-color: transparent !important;
    box-shadow: none !important;
    padding: 15px 0 !important;
}

.main-header.header-scrolled .logo .logo-main {
    color: var(--color-white) !important;
}

.main-header.header-scrolled .logo .logo-sub {
    color: var(--color-white) !important;
    opacity: 0.8 !important;
}

.main-header.header-scrolled .main-nav ul li a {
    color: var(--color-white) !important;
}


/* === ARKAPLAN GÖRSELLERİ (v12) === */
/* Güzellik merkezi, estetik, lüks tema */
.section-featured-team-v11 {
    /* Ekip: Lüks bir salon içi */
    background-image: url('https://images.pexels.com/photos/853427/pexels-photo-853427.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
}

.section-cozy-gallery {
    /* Galeri: Estetik, cilt bakımı */
    background-image: url('https://images.pexels.com/photos/3985321/pexels-photo-3985321.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
}

.section-testimonials {
    /* Yorumlar: Rahatlatıcı bir ortam */
    background-image: url('https://images.pexels.com/photos/7176026/pexels-photo-7176026.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
}


/* === EKİP - SCROLL ANIMASYONLU === */
/* Grid gizle, custom layout */
.team-grid-v11 {
    display: none;
    /* JS'in okuması için gizli kalmalı */
}

/* Yeni team wrapper */
.team-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.team-member {
    opacity: 0;
    transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.team-member:nth-child(odd) {
    transform: translateX(-100px);
    justify-self: end;
}

.team-member:nth-child(even) {
    transform: translateX(100px);
    justify-self: start;
}

.team-member.visible {
    opacity: 1;
    transform: translateX(0);
}

.team-member-card {
    width: 400px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.5s ease;
}

.team-member-card:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
}

.team-member-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member-card:hover .team-member-image img {
    transform: scale(1.1);
}

.team-member-info {
    padding: 30px;
    text-align: center;
}

.team-member-name {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.team-member-title {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.team-member-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-tag {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 12px;
}

/* === GALERİ - YENİ KUSURSUZ (v12.1) === */
/* Eski L-Grid'i gizle, JS kaynak olarak kullanacak */
.cozy-gallery-grid-full {
    display: none !important;
}

/* JS'in oluşturacağı YENİ galeri konteyneri */
.phonk-gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
}

.phonk-gallery-item {
    position: relative;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transition-delay: calc(var(--i, 0) * 50ms);
    /* Kademeli animasyon */
}

.phonk-gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.phonk-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.phonk-gallery-item::after {
    /* Büyüteç ikonu */
    content: '\f00e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    font-size: 50px;
    color: #fff;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 3;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.phonk-gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.phonk-gallery-item:hover::before,
.phonk-gallery-item:hover::after {
    opacity: 1;
}

.phonk-gallery-item:hover img {
    transform: scale(1.1);
}

.phonk-gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* === YORUMLAR - SCROLL CARDS === */
.testimonial-slider {
    max-width: 1400px;
    padding: 0;
}

.testimonial-card {
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(30px) !important;
    border: 2px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 30px !important;
    padding: 50px !important;
    transition: all 0.5s ease !important;
}

.testimonial-card:hover {
    background: rgba(0, 0, 0, 0.8) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9);
}

.testimonial-card * {
    color: white !important;
}

.testimonial-rating i {
    color: #fbbf24 !important;
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.5));
}

/* === BAŞLIKLAR === */
.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title span {
    font-size: 14px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    display: block;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: clamp(50px, 8vw, 90px);
    font-weight: 900;
    color: white;
    text-shadow: 0 15px 40px rgba(0, 0, 0, 0.9);
    margin-bottom: 20px;
}

.section-title p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* === SECTION ÖZEL AYARLAR === */
.service-feature-overlay,
.about-cozy-overlay {
    display: none;
}

.service-feature-content,
.about-cozy-content-v8 {
    background: transparent !important;
    backdrop-filter: none !important;
    color: #FFFFFF !important;
    /* v12.1 - Hizmet/Biz Kimiz yazılarını beyaz yap */
}

.service-feature-content h2,
.service-feature-content p {
    color: #FFFFFF !important;
}

.content-images,
.about-cozy-image-cluster-v8 {
    display: none;
}

/* === MOBILE === */
@media (max-width: 768px) {

    .hero-section,
    .service-feature-block,
    .section-about-cozy-v8,
    .section-featured-team-v11,
    .section-cozy-gallery,
    .section-testimonials {
        background-attachment: scroll;
        /* Mobilde parallax'ı kapat */
    }

    .hero-content,
    .service-feature-content,
    .about-cozy-content-v8,
    .team-content-wrapper,
    .gallery-content-wrapper,
    .testimonials-content-wrapper,
    .section-testimonials .container-fluid,
    .section-cozy-gallery .container-fluid {
        padding: 0 15px;
        /* Mobilde kenar boşluğunu azalt */
    }

    .team-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-member-card {
        width: 100%;
        /* Mobilde tam genişlik */
    }

    .team-member {
        justify-self: center !important;
    }

    .phonk-gallery-container {
        grid-template-columns: 1fr;
    }
}


/* ========================================
   ✅🔥 GEMINI PHONK DÜZELTMELERİ v12.1
======================================== */

/* * 1. DÜZELTME: "BİZ KİMİZ" OKUNURLUK
 * Karanlık arkaplan üzerinde okunmayan yazıları düzeltir.
*/
.section-about-cozy-v8 .about-cozy-content-v8 h2,
.section-about-cozy-v8 .about-cozy-content-v8 p {
    color: #FFFFFF !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/*
 * 2. DÜZELTME: "GOOGLE YORUMLARI" BUTONLARI (v12.1)
 * İKONLAR EKLENDİ VE ORTALANDI
*/
.section-testimonials {
    position: relative;
}

.testimonial-button-prev,
.testimonial-button-next {
    /* Temel Stiller */
    color: #FFFFFF !important;
    font-size: 1.5rem !important;
    background-color: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);

    /* Konumlandırma */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    opacity: 0.7;
    transition: all 0.3s ease;

    /* İkonları ortalamak için */
    display: flex !important;
    align-items: center;
    justify-content: center;
}

/* İkonları (okları) ekle (Font Awesome Gerekli!) */
.testimonial-button-prev::after,
.testimonial-button-next::after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 1rem;
    color: #FFFFFF;
}

.testimonial-button-prev::after {
    content: '\f053';
    /* Sol ok */
}

.testimonial-button-next::after {
    content: '\f054';
    /* Sağ ok */
}


.testimonial-button-prev {
    left: 30px;
}

.testimonial-button-next {
    right: 30px;
}

.testimonial-button-prev:hover,
.testimonial-button-next:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.6);
    transform: translateY(-50%) scale(1.1);
}