/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --inci: #F8F6F2;
    --krem: #FAF8F5;
    --sampanya: #F5F0E8;
    --toprak: #8B7355;
    --toprak-acik: #A69076;
    --soft-mavi: #7BA3B5;
    --soft-mavi-hover: #5C8A9E;
    --siyah: #2C2C2C;
    --gri: #6B6B6B;
    --beyaz: #FFFFFF;
}

html, body {
    margin: 0 !important;
    padding: 0 !important;
    height: 100%;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--inci);
    color: var(--siyah);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-main {
    flex: 1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   HEADER
   ======================================== */
.galeri-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 0;
    margin: 0;
    transition: all 0.4s ease;
}

/* Diğer sayfalarda header */
body:not(.home) .galeri-header {
    background: #F8F6F2;
}

/* Diğer sayfalarda header yazıları */
body:not(.home) .galeri-nav a,
body:not(.home) .galeri-logo .site-title {
    color: var(--siyah);
}

body:not(.home) .galeri-nav a:hover {
    color: var(--toprak);
}

body:not(.home) .galeri-nav a::after {
    background: var(--soft-mavi);
}

body:not(.home) .lang-switcher a {
    color: var(--gri);
}

body:not(.home) .lang-switcher a:hover,
body:not(.home) .lang-switcher a.active {
    color: var(--toprak);
}

body:not(.home) .hamburger-menu span {
    background: var(--siyah);
}

/* Diğer sayfalarda header çizgisi */
body:not(.home) .galeri-header::after {
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--toprak-acik) 20%, 
        var(--toprak-acik) 80%, 
        transparent 100%
    );
    opacity: 0.3;
}

/* Diğer sayfalarda genel arka plan */
body:not(.home) {
    background: #F8F6F2;
}

/* Diğer sayfalarda footer */
body:not(.home) .galeri-footer {
    background: #F8F6F2;
    border-top: 1px solid rgba(139, 115, 85, 0.15);
}

body:not(.home) .galeri-footer,
body:not(.home) .footer-copyright,
body:not(.home) .footer-links a {
    color: var(--siyah);
}

body:not(.home) .footer-copyright {
    color: var(--gri);
}

body:not(.home) .footer-links a {
    color: var(--gri);
}

body:not(.home) .footer-links a:hover {
    color: var(--toprak);
}

body:not(.home) .footer-sosyal a {
    border-color: var(--toprak-acik);
    color: var(--toprak);
}

body:not(.home) .footer-sosyal a:hover {
    border-color: var(--toprak);
    color: var(--toprak);
}

body:not(.home) .footer-top {
    border-bottom-color: rgba(139, 115, 85, 0.15);
}

body.admin-bar .galeri-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .galeri-header {
        top: 46px;
    }
}

/* Header altı animasyonlu çizgi */
.galeri-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255,255,255,0.7) 20%, 
        rgba(255,255,255,0.7) 80%, 
        transparent 100%
    );
    animation: headerLine 3s ease-in-out infinite;
}

@keyframes headerLine {
    0% { opacity: 0.5; transform: scaleX(0.85); }
    50% { opacity: 1; transform: scaleX(1); }
    100% { opacity: 0.5; transform: scaleX(0.85); }
}

.galeri-header-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Logo */
.galeri-logo {
    display: flex;
    align-items: center;
}

.galeri-logo img {
    height: 45px;
    width: auto;
    transition: all 0.3s;
}

/* Ana sayfada beyaz logo göster, siyah gizle */
.home .galeri-logo .logo-white {
    display: block;
}

.home .galeri-logo .logo-dark {
    display: none;
}

/* Diğer sayfalarda siyah logo göster, beyaz gizle */
body:not(.home) .galeri-logo .logo-white {
    display: none;
}

body:not(.home) .galeri-logo .logo-dark {
    display: block;
}

.galeri-logo .site-title {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
}

/* Ana Menü */
.galeri-nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.galeri-nav a {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    padding: 5px 0;
    position: relative;
}

.galeri-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s;
}

.galeri-nav a:hover::after,
.galeri-nav a.aktif::after,
.galeri-nav a.current-menu-item::after {
    width: 100%;
}

/* Dil Seçici */
.lang-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lang-switcher a {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.lang-switcher a:hover,
.lang-switcher a.active {
    color: #fff;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    background: none;
    border: none;
}

.hamburger-menu span {
    width: 24px;
    height: 1.5px;
    background: #fff;
    transition: all 0.3s;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobil Menü */
.mobil-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.mobil-menu.active {
    display: flex;
}

.mobil-menu a {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
    padding: 10px 20px;
}

.mobil-menu a:hover {
    opacity: 0.6;
}

.mobil-lang {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
}

.mobil-lang a {
    font-size: 14px !important;
    letter-spacing: 2px !important;
    color: rgba(255,255,255,0.5) !important;
}

.mobil-lang a.active {
    color: #fff !important;
}

.mobil-lang span {
    color: rgba(255,255,255,0.3);
}

/* ========================================
   HERO SLIDER
   ======================================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #0a0a0a;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Desktop görsel göster, mobil gizle */
.slide-img-desktop {
    display: block;
}

.slide-img-mobile {
    display: none;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.05) 40%,
        rgba(0,0,0,0.5) 100%
    );
    pointer-events: none;
}

.slide-content {
    position: absolute;
    bottom: 140px;
    left: 60px;
    color: #fff;
    max-width: 700px;
    z-index: 50;
    pointer-events: auto;
}

.slide-content h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 52px;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slide-tarih {
    font-size: 12px;
    letter-spacing: 3px;
    opacity: 0.75;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.slide-link {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    padding: 14px 35px;
    border: 1px solid rgba(255,255,255,0.4);
    transition: all 0.4s;
    position: relative;
    z-index: 100;
    pointer-events: auto;
    cursor: pointer;
}

.slide-link:hover {
    background: var(--soft-mavi);
    color: #fff;
    border-color: var(--toprak);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 50px;
    left: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--soft-mavi);
    color: #fff;
    border-color: var(--toprak);
}

.slider-progress {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 20px;
}

.progress-dot {
    width: 30px;
    height: 2px;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.progress-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: #fff;
    transition: width 0.4s;
}

.progress-dot.active::after {
    width: 100%;
}

