/*
Theme Name: Aura Kuaför
Theme URI: https://www.aurakuafor.com
Author: Aura Kuaför
Author URI: https://www.aurakuafor.com
Description: Modern ve lüks bir kuaför teması. Tuzla'da bay ve bayan kuaför için özel olarak tasarlanmıştır.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aurakuafor
*/

/* --- MODERN CSS DEĞİŞKENLERİ --- */
:root {
    /* Daha derin, zengin bir siyah */
    --bg-main: #141414; 
    /* Yumuşak, kremsi beyaz */
    --text-light: #F3F0EB;
    /* Şampanya / Rose Gold Işıltısı */
    --accent-glow: #ffffff; 
    /* Cam efekti yüzey */
    --surface-glass: rgba(255, 255, 255, 0.04);
    --border-subtle: rgba(226, 199, 167, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-main);
    color: var(--text-light);
    font-family: 'Manrope', sans-serif; /* Çok temiz, modern bir sans-serif */
    line-height: 1.8;
    overflow-x: hidden;
}

/* Seçili metin rengi */
::selection {
    background-color: var(--accent-glow);
    color: var(--bg-main);
}

::-moz-selection {
    background-color: var(--accent-glow);
    color: var(--bg-main);
}

body.loading {
    overflow: hidden;
}

/* --- LOADING SCREEN --- */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-main);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loader-logo {
    font-family: 'Cinzel Decorative', serif;
    font-size: 48px;
    letter-spacing: 8px;
    color: var(--accent-glow);
    margin-bottom: 30px;
    animation: fadeInScale 1s ease;
    text-shadow: 0 0 20px rgba(226, 199, 167, 0.5);
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-subtle);
    border-top-color: var(--accent-glow);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

h1, h2, h3, .logo {
    font-family: 'Cinzel Decorative', serif; /* Sanatsal ve lüks başlıklar */
    font-weight: 400;
}

/* --- HEADER: Minimalist & Şeffaf --- */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 30px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(10,11,14,0.8), transparent);
    transition: 0.3s ease;
}

header.scrolled {
    background: rgba(10, 11, 14, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 5%;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.logo {
    font-size: 28px;
    letter-spacing: 2px;
    text-decoration: none;
    color: var(--text-light);
    position: relative;
}
.logo .logo-aura {
    color: #aa4ae2; /* Mavi renk */
    text-shadow: 0 0 10px rgba(74, 144, 226, 0.5);
}
.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30%;
    height: 1px;
    background: #aa4ae2;
    box-shadow: 0 0 10px rgba(170, 74, 226, 0.6);
}

nav ul { display: flex; list-style: none; gap: 40px; margin: 0; padding: 0; }
nav a {
    text-decoration: none; color: var(--text-light); font-size: 12px; text-transform: uppercase; letter-spacing: 2px; opacity: 0.7; transition: 0.3s;
}
nav a:hover { opacity: 1; color: var(--accent-glow); }

/* WordPress Menü Stilleri */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    transition: 0.3s;
}

.main-nav a:hover,
.main-nav .current-menu-item > a {
    opacity: 1;
    color: var(--accent-glow);
}

/* Dil Değiştirici */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 30px;
}

.lang-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 32px;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 6px;
    background: rgba(226, 199, 167, 0.08);
    border: 2px solid var(--border-subtle);
    opacity: 0.8;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.lang-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(226, 199, 167, 0.2), transparent);
    transition: left 0.5s;
}

.lang-link:hover::before {
    left: 100%;
}

.lang-link:hover {
    opacity: 1;
    transform: translateY(-2px) scale(1.05);
    border-color: var(--accent-glow);
    background: rgba(226, 199, 167, 0.12);
    box-shadow: 0 4px 15px rgba(226, 199, 167, 0.3);
}

.lang-link.active {
    opacity: 1;
    border-color: var(--accent-glow);
    background: rgba(226, 199, 167, 0.15);
    box-shadow: 0 0 20px rgba(226, 199, 167, 0.4), inset 0 0 10px rgba(226, 199, 167, 0.1);
    transform: scale(1.05);
}

.lang-flag {
    font-size: 24px;
    line-height: 1;
    display: block;
    transition: transform 0.3s;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.lang-link:hover .lang-flag {
    transform: scale(1.15);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.lang-link.active .lang-flag {
    transform: scale(1.1);
    filter: drop-shadow(0 2px 8px rgba(226, 199, 167, 0.4));
}

/* Mobil Menü Toggle Butonu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
    position: relative;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--accent-glow);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* --- HERO SECTION: Sürükleyici Giriş --- */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 10%;
    overflow: hidden;
}

/* Arkaplan görseli üzerinde lüks bir ışık hüzmesi efekti */
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://images.unsplash.com/photo-1600948836101-f9ffda59d250?auto=format&fit=crop&q=80&w=1920') no-repeat center center/cover;
    filter: brightness(0.6) contrast(1.1);
    z-index: -2;
    transform: scale(1.05); /* Hafif zoom efekti için */
    animation: subtleZoom 20s infinite alternate ease-in-out;
}

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    /* Soldan sağa yumuşak bir karartma ve ışıltı geçişi */
    background: linear-gradient(90deg, var(--bg-main) 0%, rgba(10,11,14,0.4) 100%);
    z-index: -1;
}
@keyframes subtleZoom { from { transform: scale(1.0); } to { transform: scale(1.08); } }

.hero-content { z-index: 2; max-width: 700px; }

.hero-subtitle {
    display: block; font-size: 14px; letter-spacing: 6px; color: var(--accent-glow);
    margin-bottom: 20px; text-transform: uppercase; font-weight: 600;
}

.hero h1 {
    font-size: clamp(3.5rem, 7vw, 6rem);
    line-height: 1.1;
    margin-bottom: 30px;
    /* Metne hafif bir ışıltı verelim */
    text-shadow: 0 0 30px rgba(226, 199, 167, 0.3);
}
.hero h1 .hero-aura,
.hero .hero-content h1 .hero-aura,
section.hero h1 .hero-aura,
.hero-content h1 .hero-aura {
    color: #aa4ae2 !important;
    text-shadow: 0 0 20px rgba(170, 74, 226, 0.6) !important;
    display: inline !important;
}

.hero h1 span { display: block; font-family: 'Manrope', sans-serif; font-weight: 200; font-size: 0.5em; letter-spacing: 10px; margin-top: 10px; }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--accent-glow);
    border-radius: 15px;
    position: relative;
    opacity: 0.7;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-glow);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

.scroll-text {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--accent-glow);
    text-transform: uppercase;
    opacity: 0.7;
}

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

@keyframes scrollWheel {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 20px;
    }
}

/* Modern Buton Tasarımı */
.btn-glow {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--accent-glow);
    color: var(--accent-glow);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px; letter-spacing: 3px;
    position: relative;
    transition: 0.4s;
    background: linear-gradient(45deg, transparent, rgba(226, 199, 167, 0.1));
}
.btn-glow:hover {
    box-shadow: 0 0 30px rgba(226, 199, 167, 0.4);
    background: rgba(226, 199, 167, 0.1);
    color: #fff;
}

