/* === KOYU PASTEL KREM RENK PALETİ VE DEĞİŞKENLER === */
:root {
    /* Koyu Pastel Krem Renk Paleti */
    --primary-color: #6d5a42;
    --primary-dark: #5a4a35;
    --secondary-color: #8b7d6b;
    --accent-color: #a68b6a;
    --accent-dark: #947a5a;
    --background-color: #f8f5f0;
    --background-secondary: #f0ebe5;
    --surface-color: #ffffff;
    --text-primary: #3d342a;
    --text-secondary: #6d5f4d;
    --text-light: #ffffff;
    --border-color: #d4c8ba;
    --shadow-sm: 0 2px 5px rgba(109, 90, 66, 0.1);
    --shadow-md: 0 4px 8px rgba(109, 90, 66, 0.12);
    --shadow-lg: 0 8px 25px rgba(109, 90, 66, 0.15);
    --shadow-xl: 0 15px 35px rgba(109, 90, 66, 0.2);
    --font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    --border-radius: 18px;
    --border-radius-sm: 12px;
    --border-radius-lg: 24px;
    --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* === GLOBAL SIFIRLAMALAR VE TEMEL STİLLER === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    /* scroll-behavior: smooth; - Removed to prevent unwanted page scrolling */
}

body {
    font-family: var(--font-family);
    line-height: 1.4;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

ul {
    list-style: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.1;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.4;
    color: var(--text-secondary);
}

/* === APPLE TARZINDA ANIMASYONLAR === */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Apple Scroll Animasyonları */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-scale {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-scale.animate {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, transparent 37%, #f0f0f0 63%);
    background-size: 400% 100%;
    animation: pulse 1.5s ease-in-out infinite;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 8px;
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.5s ease-out;
}

/* === TOAST NOTIFICATION === */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
}

.toast {
    background: var(--surface-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 16px 20px;
    margin-bottom: 12px;
    border-left: 4px solid var(--primary-color);
    transform: translateX(100%);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    border-left-color: #10b981;
}

.toast.error {
    border-left-color: #ef4444;
}

.toast.warning {
    border-left-color: #f59e0b;
}

.toast-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.toast-message {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.toast-close {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--text-secondary);
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.toast-close:hover {
    background-color: var(--background-secondary);
}

/* === YARDIMCI SINIFLAR === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    position: relative;
    color: #2d3748;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: -0.015em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--primary-color);
    color: var(--text-light);
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
    box-shadow: 0 4px 12px rgba(109, 90, 66, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: -0.02em;
}

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

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(109, 90, 66, 0.4);
    background: var(--primary-dark);
}

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

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

.btn-secondary {
    background: var(--surface-color);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

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

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(109, 90, 66, 0.15);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 4px 12px rgba(109, 90, 66, 0.25);
}

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

/* === SAYFA BAŞLIĞI (PAGE HEADER) === */
.page-header {
    background:
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)),
        url('../assets/gptlaw.png') center/cover no-repeat;
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.page-intro {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    color: var(--text-primary);
    line-height: 1.7;
    text-shadow: none;
}

/* === HEADER VE NAVİGASYON === */
.main-header {
    background: transparent;
    backdrop-filter: none;
    color: white;
    padding: 1rem 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: none;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    z-index: 20;
}

.logo img {
    height: 110px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6));
    vertical-align: middle;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    position: relative;
    z-index: 10;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
    position: relative;
    z-index: 15;
}

.main-nav a {
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    transition: var(--transition-smooth);
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: white;
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.main-nav a:hover,
.main-nav a.active {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.main-nav a:hover::before,
.main-nav a.active::before {
    width: 80%;
}

.main-nav.active {
    display: block !important;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: 2px solid white;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    transition: var(--transition-fast);
    position: relative;
    z-index: 15;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.mobile-nav-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
}

/* === LANGUAGE SWITCH === */
.language-switch {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-left: 1rem;
}

.lang-btn {
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-sm);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition-fast);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.lang-btn:hover,
.lang-btn.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: white;
}