.slider-counter {
    position: absolute;
    bottom: 50px;
    right: 60px;
    color: #fff;
    font-size: 12px;
    letter-spacing: 3px;
    z-index: 10;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.slider-counter .current {
    font-size: 28px;
    font-weight: 300;
}

.slider-counter .total {
    opacity: 0.5;
}

/* ========================================
   SAYFA ŞABLONU
   ======================================== */
.page-wrapper {
    padding-top: 0;
}

.page-header {
    padding: 160px 60px 80px;
    background: var(--sampanya);
    color: var(--siyah);
    text-align: center;
}

.page-header h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.page-header .post-date {
    display: block;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--toprak);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.page-content h2,
.page-content h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
    letter-spacing: 4px;
    margin: 40px 0 20px;
}

.page-content h2 {
    font-size: 32px;
}

.page-content h3 {
    font-size: 24px;
}

.page-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 25px;
}

.page-content ul,
.page-content ol {
    margin: 0 0 25px 25px;
    color: #444;
}

.page-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.page-content img {
    margin: 30px 0;
}

/* ========================================
   BLOG - PİLEVNELİ TARZI
   ======================================== */
.blog-wrapper {
    padding-top: 140px;
    padding-bottom: 100px;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Blog Dekoratif Arka Plan */
.blog-bg-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.blog-bg-decor .decor-circle-1 {
    width: 550px;
    height: 550px;
    top: -150px;
    right: -150px;
    opacity: 0.5;
}

.blog-bg-decor .decor-circle-2 {
    width: 400px;
    height: 400px;
    bottom: 20%;
    left: -120px;
    opacity: 0.45;
}

.blog-bg-decor .decor-circle-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    right: 5%;
    opacity: 0.35;
}

.blog-bg-decor .decor-circle-4 {
    width: 220px;
    height: 220px;
    bottom: 10%;
    right: 20%;
    opacity: 0.3;
}

.blog-bg-decor .decor-line-1 {
    width: 1px;
    height: 60%;
    top: 20%;
    left: 12%;
    opacity: 0.4;
}

.blog-bg-decor .decor-line-2 {
    width: 1px;
    height: 50%;
    top: 30%;
    right: 15%;
    opacity: 0.4;
}

.blog-bg-decor .decor-line-3 {
    width: 60%;
    height: 1px;
    top: 45%;
    left: 20%;
    background: linear-gradient(90deg, transparent, var(--toprak-acik), transparent);
    opacity: 0.3;
}

/* Zigzag Layout */
.blog-zigzag {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
}

.blog-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.blog-item:last-child {
    margin-bottom: 0;
}

/* Sol hizalı - görsel solda */
.blog-item.align-left .blog-item-image {
    order: 1;
}

.blog-item.align-left .blog-item-content {
    order: 2;
}

/* Sağ hizalı - görsel sağda */
.blog-item.align-right .blog-item-image {
    order: 2;
}

.blog-item.align-right .blog-item-content {
    order: 1;
}

.blog-item-image {
    display: block;
    overflow: hidden;
    box-shadow: 20px 20px 40px rgba(198, 185, 167, 0.4);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.blog-item:hover .blog-item-image {
    box-shadow: 25px 25px 50px rgba(198, 185, 167, 0.5);
    transform: translateY(-3px);
}

.blog-item-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-item:hover .blog-item-image img {
    transform: scale(1.03);
}

.blog-item-content {
    padding: 20px 0;
}

.blog-item-date {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--toprak);
    margin-bottom: 20px;
}

.blog-item-content h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 20px;
}

.blog-item-content h2 a {
    color: var(--siyah);
}

.blog-item-content h2 a:hover {
    color: var(--toprak);
}

.blog-item-excerpt {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gri);
    margin-bottom: 30px;
}

.blog-item-link {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--siyah);
    padding-bottom: 5px;
    border-bottom: 1px solid var(--siyah);
    transition: all 0.3s ease;
}

.blog-item-link:hover {
    color: var(--toprak);
    border-color: var(--toprak);
}

.no-posts {
    text-align: center;
    padding: 60px;
    color: #888;
}

/* ========================================
   İLETİŞİM SAYFASI
   ======================================== */
.contact-page {
    padding-top: 140px;
    padding-bottom: 100px;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Dekoratif Arka Plan */
.contact-bg-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.contact-bg-decor .decor-circle-1 {
    width: 450px;
    height: 450px;
    top: -100px;
    right: -100px;
    opacity: 0.3;
}

.contact-bg-decor .decor-circle-2 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    left: -100px;
    opacity: 0.25;
}

.contact-bg-decor .decor-circle-3 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    opacity: 0.15;
}

.contact-bg-decor .decor-line-1 {
    width: 1px;
    height: 50%;
    top: 25%;
    left: 50%;
    opacity: 0.2;
}

.contact-bg-decor .decor-line-2 {
    width: 40%;
    height: 1px;
    top: 50%;
    left: 30%;
    background: linear-gradient(90deg, transparent, var(--toprak-acik), transparent);
    opacity: 0.15;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
}

/* Sol - İletişim Bilgileri */
.contact-info h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 30px;
    color: var(--siyah);
}

.contact-intro {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gri);
    margin-bottom: 50px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item {
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(139, 115, 85, 0.15);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-label {
    display: block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--toprak);
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--siyah);
}

.contact-item a {
    color: var(--siyah);
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--toprak);
}

/* Sağ - Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.5);
    padding: 50px;
    box-shadow: 20px 20px 40px rgba(198, 185, 167, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--toprak);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 1px solid rgba(139, 115, 85, 0.2);
    background: var(--inci);
    font-family: inherit;
    font-size: 15px;
    color: var(--siyah);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--toprak);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

.contact-submit {
    padding: 18px 40px;
    background: var(--siyah);
    color: #fff;
    border: 1px solid var(--siyah);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.contact-submit:hover {
    background: var(--toprak);
    border-color: var(--toprak);
}

/* Başarı Mesajı */
.form-success {
    text-align: center;
    padding: 60px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    border: 2px solid var(--toprak);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--toprak);
    margin: 0 auto 30px;
}

.form-success h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--siyah);
}

.form-success p {
    color: var(--gri);
    font-size: 15px;
}

/* ========================================
   TEKİL YAZI - PİLEVNELİ TARZI
   ======================================== */
.single-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    padding-top: 100px;
}

.single-left {
    padding: 60px 80px 60px 160px;
    display: flex;
    flex-direction: column;
}

.single-left h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 1.4;
    margin-bottom: 40px;
    color: var(--siyah);
}

.single-content {
    flex: 1;
}