/* --- INTRO: Tuzla Vurgusu --- */
.intro-section {
    padding: 120px 10%;
    display: flex;
    align-items: flex-end;
    gap: 60px;
    position: relative;
}
.intro-big-text {
    flex: 1; font-family: 'Cinzel Decorative'; font-size: 4vw; line-height: 1.2; color: #ffffff;
    opacity: 1;
}
.intro-content { flex: 1; }
.intro-content h2 { color: var(--accent-glow); font-size: 32px; margin-bottom: 30px; }
.intro-content p { font-size: 18px; font-weight: 200; color: rgba(243, 240, 235, 0.8); }

/* --- HİZMETLER: Organik Kartlar --- */
.services-section { padding: 100px 5%; position: relative; overflow: hidden; }
/* Arkaplana devasa, flu bir "A" harfi yerleştirelim */
.services-section::before {
    content: 'A'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    font-family: 'Cinzel Decorative'; font-size: 50vw; color: var(--surface-glass); z-index: -1; pointer-events: none;
}

.services-wrapper {
    display: flex; gap: 30px; padding: 50px 0;
    /* Yatay kaydırma hissi (isteğe bağlı overflow-x:auto yapılabilir) */
}

.service-card {
    flex: 1; min-width: 300px;
    background: var(--surface-glass); /* Yarı saydam cam */
    backdrop-filter: blur(10px); /* Buzlu cam efekti */
    border: 1px solid var(--border-subtle);
    padding: 50px 30px;
    border-radius: 0 30px 0 30px; /* Organik, asimetrik köşe */
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--accent-glow);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
}

/* Hover'da kartın içinde ışık parlaması */
.service-card::after {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(226, 199, 167, 0.1) 0%, transparent 70%);
    opacity: 0; transition: 0.5s; pointer-events: none;
}
.service-card:hover::after { opacity: 1; }

.service-num { font-size: 60px; color: var(--accent-glow); opacity: 0.2; font-family: 'Cinzel Decorative'; line-height: 1; margin-bottom: -20px; display: block; }
.service-card h3 { font-size: 24px; margin: 20px 0; }
.service-card p { font-weight: 200; font-size: 15px; opacity: 0.8; }

/* --- İSTATİSTİKLER BÖLÜMÜ --- */
.stats-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, rgba(226, 199, 167, 0.05) 0%, transparent 100%);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-number {
    font-size: clamp(3rem, 5vw, 5rem);
    font-family: 'Cinzel Decorative', serif;
    color: var(--accent-glow);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(226, 199, 167, 0.3);
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(243, 240, 235, 0.7);
    font-weight: 400;
}

/* --- GALERİ BÖLÜMÜ --- */
.gallery-section {
    padding: 120px 5%;
    position: relative;
    background: var(--bg-main);
}

.gallery-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-header-center {
    text-align: center;
    position: relative;
    width: 100%;
}

.gallery-subtitle-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    gap: 15px;
}

.gallery-subtitle-left {
    font-size: 14px;
    letter-spacing: 4px;
    color: var(--text-light);
    text-transform: uppercase;
    opacity: 0.9;
    font-weight: 400;
}

.gallery-subtitle-line {
    width: 60px;
    height: 1px;
    background: var(--accent-glow);
    opacity: 0.6;
}

.gallery-main-title {
    font-size: clamp(3rem, 7vw, 6rem);
    color: var(--text-light);
    line-height: 1.1;
    font-weight: 400;
    position: relative;
    display: inline-block;
    margin: 0;
}

.gallery-main-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -80px;
    width: 50px;
    height: 1px;
    background: var(--accent-glow);
    opacity: 0.4;
    transform: translateY(-50%);
}

.gallery-main-title::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -80px;
    width: 50px;
    height: 1px;
    background: var(--accent-glow);
    opacity: 0.4;
    transform: translateY(-50%);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 6px;
    color: var(--accent-glow);
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-glow);
    transition: width 0.8s ease;
    box-shadow: 0 0 10px var(--accent-glow);
}

.section-header.visible .section-subtitle::after {
    width: 60px;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-light);
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.section-header h2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -60px;
    width: 40px;
    height: 1px;
    background: var(--accent-glow);
    opacity: 0;
    transition: opacity 0.8s ease 0.3s, left 0.8s ease 0.3s;
}

.section-header h2::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -60px;
    width: 40px;
    height: 1px;
    background: var(--accent-glow);
    opacity: 0;
    transition: opacity 0.8s ease 0.3s, right 0.8s ease 0.3s;
}

.section-header.visible h2::before,
.section-header.visible h2::after {
    opacity: 0.5;
}

.section-header.visible h2::before {
    left: -80px;
}

.section-header.visible h2::after {
    right: -80px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 0 20px 0 20px;
    cursor: pointer;
}

.gallery-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-color: rgba(10, 11, 14, 0.5);
}

.gallery-image.lazy-load {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-image.lazy-load.loaded {
    opacity: 1;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(10, 11, 14, 0.95), transparent);
    transform: translateY(100%);
    transition: transform 0.4s;
}

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

.gallery-overlay span {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-glow);
}

/* --- MÜŞTERİ YORUMLARI --- */
.testimonials-section {
    padding: 120px 5%;
    background: var(--surface-glass);
    backdrop-filter: blur(10px);
    position: relative;
}

.testimonials-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-header-center {
    text-align: center;
    position: relative;
    width: 100%;
}

.testimonials-main-title {
    font-size: clamp(3rem, 7vw, 6rem);
    color: var(--text-light);
    line-height: 1.1;
    font-weight: 400;
    position: relative;
    display: inline-block;
    margin: 0;
}

.testimonials-main-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -80px;
    width: 50px;
    height: 1px;
    background: var(--accent-glow);
    opacity: 0.4;
    transform: translateY(-50%);
}

.testimonials-main-title::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -80px;
    width: 50px;
    height: 1px;
    background: var(--accent-glow);
    opacity: 0.4;
    transform: translateY(-50%);
}

.testimonials-subtitle-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    gap: 15px;
}

.testimonials-subtitle-left {
    font-size: 14px;
    letter-spacing: 4px;
    color: var(--text-light);
    text-transform: uppercase;
    opacity: 0.9;
    font-weight: 400;
}

.testimonials-subtitle-line {
    width: 60px;
    height: 1px;
    background: var(--accent-glow);
    opacity: 0.6;
}

.testimonials-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(10, 11, 14, 0.6);
    border: 1px solid var(--border-subtle);
    padding: 40px;
    border-radius: 0 20px 0 20px;
    transition: 0.4s;
    position: relative;
}

.testimonial-card:hover {
    border-color: var(--accent-glow);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.testimonial-stars {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(243, 240, 235, 0.9);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid var(--border-subtle);
    padding-top: 20px;
}

.testimonial-author strong {
    display: block;
    color: var(--accent-glow);
    font-size: 16px;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 12px;
    color: rgba(243, 240, 235, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- ÖZELLİKLER BÖLÜMÜ --- */
.features-section {
    padding: 120px 5%;
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(226, 199, 167, 0.03) 50%, transparent 100%);
}

.features-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.features-header-center {
    text-align: center;
    position: relative;
    width: 100%;
}

.features-main-title {
    font-size: clamp(3rem, 7vw, 6rem);
    color: var(--text-light);
    line-height: 1.1;
    font-weight: 400;
    position: relative;
    display: inline-block;
    margin: 0;
}

.features-main-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -80px;
    width: 50px;
    height: 1px;
    background: var(--accent-glow);
    opacity: 0.4;
    transform: translateY(-50%);
}

.features-main-title::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -80px;
    width: 50px;
    height: 1px;
    background: var(--accent-glow);
    opacity: 0.4;
    transform: translateY(-50%);
}

