/* ============================================
   HUKUK BÜROSU - ANA STİL DOSYASI
   Modern, Şık, Profesyonel
   ============================================ */

/* ===== CSS DEĞİŞKENLERİ ===== */
:root {
    /* Ana Renkler */
    --primary-color: #1a2a4a;
    --primary-dark: #0f1a2e;
    --primary-light: #2d4a7c;
    --secondary-color: #c9a84c;
    --secondary-light: #e0c56e;
    --secondary-dark: #a88a3a;
    
    /* Nötr Renkler */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --black: #212529;
    
    /* Tipografi */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Geçişler */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Gölgeler */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 50px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 5px 30px rgba(201, 168, 76, 0.3);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ===== TİPOGRAFİ ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray);
}

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

ul, ol {
    list-style: none;
}

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

/* ===== UTILITY CLASSES ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header .subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-header .subtitle::before,
.section-header .subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--secondary-color);
}

.section-header .subtitle::before {
    right: calc(100% + 15px);
}

.section-header .subtitle::after {
    left: calc(100% + 15px);
}

.section-header h2 {
    margin-bottom: 1.5rem;
}

.section-header p {
    font-size: 1.1rem;
}

/* ===== BUTONLAR ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.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-slow);
    z-index: -1;
}

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

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

.btn-primary:hover {
    background: var(--secondary-light);
    border-color: var(--secondary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

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

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

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

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

/* ===== HEADER & NAVİGASYON ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
}

.header.transparent {
    background: transparent;
}

.header.scrolled {
    background: var(--primary-dark);
    box-shadow: var(--shadow-md);
}

.header-top {
    display: none;
    background: var(--primary-dark);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.header-top-left,
.header-top-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-top a,
.header-top span {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.header-top i {
    color: var(--secondary-color);
}

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

.social-links a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 0.85rem;
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--secondary-color);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.header-main {
    padding: 20px 0;
    transition: var(--transition-normal);
}

.header.scrolled .header-main {
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-icon::before {
    content: '⚖';
    font-size: 1.8rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .firm-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.logo-text .firm-tagline {
    font-size: 0.75rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.nav-menu a {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition-normal);
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

/* Dropdown Menu */
.nav-item {
    position: relative;
}

.nav-item .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
}

.dropdown a {
    display: block;
    padding: 12px 25px;
    color: var(--dark-gray) !important;
    font-size: 0.9rem;
}

.dropdown a::after {
    display: none;
}

.dropdown a:hover {
    background: var(--off-white);
    color: var(--secondary-color) !important;
    padding-left: 30px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-normal);
}

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

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

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

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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='%23c9a84c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.hero-shape:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero-shape:nth-child(2) {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

.hero-shape:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 20%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(5deg);
    }
    50% {
        transform: translate(0, -40px) rotate(0deg);
    }
    75% {
        transform: translate(-20px, -20px) rotate(-5deg);
    }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50px;
    padding: 10px 25px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease;
}

.hero-badge i {
    color: var(--secondary-color);
}

.hero-badge span {
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero h1 span {
    color: var(--secondary-color);
    position: relative;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(201, 168, 76, 0.3);
    z-index: -1;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease 0.8s both;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.hero-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45%;
    height: 80%;
    opacity: 0.1;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ctext y='50' x='50' text-anchor='middle' dominant-baseline='middle' font-size='80'%3E⚖%3C/text%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

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

/* ===== PAGE HERO (İç Sayfalar) ===== */
.page-hero {
    position: relative;
    padding: 120px 0 70px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    text-align: center;
    overflow: hidden;
    z-index: 10;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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='%23c9a84c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

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

.page-hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

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

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb i {
    font-size: 0.7rem;
}

/* ===== HİZMETLER BÖLÜMÜ ===== */
.services {
    background: var(--off-white);
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
    border: 1px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 168, 76, 0.2);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition-normal);
}

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

.service-card:hover .service-icon {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
}

.service-card:hover .service-icon i {
    color: var(--primary-dark);
}

.service-card h3 {
    margin-bottom: 15px;
    transition: var(--transition-normal);
}

.service-card:hover h3 {
    color: var(--secondary-color);
}

.service-card p {
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-link i {
    transition: var(--transition-normal);
}

.service-link:hover {
    color: var(--secondary-color);
}

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

/* ===== HAKKIMIZDA BÖLÜMÜ ===== */
.about-section {
    position: relative;
    overflow: hidden;
}

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

.about-image {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.about-image-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--secondary-color);
    color: var(--primary-dark);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.about-image-badge .years {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.about-image-badge span {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}

.about-text .subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 2rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.05));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.about-feature-icon i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.about-feature h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.about-feature p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--gray);
}

