/* Temel normalize ve reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
    padding-top: 80px;
}

/* Form elementleri normalize */
button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

/* Görüntü normalize */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Link normalize */
a {
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}

/* Liste normalize */
ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Tarayıcı uyumluluk fix'leri */
@supports (-webkit-touch-callout: none) {
    /* iOS Safari için fix */
    .ios-fix {
        height: -webkit-fill-available;
    }
}

@supports (-moz-appearance: none) {
    /* Firefox için fix */
    .firefox-fix {
        scrollbar-width: thin;
        scrollbar-color: var(--secondary-color) transparent;
    }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    /* IE için fix */
    .ie-fix {
        display: flex;
        flex-wrap: wrap;
    }
}

/* Responsive breakpoint'ler */
@media screen and (max-width: 1200px) {
    html { font-size: 15px; }
}

@media screen and (max-width: 992px) {
    html { font-size: 14px; }
}

@media screen and (max-width: 768px) {
    html { font-size: 13px; }
}

@media screen and (max-width: 576px) {
    html { font-size: 12px; }
}

/* Yüksek DPI ekranlar için */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .high-dpi {
        background-size: contain;
    }
}

/* Touch cihazlar için */
@media (hover: none) {
    .hover-only {
        display: none;
    }
}

:root {
    --primary-color: #1B1B1B;
    --secondary-color: #B8860B;
    --text-color: #333333;
    --light-text: #FFFFFF;
    --background-light: #F5F5F5;
    --transition: all 0.3s ease;
    /* Container genişlikleri */
    --container-max: 1400px;
    --container-large: 1200px;
    --container-medium: 992px;
    --container-small: 768px;
    --container-xs: 576px;
    
    /* Padding değerleri */
    --padding-xl: clamp(2rem, 5vw, 4rem);
    --padding-lg: clamp(1.5rem, 4vw, 3rem);
    --padding-md: clamp(1rem, 3vw, 2rem);
    --padding-sm: clamp(0.75rem, 2vw, 1.5rem);
    --padding-xs: clamp(0.5rem, 1vw, 1rem);
    
    /* Responsive boyutlar için değişkenler */
    --max-width: min(100% - 2rem, 1400px);
    --container-padding: clamp(1rem, 3vw, 2rem);
    --section-spacing: clamp(3rem, 8vh, 6rem);
    
    /* Font boyutları */
    --font-size-xs: clamp(0.75rem, 1vw, 0.875rem);
    --font-size-sm: clamp(0.875rem, 1.2vw, 1rem);
    --font-size-base: clamp(1rem, 1.5vw, 1.125rem);
    --font-size-lg: clamp(1.125rem, 2vw, 1.25rem);
    --font-size-xl: clamp(1.25rem, 2.5vw, 1.5rem);
    --font-size-2xl: clamp(1.5rem, 3vw, 2rem);
    --font-size-3xl: clamp(2rem, 4vw, 3rem);
    --font-size-4xl: clamp(2.5rem, 5vw, 4rem);
    
    /* Boşluklar */
    --space-xs: clamp(0.5rem, 1vw, 0.75rem);
    --space-sm: clamp(0.75rem, 1.5vw, 1rem);
    --space-md: clamp(1rem, 2vw, 1.5rem);
    --space-lg: clamp(1.5rem, 3vw, 2rem);
    --space-xl: clamp(2rem, 4vw, 3rem);
    
    /* Grid boşlukları */
    --grid-gap: clamp(1rem, 2vw, 2rem);
}

/* Temel container yapısı */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 4K ve büyük ekranlar */
@media (min-width: 2560px) {
    .container {
        max-width: calc(var(--container-max) + 200px);
        padding-right: var(--padding-xl);
        padding-left: var(--padding-xl);
    }
}

/* Geniş masaüstü */
@media (min-width: 1400px) and (max-width: 2559px) {
    .container {
        max-width: var(--container-max);
        padding-right: var(--padding-lg);
        padding-left: var(--padding-lg);
    }
}

/* Normal masaüstü */
@media (min-width: 1200px) and (max-width: 1399px) {
    .container {
        max-width: var(--container-large);
        padding-right: var(--padding-lg);
        padding-left: var(--padding-lg);
    }
}

/* Küçük masaüstü / Büyük tablet */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: var(--container-medium);
        padding-right: var(--padding-md);
        padding-left: var(--padding-md);
    }
    
    .grid-container {
        gap: var(--padding-md);
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: var(--container-small);
        padding-right: var(--padding-md);
        padding-left: var(--padding-md);
    }
    
    .grid-container {
        gap: var(--padding-sm);
    }
}

