/* ==========================================================================
   WHITEMOON GÜZELLİK & ESTETİK - VIP TASARIM SİSTEMİ (style.css)
   ========================================================================== */

/* 1. Tasarım Değişkenleri (Design Tokens) */
:root {
    --gold-primary: #C5A880;     /* VIP Yumuşak Altın */
    --gold-secondary: #E5D3B3;   /* Açık Altın / Ay Işığı */
    --gold-dark: #A68A5E;        /* Koyu Altın */
    --gold-gradient: linear-gradient(135deg, #A68A5E 0%, #E5D3B3 50%, #C5A880 100%);
    --gold-glow: 0 0 15px rgba(197, 168, 128, 0.3);
    
    --bg-white: #FFFFFF;
    --bg-moon: #F9F9FB;          /* Yumuşak Ay Işığı Beyazı */
    --bg-dark: #121214;          /* Asil Antrasit / Siyah */
    --bg-dark-card: #1C1C1F;     /* Koyu Kart Rengi */
    
    --text-dark: #1A1A1A;
    --text-light: #FFFFFF;
    --text-muted: #666666;
    --text-gold: #C5A880;
    
    --border-color: rgba(197, 168, 128, 0.2); /* İnce Altın Çerçeve */
    
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-vip: 0 10px 30px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 20px 40px rgba(197, 168, 128, 0.1);
}

/* 2. Genel Sıfırlama ve Temel Kurallar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-white);
    color: var(--text-dark);
    font-family: var(--font-sans);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

/* 3. Tipografi ve Metin Stilleri */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.text-gold {
    color: var(--text-gold);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold-dark);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

/* 4. Butonlar (VIP Buttons) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--text-light);
    box-shadow: var(--gold-glow);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(197, 168, 128, 0.45);
}

.btn-outline-white {
    background: transparent;
    border-color: var(--text-light);
    color: var(--text-light);
}

.btn-outline-white:hover {
    background: var(--text-light);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.btn-outline-gold {
    background: transparent;
    border-color: var(--gold-primary);
    color: var(--text-gold);
}

.btn-outline-gold:hover {
    background: var(--gold-primary);
    color: var(--text-light);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.75rem;
}

/* 5. Yükleniyor Ekranı (Loader) */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-circle {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(197, 168, 128, 0.1);
    border-top: 2px solid var(--gold-primary);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1.2s linear infinite;
}

.loader-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-light);
    letter-spacing: 6px;
    animation: pulse 1.8s ease-in-out infinite;
}

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

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* 6. Başlık & Menü (Header) */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 168, 128, 0.1);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
    transition: var(--transition);
}

.header.scrolled .header-container {
    height: 70px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.header.scrolled .logo-img {
    height: 44px;
}

.logo-img-footer {
    height: 70px;
    filter: brightness(1.2);
}

.logo-light {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--text-dark);
}

.logo-gold {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--gold-primary);
    margin-top: -5px;
}

.logo-sub {
    font-size: 0.55rem;
    letter-spacing: 2.5px;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-dark);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-gradient);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-dark);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Mobile Menu Button */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.mobile-nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    position: absolute;
    left: 0;
    transition: var(--transition);
}

.mobile-nav-toggle span:nth-child(1) { top: 0; }
.mobile-nav-toggle span:nth-child(2) { top: 9px; }
.mobile-nav-toggle span:nth-child(3) { top: 18px; }

.mobile-nav-toggle.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--gold-primary);
}

.mobile-nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--gold-primary);
}

/* 7. Kahraman Alanı (Hero) */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: zoomSlow 20s infinite alternate;
}

@keyframes zoomSlow {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.2) 100%);
}

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

.hero-content {
    max-width: 650px;
    color: var(--text-light);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold-secondary);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--text-light);
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
    40% { transform: translate(-50%, -10px); }
    60% { transform: translate(-50%, -5px); }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 8. Ayrıcalıklarımız (Features) */
.section-features {
    background-color: var(--bg-moon);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.grid-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    transition: var(--transition);
}

.feature-icon {
    font-size: 2.2rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
    display: inline-block;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    color: var(--gold-dark);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* 9. Hakkımızda Bölümü (About) */
.about-section {
    padding: 120px 0;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-wrapper {
    position: relative;
    padding-right: 40px;
    padding-bottom: 40px;
}

.about-img-card {
    height: 480px;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--border-color);
    position: relative;
}

.about-img-card::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold-primary);
    z-index: -1;
    transition: var(--transition);
}

.about-img-wrapper:hover .about-img-card::after {
    top: 10px;
    left: 10px;
}