/* ===== EKİP BÖLÜMÜ ===== */
.team-section {
    background: var(--off-white);
}

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

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(26, 42, 74, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.team-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(26, 42, 74, 0.15);
}

.team-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 120%;
    background: linear-gradient(135deg, var(--secondary-light), var(--primary-light));
}

.team-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    transition: var(--transition-slow);
    display: block;
}

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

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(26, 42, 74, 0.98), rgba(26, 42, 74, 0.7), transparent);
    transform: translateY(100%);
    transition: var(--transition-normal);
}

.team-card:hover .team-overlay {
    transform: translateY(0);
}

.team-social {
    display: flex;
    gap: 10px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-normal);
}

.team-social a:hover {
    background: var(--secondary-color);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.team-info .position {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== İSTATİSTİKLER BÖLÜMÜ ===== */
.stats-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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='%23c9a84c' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

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

.stat-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(201, 168, 76, 0.3);
}

.stat-card-icon i {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.stat-card .number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-card .label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* ===== YORUMLAR / TESTİMONİALS ===== */
.testimonials-section {
    background: var(--off-white);
    position: relative;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    position: relative;
    box-shadow: var(--shadow-sm);
    margin: 20px;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 40px;
    font-family: var(--font-heading);
    font-size: 8rem;
    color: var(--secondary-color);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
}

.testimonial-author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author-info p {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ===== CTA BÖLÜMÜ ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 50%;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

/* ===== BLOG BÖLÜMÜ ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary-color);
    color: var(--primary-dark);
    padding: 8px 15px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--gray);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-meta i {
    color: var(--secondary-color);
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    transition: var(--transition-normal);
}

.blog-card:hover .blog-content h3 {
    color: var(--secondary-color);
}

.blog-content p {
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.blog-link:hover {
    color: var(--secondary-color);
}

.blog-link i {
    transition: var(--transition-normal);
}

.blog-link:hover i {
    transform: translateX(5px);
}

/* ===== SSS BÖLÜMÜ ===== */
.faq-section {
    background: var(--off-white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item.active {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.faq-question:hover {
    background: rgba(201, 168, 76, 0.05);
}

.faq-question h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

.faq-item.active .faq-question h4 {
    color: var(--secondary-color);
}

.faq-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.faq-icon i {
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.faq-item.active .faq-icon {
    background: var(--secondary-color);
}

.faq-item.active .faq-icon i {
    color: var(--primary-dark);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 30px 25px;
    color: var(--gray);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ===== İLETİŞİM BÖLÜMÜ ===== */
.contact-section {
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    border-radius: var(--radius-lg);
    padding: 50px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 50%;
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

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

.contact-item-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.contact-item-icon i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.contact-item h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-item p, .contact-item a {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

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

.contact-social {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-social h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.contact-social .social-links a {
    width: 45px;
    height: 45px;
    font-size: 1rem;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    margin-bottom: 2rem;
}

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

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--dark-gray);
    transition: var(--transition-normal);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.1);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

/* Input Error State */
.form-group .input-error,
.form-group input.input-error,
.form-group textarea.input-error,
.form-group select.input-error {
    border-color: #ef4444 !important;
    background-color: rgba(239, 68, 68, 0.05);
}

.form-group .error-message {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-dark);
    color: var(--white);
}

.footer-top {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr;
    gap: 50px;
}

.footer-about {
    padding-right: 20px;
}

.footer-about .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--secondary-color);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-links-wrapper h4,
.footer-contact-wrapper h4 {
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    font-size: 1rem;
}

.footer-links-wrapper h4::after,
.footer-contact-wrapper h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition-normal);
    display: inline-block;
}

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

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact i {
    color: var(--secondary-color);
    min-width: 20px;
    margin-top: 2px;
}

.footer-bottom {
    padding: 25px 0;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

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

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

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

/* Footer Policies */
.footer-policies {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-policies a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    padding: 5px 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
}

.footer-policies a:hover {
    color: var(--white);
    border-color: var(--secondary-color);
    background-color: rgba(201, 168, 76, 0.1);
    transform: scale(1.05);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--primary-dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
    z-index: 999;
    box-shadow: var(--shadow-gold);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--secondary-light);
    transform: translateY(-5px);
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    animation: pulse 1.5s infinite;
}

.preloader-text {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-top: 20px;
}

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

/* ===== PRATİK ALANLAR SAYFASI ===== */
.practice-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.practice-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
}

.practice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 1;
}

.practice-card:hover::before {
    opacity: 0.95;
}

.practice-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.practice-image {
    height: 200px;
    overflow: hidden;
}

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

.practice-content {
    padding: 30px;
    position: relative;
    z-index: 2;
    transition: var(--transition-normal);
}

.practice-card:hover .practice-content {
    color: var(--white);
}

.practice-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: -50px;
    position: relative;
    z-index: 3;
    box-shadow: var(--shadow-gold);
}

.practice-icon i {
    font-size: 1.5rem;
    color: var(--primary-dark);
}

.practice-content h3 {
    margin-bottom: 15px;
    transition: var(--transition-normal);
}

.practice-card:hover .practice-content h3 {
    color: var(--white);
}

.practice-content p {
    margin-bottom: 20px;
    transition: var(--transition-normal);
}

.practice-card:hover .practice-content p {
    color: rgba(255, 255, 255, 0.8);
}

.practice-list {
    margin-bottom: 20px;
}

.practice-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--gray);
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.practice-card:hover .practice-list li {
    color: rgba(255, 255, 255, 0.8);
}

.practice-list i {
    color: var(--secondary-color);
    font-size: 0.8rem;
}

/* ===== BAŞARI HİKAYELERİ ===== */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.case-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.case-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    padding: 30px;
    position: relative;
}