/* Büyük telefon */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: var(--container-xs);
        padding-right: var(--padding-sm);
        padding-left: var(--padding-sm);
    }
    
    .grid-container {
        gap: var(--padding-sm);
    }
}

/* Küçük telefon */
@media (max-width: 575px) {
    .container {
        max-width: 100%;
        padding-right: var(--padding-xs);
        padding-left: var(--padding-xs);
    }
    
    .grid-container {
        gap: var(--padding-xs);
    }
}

/* Yatay ekran adaptasyonu */
@media (orientation: landscape) and (max-height: 600px) {
    .container {
        padding-top: var(--padding-sm);
        padding-bottom: var(--padding-sm);
    }
}

/* Container içindeki grid yapıları */
.grid-container {
    display: grid;
    gap: var(--grid-gap);
    width: 100%;
}

/* Expertise grid */
.expertise-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

/* Areas grid */
.areas-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}

/* Features grid */
.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

/* Safari için grid düzeltmesi */
@supports (-webkit-touch-callout: none) {
    .grid-container {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Header Styles */
.header {
    padding: 0.5rem 0;
    background: var(--primary-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.header .logo h1 {
    font-size: 1.4rem;
    font-family: 'Cormorant Garamond', serif;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    margin: 0;
}

.header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

/* Fixed header için body padding */
body.fixed-header {
    padding-top: 60px;
}

.header.scrolled {
    background: var(--primary-color);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--padding-md);
    max-width: 1400px;
    margin: 0 auto;
}

.logo-img {
    width: 150px;
    height: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.consultation-btn a {
    background: var(--secondary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 3px;
    font-weight: 600;
}

/* Hero Section */
.hero {
    background: url('images/hero-bg.jpg') center/cover no-repeat;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    font-weight: 400;
    line-height: 1.6;
}

.hero-navigation {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
}

.nav-btn {
    width: 60px;
    height: 60px;
    border: none;
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.nav-btn:hover {
    background: rgba(212,175,55,0.8);
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 2rem;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .hero-navigation {
        padding: 0 20px;
    }
}

/* Expertise Areas */
.expertise-areas {
    padding: 6rem 0;
    background: var(--background-light);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--font-size-3xl);
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-line {
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    margin: 1rem auto;
}

.expertise-grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.expertise-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.expertise-card:hover::before {
    opacity: 0.05;
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: transparent;
}

.expertise-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    position: relative;
}

.expertise-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.learn-more {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
    margin-top: 1rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.learn-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.learn-more:hover {
    color: var(--primary-color);
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Kartın tamamına tıklanabilirlik eklemek için */
.expertise-card a {
    position: relative;
    z-index: 2;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    color: var(--light-text);
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
}

/* Logo resmi yoksa text olarak göster */
.logo-img {
    display: none;
}

/* Why Us Section */
.why-us {
    background: linear-gradient(rgba(27, 27, 27, 0.95), rgba(27, 27, 27, 0.95)),
                url('images/law-office-interior.jpg') center/cover fixed;
    color: var(--light-text);
    padding: 8rem 5%;
}

.why-us-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.section-header.light {
    color: var(--light-text);
}

.section-subtitle {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    opacity: 0.9;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.stat-box {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    margin: 0.5rem 0;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    display: block;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    margin-left: 5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.feature-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: var(--transition);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.feature-item p {
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
} 

/* Sayfa Hero Bölümü */
.page-hero {
    height: 40vh;
    background: linear-gradient(rgba(27, 27, 27, 0.8), rgba(27, 27, 27, 0.8)),
                url('images/service-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
    margin-top: 80px;
}

.page-hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.breadcrumb {
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--light-text);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

/* Hizmet Detay Sayfası */
.service-detail {
    padding: 5rem 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-content {
    padding-right: 2rem;
}

.lead {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.feature {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    text-align: center;
}

.feature i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.process-steps {
    list-style-position: inside;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.process-steps li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.cta-box {
    background: var(--primary-color);
    color: var(--light-text);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 3rem;
}

.service-sidebar .widget {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.service-list {
    list-style: none;
}

.service-list li {
    border-bottom: 1px solid #eee;
}

.service-list a {
    display: block;
    padding: 1rem 0;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.service-list a:hover {
    color: var(--secondary-color);
    padding-left: 10px;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info i {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }
    
    .service-content {
        padding-right: 0;
    }
} 

/* Footer Styles */
.footer {
    background: var(--primary-color);
    color: var(--light-text);
    padding-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer-col h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--light-text);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--secondary-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul a {
    color: var(--light-text);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-col ul a:hover {
    opacity: 1;
    color: var(--secondary-color);
    padding-left: 5px;
}

.contact-info li, .working-hours li {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0.8;
}

.contact-info i {
    color: var(--secondary-color);
}

.working-hours li {
    justify-content: space-between;
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 1.5rem 0;
    margin-top: 2rem;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    opacity: 0.8;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
} 

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(27, 27, 27, 0.95);
    backdrop-filter: blur(10px);
    min-width: 200px;
    padding: 1rem 0;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0.5rem 1.5rem;
}

.dropdown-menu a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

/* Mobile Menu için dropdown */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        background: transparent;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li {
        padding: 0.5rem 1rem;
    }
} 

/* About Section */
.about-section {
    padding: 6rem 0;
    background: #fff;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
    padding: 0 2rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #666;
    text-indent: 2rem;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* Section Header düzenlemesi */
.section-header {
    width: 100%;
    max-width: 800px;
    text-align: center;
    margin: 0 auto 3rem auto;
    padding: 0 1rem;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-line {
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    margin: 1rem auto;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
}

.contact-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-box {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-details h3 {
    margin-bottom: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.contact-details ul {
    list-style: none;
}

.contact-details li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-details i {
    color: var(--secondary-color);
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

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

.submit-btn {
    background: var(--secondary-color);
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--primary-color);
}

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

/* Hover Animasyonları */
.expertise-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-item {
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.primary-btn, .secondary-btn {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.primary-btn:hover, .secondary-btn:hover {
    transform: translateY(-3px);
}

.contact-form input, .contact-form textarea {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(184,134,11,0.1);
    outline: none;
}

.submit-btn {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
}

/* Sosyal medya ikonları için hover efekti */
.social-links a {
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
} 

/* Arabuluculuk Section */
.mediation-section {
    padding: 6rem 0;
    background: #fff;
}

.mediation-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mediation-info {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.mediation-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.mediation-text p {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #666;
}

.mediation-benefits {
    list-style: none;
}

.mediation-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #555;
}

.mediation-benefits i {
    color: var(--secondary-color);
}

.mediation-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mediation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    object-position: center 35%;
    transform: scale(1);
}

.mediation-image:hover img {
    transform: scale(1.05);
}

.mediation-areas {
    text-align: center;
    padding-top: 3rem;
}

.mediation-areas h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.areas-grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.area-item {
    padding: 2rem;
    background: var(--background-light);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.area-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.area-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: inline-block;
}

.area-item h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.area-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .area-item {
        padding: 1.5rem;
    }
    
    .area-item h4 {
        font-size: 1rem;
    }
} 

.e-tahsilat-btn a {
    background: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 3px;
    font-weight: 600;
    color: var(--secondary-color) !important;
    border: 1px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.e-tahsilat-btn a:hover {
    background: var(--secondary-color);
    color: var(--light-text) !important;
} 

/* E-Tahsilat Styles */
.e-tahsilat-section {
    padding: 6rem 5%;
    background: var(--background-light);
}

.payment-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.payment-form {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.payment-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.card-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.payment-btn {
    background: var(--secondary-color);
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    margin-top: 1rem;
    transition: var(--transition);
}

.payment-btn:hover {
    background: var(--primary-color);
}

.payment-info {
    align-self: start;
}

.info-box {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.security-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 2rem;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .payment-content {
        grid-template-columns: 1fr;
    }
    
    .card-details {
        grid-template-columns: 1fr;
    }
} 

/* Mobil uyumluluk için */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .mediation-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content,
    .mediation-content,
    .areas-grid {
        padding: 0 1rem;
    }
} 

/* Genel container stili */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Section genel stili */
section {
    width: 100%;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Hero Section düzeltmesi */
.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Expertise Areas düzeltmesi */
.expertise-areas {
    padding: 6rem 0;
    background: var(--background-light);
}

.expertise-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: minmax(300px, 600px);
    justify-content: center;
    gap: 2rem;
}

/* Why Us section düzeltmesi */
.why-us-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

/* Footer düzeltmesi */
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Mediation section düzeltmesi */
.mediation-section {
    padding: 6rem 0;
    background: #fff;
}

.mediation-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.areas-grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    justify-content: center;
}

/* Contact section düzeltmesi */
.contact-section {
    padding: 6rem 0;
}

.contact-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Mobil responsive düzeltmeler */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .mediation-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-container,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
} 

/* Grid yapıları için genel stil */
.grid-container {
    width: 100%;
    display: grid;
    justify-content: center;
    align-items: start;
    gap: 2rem;
}

/* Expertise grid düzeltmesi */
.expertise-grid {
    composes: grid-container;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    max-width: 1200px;
    margin: 0 auto;
}

/* Areas grid düzeltmesi */
.areas-grid {
    composes: grid-container;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    max-width: 1200px;
    margin: 0 auto;
}

/* Stats container düzeltmesi */
.stats-container {
    composes: grid-container;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    max-width: 1200px;
    margin: 0 auto 4rem auto;
}

/* Features grid düzeltmesi */
.features-grid {
    composes: grid-container;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact content düzeltmesi */
.contact-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Mediation content düzeltmesi */
.mediation-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mediation-info {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

/* Flex container düzeltmesi */
.flex-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

/* Safari için grid düzeltmesi */
@supports (-webkit-touch-callout: none) {
    .grid-container {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }

}

/* Internet Explorer için düzeltme */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .grid-container {
        display: flex;
        flex-wrap: wrap;
    }
    
    .grid-container > * {
        flex: 1 1 300px;
    }
}

/* Mobil responsive düzeltmeler */
@media screen and (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .section-header {
        padding: 0 1rem;
    }
    
    .mediation-info,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

}

/* Küçük ekranlar için ek düzeltmeler */
@media screen and (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .container {
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }
} 

.team-section {
    padding: 4rem 0;
    background-color: #f9f9f9; /* Arka plan rengi */
}

.team-grid {
    display: grid;
    grid-template-columns: minmax(280px, 450px);
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 450px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    transform: scale(1);
}

.member-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.member-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.member-title {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-description {
    margin: 1rem 0;
    line-height: 1.6;
    font-size: 0.9rem;
    text-align: justify;
    flex: 1;
    overflow-y: auto;
    max-height: 200px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social a {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.member-social a:hover {
    color: var(--secondary-color);
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .team-member {
        max-width: 400px;
    }
}

@media (max-width: 576px) {
    .team-member {
        max-width: 320px;
        margin: 0 auto;
    }
} 

/* Font tanımlamaları */
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('fonts/CormorantGaramond-SemiBold.woff2') format('woff2'),
         url('fonts/CormorantGaramond-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('fonts/CormorantGaramond-Bold.woff2') format('woff2'),
         url('fonts/CormorantGaramond-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Light.woff2') format('woff2'),
         url('fonts/Montserrat-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Regular.woff2') format('woff2'),
         url('fonts/Montserrat-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Medium.woff2') format('woff2'),
         url('fonts/Montserrat-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-SemiBold.woff2') format('woff2'),
         url('fonts/Montserrat-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
} 

/* Makale Bölümü */
.articles-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.article-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 24px;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.article-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.article-date, .article-category {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-date i, .article-category i {
    color: var(--primary);
}

.article-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
}

.article-summary {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    margin-top: 16px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 12px;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(4px);
}

.info-message, .error-message {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.info-message {
    background-color: #e3f2fd;
    color: #1976d2;
}

.error-message {
    background-color: #ffebee;
    color: #c62828;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
    }

    .article-card {
        padding: 20px;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
} 

/* Makale Detay Sayfası */
.article-detail {
    padding: 4rem 0;
}

.article-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.article-subtitle {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 2.5rem 0 1.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.article-subheading {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.article-paragraph {
    margin-bottom: 1.5rem;
    text-align: justify;
    font-size: 1.1rem;
    color: #333;
}

.article-source {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    font-style: italic;
    color: #666;
}

/* Mobil düzenlemeler */
@media (max-width: 768px) {
    .article-detail {
        padding: 2rem 0;
    }
    
    .article-subtitle {
        font-size: 1.5rem;
    }
    
    .article-subheading {
        font-size: 1.2rem;
    }
    
    .article-paragraph {
        font-size: 1rem;
    }
} 

/* Top Navigation Bar */
.top-nav {
    background: var(--primary-color);
    color: #fff;
    padding: 0.2rem 0;
    font-size: 0.85rem;
    position: relative;
    z-index: 1000;
}

.top-nav .nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.top-nav .contact-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.top-nav .contact-info a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.top-nav .contact-info a:hover {
    opacity: 1;
}

.top-nav .contact-info i {
    font-size: 0.8rem;
}

.top-nav .social-links {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.top-nav .social-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    opacity: 0.9;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-nav .social-links a:hover {
    opacity: 1;
    transform: translateY(-1px);
}

@media (max-width: 992px) {
    .top-nav .contact-info {
        gap: 0.8rem;
    }
    
    .top-nav .contact-info span {
        display: none;
    }
    
    .top-nav .contact-info i {
        font-size: 0.9rem;
        opacity: 1;
    }
}

@media (max-width: 576px) {
    .top-nav {
        padding: 0.15rem 0;
    }
    
    .top-nav .contact-info {
        gap: 0.6rem;
    }
    
    .top-nav .social-links {
        gap: 0.6rem;
    }
    
    .top-nav .nav-content {
        padding: 0 0.5rem;
    }
} 

.hero-slogan {
    color: #fff;
    font-size: 2.5rem;
    margin-top: 1rem;
    font-weight: 300;
    text-align: center;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 2rem;
    }
    
    .hero-slogan {
        font-size: 1.8rem;
    }
} 

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.hero-btn {
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.primary-btn {
    background: var(--secondary-color);
    color: #fff;
    border: 2px solid var(--secondary-color);
}

.primary-btn:hover {
    background: transparent;
    color: var(--secondary-color);
}

.secondary-btn {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.secondary-btn:hover {
    background: #fff;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .hero-btn {
        width: 100%;
        text-align: center;
    }
} 

/* Makale içerik stilleri */
.article-quote {
    border-left: 4px solid var(--secondary-color);
    padding: 1rem 2rem;
    margin: 2rem 0;
    font-style: italic;
    background: #f9f9f9;
    color: #444;
}

.article-list {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-list li {
    margin-bottom: 0.8rem;
    position: relative;
}

.article-list li::before {
    content: "•";
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: -1.2rem;
}

.reading-time {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* İlgili makaleler */
.related-articles {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.related-articles h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.related-article-card {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.related-article-card:hover {
    transform: translateY(-5px);
}

.related-article-card h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .related-articles-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
} 

.docx-uploader {
    max-width: 500px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.docx-uploader h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.docx-uploader .form-group {
    margin-bottom: 1.5rem;
}

.docx-uploader label {
    display: block;
    margin-bottom: 0.5rem;
    color: #444;
}

.docx-uploader input[type="file"],
.docx-uploader select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.docx-uploader button {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.docx-uploader button:hover {
    background: var(--primary-color);
}

.docx-uploader textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-height: 100px;
    resize: vertical;
}

.upload-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
}

.upload-status .success {
    color: #28a745;
    background: #d4edda;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.upload-status .error {
    color: #dc3545;
    background: #f8d7da;
    padding: 0.5rem 1rem;
    border-radius: 4px;
} 

/* Admin Panel Stilleri */
.admin-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.admin-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.admin-header h1 {
    color: var(--primary-color);
    font-size: 2rem;
}

.admin-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.article-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.article-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.article-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.view-btn, .delete-btn {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.view-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
}

.delete-btn {
    background: #dc3545;
    color: #fff;
    border: none;
}

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

/* Login Sayfası Stilleri */
.login-page {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
}

.login-box {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h1 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.login-header p {
    color: #666;
    font-size: 1rem;
}

.login-form .form-group {
    margin-bottom: 1.5rem;
}

.login-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #444;
}

.login-form label i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.login-form input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.login-form input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.login-form button {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.login-form button:hover {
    background: var(--secondary-color);
}

.login-status {
    margin: 1rem 0;
    padding: 0.8rem;
    border-radius: 4px;
    display: none;
}

.login-status.error {
    display: block;
    background: #f8d7da;
    color: #dc3545;
}

.login-status.success {
    display: block;
    background: #d4edda;
    color: #28a745;
} 

/* Admin Header Güncellemesi */
.admin-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logout-btn {
    padding: 0.5rem 1rem;
    background: #dc3545;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.logout-btn:hover {
    background: #c82333;
}

/* Admin Layout Güncellemesi */
.admin-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2rem;
}

.admin-sidebar {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    height: fit-content;
}

.admin-main {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .admin-content {
        grid-template-columns: 1fr;
    }
} 

/* Kategori kartlarındaki makaleler */
.category-articles {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.category-article {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.category-article:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.category-article h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #fff;
}

.category-article p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    line-height: 1.4;
}

.category-article .read-more {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.category-article .read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.category-article .read-more:hover {
    color: #ffd700;
}

.category-article .read-more:hover i {
    transform: translateX(5px);
} 