.single-content p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--gri);
    margin-bottom: 20px;
}

.single-content a {
    color: var(--toprak);
    text-decoration: underline;
}

.single-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(139, 115, 85, 0.2);
}

.single-date {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--toprak);
}

.single-sep {
    color: var(--toprak-acik);
}

.single-author {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--toprak);
}

.single-right {
    position: sticky;
    top: 100px;
    height: calc(100vh - 100px);
    overflow: hidden;
}

.single-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   HAKKIMIZDA SAYFASI - SLIDER
   ======================================== */
.about-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #0a0a0a;
}

.about-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.about-slide.active {
    opacity: 1;
}

.about-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.05) 40%,
        rgba(0,0,0,0.5) 100%
    );
}

.about-slide-content {
    position: absolute;
    bottom: 140px;
    left: 60px;
    color: #fff;
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideContentIn 0.8s ease forwards;
    animation-delay: 0.3s;
}

.about-slide.active .about-slide-content {
    opacity: 1;
    transform: translateY(0);
}

@keyframes slideContentIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-slide-label {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.7;
    display: block;
    margin-bottom: 20px;
}

.about-slide-content h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 52px;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-slide-content p {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.85;
    max-width: 500px;
}

/* Slider Navigation */
.about-slider-nav {
    position: absolute;
    bottom: 50px;
    left: 60px;
    display: flex;
    gap: 10px;
}

.about-slider-btn {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-slider-btn:hover {
    background: var(--soft-mavi);
    border-color: var(--toprak);
}

/* Counter */
.about-slider-counter {
    position: absolute;
    bottom: 50px;
    right: 60px;
    color: #fff;
    font-size: 14px;
    letter-spacing: 2px;
}

.about-slider-counter .current {
    font-size: 28px;
    font-weight: 300;
}

.about-slider-counter .total {
    opacity: 0.5;
}

/* Progress Dots */
.about-slider-dots {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.about-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.about-dot.active {
    background: #fff;
    transform: scale(1.2);
}

.about-dot:hover {
    background: rgba(255,255,255,0.6);
}

/* Ekip Bölümü */
.team-section {
    padding: 100px 160px;
    background: var(--sampanya);
}

.team-header {
    margin-bottom: 60px;
    text-align: center;
}

.team-header h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #1a1a1a;
}

/* 2 Kişilik Grid */
.team-duo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
}

.team-member-image {
    overflow: hidden;
    margin-bottom: 30px;
    aspect-ratio: 4/5;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-member:hover .team-member-image img {
    transform: scale(1.03);
}

.team-member h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--siyah);
}

.team-member > span {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--toprak);
    display: block;
    margin-bottom: 20px;
}

.team-member-bio {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gri);
    margin-bottom: 30px;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.team-randevu-btn {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--siyah);
    padding: 14px 35px;
    border: 1px solid var(--siyah);
    background: transparent;
    cursor: pointer;
    transition: all 0.4s;
}

.team-randevu-btn:hover {
    background: var(--soft-mavi);
    color: #fff;
    border-color: var(--toprak);
}

/* ========================================
   SAYFA GEÇİŞ ANİMASYONU
   ======================================== */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-transition.active {
    opacity: 1;
    visibility: visible;
}

.transition-logo {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.6s ease, transform 0.6s ease;
    position: relative;
}

.page-transition.active .transition-logo {
    opacity: 1;
    transform: scale(1);
}

.transition-logo img {
    height: 50px;
    width: auto;
    position: relative;
    z-index: 2;
}

/* Logo etrafında asimetrik dönen çizgi */
.transition-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    margin-top: -60px;
    margin-left: -60px;
    border: 1px solid transparent;
    border-top-color: rgba(255,255,255,0.6);
    border-right-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    animation: spinArc 2s linear infinite;
    z-index: 1;
}

.transition-logo::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90px;
    height: 90px;
    margin-top: -45px;
    margin-left: -45px;
    border: 1px solid transparent;
    border-bottom-color: rgba(255,255,255,0.4);
    border-left-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: spinArcReverse 3s linear infinite;
    z-index: 1;
}

@keyframes spinArc {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinArcReverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

/* Sayfa yüklenirken başlangıç animasyonu */
.page-transition.loading {
    opacity: 1;
    visibility: visible;
}

.page-transition.loading .transition-logo {
    opacity: 1;
    transform: scale(1);
}

.page-transition.fade-out {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.page-transition.fade-out .transition-logo {
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ========================================
   EKİBİMİZ SAYFASI
   ======================================== */
.team-page {
    padding-top: 120px;
    padding-bottom: 100px;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* ========================================
   TEAM PAGE V2 - MODERN VERSİYON
   ======================================== */
.team-page-v2 {
    background: var(--inci);
    position: relative;
}

/* Arka Plan Desenleri */
.team-page-v2::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: 
        /* Büyük daireler */
        radial-gradient(circle at 5% 15%, transparent 0%, transparent 180px, rgba(166, 144, 118, 0.08) 180px, rgba(166, 144, 118, 0.08) 182px, transparent 182px),
        radial-gradient(circle at 95% 25%, transparent 0%, transparent 220px, rgba(166, 144, 118, 0.06) 220px, rgba(166, 144, 118, 0.06) 222px, transparent 222px),
        radial-gradient(circle at 90% 80%, transparent 0%, transparent 160px, rgba(166, 144, 118, 0.07) 160px, rgba(166, 144, 118, 0.07) 162px, transparent 162px),
        radial-gradient(circle at 8% 75%, transparent 0%, transparent 140px, rgba(166, 144, 118, 0.06) 140px, rgba(166, 144, 118, 0.06) 142px, transparent 142px),
        /* Küçük noktalar */
        radial-gradient(circle at 20% 30%, rgba(139, 115, 85, 0.12) 0%, rgba(139, 115, 85, 0.12) 3px, transparent 3px),
        radial-gradient(circle at 80% 20%, rgba(139, 115, 85, 0.1) 0%, rgba(139, 115, 85, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 70% 60%, rgba(139, 115, 85, 0.08) 0%, rgba(139, 115, 85, 0.08) 4px, transparent 4px),
        radial-gradient(circle at 25% 80%, rgba(139, 115, 85, 0.1) 0%, rgba(139, 115, 85, 0.1) 3px, transparent 3px),
        radial-gradient(circle at 60% 90%, rgba(139, 115, 85, 0.12) 0%, rgba(139, 115, 85, 0.12) 2px, transparent 2px),
        radial-gradient(circle at 85% 45%, rgba(139, 115, 85, 0.09) 0%, rgba(139, 115, 85, 0.09) 3px, transparent 3px),
        radial-gradient(circle at 15% 50%, rgba(139, 115, 85, 0.11) 0%, rgba(139, 115, 85, 0.11) 2px, transparent 2px),
        radial-gradient(circle at 45% 15%, rgba(139, 115, 85, 0.08) 0%, rgba(139, 115, 85, 0.08) 4px, transparent 4px);
}

/* Hero */
.team-hero {
    min-height: 45vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 40px 50px;
    position: relative;
    background: linear-gradient(180deg, var(--sampanya) 0%, var(--inci) 100%);
    z-index: 1;
}

.team-hero-content {
    max-width: 700px;
    padding-bottom: 40px;
}

.team-hero-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--toprak);
    margin-bottom: 25px;
    position: relative;
}

.team-hero-label::before,
.team-hero-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--toprak-acik);
}