.case-category {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-dark);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.case-header h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.case-result {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4ade80;
    font-weight: 600;
}

.case-result i {
    font-size: 1.2rem;
}

.case-body {
    padding: 30px;
}

.case-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.case-detail {
    display: flex;
    flex-direction: column;
}

.case-detail .label {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.case-detail .value {
    font-weight: 600;
    color: var(--primary-color);
}

.case-description {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* ===== RANDEVU FORMU ===== */
.appointment-section {
    background: var(--off-white);
}

.appointment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.appointment-info {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-sm);
}

.appointment-info h3 {
    margin-bottom: 1.5rem;
}

.appointment-benefits {
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--light-gray);
}

.benefit-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.05));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
}
/* ===== RANDEVU DEVAMI ===== */
.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.benefit-icon i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.benefit-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.benefit-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.appointment-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.appointment-form-wrapper::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 30px;
    right: 30px;
    height: 6px;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light), var(--secondary-color));
    border-radius: 3px;
}

.form-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.form-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: var(--light-gray);
    z-index: 0;
}

.form-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--gray);
    transition: var(--transition-normal);
}

.form-step.active .step-number,
.form-step.completed .step-number {
    background: var(--secondary-color);
    color: var(--primary-dark);
}

.form-step.completed .step-number::after {
    content: '✓';
}

.step-label {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
}

.form-step.active .step-label {
    color: var(--primary-color);
    font-weight: 600;
}

/* Date & Time Picker Özel Stiller */
.datetime-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.time-slot {
    padding: 12px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    text-align: center;
    cursor: pointer;
    transition: var(--transition-normal);
    font-weight: 500;
}

.time-slot:hover {
    border-color: var(--secondary-color);
    background: rgba(201, 168, 76, 0.05);
}

.time-slot.selected {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-dark);
}

.time-slot.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* Checkbox & Radio Özel */
.custom-checkbox,
.custom-radio {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin-bottom: 15px;
}

.custom-checkbox input,
.custom-radio input {
    display: none;
}

.checkmark {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.custom-radio .checkmark {
    border-radius: 50%;
}

.custom-checkbox input:checked + .checkmark,
.custom-radio input:checked + .checkmark {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.custom-checkbox input:checked + .checkmark::after {
    content: '✓';
    color: var(--primary-dark);
    font-size: 0.8rem;
    font-weight: 700;
}

.custom-radio input:checked + .checkmark::after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary-dark);
    border-radius: 50%;
}