/* === APPLE TARZINDA HERO BÖLÜMÜ === */
#hero {
    background:
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)),
        url('../assets/gptlaw.png') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 10rem 0 8rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    z-index: 1;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    opacity: 1;
}

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

#hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

#hero p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

#hero .btn {
    font-size: 1.1rem;
    padding: 16px 32px;
    background: var(--accent-color);
    color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 14px rgba(166, 139, 106, 0.4);
    font-weight: 600;
    border: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#hero .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(166, 139, 106, 0.5);
    background: var(--accent-dark);
}



/* === SERVICES PREVIEW SECTION === */
#services-preview {
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(250, 249, 247, 1) 50%,
            #faf9f7 100%);
    padding: 5rem 0 4rem 0;
    margin-top: 0;
    position: relative;
    z-index: 3;
    border-radius: 40px 40px 0 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
}

#services-preview .section-title {
    color: var(--text-primary);
    margin-bottom: 2.5rem;
}

/* === BLOG PREVIEW SECTION === */
#blog-preview {
    background: var(--background-secondary);
    padding: 4rem 0 5rem 0;
    position: relative;
    z-index: 2;
}

#blog-preview .section-title {
    color: var(--text-primary);
    margin-bottom: 2.5rem;
}

/* === FOOTER === */
.main-footer {
    background: linear-gradient(135deg, var(--background-secondary) 0%, var(--accent-color) 100%);
    color: var(--text-primary);
    text-align: center;
    padding: 3rem 0;
    margin-top: 5rem;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.main-footer .container {
    position: relative;
    z-index: 1;
}

/* === RESPONSIVE TASARIM === */
@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(15px);
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 var(--border-radius) var(--border-radius);
    }

    .main-nav ul {
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.5rem;
    }

    .main-nav a {
        padding: 1rem;
        border-radius: var(--border-radius-sm);
        text-align: center;
        color: white;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .language-switch {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }

    .main-header {
        padding: 0.8rem 0;
    }

    .logo img {
        height: 90px;
        max-width: 300px;
    }

    #hero {
        padding: 7rem 0 6rem;
    }

    #hero h1 {
        font-size: 2.5rem;
    }

    #hero p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-header {
        padding: 6rem 0 3rem;
        min-height: 50vh;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    #services-preview {
        padding: 3rem 0 2rem 0;
        border-radius: 25px 25px 0 0;
    }

    #blog-preview {
        padding: 3rem 0 3rem 0;
    }

    .page-contact #hero {
        padding: 7rem 0 4rem;
        min-height: 100vh;
        background:
            linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)),
            url('../assets/telefonlaw.png') center center/cover no-repeat;
    }

    .page-contact #hero h1 {
        font-size: 2.5rem;
    }

    .page-contact #hero p {
        font-size: 1.1rem;
    }

    .page-contact .contact-content-area {
        padding-top: 3rem;
        padding-bottom: 3rem;
        border-radius: 25px 25px 0 0;
        margin-top: 0;
    }

    .page-team #hero {
        padding: 7rem 0 4rem;
        min-height: 100vh;
        background:
            linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)),
            url('../assets/gptlaw.png') center/cover no-repeat;
    }

    .page-team #hero h1 {
        font-size: 2.5rem;
    }

    .page-team #hero p {
        font-size: 1.1rem;
    }

    /* Team card fotoğrafı mobil için optimize */
    .team-card-img {
        object-position: center center;
        object-fit: cover;
    }

}

/* === KART VE GRID SİSTEMİ === */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card,
.post-card {
    background: var(--surface-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
    border: 1px solid var(--border-color);
}

.service-card::before,
.post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.service-card:hover,
.post-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

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

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding: 2rem 2rem 0;
    display: block;
}

.service-card h3 {
    padding: 0 2rem;
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
}

.service-card p {
    padding: 0 2rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.4;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: -0.005em;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
}

.post-card-content {
    padding: 2rem;
}

.post-card h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.01em;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
}