.features-subtitle-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    gap: 15px;
}

.features-subtitle-left {
    font-size: 14px;
    letter-spacing: 4px;
    color: var(--text-light);
    text-transform: uppercase;
    opacity: 0.9;
    font-weight: 400;
}

.features-subtitle-line {
    width: 60px;
    height: 1px;
    background: var(--accent-glow);
    opacity: 0.6;
}

.features-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 60px auto 0;
}

.feature-card {
    background: var(--surface-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    padding: 50px 35px;
    border-radius: 0 25px 0 25px;
    text-align: center;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(226, 199, 167, 0.1), transparent);
    transition: 0.6s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-glow);
    box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.5);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 25px;
    display: inline-block;
    transition: 0.4s;
    filter: drop-shadow(0 0 10px rgba(226, 199, 167, 0.3));
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(226, 199, 167, 0.6));
}

.feature-card h3 {
    font-size: 22px;
    color: var(--accent-glow);
    margin-bottom: 15px;
    font-weight: 400;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(243, 240, 235, 0.8);
    font-weight: 200;
}

/* --- CTA BÖLÜMÜ --- */
.cta-section {
    padding: 150px 5%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(226, 199, 167, 0.1) 0%, rgba(10, 11, 14, 0.9) 100%);
    border-top: 1px solid var(--border-subtle);
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1600948836101-f9ffda59d250?auto=format&fit=crop&q=80&w=1920') no-repeat center center/cover;
    filter: brightness(0.3) contrast(1.2);
    z-index: -1;
    opacity: 0.3;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-subtitle {
    display: block;
    font-size: 14px;
    letter-spacing: 6px;
    color: var(--accent-glow);
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-content h2 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-light);
    text-shadow: 0 0 30px rgba(226, 199, 167, 0.3);
}

.cta-content p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(243, 240, 235, 0.8);
    margin-bottom: 40px;
    font-weight: 200;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(45deg, rgba(226, 199, 167, 0.2), rgba(226, 199, 167, 0.1));
    border-color: var(--accent-glow);
    color: var(--accent-glow);
}

.btn-primary:hover {
    background: rgba(226, 199, 167, 0.15);
    box-shadow: 0 0 40px rgba(226, 199, 167, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border-color: rgba(243, 240, 235, 0.3);
    color: rgba(243, 240, 235, 0.8);
}

.btn-secondary:hover {
    border-color: var(--accent-glow);
    color: var(--accent-glow);
    background: rgba(226, 199, 167, 0.05);
}

/* --- İLETİŞİM BÖLÜMÜ --- */
.contact-section {
    padding: 120px 5%;
    position: relative;
}

.contact-wrapper,
.contact-wrapper-single {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-wrapper-single {
    display: block;
}

.contact-info h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--accent-glow);
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 18px;
    color: rgba(243, 240, 235, 0.8);
    margin-bottom: 50px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 0 10px 0 10px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: var(--accent-glow);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.contact-item p {
    color: rgba(243, 240, 235, 0.8);
    font-size: 16px;
    line-height: 1.6;
}

.contact-item a {
    color: rgba(243, 240, 235, 0.8);
    text-decoration: none;
    transition: 0.3s;
}

.contact-item a:hover {
    color: var(--accent-glow);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 0 10px 0 10px;
    text-decoration: none;
    font-size: 20px;
    transition: 0.3s;
}

.social-link:hover {
    border-color: var(--accent-glow);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px -5px rgba(226, 199, 167, 0.3);
}

/* --- FOOTER BÖLÜMÜ --- */
.site-footer {
    background: linear-gradient(180deg, rgba(10, 11, 14, 0.95) 0%, var(--bg-main) 100%);
    border-top: 1px solid var(--border-subtle);
    padding: 80px 5% 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
    opacity: 0.3;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    font-family: 'Cinzel Decorative', serif;
    font-size: 32px;
    letter-spacing: 3px;
    color: var(--text-light);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
    position: relative;
    transition: 0.3s;
}

.footer-logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40%;
    height: 1px;
    background: var(--accent-glow);
    box-shadow: 0 0 10px var(--accent-glow);
    transition: 0.3s;
}

.footer-logo:hover {
    color: var(--accent-glow);
}

.footer-logo:hover::after {
    width: 100%;
}

.footer-description {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(243, 240, 235, 0.7);
    margin-bottom: 30px;
    font-weight: 200;
}

.footer-social {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--surface-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 0 12px 0 12px;
    color: rgba(243, 240, 235, 0.7);
    text-decoration: none;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-social-link svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.footer-social-link span {
    font-size: 12px;
    font-weight: 600;
}

.footer-social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(226, 199, 167, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: 0.4s;
    border-radius: 50%;
}

.footer-social-link:hover {
    border-color: var(--accent-glow);
    color: var(--accent-glow);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(226, 199, 167, 0.3);
    background: rgba(226, 199, 167, 0.05);
}

.footer-social-link:hover::before {
    width: 150px;
    height: 150px;
}

.footer-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 20px;
    color: var(--accent-glow);
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 1px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: rgba(243, 240, 235, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-menu a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: 0.3s;
    color: var(--accent-glow);
}

.footer-menu a:hover {
    color: var(--accent-glow);
    padding-left: 20px;
}

.footer-menu a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: rgba(243, 240, 235, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--accent-glow);
    opacity: 0.7;
}

.footer-contact a {
    color: rgba(243, 240, 235, 0.7);
    text-decoration: none;
    transition: 0.3s;
}

.footer-contact a:hover {
    color: var(--accent-glow);
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding: 30px 0;
    margin-top: 40px;
}

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

.footer-copyright,
.footer-credit {
    font-size: 13px;
    color: rgba(243, 240, 235, 0.5);
    margin: 0;
}

.footer-credit a {
    color: rgba(243, 240, 235, 0.7);
    text-decoration: none;
    transition: 0.3s;
}

.footer-credit a:hover {
    color: var(--accent-glow);
}

/* --- SABİT İLETİŞİM BUTONLARI --- */
.fixed-contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 98;
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fixed-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 20px;
    background: var(--surface-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    width: 60px;
    height: 60px;
    min-width: 60px;
}

.fixed-btn .btn-label {
    display: none;
}

.fixed-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}

.fixed-btn:hover::before {
    left: 100%;
}

.fixed-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.fixed-btn svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.fixed-btn:hover svg {
    transform: scale(1.1);
}

.fixed-btn-call {
    background: linear-gradient(135deg, rgba(226, 199, 167, 0.15), rgba(226, 199, 167, 0.05));
    border-color: var(--accent-glow);
    color: var(--accent-glow);
}

.fixed-btn-call:hover {
    background: rgba(226, 199, 167, 0.2);
    border-color: var(--accent-glow);
    box-shadow: 0 8px 25px rgba(226, 199, 167, 0.4);
}

.fixed-btn-whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(37, 211, 102, 0.05));
    border-color: #25D366;
    color: #25D366;
}

.fixed-btn-whatsapp:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: #25D366;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-label {
    white-space: nowrap;
}