.checkbox-label {
    font-size: 0.95rem;
    color: var(--dark-gray);
    line-height: 1.5;
}

.checkbox-label a {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* ===== HARİTA BÖLÜMÜ ===== */
.map-section {
    height: 450px;
    position: relative;
}

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

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

.map-overlay {
    position: absolute;
    top: 50px;
    left: 50px;
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 350px;
}

.map-overlay h4 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-overlay h4 i {
    color: var(--secondary-color);
}

.map-overlay p {
    margin-bottom: 20px;
}

/* ===== BLOG DETAY SAYFASI ===== */
.blog-single {
    padding: 100px 0;
}

.blog-single-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.blog-single-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.blog-single-image {
    height: 400px;
    overflow: hidden;
}

.blog-single-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-single-body {
    padding: 50px;
}

.blog-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--light-gray);
}

.blog-single-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 0.9rem;
}

.blog-single-meta i {
    color: var(--secondary-color);
}

.blog-single-body h1 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    line-height: 1.4;
}

.blog-single-body h2 {
    font-size: 1.6rem;
    margin: 35px 0 20px;
}

.blog-single-body h3 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
}

.blog-single-body p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.blog-single-body ul,
.blog-single-body ol {
    margin: 20px 0;
    padding-left: 25px;
}

.blog-single-body li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: var(--gray);
}

.blog-single-body ul li {
    list-style: disc;
}

.blog-single-body ol li {
    list-style: decimal;
}

.blog-single-body blockquote {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 35px 40px;
    border-radius: var(--radius-md);
    margin: 35px 0;
    position: relative;
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.8;
}

.blog-single-body blockquote::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--secondary-color);
    opacity: 0.3;
    line-height: 1;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--light-gray);
}

.blog-tag {
    background: var(--off-white);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gray);
    transition: var(--transition-normal);
}

.blog-tag:hover {
    background: var(--secondary-color);
    color: var(--primary-dark);
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
}

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

.search-form input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    transition: var(--transition-normal);
}

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

.search-form button {
    padding: 14px 18px;
    background: var(--secondary-color);
    color: var(--primary-dark);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
}

.search-form button:hover {
    background: var(--secondary-dark);
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: var(--off-white);
    border-radius: var(--radius-md);
    color: var(--dark-gray);
    transition: var(--transition-normal);
}

.category-list a:hover {
    background: var(--primary-color);
    color: var(--white);
    padding-left: 20px;
}

.category-list span {
    background: var(--secondary-color);
    color: var(--primary-dark);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.recent-posts li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.recent-posts li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-post-image {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.recent-posts li:hover .recent-post-image img {
    transform: scale(1.1);
}

.recent-post-content h5 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    line-height: 1.4;
    transition: var(--transition-normal);
}

.recent-posts li:hover .recent-post-content h5 {
    color: var(--secondary-color);
}

.recent-post-content span {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ===== DETAY SAYFALARI İÇİN ÖZEL STİLLER ===== */
.content-section {
    padding: 100px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.content-grid:has(.side-navigation) {
    grid-template-columns: 250px 1fr;
}

/* Yan Menü - Servis Detay vb. */
.side-navigation {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 120px;
    height: fit-content;
}

.side-navigation h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--secondary-color);
}

.side-nav-list li {
    margin-bottom: 5px;
}

.side-nav-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.side-nav-list a i {
    color: var(--secondary-color);
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.side-nav-list a:hover,
.side-nav-list a.active {
    background: var(--primary-color);
    color: var(--white);
    padding-left: 22px;
}

.side-nav-list a:hover i,
.side-nav-list a.active i {
    color: var(--secondary-color);
}

.side-contact-box {
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    border-radius: var(--radius-md);
    text-align: center;
}

.side-contact-box i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.side-contact-box h5 {
    color: var(--white);
    margin-bottom: 10px;
}

.side-contact-box p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.side-contact-box a {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

/* İçerik Alanı */
.main-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-sm);
}

.main-content h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.content-intro {
    font-size: 1.15rem;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--light-gray);
}

.content-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 30px 0;
    box-shadow: var(--shadow-md);
}

.content-image img {
    width: 100%;
    height: auto;
}