.about-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--bg-dark);
    border: 1px solid var(--gold-primary);
    padding: 24px 30px;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.badge-num {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--gold-primary);
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.7);
}

.about-content {
    animation: fadeIn 1.2s ease;
}

.about-lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--gold-dark);
    margin-bottom: 24px;
}

.about-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 32px;
}

.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.about-point {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-point i {
    color: var(--gold-primary);
    font-size: 1.1rem;
}

.about-point span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* 10. Hizmetlerimiz Bölümü (Services) */
.services-section {
    background-color: var(--bg-moon);
    padding: 120px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.services-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.tab-btn {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-muted);
    padding: 12px 24px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--text-dark);
    border-color: var(--gold-primary);
}

.tab-btn.active {
    background: var(--bg-dark);
    color: var(--text-light);
    border-color: var(--bg-dark);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    transition: var(--transition);
}

.service-card {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.03);
    padding: 40px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
    transition: var(--transition);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--border-color);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.service-card-icon {
    font-size: 2rem;
    color: var(--gold-primary);
    background: rgba(197, 168, 128, 0.05);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-card:hover .service-card-icon {
    background: var(--gold-primary);
    color: var(--text-light);
}

.service-card-price {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--gold-dark);
    font-weight: 600;
}

.service-card-title {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.service-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
    margin-top: auto;
}

.service-duration {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.service-link i {
    font-size: 0.7rem;
    transition: var(--transition);
}

.service-card:hover .service-link {
    color: var(--gold-dark);
}

.service-card:hover .service-link i {
    transform: translateX(4px);
}

/* Tab Filter Animation */
.service-card.hidden {
    opacity: 0;
    transform: scale(0.9);
    position: absolute;
    pointer-events: none;
    width: 0;
    height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    border: none;
}

/* 11. Öncesi & Sonrası Galerisi (Before & After Slider) */
.gallery-section {
    padding: 120px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-card {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: var(--shadow-vip);
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition);
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--border-color);
}

.gallery-img-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.gallery-static-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-static-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.gallery-card:hover .gallery-static-img {
    transform: scale(1.05);
}

.gallery-static-img.img-before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.gallery-static-img.img-after {
    z-index: 1;
}

.static-label {
    position: absolute;
    bottom: 15px;
    background: rgba(18, 18, 20, 0.85);
    border: 1px solid var(--gold-primary);
    color: var(--text-light);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 4px 8px;
    z-index: 5;
    text-transform: uppercase;
}

.img-before .static-label {
    left: 15px;
}

.img-after .static-label {
    right: 15px;
}

.gallery-static-divider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: var(--gold-gradient);
    transform: translateX(-50%);
    z-index: 4;
    box-shadow: 0 0 8px rgba(197, 168, 128, 0.6);
    transition: var(--transition);
}

.gallery-card:hover .gallery-static-divider {
    background: var(--text-light);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
}

.gallery-overlay-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 20, 0.4);
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-light);
    transition: var(--transition);
}

.gallery-card:hover .gallery-overlay-icon {
    opacity: 1;
}

.gallery-overlay-icon i {
    font-size: 2rem;
    color: var(--gold-secondary);
}