.post-card p {
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 1.2rem;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: -0.005em;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
}

.post-tags {
    margin-bottom: 1rem;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.service-tag:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.service-tag i {
    font-size: 0.625rem;
}

.post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.post-date {
    display: flex;
    align-items: center;
    background: var(--background-secondary);
    color: var(--text-secondary);
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
}

.post-date i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    background: var(--accent-color);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.author-info:hover {
    background: var(--accent-dark);
    transform: scale(1.05);
}

.author-info i {
    font-size: 0.625rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
    background: transparent;
    border: 2px solid transparent;
}

.read-more:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateX(4px);
}

.read-more::after {
    content: '→';
    transition: var(--transition-fast);
}

.read-more:hover::after {
    transform: translateX(2px);
}

/* === EKİP KARTI STİLLERİ === */
.team-card {
    background: var(--surface-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    text-align: center;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

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

.team-card-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center 20%;
    transition: var(--transition-smooth);
    border-radius: 8px 8px 0 0;
}

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

.team-card-info {
    padding: 2rem;
}

.team-card-info h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-card-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding: 0.25rem 0.75rem;
    background: var(--background-secondary);
    border-radius: var(--border-radius-sm);
    display: inline-block;
}

.team-card-bio {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Desktop için team card fotoğrafı optimizasyonu */
@media (min-width: 769px) {
    .team-card-img {
        object-position: center 15%;
        height: 320px;
    }
}

/* === BLOG LİSTESİ STİLLERİ === */
.posts-list-container .post-card {
    grid-template-columns: 1fr;
    /* Grid'i geçersiz kıl, tek sütun */
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-bottom: 2rem;
}

.posts-list-container .post-card h3 {
    font-size: 1.8rem;
}

.posts-list-container .post-card p {
    font-size: 1.1rem;
    margin: 1rem 0;
}

.posts-list-container .post-card .read-more {
    margin-top: 1rem;
    align-self: flex-start;
}

/* === İLETİŞİM SAYFASI STİLLERİ === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.contact-info h2,
.contact-form h2 {
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.contact-info ul li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    padding: 1rem;
    background: var(--surface-color);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    border: 1px solid var(--border-color);
}

.contact-info ul li:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.contact-info ul li i {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-right: 1rem;
    width: 24px;
    text-align: center;
    background: var(--background-secondary);
    padding: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.map-container {
    margin-top: 3rem;
    height: 450px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--background-secondary), var(--border-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
}

.map-container iframe {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    display: block;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: 16px;
    font-family: inherit;
    background: var(--surface-color);
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    transform: translateY(-1px);
}

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

.contact-form .btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .posts-list-container .post-card {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        gap: 2rem;
    }

    .map-container {
        height: 300px;
        margin-top: 2rem;
    }
}

/* === SAYFA BAZLI ARKAPLAN RENKLERİ === */

/* Gradient arkaplan renkleri */
.page-home {
    background: linear-gradient(135deg, #faf9f7 0%, #f5f3f0 100%);
}

.page-about {
    background: linear-gradient(135deg, #faf8f5 0%, #f2efe8 100%);
}

.page-services {
    background: linear-gradient(135deg, #f7f8ff 0%, #eef0ff 100%);
}

.page-team {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.page-team #hero {
    background:
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)),
        url('../assets/gptlaw.png') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    z-index: 1;
}

.page-team #hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    opacity: 1;
}

.page-team #hero .container {
    position: relative;
    z-index: 1;
}

.page-team #hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-team #hero p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-team #hero .btn {
    font-size: 1.1rem;
    padding: 16px 32px;
    background: var(--accent-color);
    color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 14px rgba(166, 139, 106, 0.4);
    font-weight: 600;
    border: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.page-team #hero .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(166, 139, 106, 0.5);
    background: var(--accent-dark);
}

.page-blog {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
}