.content-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.content-feature {
    display: flex;
    gap: 15px;
    padding: 25px;
    background: var(--off-white);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.content-feature:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.content-feature:hover h4,
.content-feature:hover p {
    color: var(--white);
}

.content-feature:hover p {
    color: rgba(255, 255, 255, 0.8);
}

.content-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--secondary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-feature-icon i {
    color: var(--primary-dark);
    font-size: 1.2rem;
}

.content-feature h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    transition: var(--transition-normal);
}

.content-feature p {
    margin-bottom: 0;
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

/* Process / Süreç Adımları */
.process-steps {
    margin: 50px 0;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 25px;
    width: 2px;
    height: calc(100% - 20px);
    background: linear-gradient(to bottom, var(--secondary-color), transparent);
}

.process-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    box-shadow: var(--shadow-gold);
}

.process-content h4 {
    margin-bottom: 10px;
}

.process-content p {
    margin-bottom: 0;
}

/* Pricing / Fiyatlandırma */
.pricing-note {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.05));
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: var(--radius-md);
    padding: 25px 30px;
    margin: 40px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.pricing-note i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-top: 3px;
}

.pricing-note h4 {
    margin-bottom: 8px;
    color: var(--secondary-dark);
}

.pricing-note p {
    margin-bottom: 0;
}

/* ===== EKİP DETAY ===== */
.lawyer-detail {
    padding: 100px 0;
}

.lawyer-detail-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
}

.lawyer-profile-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 120px;
}

.lawyer-profile-image {
    height: 400px;
    overflow: hidden;
}

.lawyer-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lawyer-profile-info {
    padding: 30px;
    text-align: center;
}

.lawyer-profile-info h2 {
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.lawyer-profile-info .position {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.lawyer-contact-info {
    text-align: left;
    padding: 20px 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
    margin-bottom: 20px;
}

.lawyer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--gray);
    font-size: 0.95rem;
}

.lawyer-contact-item:last-child {
    margin-bottom: 0;
}

.lawyer-contact-item i {
    color: var(--secondary-color);
    width: 20px;
}

.lawyer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.lawyer-social a {
    width: 42px;
    height: 42px;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.lawyer-social a:hover {
    background: var(--secondary-color);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.lawyer-detail-content h1 {
    font-size: 2rem;
    margin-bottom: 25px;
}

.lawyer-bio {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--dark-gray);
    margin-bottom: 40px;
}

.lawyer-section {
    margin-bottom: 40px;
}

.lawyer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.lawyer-section h3 i {
    color: var(--secondary-color);
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.expertise-tag {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.education-list,
.experience-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.education-item,
.experience-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--off-white);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--secondary-color);
}

.edu-year,
.exp-year {
    min-width: 100px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.edu-content h4,
.exp-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.edu-content p,
.exp-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ===== SAYFALAMA ===== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
}

.pagination a,
.pagination span {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-normal);
}

.pagination a {
    background: var(--white);
    color: var(--dark-gray);
    border: 2px solid var(--light-gray);
}

.pagination a:hover,
.pagination a.active {
    background: var(--secondary-color);
    color: var(--primary-dark);
    border-color: var(--secondary-color);
}

.pagination .dots {
    color: var(--gray);
}

.pagination .prev,
.pagination .next {
    width: auto;
    padding: 0 20px;
    gap: 8px;
}

/* ===== 404 SAYFASI ===== */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    text-align: center;
    padding: 50px 20px;
}

.error-content {
    max-width: 600px;
}

.error-number {
    font-family: var(--font-heading);
    font-size: clamp(8rem, 20vw, 15rem);
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
    text-shadow: 0 10px 50px rgba(201, 168, 76, 0.3);
    margin-bottom: 20px;
}

.error-content h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.error-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

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

/* ===== ANİMASYONLAR ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

/* Hover Efektleri */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.4);
}

/* ===== MOBİL RESPONSIVE ===== */