.gallery-overlay-icon span {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gallery-info {
    padding: 24px;
    text-align: center;
}

.gallery-item-title {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.gallery-item-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.comparison-slider-wrapper {
    max-width: 800px;
    margin: 50px auto 0;
}

.comparison-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.comparison-slider .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

.comparison-slider .background-img {
    z-index: 1;
}

.comparison-slider .foreground-img {
    z-index: 2;
    width: 50%; /* JS ile kontrol edilecek */
    border-right: 2px solid var(--gold-primary);
}

.slider-label {
    position: absolute;
    bottom: 20px;
    background: rgba(18, 18, 20, 0.8);
    border: 1px solid var(--gold-primary);
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 8px 16px;
    z-index: 3;
}

.label-before {
    left: 20px;
}

.label-after {
    right: 20px;
}

.slider-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 5;
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%; /* JS ile senkronize olacak */
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: var(--bg-dark);
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    pointer-events: none;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    transition: background-color 0.3s;
}

.comparison-slider:hover .slider-button {
    background-color: var(--gold-primary);
}

.slider-caption {
    margin-top: 24px;
    text-align: center;
}

.slider-caption-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.slider-caption-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* 12. Müşteri Yorumları (Testimonials) */
.testimonials-section {
    background-color: var(--bg-moon);
    padding: 120px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.testimonial-carousel-wrapper {
    max-width: 900px;
    margin: 50px auto 0;
    position: relative;
    overflow: hidden;
}

.testimonial-carousel {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 50px 60px;
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
    box-shadow: var(--shadow-vip);
}

.testimonial-rating {
    margin-bottom: 24px;
    color: var(--gold-primary);
}

.testimonial-rating i {
    font-size: 0.9rem;
    margin: 0 2px;
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    line-height: 1.5;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(197, 168, 128, 0.1);
    border: 1px solid var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
}

.user-info {
    text-align: left;
}

.user-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.user-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.carousel-btn {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--gold-primary);
    color: var(--text-light);
    border-color: var(--gold-primary);
}

/* 13. İletişim ve Detaylar (Contact) */
.contact-section {
    padding: 120px 0 0 0; /* Map at bottom takes full width */
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    margin-bottom: 80px;
}

.contact-lead-text {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: rgba(197, 168, 128, 0.05);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.detail-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.detail-content p, 
.detail-content a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.detail-content a:hover {
    color: var(--gold-primary);
}

.working-hours {
    background: var(--bg-moon);
    border: 1px solid var(--border-color);
    padding: 30px;
}

.working-hours-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.working-hours-title i {
    color: var(--gold-primary);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-val {
    font-weight: 500;
}

/* İletişim Formu */
.contact-form-panel {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 50px;
    box-shadow: var(--shadow-vip);
}

.form-panel-title {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.form-panel-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    background-color: var(--bg-moon);
    transition: var(--transition);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    background-color: var(--bg-white);
    box-shadow: 0 5px 15px rgba(197, 168, 128, 0.05);
}

/* Harita Alanı */
.map-placeholder {
    position: relative;
    height: 400px;
    width: 100%;
    background-color: #eaeaea;
    overflow: hidden;
    margin-top: 60px;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(40%) contrast(110%);
    transition: var(--transition);
}

.map-placeholder:hover .map-iframe {
    filter: grayscale(0%) contrast(100%);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8%;
    padding-left: 0;
    z-index: 2;
    pointer-events: none; /* Haritayı arkada sürüklenebilir kılmak için tıklamayı geçir */
}

.map-card {
    background: var(--bg-white);
    border: 1px solid var(--gold-primary);
    padding: 24px 30px;
    text-align: center;
    max-width: 360px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    pointer-events: auto; /* Kart üzerindeki butonların tıklanabilir olmasını sağla */
}

.map-card i {
    font-size: 2rem;
    margin-bottom: 16px;
}

.map-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.map-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* 14. Footer */
.footer {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0 0;
    border-top: 1px solid rgba(197, 168, 128, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-footer {
    margin-bottom: 24px;
}

.logo-footer .logo-light {
    color: var(--text-light);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.95rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: var(--text-light);
    transform: translateY(-3px);
}

.footer-grid h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.footer-links ul, 
.footer-services ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a, 
.footer-services a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover, 
.footer-services a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-bottom {
    padding: 30px 0;
    font-size: 0.8rem;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a:hover {
    color: var(--gold-primary);
}

/* 14.1. Hizmet Detay Modalı (Service Detail Modal) */
.detail-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px); /* Arka planı bulanıklaştırma efekti */
    -webkit-backdrop-filter: blur(12px);
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.detail-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.detail-modal {
    background: var(--bg-white);
    border: 1px solid var(--gold-primary);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    transform: scale(0.9);
    transition: var(--transition);
}

.detail-modal-overlay.open .detail-modal {
    transform: scale(1);
}

.detail-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--text-dark);
    transition: var(--transition);
}

.detail-close-btn:hover {
    color: var(--gold-primary);
}

.detail-modal-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 24px;
}

.detail-category-badge {
    display: inline-block;
    background: rgba(197, 168, 128, 0.08);
    border: 1px solid var(--gold-primary);
    color: var(--gold-dark);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
    margin-bottom: 12px;
}

.detail-title {
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.2;
}

.detail-meta-row {
    display: flex;
    gap: 24px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.detail-meta-row strong {
    color: var(--text-dark);
}

.detail-modal-body {
    margin-bottom: 30px;
}

.detail-section-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-dark);
    margin-top: 24px;
    margin-bottom: 12px;
}

.detail-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.detail-benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.detail-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.detail-benefits-list li i {
    margin-top: 3px;
    font-size: 0.95rem;
}

.detail-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 24px;
}

/* 14.2. Öncesi & Sonrası Modalı (Before & After Gallery Modal) */
.gallery-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.gallery-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.gallery-modal {
    background: var(--bg-white);
    border: 1px solid var(--gold-primary);
    width: 100%;
    max-width: 800px;
    max-height: 95vh;
    overflow-y: auto;
    position: relative;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    transform: scale(0.9);
    transition: var(--transition);
}