/* --- YUKARI ÇIK BUTONU --- */
.scroll-to-top {
    position: fixed;
    bottom: 195px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--surface-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    color: var(--accent-glow);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    border-color: var(--accent-glow);
    background: rgba(226, 199, 167, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(226, 199, 167, 0.3);
}

.scroll-to-top svg {
    transition: transform 0.3s ease;
}

.scroll-to-top:hover svg {
    transform: translateY(-3px);
}

/* Mobil Menü */
.main-nav {
    transition: 0.3s ease;
}

.main-nav.active {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 11, 14, 0.85);
    backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
    padding: 80px 20px;
}

.main-nav.active ul {
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.main-nav.active a {
    font-size: 18px;
    opacity: 1;
    padding: 15px 0;
    display: block;
    transition: 0.3s;
}

.main-nav.active a:hover {
    color: var(--accent-glow);
    transform: translateX(5px);
}

/* Responsive Ayarlar */
@media (max-width: 900px) {
    header { 
        padding: 20px; 
        flex-wrap: wrap; 
        background: rgba(10, 11, 14, 0.95) !important;
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    }
    header.scrolled {
        background: rgba(10, 11, 14, 0.98) !important;
    }
    .mobile-menu-toggle { display: flex; }
    .main-nav { display: none; }
    .main-nav.active { display: flex; }
    .language-switcher {
        margin-left: auto;
        order: 2;
        margin-right: 15px;
    }
    .hero h1 { font-size: 3rem; }
    .intro-section { flex-direction: column; padding: 80px 5%; gap: 30px; }
    .intro-big-text { font-size: 50px; }
    .services-wrapper { flex-direction: column; }
    .stats-wrapper { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .testimonials-wrapper { grid-template-columns: 1fr; }
    .testimonials-header-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .testimonials-subtitle-wrapper {
        margin-top: 20px;
    }
    .testimonials-main-title::before,
    .testimonials-main-title::after {
        display: none;
    }
    .features-wrapper { grid-template-columns: 1fr; gap: 30px; }
    .features-header-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .features-subtitle-wrapper {
        margin-top: 20px;
    }
    .features-main-title::before,
    .features-main-title::after {
        display: none;
    }
    .location-header-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .location-subtitle-wrapper {
        margin-top: 20px;
    }
    .location-main-title::before,
    .location-main-title::after {
        display: none;
    }
    .location-info-card {
        padding: 25px 30px;
    }
    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn-glow { width: 100%; text-align: center; }
    .scroll-indicator { bottom: 20px; }
    .fixed-contact-buttons { bottom: 20px; right: 20px; gap: 12px; }
    .fixed-btn { width: 50px; height: 50px; padding: 0; font-size: 12px; }
    .btn-label { display: none; }
    .fixed-btn svg { margin: 0; }
    .scroll-to-top { bottom: 155px; right: 20px; width: 45px; height: 45px; }
    .section-header h2::before,
    .section-header h2::after { display: none; }
    .gallery-header-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .gallery-subtitle-wrapper {
        margin-top: 20px;
    }
    .gallery-main-title::before,
    .gallery-main-title::after {
        display: none;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .loader-logo { font-size: 36px; letter-spacing: 4px; }
    .contact-wrapper,
    .contact-wrapper-single { padding: 0 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom-content { flex-direction: column; text-align: center; }
    .footer-brand { max-width: 100%; }
}

/* --- TEKİL YAZI SAYFASI --- */
.single-post-page {
    padding: 150px 5% 100px;
    max-width: 900px;
    margin: 0 auto;
}

.post-header {
    margin-bottom: 60px;
}

.post-featured-image {
    margin-bottom: 40px;
    border-radius: 0 20px 0 20px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-header-content {
    text-align: center;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: rgba(243, 240, 235, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.post-meta a {
    color: var(--accent-glow);
    text-decoration: none;
}

.post-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 0;
}

.post-content-wrapper {
    margin-top: 60px;
}

.post-content {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(243, 240, 235, 0.9);
}

.post-content p {
    margin-bottom: 25px;
}

.post-content h2,
.post-content h3 {
    color: var(--accent-glow);
    margin-top: 40px;
    margin-bottom: 20px;
}

.post-tags {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-subtle);
    font-size: 14px;
    color: rgba(243, 240, 235, 0.7);
}

.post-tags a {
    color: var(--accent-glow);
    text-decoration: none;
    margin-left: 10px;
}

.post-navigation {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.post-navigation a {
    color: var(--accent-glow);
    text-decoration: none;
    transition: 0.3s;
}

.post-navigation a:hover {
    opacity: 0.7;
}

.nav-subtitle {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    opacity: 0.7;
}

/* --- SAYFA ŞABLONU --- */
.page-content {
    padding: 150px 5% 100px;
    max-width: 900px;
    margin: 0 auto;
}

.page-featured-image {
    margin-bottom: 50px;
    border-radius: 0 20px 0 20px;
    overflow: hidden;
}

.page-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--accent-glow);
    line-height: 1.2;
}

.page-content-text {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(243, 240, 235, 0.9);
}

/* --- ARŞİV SAYFASI --- */
.archive-page {
    padding: 150px 5% 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.archive-header {
    text-align: center;
    margin-bottom: 80px;
}

.archive-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--accent-glow);
    margin-bottom: 20px;
}

.archive-description {
    font-size: 18px;
    color: rgba(243, 240, 235, 0.8);
}

.archive-posts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.archive-post-card {
    background: var(--surface-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 0 20px 0 20px;
    overflow: hidden;
    transition: 0.4s;
}

.archive-post-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-glow);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.archive-post-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.archive-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.archive-post-card:hover .archive-post-image img {
    transform: scale(1.1);
}

.archive-post-content {
    padding: 30px;
}

.archive-post-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: rgba(243, 240, 235, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.archive-post-meta a {
    color: var(--accent-glow);
    text-decoration: none;
}

.archive-post-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.archive-post-title a {
    color: var(--text-light);
    text-decoration: none;
    transition: 0.3s;
}

.archive-post-title a:hover {
    color: var(--accent-glow);
}

.archive-post-excerpt {
    color: rgba(243, 240, 235, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.archive-read-more {
    display: inline-block;
    margin-top: 10px;
}

.archive-pagination {
    margin-top: 60px;
    text-align: center;
}

.archive-pagination .page-numbers {
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.archive-pagination a,
.archive-pagination span {
    padding: 10px 15px;
    background: var(--surface-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 0 10px 0 10px;
    color: var(--text-light);
    text-decoration: none;
    transition: 0.3s;
}

.archive-pagination a:hover,
.archive-pagination .current {
    border-color: var(--accent-glow);
    color: var(--accent-glow);
}

/* --- ARAMA SAYFASI --- */
.search-page {
    padding: 150px 5% 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.search-header {
    text-align: center;
    margin-bottom: 80px;
}

.search-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--accent-glow);
    margin-bottom: 15px;
}

.search-title span {
    color: var(--text-light);
}

.search-results-count {
    font-size: 16px;
    color: rgba(243, 240, 235, 0.7);
}

.search-results {
    display: grid;
    gap: 40px;
    margin-bottom: 60px;
}

.search-result-card {
    background: var(--surface-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 0 20px 0 20px;
    padding: 30px;
    display: flex;
    gap: 30px;
    transition: 0.4s;
}

.search-result-card:hover {
    transform: translateX(10px);
    border-color: var(--accent-glow);
}

.search-result-image {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
    border-radius: 0 15px 0 15px;
    overflow: hidden;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-content {
    flex: 1;
}

.search-result-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: rgba(243, 240, 235, 0.6);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.search-result-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.search-result-title a {
    color: var(--text-light);
    text-decoration: none;
    transition: 0.3s;
}

.search-result-title a:hover {
    color: var(--accent-glow);
}

.search-result-excerpt {
    color: rgba(243, 240, 235, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.search-read-more {
    display: inline-block;
}

.search-pagination {
    margin-top: 60px;
    text-align: center;
}

.no-search-results {
    text-align: center;
    padding: 80px 20px;
}

.no-search-results p {
    font-size: 18px;
    color: rgba(243, 240, 235, 0.8);
    margin-bottom: 40px;
}

.search-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.search-form-wrapper form {
    display: flex;
    gap: 10px;
}

.search-form-wrapper input[type="search"] {
    flex: 1;
    padding: 15px 20px;
    background: var(--surface-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 0 10px 0 10px;
    color: var(--text-light);
    font-family: 'Manrope', sans-serif;
}

.search-form-wrapper input[type="submit"] {
    padding: 15px 30px;
    background: transparent;
    border: 1px solid var(--accent-glow);
    border-radius: 0 10px 0 10px;
    color: var(--accent-glow);
    cursor: pointer;
    transition: 0.3s;
}

.search-form-wrapper input[type="submit"]:hover {
    background: rgba(226, 199, 167, 0.1);
}

/* --- 404 SAYFASI --- */
.error-404-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 5%;
}

.error-404-content {
    text-align: center;
    max-width: 600px;
}

.error-404-number {
    font-size: clamp(8rem, 15vw, 12rem);
    font-family: 'Cinzel Decorative', serif;
    color: var(--accent-glow);
    line-height: 1;
    margin-bottom: 30px;
    text-shadow: 0 0 30px rgba(226, 199, 167, 0.3);
    opacity: 0.3;
}

.error-404-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-light);
    margin-bottom: 20px;
}

.error-404-description {
    font-size: 18px;
    color: rgba(243, 240, 235, 0.8);
    margin-bottom: 40px;
    line-height: 1.8;
}

.error-404-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.no-posts {
    text-align: center;
    padding: 100px 20px;
    color: rgba(243, 240, 235, 0.7);
    font-size: 18px;
}

/* --- BLOG ARŞİV SAYFASI --- */
.blog-archive-page {
    padding: 150px 5% 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-header {
    text-align: center;
    margin-bottom: 80px;
}

.blog-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--accent-glow);
    margin-bottom: 15px;
}

.blog-description {
    font-size: 18px;
    color: rgba(243, 240, 235, 0.8);
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.blog-post-card {
    background: var(--surface-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 0 20px 0 20px;
    overflow: hidden;
    transition: 0.4s;
}

.blog-post-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-glow);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.blog-post-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.1);
}

.blog-post-content {
    padding: 30px;
}

.blog-post-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: rgba(243, 240, 235, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.blog-post-meta a {
    color: var(--accent-glow);
    text-decoration: none;
}

.blog-post-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.blog-post-title a {
    color: var(--text-light);
    text-decoration: none;
    transition: 0.3s;
}

.blog-post-title a:hover {
    color: var(--accent-glow);
}

.blog-post-excerpt {
    color: rgba(243, 240, 235, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.blog-read-more {
    display: inline-block;
    margin-top: 10px;
}

.blog-pagination {
    margin-top: 60px;
    text-align: center;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.blog-pagination a,
.blog-pagination span {
    padding: 10px 15px;
    background: var(--surface-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 0 10px 0 10px;
    color: var(--text-light);
    text-decoration: none;
    transition: 0.3s;
}

.blog-pagination a:hover,
.blog-pagination .current {
    border-color: var(--accent-glow);
    color: var(--accent-glow);
}

/* Responsive - Sayfa Şablonları */
@media (max-width: 900px) {
    .single-post-page,
    .page-content,
    .archive-page,
    .search-page {
        padding: 120px 5% 80px;
    }
    .archive-posts {
        grid-template-columns: 1fr;
    }
    .search-result-card {
        flex-direction: column;
    }
    .search-result-image {
        width: 100%;
        height: 200px;
    }
    .post-navigation {
        flex-direction: column;
    }
    .error-404-actions {
        flex-direction: column;
    }
    .error-404-actions .btn-glow {
        width: 100%;
    }
    .blog-archive-page {
        padding: 120px 5% 80px;
    }
    .blog-posts {
        grid-template-columns: 1fr;
    }
}

/* --- GALERİ SAYFASI --- */
.gallery-page {
    padding: 150px 5% 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-page-header {
    text-align: center;
    margin-bottom: 80px;
}

.gallery-page-subtitle {
    display: block;
    font-size: 14px;
    letter-spacing: 6px;
    color: var(--accent-glow);
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.gallery-page-header h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 20px;
}

.gallery-page-header p {
    font-size: 18px;
    color: rgba(243, 240, 235, 0.8);
}

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-page-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 0 20px 0 20px;
    cursor: pointer;
}

.gallery-page-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-color: rgba(10, 11, 14, 0.5);
}

.gallery-page-image.lazy-load {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-page-image.lazy-load.loaded {
    opacity: 1;
}

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

.gallery-page-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(10, 11, 14, 0.95), transparent);
    transform: translateY(100%);
    transition: transform 0.4s;
}

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

.gallery-page-overlay span {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-glow);
}

@media (max-width: 900px) {
    .gallery-page {
        padding: 120px 5% 80px;
    }
    .gallery-page-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* --- DENEYİM SAYFASI --- */
.experience-page {
    padding-top: 0;
    min-height: 100vh;
}

.experience-hero {
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(226, 199, 167, 0.1) 0%, rgba(10, 11, 14, 0.9) 100%);
    border-bottom: 1px solid var(--border-subtle);
    padding-top: 80px;
}

.experience-hero-content {
    text-align: center;
    z-index: 2;
}

.experience-subtitle {
    display: block;
    font-size: 14px;
    letter-spacing: 6px;
    color: var(--accent-glow);
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.experience-hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--text-light);
    line-height: 1.2;
}

.experience-content-section {
    padding: 120px 5%;
}

.experience-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.experience-big-text {
    flex: 1;
    font-family: 'Cinzel Decorative';
    font-size: 4vw;
    line-height: 1.2;
    color: #ffffff;
    opacity: 1;
}

.experience-content {
    flex: 1;
}

.experience-content h2 {
    color: var(--accent-glow);
    font-size: 32px;
    margin-bottom: 30px;
}

.experience-text {
    font-size: 18px;
    font-weight: 200;
    color: rgba(243, 240, 235, 0.8);
    line-height: 1.9;
}

.experience-features {
    padding: 100px 5%;
    background: linear-gradient(180deg, transparent 0%, rgba(226, 199, 167, 0.03) 50%, transparent 100%);
}

.experience-stats {
    padding: 100px 5%;
    background: linear-gradient(135deg, rgba(226, 199, 167, 0.05) 0%, transparent 100%);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

/* --- SANATIMIZ SAYFASI --- */
.art-page {
    padding-top: 0;
    min-height: 100vh;
}

.art-hero {
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(226, 199, 167, 0.1) 0%, rgba(10, 11, 14, 0.9) 100%);
    border-bottom: 1px solid var(--border-subtle);
    padding-top: 80px;
}

.art-hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 5%;
}

.art-subtitle {
    display: block;
    font-size: 14px;
    letter-spacing: 6px;
    color: var(--accent-glow);
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.art-hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 20px;
}

.art-hero p {
    font-size: 18px;
    color: rgba(243, 240, 235, 0.8);
}

.art-gallery-section {
    padding: 120px 5%;
}

.art-services-summary {
    padding: 100px 5%;
    background: linear-gradient(180deg, transparent 0%, rgba(226, 199, 167, 0.03) 50%, transparent 100%);
}

/* --- İLETİŞİM SAYFASI --- */
.contact-page {
    padding-top: 0;
    min-height: 100vh;
}

.contact-page-hero {
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(226, 199, 167, 0.1) 0%, rgba(10, 11, 14, 0.9) 100%);
    border-bottom: 1px solid var(--border-subtle);
    padding-top: 80px;
}

.contact-page-hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 5%;
}

.contact-page-subtitle {
    display: block;
    font-size: 14px;
    letter-spacing: 6px;
    color: var(--accent-glow);
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-page-hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 20px;
}

.contact-page-hero p {
    font-size: 18px;
    color: rgba(243, 240, 235, 0.8);
}

.contact-page-content {
    padding: 100px 5%;
}

.contact-page-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info-section {
    margin-bottom: 80px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-info-card {
    background: var(--surface-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 0 20px 0 20px;
    padding: 40px 30px;
    text-align: center;
    transition: 0.4s;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-glow);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.contact-info-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(226, 199, 167, 0.3));
}

.contact-info-card h3 {
    font-size: 20px;
    color: var(--accent-glow);
    margin-bottom: 15px;
}

.contact-info-card p {
    color: rgba(243, 240, 235, 0.8);
    line-height: 1.8;
    font-size: 16px;
}

.contact-info-card a {
    color: var(--accent-glow);
    text-decoration: none;
    transition: 0.3s;
}

.contact-info-card a:hover {
    opacity: 0.7;
}

.contact-social-section {
    text-align: center;
    padding: 50px 0;
    border-top: 1px solid var(--border-subtle);
}

.contact-social-section h3 {
    font-size: 24px;
    color: var(--accent-glow);
    margin-bottom: 30px;
}

.contact-social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--surface-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 0 15px 0 15px;
    color: var(--text-light);
    text-decoration: none;
    transition: 0.3s;
}

.contact-social-link:hover {
    border-color: var(--accent-glow);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(226, 199, 167, 0.3);
}

.contact-social-link svg {
    flex-shrink: 0;
}

.contact-social-link span {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-map-section {
    margin-top: 60px;
}

.contact-map-title {
    font-size: 24px;
    color: var(--accent-glow);
    margin-bottom: 30px;
    text-align: center;
}

.contact-map-wrapper {
    background: var(--surface-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 0 20px 0 20px;
    overflow: hidden;
}

.contact-map-wrapper iframe {
    display: block;
    width: 100%;
}

#contact-location-map {
    border-radius: 0 20px 0 20px;
}

/* --- KONUMUMUZ BÖLÜMÜ (ANA SAYFA) --- */
.location-section {
    padding: 120px 5%;
    background: linear-gradient(180deg, transparent 0%, rgba(226, 199, 167, 0.03) 50%, transparent 100%);
}

.location-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.location-header-center {
    text-align: center;
    position: relative;
    width: 100%;
}

.location-main-title {
    font-size: clamp(3rem, 7vw, 6rem);
    color: var(--text-light);
    line-height: 1.1;
    font-weight: 400;
    position: relative;
    display: inline-block;
    margin: 0;
}

.location-main-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -80px;
    width: 50px;
    height: 1px;
    background: var(--accent-glow);
    opacity: 0.4;
    transform: translateY(-50%);
}

.location-main-title::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -80px;
    width: 50px;
    height: 1px;
    background: var(--accent-glow);
    opacity: 0.4;
    transform: translateY(-50%);
}

.location-subtitle-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    gap: 15px;
}

.location-subtitle-left {
    font-size: 14px;
    letter-spacing: 4px;
    color: var(--text-light);
    text-transform: uppercase;
    opacity: 0.9;
    font-weight: 400;
}

.location-subtitle-line {
    width: 60px;
    height: 1px;
    background: var(--accent-glow);
    opacity: 0.6;
}

.location-content {
    max-width: 1400px;
    margin: 0 auto;
}

.location-info {
    margin-bottom: 40px;
    text-align: center;
}

.location-info-card {
    display: inline-block;
    background: var(--surface-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 0 20px 0 20px;
    padding: 30px 50px;
    text-align: center;
}

.location-info-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: inline-block;
}

.location-info-card h3 {
    font-size: 20px;
    color: var(--accent-glow);
    margin-bottom: 10px;
}

.location-info-card p {
    color: rgba(243, 240, 235, 0.8);
    font-size: 16px;
}

.location-map-wrapper {
    background: var(--surface-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 0 20px 0 20px;
    overflow: hidden;
}

.location-map-wrapper iframe {
    display: block;
    width: 100%;
}

#location-map {
    border-radius: 0 20px 0 20px;
}

/* --- HAKKIMIZDA SAYFASI --- */
.about-page {
    padding-top: 0;
    min-height: 100vh;
}

.about-hero {
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(226, 199, 167, 0.1) 0%, rgba(10, 11, 14, 0.9) 100%);
    border-bottom: 1px solid var(--border-subtle);
    padding-top: 80px;
}

.about-hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 5%;
}