.team-hero-label::before {
    right: calc(100% + 20px);
}

.team-hero-label::after {
    left: calc(100% + 20px);
}

.team-hero h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 52px;
    font-weight: 300;
    line-height: 1.2;
    color: var(--siyah);
    margin-bottom: 25px;
}

.team-hero h1 em {
    font-style: italic;
    color: var(--toprak);
}

.team-hero p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--gri);
    max-width: 500px;
    margin: 0 auto;
}

.team-hero-scroll {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.team-hero-scroll span {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--toprak-acik);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--toprak), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* Team Members Section */
.team-members {
    padding: 50px 60px 70px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.team-members-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* Single Team Member */
.team-member {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.team-member.visible {
    opacity: 1;
    transform: translateY(0);
}

.team-member:nth-child(even) {
    direction: rtl;
}

.team-member:nth-child(even) > * {
    direction: ltr;
}

/* Member Visual */
.member-visual {
    position: relative;
}

.member-image-wrapper {
    position: relative;
    z-index: 2;
}

.member-image-frame {
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid var(--toprak-acik);
    opacity: 0.4;
    z-index: 1;
}

.member-image-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    position: relative;
    z-index: 2;
    filter: grayscale(20%);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.team-member:hover .member-image-wrapper img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.member-decoration {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    z-index: 0;
    opacity: 0.8;
}

.member-blob {
    width: 100%;
    height: 100%;
    animation: blobFloat 8s ease-in-out infinite;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(10px, -10px) rotate(5deg); }
    66% { transform: translate(-5px, 5px) rotate(-3deg); }
}

/* Member Content */
.member-content {
    padding: 20px 0;
}

.member-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.member-number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 48px;
    font-weight: 300;
    color: var(--toprak-acik);
    opacity: 0.3;
    line-height: 1;
}

.member-title {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--toprak);
}

.member-content h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 42px;
    font-weight: 400;
    color: var(--siyah);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.member-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.member-specialties span {
    font-size: 11px;
    letter-spacing: 1px;
    padding: 8px 16px;
    background: rgba(139, 115, 85, 0.08);
    color: var(--toprak);
    border-radius: 2px;
}

.member-content p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--gri);
    margin-bottom: 25px;
}

.member-quote {
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 2px solid var(--toprak-acik);
}

.member-quote blockquote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 18px;
    font-style: italic;
    color: var(--siyah);
    line-height: 1.6;
}

.member-cta {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.member-cta .randevu-al-btn {
    color: var(--siyah);
    border-color: var(--siyah);
    padding: 16px 40px;
}

.member-cta .randevu-al-btn:hover {
    background: var(--siyah);
    color: #fff;
}

.member-more-btn {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    border: 1px solid var(--siyah);
    color: var(--siyah);
    text-decoration: none;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.member-more-btn:hover {
    background: var(--siyah);
    color: #fff;
}

/* Values Bar */
.team-values-bar {
    background: var(--siyah);
    padding: 40px 60px;
    position: relative;
    z-index: 1;
}

.values-bar-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.value-item {
    text-align: center;
}

.value-number {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 42px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 5px;
}

.value-text {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.value-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
}

/* Team CTA */
.team-cta {
    padding: 70px 60px;
    text-align: center;
    background: var(--sampanya);
    position: relative;
    z-index: 1;
}

.team-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.team-cta h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 36px;
    font-weight: 300;
    color: var(--siyah);
    margin-bottom: 20px;
    line-height: 1.3;
}

.team-cta p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gri);
    margin-bottom: 35px;
}

.team-cta-btn {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 18px 50px;
    background: var(--siyah);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-cta-btn:hover {
    background: var(--toprak);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 968px) {
    .team-hero h1 {
        font-size: 38px;
    }
    
    .team-member {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-member:nth-child(even) {
        direction: ltr;
    }
    
    .member-visual {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .member-content h2 {
        font-size: 32px;
    }
    
    .values-bar-content {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }
    
    .value-divider {
        display: none;
    }
    
    .value-item {
        flex: 0 0 40%;
    }
}

@media (max-width: 600px) {
    .team-hero {
        padding: 120px 25px 60px;
        min-height: 50vh;
    }
    
    .team-hero h1 {
        font-size: 32px;
    }
    
    .team-hero-label::before,
    .team-hero-label::after {
        display: none;
    }
    
    .team-members {
        padding: 50px 25px 70px;
    }
    
    .team-members-grid {
        gap: 80px;
    }
    
    .member-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .member-number {
        font-size: 36px;
    }
    
    .member-content h2 {
        font-size: 28px;
    }
    
    .member-specialties span {
        font-size: 10px;
        padding: 6px 12px;
    }
    
    .team-values-bar {
        padding: 40px 25px;
    }
    
    .value-number {
        font-size: 32px;
    }
    
    .team-cta {
        padding: 60px 25px;
    }
    
    .team-cta h2 {
        font-size: 28px;
    }
}

/* Dekoratif Arka Plan */
.team-bg-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.decor-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--toprak-acik);
}

.decor-circle-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    opacity: 0.35;
}

.decor-circle-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -150px;
    opacity: 0.3;
}

.decor-circle-3 {
    width: 250px;
    height: 250px;
    top: 40%;
    left: 5%;
    opacity: 0.25;
}

.decor-circle-4 {
    width: 180px;
    height: 180px;
    top: 20%;
    right: 10%;
    opacity: 0.2;
}