/* Tablet - 1024px */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .container {
        padding: 0 30px;
    }
    
    .header-top {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: var(--primary-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px 40px;
        gap: 0;
        transition: var(--transition-normal);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        width: 100%;
        padding: 18px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1.1rem;
    }
    
    .nav-item .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.05);
        border-radius: var(--radius-md);
        margin-top: 10px;
        display: none;
    }
    
    .nav-item.active .dropdown {
        display: block;
    }
    
    .dropdown a {
        color: rgba(255, 255, 255, 0.8) !important;
        padding: 12px 20px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .about-content {
        gap: 50px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .blog-single-container {
        grid-template-columns: 1fr;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .side-navigation {
        position: static;
    }
    
    .lawyer-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .lawyer-profile-card {
        position: static;
        max-width: 400px;
        margin: 0 auto 40px;
    }
}

/* Tablet Küçük - 768px */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header .subtitle::before,
    .section-header .subtitle::after {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
    
    .footer-about {
        grid-column: 1 / -1;
        padding-right: 0;
    }
    
    .hero {
        min-height: auto;
        padding: 150px 0 80px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 25px;
    }
    
    .stat-item {
        flex: 1 1 120px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-image-badge {
        bottom: -20px;
        right: 20px;
        padding: 20px;
    }
    
    .about-image-badge .years {
        font-size: 2.5rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
    
    .stat-card .number {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        padding: 30px;
        margin: 10px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .blog-grid,
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .appointment-grid {
        grid-template-columns: 1fr;
    }
    
    .map-overlay {
        position: static;
        max-width: 100%;
        margin: -50px 20px 0;
        position: relative;
        z-index: 10;
    }
    
    .map-section {
        height: 350px;
    }
    
    .content-features {
        grid-template-columns: 1fr;
    }
    
    .datetime-grid {
        grid-template-columns: 1fr;
    }
    
    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobil - 576px */
@media (max-width: 576px) {
    :root {
        --section-padding: 50px 0;
    }
    
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.85rem;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .logo-icon::before {
        font-size: 1.4rem;
    }
    
    .logo-text .firm-name {
        font-size: 1.2rem;
    }
    
    .logo-text .firm-tagline {
        font-size: 0.65rem;
    }
    
    .nav-menu {
        width: 100%;
        right: -100%;
        padding: 80px 25px 30px;
    }
    
    .page-hero {
        padding: 140px 0 60px;
    }
    
    .breadcrumb {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .service-card {
        padding: 30px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card-icon {
        width: 55px;
        height: 55px;
    }
    
    .stat-card .number {
        font-size: 2.2rem;
    }
    
    .testimonial-card::before {
        font-size: 5rem;
        right: 20px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info,
    .contact-form {
        padding: 30px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item-icon {
        margin: 0 auto;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 0 20px 20px;
    }
    
    .blog-single-body {
        padding: 30px;
    }
    
    .blog-single-body h1 {
        font-size: 1.7rem;
    }
    
    .sidebar-widget {
        padding: 25px;
    }
    
    .main-content {
        padding: 30px;
    }
    
    .main-content h1 {
        font-size: 1.8rem;
    }
    
    .process-step {
        flex-direction: column;
        gap: 15px;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
    
    .education-item,
    .experience-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .form-steps {
        flex-direction: column;
        gap: 20px;
    }
    
    .form-steps::before {
        display: none;
    }
    
    .form-step {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .time-slots {
        grid-template-columns: 1fr 1fr;
    }
    
    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
    
    .case-details {
        grid-template-columns: 1fr;
    }
    
    .practice-areas-grid {
        grid-template-columns: 1fr;
    }
    
    .error-number {
        font-size: 6rem;
    }
    
    .error-content h1 {
        font-size: 1.8rem;
    }
    
    .error-buttons {
        flex-direction: column;
    }
}

/* Küçük Mobil - 375px */
@media (max-width: 375px) {
    html {
        font-size: 14px;
    }
    
    .hero-badge {
        padding: 8px 15px;
    }
    
    .hero-badge span {
        font-size: 0.75rem;
    }
    
    .stat-item {
        flex: 1 1 100%;
    }
    
    .about-image-main img {
        height: 350px;
    }
    
    .time-slots {
        grid-template-columns: 1fr;
    }
}

/* Yatay Telefon */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-stats {
        margin-top: 30px;
        padding-top: 20px;
    }
    
    .page-hero {
        padding: 100px 0 40px;
    }
}

/* Yüksek DPI Ekranlar */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-icon,
    .service-icon,
    .stat-card-icon {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Fixed WhatsApp Button & Contact Box */
.whatsapp-contact-box {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0;
    user-select: none;
}

.whatsapp-contact-box:active {
    cursor: default;
}

.whatsapp-float {
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
    text-decoration: none;
    transition: all 0.2s ease;
    color: white;
    flex-shrink: 0;
}

.whatsapp-float:hover {
    background: #1fa857;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    transform: scale(1.08);
}

.whatsapp-float i {
    font-size: 28px;
    color: white;
}

.contact-message {
    display: none;
}

/* Mobile WhatsApp */
@media (max-width: 576px) {
    .whatsapp-contact-box {
        bottom: 20px;
        left: 20px;
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
    }
    
    .whatsapp-float i {
        font-size: 28px;
    }
    
    .contact-message {
        max-width: 200px;
        padding: 12px 14px;
        white-space: normal;
    }
    
    .contact-message h4 {
        font-size: 0.9rem;
    }
    
    .contact-message p {
        font-size: 0.8rem;
    }
}
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }


/* Fixed WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #20BA5F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    z-index: 999;
    transition: all var(--transition-normal);
    color: white;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    font-size: 28px;
    color: white;
}

/* ===== EKİP SAYFASI KARTLARI ===== */
.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.team-card .team-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.team-card .team-info {
    padding: 30px 25px;
    text-align: center;
}

.team-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.team-card .position {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.team-card .bio {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.team-card .social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}

/* ===== DEĞER KARTLARI ===== */
.value-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

.value-card i {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: block;
    transition: var(--transition-normal);
}

.value-card:hover i {
    transform: scale(1.15) rotate(-10deg);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.value-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Print Stili */
@media print {
    .header,
    .footer,
    .scroll-top,
    .whatsapp-contact-box,
    .cta-section {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 50px 0;
        background: var(--white);
    }
    
    .hero h1,
    .hero p {
        color: var(--black);
    }
    
    .section {
        padding: 30px 0;
    }
    
    a {
        text-decoration: underline;
    }
}

/* Reduced Motion - Erişilebilirlik */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Policy Pages CSS */
.policy-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.policy-content h2 {
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p {
    margin-bottom: 15px;
    color: var(--text-color);
    text-align: justify;
}

.policy-content ul {
    margin: 15px 0 15px 30px;
    list-style-type: none;
}

.policy-content ul li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: var(--text-color);
    text-align: justify;
}

.policy-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.content-wrapper {
    padding: 40px 0;
}

/* ===== PERFORMANS OPTİMİZASYONLARI ===== */

/* Image Loading Performance */
img[loading="lazy"] {
    background: linear-gradient(90deg, #f0f0f0 0%, #e0e0e0 50%, #f0f0f0 100%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Will-change optimization */
.header,
.hero-shape,
.animate-on-scroll,
.btn {
    will-change: transform, opacity;
}

/* GPU Acceleration */
.parallax,
.hero,
.header.sticky {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Font Display - Tekirdağ Hukuk Bürosu */
@font-face {
    font-family: 'Playfair Display';
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    font-display: swap;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .scroll-top,
    .whatsapp-contact-box,
    .cta-section,
    .mobile-menu-toggle {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
}

/* ===== SEO & ACCESSIBILITY ===== */

/* Skip to content link */
.skip-to-content {
    position: absolute;
    top: -9999px;
    left: -9999px;
    z-index: 999;
    padding: 1em;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
}

.skip-to-content:focus {
    top: 0;
    left: 0;
}

/* Focus visible styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Visually hidden but accessible to screen readers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border-width: 0;
}

/* Dark Mode Desteği (Opsiyonel) */
@media (prefers-color-scheme: dark) {
    /* İsteğe bağlı dark mode stilleri buraya */
}

/* ===== TEKIRDAĞ/THRACE REGIONAL STYLING ===== */

/* Turkish Legal Industry Standards */
.service-card,
.team-card,
.testimonial-card {
    border: 1px solid rgba(26, 42, 74, 0.1);
}

/* Law firm specific styling */
.firm-name,
[data-firm-name] {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Legal terminology styling */
.legal-term,
[data-legal-term] {
    font-style: italic;
    color: var(--primary-color);
}

/* Location-specific styles for Tekirdağ */
@media (max-width: 768px) {
    .container {
        max-width: 100%;
    }
    
    .section {
        padding: 50px 0;
    }
}