.page-contact {
    background: linear-gradient(135deg, #f7fff7 0%, #edf7ed 100%);
}

/* === SERVİS DETAY SAYFASI STİLLERİ === */
.service-detail-container {
    min-height: 80vh;
    padding: 2rem 0;
}

.service-detail-content {
    background: var(--surface-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--text-light);
}

.service-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--text-light);
}

.service-title h1 {
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.service-title p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
    color: var(--text-light);
}

.service-detail-body {
    padding: 3rem;
}

.service-detail-body h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.service-detail-body h3 {
    color: #2c2c2c;
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.service-detail-body ul {
    list-style: none;
    padding-left: 0;
}

.service-detail-body ul li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
}

.service-detail-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.service-contact {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--background-secondary);
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--border-color);
}

.service-contact h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-contact p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}



/* Responsive tasarım */
@media (max-width: 768px) {
    .service-detail-header {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .service-detail-body {
        padding: 2rem;
    }

    .service-title h1 {
        font-size: 2rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 2rem;
    }
}

/* Animasyonlar */
.service-detail-container {
    animation: fadeInUp 0.6s ease-out;
}

.service-detail-content {
    animation: fadeInScale 0.8s ease-out;
}

/* === BLOG DETAY SAYFASI STİLLERİ === */
.post-detail-container {
    min-height: 80vh;
    padding: 2rem 0;
}

.post-detail-content {
    background: var(--surface-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.post-detail-header {
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--text-light);
}

.post-meta-detail {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.post-date-detail,
.post-author-detail,
.post-service-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
}

.post-meta-detail i {
    opacity: 0.8;
}

.post-detail-header h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
}

.post-detail-body {
    padding: 3rem;
}

.post-detail-body h2 {
    color: var(--primary-color);
    margin: 2rem 0 1.5rem 0;
    font-size: 1.8rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.post-detail-body h3 {
    color: var(--primary-color);
    margin: 1.5rem 0 1rem 0;
    font-size: 1.5rem;
}

.post-detail-body p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.post-detail-body ul {
    margin-bottom: 1.5rem;
    padding-left: 0;
    list-style: none;
}

.post-detail-body ul li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
}

.post-detail-body ul li::before {
    content: '●';
    position: absolute;
    left: 0.5rem;
    color: var(--accent-color);
    font-weight: bold;
}

.post-detail-body blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-secondary);
    background: var(--background-secondary);
    padding: 1.5rem;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

.post-contact {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--background-secondary);
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--border-color);
}

.post-contact h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.post-contact p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}



/* Responsive tasarım */
@media (max-width: 768px) {
    .post-detail-header {
        padding: 2rem;
    }

    .post-detail-body {
        padding: 2rem;
    }

    .post-detail-header h1 {
        font-size: 2rem;
    }

    .post-meta-detail {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Animasyonlar */
.post-detail-container {
    animation: fadeInUp 0.6s ease-out;
}

.post-detail-content {
    animation: fadeInScale 0.8s ease-out;
}

/* === PAGE-SPECIFIC STYLES === */
.page-home main {
    background: transparent;
    position: relative;
    overflow: hidden;
}

/* === CONTACT PAGE STYLES === */
.page-contact main {
    background: transparent;
    position: relative;
    overflow: hidden;
}

.page-contact #hero {
    background:
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)),
        url('../assets/telefonlaw.png') center 20%/cover no-repeat;
    color: white;
    text-align: center;
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    z-index: 1;
}

.page-contact #hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-contact #hero p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-contact #hero .btn {
    font-size: 1.1rem;
    padding: 16px 32px;
    background: var(--accent-color);
    color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 14px rgba(166, 139, 106, 0.4);
    font-weight: 600;
    border: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.page-contact #hero .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(166, 139, 106, 0.5);
    background: var(--accent-dark);
}

/* Contact Content Area */
.page-contact .contact-content-area {
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(247, 255, 247, 1) 50%,
            #f7fff7 100%);
    border-radius: 40px 40px 0 0;
    margin-top: 0;
    position: relative;
    z-index: 3;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
    padding-top: 5rem;
    padding-bottom: 5rem;
}