.decor-circle-5 {
    width: 300px;
    height: 300px;
    bottom: 20%;
    right: -100px;
    opacity: 0.28;
}

.decor-line {
    position: absolute;
    background: linear-gradient(180deg, transparent, var(--toprak-acik), transparent);
}

.decor-line-1 {
    width: 1px;
    height: 70%;
    top: 15%;
    left: 10%;
    opacity: 0.3;
}

.decor-line-2 {
    width: 1px;
    height: 60%;
    top: 25%;
    right: 15%;
    opacity: 0.3;
}

.decor-line-3 {
    width: 1px;
    height: 50%;
    top: 30%;
    left: 25%;
    opacity: 0.25;
}

.decor-line-4 {
    width: 1px;
    height: 55%;
    top: 20%;
    right: 30%;
    opacity: 0.25;
}

.decor-line-5 {
    width: 80%;
    height: 1px;
    top: 50%;
    left: 10%;
    background: linear-gradient(90deg, transparent, var(--toprak-acik), transparent);
    opacity: 0.2;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
}

.team-card {
    text-align: center;
}

.team-card-image {
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 25px 25px 50px rgba(198, 185, 167, 0.5), 
                -5px -5px 20px rgba(255, 255, 255, 0.8);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.team-card:hover .team-card-image {
    box-shadow: 30px 30px 60px rgba(198, 185, 167, 0.6), 
                -8px -8px 25px rgba(255, 255, 255, 0.9);
    transform: translateY(-5px);
}

.team-card-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.03);
}

.team-card-info {
    padding: 0 20px;
}

.team-card-title {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--toprak);
    margin-bottom: 10px;
    display: block;
}

.team-card-info h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--siyah);
    margin-bottom: 20px;
}

.team-card-info p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gri);
    margin-bottom: 25px;
}

.team-card-cta {
    margin-top: 10px;
}

.team-card-cta .randevu-al-btn {
    color: var(--siyah);
    border-color: var(--siyah);
}

.team-card-cta .randevu-al-btn:hover {
    background: var(--soft-mavi);
    color: #fff;
    border-color: var(--toprak);
}

/* ========================================
   FOOTER
   ======================================== */
.galeri-footer {
    background: #0a0a0a;
    color: #fff;
    padding: 60px 50px 40px;
}

.galeri-footer-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo img {
    height: 40px;
    width: auto;
    opacity: 0.9;
}

/* Footer'da ana sayfa beyaz, diğer sayfalar siyah logo */
.home .footer-logo .logo-white {
    display: block;
}

.home .footer-logo .logo-dark {
    display: none;
}

body:not(.home) .footer-logo .logo-white {
    display: none;
}

body:not(.home) .footer-logo .logo-dark {
    display: block;
}

.footer-sosyal {
    display: flex;
    gap: 15px;
}

.footer-sosyal a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    transition: all 0.3s;
}

.footer-sosyal a:hover {
    border-color: #fff;
    color: #fff;
}

.footer-sosyal svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
}

.footer-copyright {
    font-size: 11px;
    color: #555;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #555;
}

.footer-links a:hover {
    color: #fff;
}

/* ========================================
   MOBİL
   ======================================== */
@media screen and (max-width: 1024px) {
    .galeri-header-inner {
        padding: 20px 35px;
    }
    
    .galeri-logo img {
        height: 38px;
    }
    
    .galeri-nav {
        gap: 30px;
    }
    
    .slide-content {
        left: 40px;
        bottom: 120px;
    }
    
    .slide-content h1 {
        font-size: 42px;
    }
    
    .slider-nav {
        left: 40px;
    }
    
    .slider-counter {
        right: 40px;
    }
    
    /* Blog 1024 */
    .blog-zigzag {
        padding: 0 40px;
    }
    
    .blog-item {
        gap: 50px;
        margin-bottom: 80px;
    }
    
    .blog-item-content h2 {
        font-size: 26px;
    }
    
    .blog-item-image {
        box-shadow: 15px 15px 30px rgba(198, 185, 167, 0.35);
    }
    
    .blog-bg-decor .decor-circle-3,
    .blog-bg-decor .decor-circle-4 {
        display: none;
    }
    
    .single-left {
        padding: 50px 50px 50px 60px;
    }
    
    /* Hakkımızda 1024 */
    .about-slide-content {
        left: 40px;
        bottom: 120px;
    }
    
    .about-slide-content h1 {
        font-size: 42px;
    }
    
    .about-slider-nav {
        left: 40px;
    }
    
    .about-slider-counter {
        right: 40px;
    }
    
    /* Ekibimiz 1024 */
    .team-grid {
        gap: 40px;
        padding: 0 40px;
    }
    
    .decor-circle-1 {
        width: 450px;
        height: 450px;
    }
    
    .decor-circle-2 {
        width: 300px;
        height: 300px;
    }
    
    .decor-circle-3,
    .decor-circle-4,
    .decor-circle-5 {
        opacity: 0.1;
    }
    
    .team-card-info h2 {
        font-size: 24px;
    }
    
    .team-card-image {
        box-shadow: 20px 20px 40px rgba(198, 185, 167, 0.45), 
                    -4px -4px 15px rgba(255, 255, 255, 0.7);
    }
    
    .team-section {
        padding: 80px 60px;
    }
    
    .team-duo {
        gap: 50px;
    }
}