.about-subtitle {
    display: block;
    font-size: 14px;
    letter-spacing: 6px;
    color: var(--accent-glow);
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 18px;
    color: rgba(243, 240, 235, 0.8);
}

.about-content-section {
    padding: 120px 5%;
}

.about-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-big-text {
    flex: 1;
    font-family: 'Cinzel Decorative';
    font-size: 4vw;
    line-height: 1.2;
    color: var(--accent-glow);
    -webkit-text-stroke: 1px var(--accent-glow);
    opacity: 0.6;
    text-shadow: 0 0 20px rgba(226, 199, 167, 0.3);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    color: var(--accent-glow);
    font-size: 32px;
    margin-bottom: 30px;
}

.about-text {
    font-size: 18px;
    font-weight: 200;
    color: rgba(243, 240, 235, 0.8);
    line-height: 1.9;
}

.about-mission-vision {
    padding: 100px 5%;
    background: linear-gradient(180deg, transparent 0%, rgba(226, 199, 167, 0.03) 50%, transparent 100%);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-card,
.vision-card {
    background: var(--surface-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 0 25px 0 25px;
    padding: 50px 40px;
    text-align: center;
    transition: 0.4s;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-glow);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.mission-icon,
.vision-icon {
    font-size: 48px;
    margin-bottom: 25px;
    display: inline-block;
}

.mission-card h3,
.vision-card h3 {
    font-size: 24px;
    color: var(--accent-glow);
    margin-bottom: 20px;
}

.mission-card p,
.vision-card p {
    color: rgba(243, 240, 235, 0.8);
    line-height: 1.9;
    font-size: 16px;
}

.about-values {
    padding: 100px 5%;
}

.about-values-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-values-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--accent-glow);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    background: var(--surface-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 0 20px 0 20px;
    padding: 40px 30px;
    text-align: center;
    transition: 0.4s;
}

.value-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-glow);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.4);
}