.gallery-modal-overlay.open .gallery-modal {
    transform: scale(1);
}

.gallery-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--text-dark);
    transition: var(--transition);
    z-index: 10;
}

.gallery-close-btn:hover {
    color: var(--gold-primary);
}

.gallery-modal-header {
    margin-bottom: 30px;
}

.gallery-modal-title {
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.gallery-modal-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* 15. Randevu Modalı (VIP Booking Modal) */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.booking-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.booking-modal {
    background: var(--bg-white);
    border: 1px solid var(--gold-primary);
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 50px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: var(--transition);
}

.booking-modal-overlay.open .booking-modal {
    transform: scale(1);
}

.booking-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: transparent;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--text-dark);
    transition: var(--transition);
}

.booking-close-btn:hover {
    color: var(--gold-primary);
}

.booking-header {
    text-align: center;
    margin-bottom: 40px;
}

.booking-brand {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold-primary);
    margin-bottom: 8px;
}

.booking-header h3 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 24px;
}

/* Aşamalar (Step Indicators) */
.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 500px;
    margin: 0 auto;
}

.step-dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    width: 60px;
    position: relative;
}

.step-dot::before {
    content: '';
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-moon);
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.step-dot[data-step="1"]::before { content: '1'; }
.step-dot[data-step="2"]::before { content: '2'; }
.step-dot[data-step="3"]::before { content: '3'; }
.step-dot[data-step="4"]::before { content: '4'; }

.step-dot.active {
    color: var(--gold-dark);
}

.step-dot.active::before {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: var(--text-light);
    box-shadow: var(--gold-glow);
}

.step-dot.completed {
    color: var(--text-dark);
}