@media screen and (max-width: 768px) {
    .galeri-header-inner {
        padding: 18px 25px;
    }
    
    .member-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .member-more-btn {
        margin-top: 10px;
    }
    
    .galeri-logo img {
        height: 32px;
    }
    
    .galeri-nav,
    .lang-switcher,
    .header-right {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .slide-content {
        bottom: 110px;
        left: 25px;
        right: 25px;
    }
    
    .slide-content h1 {
        font-size: 32px;
        letter-spacing: 4px;
    }
    
    /* Mobilde farklı görsel */
    .slide-img-desktop {
        display: none;
    }
    
    .slide-img-mobile {
        display: block;
    }
    
    .slide-tarih {
        font-size: 10px;
        margin-bottom: 20px;
    }
    
    .slide-link {
        padding: 12px 25px;
        font-size: 9px;
    }
    
    .slider-nav {
        bottom: 35px;
        left: 25px;
        gap: 8px;
    }
    
    .slider-btn {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
    
    .slider-progress {
        display: none;
    }
    
    .slider-counter {
        bottom: 35px;
        right: 25px;
    }
    
    .slider-counter .current {
        font-size: 20px;
    }
    
    .page-header {
        padding: 140px 25px 60px;
    }
    
    .page-header h1 {
        font-size: 32px;
        letter-spacing: 4px;
    }
    
    .page-content {
        padding: 50px 25px;
    }
    
    /* Blog Mobil */
    .blog-wrapper {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .blog-zigzag {
        padding: 0 25px;
    }
    
    .blog-item {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 60px;
    }
    
    .blog-item.align-left .blog-item-image,
    .blog-item.align-right .blog-item-image {
        order: 1;
    }
    
    .blog-item.align-left .blog-item-content,
    .blog-item.align-right .blog-item-content {
        order: 2;
    }
    
    .blog-item-content h2 {
        font-size: 24px;
    }
    
    .blog-item-excerpt {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .blog-item-image {
        box-shadow: 12px 12px 25px rgba(198, 185, 167, 0.3);
    }
    
    .blog-bg-decor .decor-circle-1 {
        width: 300px;
        height: 300px;
        top: -100px;
        right: -100px;
    }
    
    .blog-bg-decor .decor-circle-2 {
        width: 200px;
        height: 200px;
    }
    
    .blog-bg-decor .decor-circle-3,
    .blog-bg-decor .decor-circle-4,
    .blog-bg-decor .decor-line-1,
    .blog-bg-decor .decor-line-2,
    .blog-bg-decor .decor-line-3 {
        display: none;
    }
    
    /* İletişim Mobil */
    .contact-page {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 25px;
    }
    
    .contact-info h1 {
        font-size: 32px;
    }
    
    .contact-intro {
        margin-bottom: 40px;
    }
    
    .contact-form-wrapper {
        padding: 30px 25px;
    }
    
    .contact-bg-decor .decor-circle-1 {
        width: 250px;
        height: 250px;
    }
    
    .contact-bg-decor .decor-circle-2,
    .contact-bg-decor .decor-circle-3,
    .contact-bg-decor .decor-line-1,
    .contact-bg-decor .decor-line-2 {
        display: none;
    }
    
    /* Single Mobil */
    .single-wrapper {
        grid-template-columns: 1fr;
        padding-top: 80px;
    }
    
    .single-left {
        padding: 40px 25px;
        order: 2;
    }
    
    .single-left h1 {
        font-size: 24px;
        letter-spacing: 3px;
    }
    
    .single-right {
        position: relative;
        top: 0;
        height: 50vh;
        order: 1;
    }
    
    .single-meta {
        margin-bottom: 30px;
    }
    
    /* Hakkımızda Mobil */
    .about-slide-content {
        bottom: 120px;
        left: 25px;
        right: 25px;
    }
    
    .about-slide-content h1 {
        font-size: 32px;
        letter-spacing: 4px;
    }
    
    .about-slide-content p {
        font-size: 13px;
    }
    
    .about-slider-nav {
        left: 25px;
        bottom: 35px;
    }
    
    .about-slider-btn {
        width: 44px;
        height: 44px;
    }
    
    .about-slider-counter {
        right: 25px;
        bottom: 35px;
    }
    
    .about-slider-counter .current {
        font-size: 20px;
    }
    
    .about-slider-dots {
        display: none;
    }
    
    /* Ekibimiz Mobil */
    .team-page {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 25px;
        max-width: 400px;
    }
    
    .decor-circle-1 {
        width: 300px;
        height: 300px;
        top: -100px;
        right: -100px;
    }
    
    .decor-circle-2 {
        width: 200px;
        height: 200px;
        bottom: -70px;
        left: -70px;
    }
    
    .decor-circle-3,
    .decor-circle-4,
    .decor-circle-5 {
        display: none;
    }
    
    .decor-line-3,
    .decor-line-4,
    .decor-line-5 {
        display: none;
    }
    
    .team-card-info h2 {
        font-size: 24px;
    }
    
    .team-card-image {
        box-shadow: 15px 15px 30px rgba(198, 185, 167, 0.4), 
                    -3px -3px 12px rgba(255, 255, 255, 0.6);
    }
    
    .team-section {
        padding: 60px 25px;
    }
    
    .team-header h2 {
        font-size: 20px;
        letter-spacing: 4px;
    }
    
    .team-duo {
        grid-template-columns: 1fr;
        gap: 60px;
        max-width: 400px;
    }
    
    .team-member h3 {
        font-size: 18px;
    }
    
    .team-member-bio {
        font-size: 13px;
    }
    
    .galeri-footer {
        padding: 50px 25px 30px;
    }
    
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    
    .footer-sosyal {
        gap: 12px;
    }
    
    .footer-sosyal a {
        width: 38px;
        height: 38px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px 20px;
    }
}

@media screen and (max-width: 480px) {
    .slide-content h1 {
        font-size: 24px;
        letter-spacing: 2px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .page-header h1 {
        font-size: 26px;
    }
}
/* ========================================
   HAKKIMIZDA SAYFASI - YENİ TASARIM
   ======================================== */
.about-page {
    padding-top: 120px;
    padding-bottom: 0;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.about-bg-decor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.about-bg-decor .decor-circle-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -150px;
    opacity: 0.35;
}

.about-bg-decor .decor-circle-2 {
    width: 350px;
    height: 350px;
    bottom: 20%;
    left: -120px;
    opacity: 0.3;
}

.about-bg-decor .decor-circle-3 {
    width: 250px;
    height: 250px;
    top: 60%;
    right: 10%;
    opacity: 0.2;
}

.about-bg-decor .decor-line-1 {
    width: 1px;
    height: 60%;
    top: 20%;
    left: 15%;
    opacity: 0.25;
}

.about-bg-decor .decor-line-2 {
    width: 1px;
    height: 50%;
    top: 30%;
    right: 20%;
    opacity: 0.25;
}

.about-label {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--toprak);
    margin-bottom: 10px;
}

/* Hero Section */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 60px 100px;
    position: relative;
    z-index: 1;
    align-items: center;
}

.about-hero-content h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--siyah);
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-hero-content p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--gri);
}

.about-hero-image {
    position: relative;
}

.about-hero-image img {
    width: 100%;
    max-width: 560px;
    height: 315px;
    object-fit: cover;
    border: 1px solid rgba(139, 115, 85, 0.25);
    box-shadow: 12px 12px 25px rgba(198, 185, 167, 0.3);
}

/* Hikayemiz */
.about-story {
    background: var(--sampanya);
    padding: 100px 60px;
    position: relative;
    z-index: 1;
}