.value-number {
    font-family: 'Cinzel Decorative', serif;
    font-size: 48px;
    color: var(--accent-glow);
    opacity: 0.3;
    margin-bottom: 20px;
    line-height: 1;
}

.value-item h4 {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.value-item p {
    color: rgba(243, 240, 235, 0.8);
    line-height: 1.8;
    font-size: 15px;
}

.about-stats {
    padding: 100px 5%;
    background: linear-gradient(135deg, rgba(226, 199, 167, 0.05) 0%, transparent 100%);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

/* Responsive - Yeni Sayfalar */
@media (max-width: 900px) {
    .experience-hero,
    .art-hero,
    .contact-page-hero,
    .about-hero {
        height: 50vh;
        min-height: 300px;
        padding-top: 70px;
    }
    .about-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .about-big-text {
        font-size: 50px;
    }
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .experience-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .experience-big-text {
        font-size: 50px;
    }
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    .contact-social-links {
        flex-direction: column;
    }
    .contact-social-link {
        width: 100%;
        justify-content: center;
    }
}

/* --- RANDEVU SAYFASI --- */
.appointment-page {
    padding: 150px 5% 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.appointment-header {
    text-align: center;
    margin-bottom: 80px;
}

.appointment-subtitle {
    display: block;
    font-size: 14px;
    letter-spacing: 6px;
    color: var(--accent-glow);
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.appointment-header h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 20px;
}

.appointment-header p {
    font-size: 18px;
    color: rgba(243, 240, 235, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.appointment-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-top: 60px;
}

/* Randevu İçin Bizi Arayın Bölümü - Üstte */
.appointment-call-section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 60px;
    padding: 0 5%;
}

.appointment-call-section .appointment-call-message {
    background: var(--surface-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 0 30px 0 30px;
    padding: 50px;
}

/* Hizmetler Bölümü - Tam Genişlikte */
.appointment-services-section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 60px;
    padding: 0 5%;
}

.appointment-form-section {
    background: var(--surface-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 0 30px 0 30px;
    padding: 50px;
}

.appointment-call-message {
    text-align: center;
    padding: 40px 20px;
}

.appointment-call-section .appointment-call-message {
    padding: 50px 40px;
}

.call-message-icon {
    font-size: 80px;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.appointment-call-message h2 {
    font-size: 32px;
    color: var(--accent-glow);
    margin-bottom: 20px;
    font-family: 'Cinzel Decorative', serif;
}

.appointment-call-message > p {
    font-size: 18px;
    color: rgba(243, 240, 235, 0.9);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-call-appointment {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-call-appointment:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(170, 74, 226, 0.4);
}

.call-message-info {
    background: rgba(226, 199, 167, 0.05);
    border: 1px solid rgba(226, 199, 167, 0.2);
    border-radius: 0 20px 0 20px;
    padding: 30px;
    margin-top: 30px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.call-message-info p {
    font-size: 18px;
    color: var(--accent-glow);
    margin-bottom: 20px;
    font-weight: 600;
}

.call-message-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.call-message-info ul li {
    font-size: 16px;
    color: rgba(243, 240, 235, 0.9);
    line-height: 2;
    padding-left: 0;
}

/* Hizmetler Bölümü */
.appointment-services-section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 60px;
    padding: 60px 5%;
    background: var(--surface-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 0 30px 0 30px;
}

.services-section-title {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--accent-glow);
    text-align: center;
    margin-bottom: 15px;
    font-family: 'Cinzel Decorative', serif;
}

.services-section-subtitle {
    text-align: center;
    font-size: 16px;
    color: rgba(243, 240, 235, 0.8);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-category {
    background: rgba(10, 11, 14, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 0 25px 0 25px;
    padding: 40px;
    transition: 0.4s;
}

.service-category:hover {
    border-color: var(--accent-glow);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.service-category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
}

.service-category-icon {
    font-size: 40px;
    line-height: 1;
}

.service-category h3 {
    font-size: 24px;
    color: var(--accent-glow);
    margin: 0;
    font-family: 'Cinzel Decorative', serif;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.service-list li {
    font-size: 15px;
    color: rgba(243, 240, 235, 0.9);
    padding: 12px 15px;
    background: rgba(10, 11, 14, 0.4);
    border-radius: 0 10px 0 10px;
    border-left: 3px solid transparent;
    transition: 0.3s;
    position: relative;
    padding-left: 35px;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 12px;
    color: var(--accent-glow);
    font-weight: bold;
}

.service-list li:hover {
    border-left-color: var(--accent-glow);
    background: rgba(226, 199, 167, 0.05);
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-category {
        padding: 25px;
    }
    
    .services-section-title {
        font-size: 28px;
    }
    
    .service-category h3 {
        font-size: 20px;
    }
    
    .service-list li {
        font-size: 14px;
        padding: 10px 12px;
        padding-left: 30px;
    }
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.form-group label {
    font-size: 14px;
    color: var(--accent-glow);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    background: rgba(10, 11, 14, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: 0 10px 0 10px;
    color: var(--text-light);
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    transition: 0.3s;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-glow);
    box-shadow: 0 0 15px rgba(226, 199, 167, 0.2);
    background: rgba(10, 11, 14, 0.8);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(243, 240, 235, 0.4);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23E2C7A7' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: rgba(243, 240, 235, 0.8);
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--accent-glow);
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-submit {
    margin-top: 20px;
    width: 100%;
    padding: 18px;
    font-size: 14px;
    cursor: pointer;
    border: none;
}

.form-success-message {
    text-align: center;
    padding: 60px 40px;
    background: var(--surface-glass);
    border: 1px solid var(--accent-glow);
    border-radius: 0 30px 0 30px;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: rgba(226, 199, 167, 0.2);
    border: 2px solid var(--accent-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--accent-glow);
}

.form-success-message h3 {
    font-size: 28px;
    color: var(--accent-glow);
    margin-bottom: 15px;
}

.form-success-message p {
    font-size: 16px;
    color: rgba(243, 240, 235, 0.8);
    line-height: 1.8;
}

.appointment-info-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: var(--surface-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 0 20px 0 20px;
    padding: 30px;
    transition: 0.4s;
}

.info-card:hover {
    border-color: var(--accent-glow);
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.info-icon {
    font-size: 32px;
    margin-bottom: 15px;
    display: inline-block;
}

.info-card h3 {
    font-size: 20px;
    color: var(--accent-glow);
    margin-bottom: 15px;
}

.info-card p {
    color: rgba(243, 240, 235, 0.8);
    line-height: 1.8;
    margin-bottom: 10px;
}

.info-phone {
    display: inline-block;
    font-size: 18px;
    color: var(--accent-glow);
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: 0.3s;
}

.info-phone:hover {
    opacity: 0.7;
}

.info-tips {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-tips li {
    color: rgba(243, 240, 235, 0.8);
    line-height: 1.8;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.info-tips li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-glow);
}

/* Responsive - Randevu Sayfası */
@media (max-width: 900px) {
    .appointment-page {
        padding: 120px 5% 80px;
    }
    .appointment-call-section {
        padding: 0 4%;
        margin-bottom: 40px;
    }
    .appointment-call-section .appointment-call-message {
        padding: 40px 25px;
    }
    .appointment-services-section {
        padding: 0 4%;
        margin-bottom: 40px;
    }
    .appointment-services-section {
        padding: 40px 4% !important;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .service-category {
        padding: 30px;
    }
    .appointment-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .appointment-form-section {
        padding: 30px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* --- YORUMLAR BÖLÜMÜ --- */
.comments-area {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--border-subtle);
}

.comments-title {
    font-size: 28px;
    color: var(--accent-glow);
    margin-bottom: 40px;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.comment-list li {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-subtle);
}

.comment-body {
    display: flex;
    gap: 20px;
}

.comment-author-avatar img {
    border-radius: 50%;
    border: 2px solid var(--border-subtle);
}

.comment-content {
    flex: 1;
}

.comment-author {
    font-size: 16px;
    color: var(--accent-glow);
    margin-bottom: 10px;
}

.comment-author a {
    color: var(--accent-glow);
    text-decoration: none;
}

.comment-metadata {
    font-size: 12px;
    color: rgba(243, 240, 235, 0.6);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comment-text {
    color: rgba(243, 240, 235, 0.9);
    line-height: 1.8;
}

.comment-reply-link {
    display: inline-block;
    margin-top: 15px;
    font-size: 12px;
    color: var(--accent-glow);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.comment-reply-link:hover {
    opacity: 0.7;
}

.comment-form {
    margin-top: 50px;
}

.comment-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-light);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--surface-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 0 10px 0 10px;
    color: var(--text-light);
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--accent-glow);
    box-shadow: 0 0 15px rgba(226, 199, 167, 0.2);
}

.comment-form textarea {
    min-height: 150px;
    resize: vertical;
}

.comment-form .form-submit {
    margin-top: 20px;
}

.no-comments {
    color: rgba(243, 240, 235, 0.7);
    font-style: italic;
    text-align: center;
    padding: 40px 20px;
}

/* Müşteri Yorumları Form Bölümü */
.testimonial-form-wrapper {
    max-width: 800px;
    margin: 80px auto 0;
    padding: 60px 40px;
    background: var(--surface-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 0 20px 0 20px;
    backdrop-filter: blur(10px);
}

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

.testimonial-form-header h3 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 32px;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 400;
}

.testimonial-form-header p {
    color: rgba(243, 240, 235, 0.7);
    font-size: 16px;
    font-weight: 300;
}

.testimonial-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

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

.testimonial-form label {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-form label .required {
    color: #ff6b6b;
}

.testimonial-form input[type="text"],
.testimonial-form textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: 0 10px 0 10px;
    color: var(--text-light);
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.testimonial-form input[type="text"]:focus,
.testimonial-form textarea:focus {
    outline: none;
    border-color: var(--accent-glow);
    box-shadow: 0 0 20px rgba(226, 199, 167, 0.3);
    background: rgba(20, 20, 20, 0.8);
}

.testimonial-form textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.8;
}

/* Rating Input Stilleri */
.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
    margin-top: 10px;
}

.rating-input input[type="radio"] {
    display: none;
}

.rating-input .star-label {
    font-size: 32px;
    color: rgba(243, 240, 235, 0.3);
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
}

.rating-input .star-label:hover,
.rating-input .star-label.active {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.rating-input input[type="radio"]:checked ~ .star-label,
.rating-input input[type="radio"]:checked + .star-label {
    color: #FFD700;
}

/* Hover efekti - seçilen yıldızın solundakileri de aktif et */
.rating-input:hover .star-label {
    color: rgba(255, 215, 0, 0.5);
}

.rating-input .star-label:hover ~ .star-label {
    color: rgba(255, 215, 0, 0.5);
}

/* Form Mesajları */
.form-message {
    padding: 15px 20px;
    border-radius: 0 10px 0 10px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.5);
    color: #4CAF50;
}

.form-message.error {
    display: block;
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.5);
    color: #f44336;
}

/* Submit Butonu */
.btn-submit-testimonial {
    padding: 18px 40px;
    background: linear-gradient(135deg, rgba(226, 199, 167, 0.1), rgba(226, 199, 167, 0.05));
    border: 1px solid var(--border-subtle);
    border-radius: 0 15px 0 15px;
    color: var(--text-light);
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    align-self: center;
    min-width: 200px;
}

.btn-submit-testimonial:hover {
    background: linear-gradient(135deg, rgba(226, 199, 167, 0.2), rgba(226, 199, 167, 0.1));
    border-color: var(--accent-glow);
    box-shadow: 0 0 25px rgba(226, 199, 167, 0.3);
    transform: translateY(-2px);
}

.btn-submit-testimonial:active {
    transform: translateY(0);
}

.btn-submit-testimonial:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Tüm Yorumları Görüntüle Butonu */
.testimonial-form-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-subtle);
}

.btn-view-all-testimonials {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: transparent;
    border: 2px solid var(--border-subtle);
    border-radius: 0 15px 0 15px;
    color: var(--text-light);
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view-all-testimonials:hover {
    border-color: var(--accent-glow);
    background: rgba(226, 199, 167, 0.05);
    box-shadow: 0 0 20px rgba(226, 199, 167, 0.2);
    transform: translateY(-2px);
}

.btn-view-all-testimonials .btn-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-view-all-testimonials:hover .btn-arrow {
    transform: translateX(5px);
}

/* Yorumlar Sayfası Stilleri */
.testimonials-page {
    min-height: 100vh;
}

.testimonials-page-hero {
    padding: 120px 20px 80px;
    text-align: center;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(20, 20, 20, 0.98));
    position: relative;
    overflow: hidden;
}

.testimonials-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(226, 199, 167, 0.05), transparent 70%);
    pointer-events: none;
}

.testimonials-page-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonials-page-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(243, 240, 235, 0.6);
    margin-bottom: 20px;
}

.testimonials-page-hero h1 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 48px;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.2;
    margin: 0;
}

.testimonials-page-content {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-page-wrapper {
    width: 100%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.testimonial-page-card {
    background: var(--surface-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 0 20px 0 20px;
    padding: 35px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.testimonial-page-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-glow);
    box-shadow: 0 10px 40px rgba(226, 199, 167, 0.15);
}

.testimonial-page-stars {
    font-size: 20px;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1;
}

.testimonial-page-text {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    flex-grow: 1;
    font-weight: 300;
}

.testimonial-page-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}

.testimonial-page-author strong {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 600;
}

.testimonial-page-author span {
    color: rgba(243, 240, 235, 0.6);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.testimonial-page-date {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(243, 240, 235, 0.4);
    font-size: 12px;
    font-weight: 500;
}

.no-testimonials {
    text-align: center;
    padding: 100px 20px;
    color: rgba(243, 240, 235, 0.6);
    font-size: 18px;
    font-style: italic;
}

.testimonials-page-form-section {
    padding: 80px 20px;
    background: rgba(20, 20, 20, 0.5);
    margin-top: 60px;
}

.testimonials-page-form-section .testimonial-form-wrapper {
    margin-top: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-form-wrapper {
        padding: 40px 20px;
        margin-top: 60px;
    }
    
    .testimonial-form-header h3 {
        font-size: 24px;
    }
    
    .rating-input .star-label {
        font-size: 28px;
    }
    
    .btn-submit-testimonial {
        width: 100%;
        min-width: auto;
    }
    
    .btn-view-all-testimonials {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
    }
    
    .testimonials-page-hero {
        padding: 100px 20px 60px;
    }
    
    .testimonials-page-hero h1 {
        font-size: 32px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 60px;
    }
    
    .testimonial-page-card {
        padding: 25px;
        min-height: auto;
    }
    
    .testimonials-page-content {
        padding: 60px 20px;
    }
    
    .testimonials-page-form-section {
        padding: 60px 20px;
    }
}