.step-dot.completed::before {
    background: var(--bg-dark);
    border-color: var(--bg-dark);
    color: var(--text-light);
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.step-line {
    flex-grow: 1;
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin-bottom: 18px;
    max-width: 60px;
}

/* Modaldaki Adım İçerikleri */
.booking-step-content {
    display: none;
}

.booking-step-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-title {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 6px;
}

.step-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.booking-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.step-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

/* Hizmet Önizleme Kartı */
.service-preview-card {
    background: var(--bg-moon);
    border: 1px dashed var(--gold-primary);
    padding: 24px;
    margin-top: 10px;
    animation: fadeIn 0.4s ease;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.preview-header h5 {
    font-size: 1.1rem;
    font-weight: 600;
}

.preview-price {
    font-weight: 600;
}

#previewDesc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.preview-meta {
    display: flex;
    gap: 24px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Adım 2: Tarih Saat Yerleşimi */
.time-selection-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.form-control-date {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background-color: var(--bg-moon);
    font-family: var(--font-sans);
    margin-top: 10px;
    outline: none;
}

.form-control-date:focus {
    border-color: var(--gold-primary);
    background-color: var(--bg-white);
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.slot-placeholder {
    grid-column: span 3;
    text-align: center;
    padding: 40px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    border: 1px dashed rgba(0,0,0,0.05);
}

.time-slot-btn {
    background: var(--bg-moon);
    border: 1px solid rgba(0,0,0,0.03);
    padding: 12px 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.time-slot-btn:hover {
    border-color: var(--gold-primary);
    color: var(--gold-dark);
}

.time-slot-btn.active {
    background: var(--gold-primary);
    color: var(--text-light);
    border-color: var(--gold-primary);
    box-shadow: var(--gold-glow);
}

.time-slot-btn.disabled {
    background: rgba(0,0,0,0.02);
    color: rgba(0,0,0,0.2);
    cursor: not-allowed;
    pointer-events: none;
}

/* Adım 3: İletişim Formu */
.booking-final-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.communication-channels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.channel-label {
    background: var(--bg-moon);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.channel-label input {
    margin-right: 4px;
    accent-color: var(--gold-primary);
}

.channel-label.active {
    border-color: var(--gold-primary);
    background: rgba(197, 168, 128, 0.04);
}

/* Adım 4: Başarı Ekranı */
.success-checkmark {
    margin-bottom: 24px;
}

.check-icon {
    font-size: 4rem;
    color: var(--gold-primary);
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.booking-summary-box {
    background: var(--bg-moon);
    border: 1px solid var(--border-color);
    padding: 24px;
    max-width: 450px;
    margin: 30px auto;
    text-align: left;
}

.booking-summary-box h5 {
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    padding: 8px 0;
}

.summary-row span {
    color: var(--text-muted);
}

.summary-row strong {
    color: var(--text-dark);
}

.booking-actions-footer {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

/* 16. Toast Bildirimler */
.toast-container {
    position: fixed;
    bottom: 110px; /* WhatsApp butonunun üstünde durması için yükseltildi */
    right: 30px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--bg-dark);
    color: var(--text-light);
    border-left: 4px solid var(--gold-primary);
    padding: 16px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    min-width: 300px;
    transform: translateY(20px);
    opacity: 0;
    animation: toastFadeIn 0.4s forwards, toastFadeOut 0.4s 4.6s forwards;
}

@keyframes toastFadeIn {
    to { transform: translateY(0); opacity: 1; }
}

@keyframes toastFadeOut {
    to { transform: translateY(-20px); opacity: 0; }
}

/* 16.1. Sabit WhatsApp Butonu (Floating WhatsApp) */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1999;
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
    color: #FFFFFF;
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: var(--bg-dark);
    border: 1px solid var(--gold-primary);
    color: var(--text-light);
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: var(--bg-dark);
    border-right: 1px solid var(--gold-primary);
    border-top: 1px solid var(--gold-primary);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-5px);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* 16.2. Sayfa Başı Butonu (Scroll-to-Top Button) */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--bg-dark);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.scroll-top-btn:hover {
    background: var(--gold-gradient);
    color: var(--text-light);
    border-color: var(--gold-primary);
    box-shadow: var(--gold-glow);
    transform: translateY(-3px);
}

/* ==========================================================================
   17. Duyarlı Tasarım (Responsive Media Queries)
   ========================================================================== */

@media (max-width: 1024px) {
    .section-title {
        font-size: 2.3rem;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-img-card {
        height: 400px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    /* Map Card Mobile/Tablet Adjustments */
    .map-placeholder {
        height: auto;
        display: flex;
        flex-direction: column;
    }
    
    .map-iframe {
        width: 100%;
        height: 320px;
        transform: none;
    }
    
    .map-overlay {
        position: relative;
        height: auto;
        background: var(--bg-moon);
        padding: 30px 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-left: 0;
        padding-right: 0;
        z-index: 2;
    }
    
    .map-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
        border: none;
        box-shadow: none;
        padding: 0;
        background: transparent;
        text-align: center;
    }
    
    .map-card h4 {
        font-size: 1.1rem;
    }
    
    .map-card p {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
}

@media (max-width: 768px) {
    /* Header & Mobile Menu */
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 85px;
        left: 0;
        width: 100%;
        height: calc(100vh - 85px);
        background: var(--bg-white);
        flex-direction: column;
        justify-content: flex-start;
        gap: 30px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.5s ease, opacity 0.5s ease;
        z-index: 999;
        border-top: 1px solid rgba(197, 168, 128, 0.08);
        overflow-y: auto;
        padding: 50px 0;
    }
    
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .header.scrolled .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
    
    .header-actions .btn {
        display: none;
    }
    
    /* Hero */
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    /* Features */
    .grid-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 20px 10px;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Before & After */
    .comparison-slider {
        height: 320px;
    }
    
    .gallery-img-wrapper {
        height: 240px;
    }
    
    /* Testimonial */
    .testimonial-card {
        padding: 40px 24px;
    }
    
    .testimonial-quote {
        font-size: 1.25rem;
    }
    
    /* Contact Form Panel */
    .contact-form-panel {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    /* Detail & Gallery Modals */
    .detail-modal,
    .gallery-modal {
        padding: 30px 20px;
    }
    
    /* Booking Modal */
    .booking-modal {
        padding: 30px 20px;
    }
    
    .booking-form-row {
        grid-template-columns: 1fr;
    }
    
    .time-selection-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Floating Buttons Mobile Adjustments */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 26px;
    }

    .whatsapp-tooltip {
        display: none !important;
    }

    .scroll-top-btn {
        width: 45px;
        height: 45px;
        bottom: 20px;
        left: 20px;
        font-size: 16px;
    }

    .toast-container {
        bottom: 85px;
        right: 20px;
        left: 20px;
    }
}

/* Extra-Small Mobile Screen Adjustments */
@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.1rem;
    }
    
    /* Booking step wizard text hide (keep dots only for layout space) */
    .step-dot span {
        display: none;
    }
    
    .step-dot {
        width: auto;
    }
    
    .step-indicator {
        gap: 12px;
    }
    
    .step-line {
        max-width: 40px;
    }
    
    /* Modals spacing reduction */
    .detail-modal,
    .gallery-modal,
    .booking-modal {
        padding: 24px 15px;
    }
    
    /* Slider height reduction to fit small screen heights inside lightboxes */
    .comparison-slider {
        height: 260px;
    }
    
    .static-label {
        font-size: 0.6rem;
        padding: 2px 6px;
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .communication-channels {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}