.about-story-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-story-image img {
    width: 100%;
    max-width: 560px;
    height: 315px;
    object-fit: cover;
    border: 1px solid rgba(139, 115, 85, 0.25);
    box-shadow: 12px 12px 25px rgba(198, 185, 167, 0.25);
}

.about-story-content h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 34px;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--siyah);
    margin-bottom: 25px;
}

.about-story-content p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--gri);
    margin-bottom: 18px;
}

/* Değerlerimiz */
.about-values {
    padding: 50px 60px 80px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-values-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-values-header h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 34px;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--siyah);
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.value-card {
    text-align: center;
    padding: 40px 25px;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-5px);
    box-shadow: 15px 15px 30px rgba(198, 185, 167, 0.25);
}

.value-icon {
    color: var(--toprak);
    margin-bottom: 20px;
}

.value-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--siyah);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--gri);
}

/* Journey Section - Canvas Animasyonu - KISA VERSİYON */
.journey-section-mini {
    position: relative;
    width: 100%;
    height: 40vh;
    min-height: 280px;
    max-height: 380px;
    overflow: hidden;
}

#journeyCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.journey-text-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 90%;
    max-width: 700px;
}

.journey-quote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 300;
    font-style: italic;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.6);
    margin: 0 0 25px 0;
    line-height: 1.4;
    transition: opacity 0.3s ease, transform 0.3s ease;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.journey-btn {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
    padding: 16px 45px;
    border: 1px solid rgba(255, 200, 120, 0.7);
    background: rgba(255, 200, 120, 0.15);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.journey-btn:hover {
    background: rgba(255, 200, 120, 0.3);
    border-color: rgba(255, 200, 120, 1);
    box-shadow: 0 0 40px rgba(255, 200, 120, 0.5);
    transform: scale(1.05);
}

/* Hizmetler */
.about-services {
    padding: 50px 60px 80px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-services-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-services-header h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 34px;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--siyah);
}

.about-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-item {
    padding: 40px;
    border: 1px solid rgba(139, 115, 85, 0.15);
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: var(--toprak);
    box-shadow: 15px 15px 30px rgba(198, 185, 167, 0.2);
}

.service-number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 300;
    color: var(--toprak-acik);
    opacity: 0.4;
    display: block;
    margin-bottom: 12px;
}

.service-item h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--siyah);
    margin-bottom: 12px;
}

.service-item p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gri);
}

/* CTA */
.about-cta {
    background: var(--sampanya);
    padding: 60px 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.about-cta h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 34px;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--siyah);
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gri);
    margin-bottom: 35px;
}

.about-cta-btn {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    background: var(--siyah);
    padding: 18px 45px;
    border: 1px solid var(--siyah);
    transition: all 0.4s ease;
}

.about-cta-btn:hover {
    background: var(--toprak);
    border-color: var(--toprak);
}

/* Hakkımızda Responsive */
@media screen and (max-width: 1024px) {
    .about-hero {
        gap: 50px;
        padding: 40px 40px 80px;
    }
    
    .about-hero-content h1 {
        font-size: 38px;
    }
    
    .about-story {
        padding: 80px 40px;
    }
    
    .about-story-inner {
        gap: 50px;
    }
    
    .about-values {
        padding: 80px 40px;
    }
    
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .about-services {
        padding: 80px 40px;
    }
    
    .about-services-grid {
        gap: 30px;
    }
    
    .about-cta {
        padding: 80px 40px;
    }
    
    .journey-quote {
        font-size: 32px;
    }
}

@media screen and (max-width: 768px) {
    .about-page {
        padding-top: 100px;
    }
    
    .about-hero {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px 25px 60px;
    }
    
    .about-hero-content h1 {
        font-size: 30px;
    }
    
    .about-hero-image {
        order: -1;
    }
    
    .about-hero-image img,
    .about-story-image img {
        max-width: 100%;
        height: 220px;
    }
    
    .about-story {
        padding: 60px 25px;
    }
    
    .about-story-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-story-content h2 {
        font-size: 26px;
    }
    
    .about-values {
        padding: 60px 25px;
    }
    
    .about-values-header h2 {
        font-size: 26px;
    }
    
    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .journey-section-mini {
        height: 35vh;
        min-height: 250px;
        max-height: 320px;
    }
    
    .journey-quote {
        font-size: 20px;
        min-height: 50px;
    }
    
    .journey-btn {
        font-size: 10px;
        padding: 12px 30px;
    }
    
    .about-services {
        padding: 60px 25px;
    }
    
    .about-services-header h2 {
        font-size: 26px;
    }
    
    .about-services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-item {
        padding: 30px;
    }
    
    .about-cta {
        padding: 60px 25px;
    }
    
    .about-cta h2 {
        font-size: 26px;
    }
    
    .about-bg-decor .decor-circle-1,
    .about-bg-decor .decor-circle-3,
    .about-bg-decor .decor-line-1,
    .about-bg-decor .decor-line-2 {
        display: none;
    }
    
    .about-bg-decor .decor-circle-2 {
        width: 200px;
        height: 200px;
    }
}
/* ========================================
   DROPDOWN MENÜ STİLLERİ
   ======================================== */

/* Dropdown Container */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-trigger {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Dropdown Menü */
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: #fff;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px 0;
    margin-top: 20px;
    z-index: 1000;
}

/* Görünmez köprü */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
}

/* Üst üçgen */
.nav-dropdown-menu::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 15px;
}

.nav-dropdown-menu a {
    display: block;
    padding: 12px 30px;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--siyah) !important;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-dropdown-menu a::after {
    display: none !important;
}

.nav-dropdown-menu a:hover {
    background: var(--sampanya);
    color: var(--toprak) !important;
    padding-left: 35px;
}

/* Mobil Submenu */
.mobil-submenu {
    padding-left: 40px !important;
    font-size: 14px !important;
    opacity: 0.7;
    letter-spacing: 2px !important;
}

.mobil-submenu:hover {
    opacity: 1;
}

/* Mobilde dropdown gizle */
@media (max-width: 768px) {
    .nav-dropdown-menu {
        display: none !important;
    }
}

/* ========================================
   YASAL SAYFALAR (KVKK, Gizlilik, Çerez, Kullanım Koşulları)
   ======================================== */
.legal-page {
    min-height: 100vh;
    background: var(--inci);
}

.legal-hero {
    padding: 140px 60px 60px;
    text-align: center;
    background: linear-gradient(180deg, var(--sampanya) 0%, var(--inci) 100%);
}

.legal-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.legal-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--toprak);
    margin-bottom: 20px;
}

.legal-hero h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 42px;
    font-weight: 300;
    color: var(--siyah);
    margin-bottom: 15px;
}

.legal-date {
    font-size: 13px;
    color: var(--gri);
}

.legal-content {
    padding: 60px 60px 100px;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-intro {
    font-size: 17px;
    line-height: 1.8;
    color: var(--siyah);
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(139, 115, 85, 0.15);
}

.legal-content h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--siyah);
    margin: 40px 0 20px;
}

.legal-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--siyah);
    margin: 25px 0 10px;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--gri);
    margin-bottom: 15px;
}

.legal-content a {
    color: var(--toprak);
    text-decoration: underline;
}

.legal-content a:hover {
    color: #6B5A47;
}

.legal-content ul {
    margin: 15px 0 25px 20px;
    list-style: none;
}

.legal-content li {
    font-size: 15px;
    line-height: 1.9;
    color: var(--gri);
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.legal-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    background: var(--toprak);
    border-radius: 50%;
}

.legal-footer-note {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(139, 115, 85, 0.15);
}

.legal-footer-note p {
    font-size: 13px;
    font-style: italic;
    color: #999;
}

/* ========================================
   PSİKOLOG HAKKINDA SAYFASI
   ======================================== */
.psikolog-about-page {
    min-height: 100vh;
    background: var(--inci);
}

.psikolog-hero {
    padding: 140px 60px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.psikolog-hero-inner {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: center;
}

.psikolog-hero-image {
    position: relative;
}

.psikolog-image-frame {
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid var(--toprak-acik);
    opacity: 0.5;
}

.psikolog-hero-image img {
    width: 100%;
    position: relative;
    z-index: 1;
}

.psikolog-hero-content {
    padding-left: 20px;
}

.psikolog-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--toprak);
    margin-bottom: 15px;
}

.psikolog-hero-content h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 52px;
    font-weight: 300;
    color: var(--siyah);
    margin-bottom: 10px;
}

.psikolog-subtitle {
    font-size: 16px;
    color: var(--gri);
    margin-bottom: 25px;
}

.psikolog-hero-line {
    width: 50px;
    height: 2px;
    background: var(--toprak);
    margin-bottom: 25px;
}

.psikolog-intro {
    font-size: 16px;
    line-height: 1.9;
    color: var(--gri);
    margin-bottom: 30px;
}

.psikolog-btn {
    display: inline-block;
    padding: 14px 40px;
    background: transparent;
    border: 1px solid var(--siyah);
    color: var(--siyah);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.psikolog-btn:hover {
    background: var(--siyah);
    color: #fff;
}

.psikolog-section {
    padding: 80px 60px;
}

.psikolog-section-alt {
    background: var(--sampanya);
}

.psikolog-container {
    max-width: 900px;
    margin: 0 auto;
}

.psikolog-section h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--siyah);
    margin-bottom: 25px;
    text-align: center;
}

.psikolog-section p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--gri);
    margin-bottom: 20px;
    text-align: center;
}

.psikolog-edu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.psikolog-edu-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(139, 115, 85, 0.1);
    transition: all 0.3s ease;
}

.psikolog-edu-item:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.1);
}

.edu-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--toprak-acik);
    border-radius: 50%;
    color: var(--toprak);
}

.edu-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--siyah);
    margin-bottom: 8px;
}

.edu-content p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--gri);
    text-align: left;
    margin: 0;
}

.psikolog-areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.area-item {
    padding: 12px 24px;
    background: var(--sampanya);
    border: 1px solid rgba(139, 115, 85, 0.15);
    font-size: 13px;
    color: var(--siyah);
    transition: all 0.3s ease;
}

.area-item:hover {
    background: var(--toprak);
    color: #fff;
    border-color: var(--toprak);
}

.psikolog-cta {
    padding: 80px 60px;
    background: var(--siyah);
    text-align: center;
}

.psikolog-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.psikolog-cta h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 15px;
}

.psikolog-cta p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

.psikolog-cta-btn {
    display: inline-block;
    padding: 16px 50px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.psikolog-cta-btn:hover {
    background: #fff;
    color: var(--siyah);
}

/* ========================================
   HAKKIMIZDA - HİKAYE BÖLÜMÜ (SADE)
   ======================================== */
.about-story {
    padding: 0 60px 80px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-story-content p {
    font-size: 16px;
    line-height: 2;
    color: var(--gri);
    margin-bottom: 25px;
    text-align: justify;
}

.about-story-content p:last-child {
    margin-bottom: 0;
}

/* ========================================
   RESPONSIVE - YENİ BÖLÜMLER
   ======================================== */
@media (max-width: 1024px) {
    .psikolog-hero-inner {
        grid-template-columns: 320px 1fr;
        gap: 50px;
    }
    
    .psikolog-edu-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-hero {
        padding: 120px 40px 50px;
    }
    
    .legal-hero h1 {
        font-size: 36px;
    }
    
    .legal-content {
        padding: 50px 40px 80px;
    }
}

@media (max-width: 768px) {
    .about-story {
        padding: 0 25px 50px;
    }
    
    .about-story-content p {
        font-size: 15px;
        line-height: 1.9;
        text-align: left;
    }
    
    .psikolog-hero {
        padding: 120px 25px 60px;
    }
    
    .psikolog-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .psikolog-hero-image {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .psikolog-hero-content {
        padding-left: 0;
        text-align: center;
    }
    
    .psikolog-hero-line {
        margin: 0 auto 25px;
    }
    
    .psikolog-hero-content h1 {
        font-size: 38px;
    }
    
    .psikolog-section {
        padding: 60px 25px;
    }
    
    .psikolog-section h2 {
        font-size: 26px;
    }
    
    .psikolog-edu-item {
        flex-direction: column;
        text-align: center;
    }
    
    .edu-icon {
        margin: 0 auto;
    }
    
    .edu-content p {
        text-align: center;
    }
    
    .psikolog-cta {
        padding: 60px 25px;
    }
    
    .legal-hero {
        padding: 120px 25px 50px;
    }
    
    .legal-hero h1 {
        font-size: 32px;
    }
    
    .legal-content {
        padding: 40px 25px 80px;
    }
    
    .legal-content h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .psikolog-hero-content h1 {
        font-size: 32px;
    }
}