* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - Mega Menu Style */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    font-size: 13px;
    padding: 10px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.contact-info a:hover {
    color: white;
}

.contact-info i {
    font-size: 14px;
}

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

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    font-size: 14px;
}

.social-links a:hover {
    background: white;
    color: #002855;
    transform: translateY(-2px);
}

/* Main Header Content */
.main-header-content {
    background: white;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: relative;
}

/* Logo - Modern */
.logo a {
    display: block;
    line-height: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo img {
    height: auto;
    max-width: 100%;
    width: auto;
    max-height: 70px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1);
}

.logo a:hover {
    transform: translateY(-2px);
}

.logo a:hover img {
    filter: brightness(0.9);
}

/* Hamburger Menü Butonu - Sadece Mobile'da Görünür */
.mobile-menu-toggle {
    display: none;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #002855;
    border-radius: 12px;
    cursor: pointer;
    padding: 12px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    z-index: 1001;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0,40,85,0.1);
}

.mobile-menu-toggle:hover {
    background: #f8f9fa;
    box-shadow: 0 4px 16px rgba(0,40,85,0.2);
    transform: translateY(-50%) scale(1.05);
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: #002855;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 16px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 22.5px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 29px;
}

.mobile-menu-toggle.active {
    background: white;
    border-color: #002855;
    box-shadow: 0 4px 16px rgba(0,40,85,0.25);
}

.mobile-menu-toggle.active span {
    background: #002855;
}

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

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

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

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #002855;
    position: relative;
    padding-bottom: 5px;
}

.logo h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #002855;
}

/* Desktop Menü - Yatay */
.main-nav {
    display: block;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

.main-nav li {
    border-bottom: none;
}

.main-nav a {
    color: #1f2937;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: all 0.3s;
    padding: 25px 30px;
    position: relative;
    display: block;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #B8860B;
    transform: scaleX(0);
    transition: transform 0.3s;
}

.main-nav a:hover {
    background: #f9fafb;
    color: #002855;
}

.main-nav a:hover::after {
    transform: scaleX(1);
}

.main-nav a.active {
    color: #002855;
    background: #f0f4f8;
}

.main-nav a.active::after {
    transform: scaleX(1);
}

/* Hero Section - Modern & Kurumsal */
.hero {
    position: relative;
    background: #002855;
    color: white;
    padding: 100px 0 80px;
    text-align: center;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Arka plan görseli için */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 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%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');
    opacity: 0.4;
    z-index: 0;
}

/* Gradient overlay */
/* .hero::after - Overlay kaldırıldı, görsel tam görünsün */

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero h2 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 0.6s ease-out;
}

.hero p {
    font-size: 19px;
    opacity: 0.95;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.8), 0 1px 5px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 0.8s ease-out;
}

/* Breadcrumb navigation */
.hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    font-size: 14px;
    opacity: 0.85;
    animation: fadeInUp 1s ease-out;
}

.hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-breadcrumb a:hover {
    color: #B8860B;
}

.hero-breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

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

/* Responsive Hero */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0 50px;
        min-height: 300px;
    }
    
    .hero h2 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 16px;
    }
}

/* Section */
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #002855;
    margin-bottom: 20px;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Practice Areas Section */
.practice-areas-section {
    background: white;
}

/* Seçenek 4: Minimal Design with Fixed Background */
.practice-areas-section-minimal {
    background: white;
    padding: 80px 0;
}

/* Arka Plan Görseli Wrapper - Sadece başlık ve kartları kapsar */
.practice-areas-content-wrapper {
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 60px 40px 80px;
    border-radius: 20px;
    margin: 0 auto;
    max-width: 1400px;
    overflow: hidden;
}

/* Arka plan görseli varsa stiller */
.practice-areas-content-wrapper[style*="background-image"] {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.practice-areas-content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245,247,250,0.88) 0%, rgba(255,255,255,0.88) 100%);
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Arka plan görseli varsa overlay'i azalt - Glassmorphism için */
.practice-areas-content-wrapper[style*="background-image"]::before {
    background: linear-gradient(135deg, rgba(245,247,250,0.65) 0%, rgba(255,255,255,0.65) 100%);
}

.practice-areas-content-wrapper > * {
    position: relative;
    z-index: 2;
}

.practice-areas-section-minimal .container {
    position: relative;
}

.practice-areas-section-minimal .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.practice-areas-section-minimal .section-title h2 {
    font-size: 36px;
    color: #002855;
    margin-bottom: 15px;
    font-weight: 700;
}

.practice-areas-section-minimal .section-title p {
    font-size: 17px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

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

.practice-area-card-minimal {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 35px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
}

.practice-area-card-minimal:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 40px rgba(0, 40, 85, 0.2);
}

.practice-icon-minimal {
    margin-bottom: 20px;
}

.outline-icon {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.outline-icon svg {
    width: 100%;
    height: 100%;
    stroke: #002855;
    stroke-width: 1.5;
    transition: all 0.3s ease;
}

.outline-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.practice-area-card-minimal:hover .outline-icon {
    transform: rotate(-5deg) scale(1.1);
}

.practice-area-card-minimal:hover .outline-icon svg {
    stroke: #002855;
    stroke-width: 2.5;
}

.practice-area-card-minimal h3 {
    font-size: 20px;
    font-weight: 700;
    color: #002855;
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.practice-area-card-minimal p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
}

.practice-btn-minimal {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #002855;
    text-decoration: none;
    border: 1.5px solid rgba(0, 40, 85, 0.4);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.practice-btn-minimal:hover {
    background: rgba(0, 40, 85, 0.9);
    color: white;
    border-color: rgba(0, 40, 85, 0.9);
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 40, 85, 0.3);
}

.practice-area-card-minimal [class^="service-full-"] {
    max-height: 500px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #002855 #f0f0f0;
    padding-right: 10px;
}

.practice-area-card-minimal [class^="service-full-"]::-webkit-scrollbar {
    width: 6px;
}

.practice-area-card-minimal [class^="service-full-"]::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.practice-area-card-minimal [class^="service-full-"]::-webkit-scrollbar-thumb {
    background: #002855;
    border-radius: 10px;
}

.practice-area-card-minimal [class^="service-full-"]::-webkit-scrollbar-thumb:hover {
    background: #003875;
}

/* Responsive */
@media (max-width: 1024px) {
    .practice-areas-grid-minimal {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .practice-areas-section-minimal {
        padding: 60px 0;
        background-attachment: scroll; /* Mobilde fixed yerine scroll */
    }
    
    .practice-areas-grid-minimal {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .practice-areas-section-minimal .section-title h2 {
        font-size: 28px;
    }
    
    .practice-areas-section-minimal .section-title p {
        font-size: 15px;
    }
}

.practice-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.practice-area-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.practice-area-card .practice-icon,
.practice-area-card h3 {
    text-align: center;
}

.practice-area-card [class^="service-content-"],
.practice-area-card [class^="service-short-"],
.practice-area-card [class^="service-full-"] {
    text-align: left;
    flex-grow: 1;
}

/* Hizmet kartları için scroll */
.practice-area-card [class^="service-full-"] {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
    scrollbar-width: thin;
    scrollbar-color: #B8860B #f0f0f0;
    margin-bottom: 0;
}

/* Hizmet buton container */
.practice-area-card [class^="service-content-"] > div:last-child {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

/* Webkit tarayıcılar için özel scrollbar (hizmetler) */
.practice-area-card [class^="service-full-"]::-webkit-scrollbar {
    width: 8px;
}

.practice-area-card [class^="service-full-"]::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.practice-area-card [class^="service-full-"]::-webkit-scrollbar-thumb {
    background: #B8860B;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.practice-area-card [class^="service-full-"]::-webkit-scrollbar-thumb:hover {
    background: #002855;
}

.practice-area-card h3 {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.practice-area-card.expanded {
    z-index: 10;
    box-shadow: 0 10px 40px rgba(0,40,85,0.25);
    border-color: #002855;
}

.practice-area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,40,85,0.15);
    border-color: #002855;
}

/* Modern Icon Styles */
.practice-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid #1a1a1a;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.practice-icon i {
    font-size: 40px;
    color: #1a1a1a;
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.practice-area-card:hover .practice-icon {
    background: #1a1a1a;
    border-color: #1a1a1a;
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(26, 26, 26, 0.15);
}

.practice-area-card:hover .practice-icon i {
    color: white;
    transform: scale(1.05);
}

/* SVG Icon Support */
.practice-icon svg {
    width: 45px;
    height: 45px;
    fill: none;
    stroke: #1a1a1a;
    stroke-width: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.practice-area-card:hover .practice-icon svg {
    stroke: white;
    fill: none;
}

.practice-area-card h3 {
    color: #002855;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.practice-area-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* About Section */
/* About Section - Modern Two Column Layout */
/* Seçenek 1: Minimalist & Elegant About Section */
/* Hakkımızda Bölümü - Split Right Image */
.about-section-split {
    background: #f8f9fa;
    padding: 80px 0;
}

.about-section-split .container {
    max-width: 1200px;
}

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

.about-header-split h2 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #002855;
    text-shadow: none;
}

.about-header-split p {
    font-size: 20px;
    font-style: italic;
    color: #666;
}

.about-box-split {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    display: grid;
    grid-template-columns: 1fr 400px;
    height: 600px;
}

.about-content-split {
    padding: 60px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch; /* Mobil dokunmatik scroll */
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 40, 85, 0.3) transparent;
}

.about-content-split::-webkit-scrollbar {
    width: 4px;
}

.about-content-split::-webkit-scrollbar-track {
    background: transparent;
}

.about-content-split::-webkit-scrollbar-thumb {
    background: rgba(0, 40, 85, 0.25);
    border-radius: 2px;
    transition: background 0.2s ease;
}

.about-content-split::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 40, 85, 0.4);
}

.about-content-split p {
    font-size: 17px;
    line-height: 2;
    color: #444;
    margin-bottom: 25px;
    text-align: justify;
    text-align-last: left;
}

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

.about-image-split {
    background: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=800&q=80') center/cover;
    background-color: #e0e0e0; /* Varsayılan arka plan rengi */
    height: 600px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Minimalist tasarımda görsel ve istatistik kartları yok */

.value-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.value-item h4 {
    color: #002855;
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.value-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.expertise-box {
    background: linear-gradient(135deg, #002855 0%, #004080 100%);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,40,85,0.2);
    color: white;
}

.expertise-box h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.expertise-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    transition: all 0.3s;
    color: white;
    font-size: 14px;
}

.expertise-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(5px);
}

.expertise-icon {
    font-size: 20px;
    width: 30px;
    text-align: center;
}

/* ============================================
   SEÇENEK 1: TIMELINE TASARIMI
   ============================================ */
/* ============================================
   YENİ SEÇENEK 1: ACCORDION (Genişleyen Paneller)
   ============================================ */
.why-accordion {
    background: #F8F9FA;
    padding: 100px 0;
}

.accordion-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.acc-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,40,85,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.acc-item:hover {
    box-shadow: 0 8px 25px rgba(0,40,85,0.15);
}

.acc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: white;
    transition: all 0.3s ease;
}

.acc-item.active .acc-header {
    background: linear-gradient(135deg, #002855 0%, #003875 100%);
}

.acc-header h4 {
    font-size: 20px;
    color: #002855;
    font-weight: 700;
    margin: 0;
    transition: color 0.3s ease;
}

.acc-item.active .acc-header h4 {
    color: white;
}

.acc-icon {
    font-size: 28px;
    font-weight: 300;
    color: #002855;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.acc-item.active .acc-icon {
    color: white;
    transform: rotate(45deg);
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.acc-item.active .acc-body {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.acc-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #4B5563;
    margin: 0;
}

/* ============================================
   YENİ SEÇENEK 2: GRID HOVER (Hover'da Genişleyen Grid)
   ============================================ */
.why-grid-hover {
    background: white;
    padding: 100px 0;
}

.hover-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.hover-box {
    position: relative;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-box:hover {
    transform: scale(1.05);
    z-index: 10;
}

.hover-front,
.hover-back {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.hover-front {
    background: linear-gradient(135deg, #002855 0%, #003875 100%);
    z-index: 2;
}

.hover-box:hover .hover-front {
    opacity: 0;
    transform: translateY(-20px);
}

.hover-back {
    background: #F8F9FA;
    border: 3px solid #002855;
    opacity: 0;
    transform: translateY(20px);
}

.hover-box:hover .hover-back {
    opacity: 1;
    transform: translateY(0);
}

.hover-front h4 {
    font-size: 22px;
    color: white;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    margin: 0;
}

.hover-back p {
    font-size: 15px;
    color: #4B5563;
    line-height: 1.7;
    text-align: center;
    margin: 0;
}

/* ============================================
   YENİ SEÇENEK 3: TABS (Sekmeli Tasarım)
   ============================================ */
.why-tabs {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 100%);
    padding: 100px 0;
    position: relative;
}

/* Subtle pattern overlay for depth */
.why-tabs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(0, 40, 85, 0.02) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
}

.tabs-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.tabs-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,40,85,0.12);
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.tab-btn {
    flex: 1;
    padding: 18px 25px;
    background: transparent;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #5a6c7d;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-btn:hover {
    background: rgba(0, 40, 85, 0.05);
    color: #002855;
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(135deg, #002855 0%, #004080 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(0,40,85,0.3);
    transform: translateY(-2px);
}

.tabs-content {
    position: relative;
    min-height: 300px;
}

.tab-panel {
    display: none;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,40,85,0.12);
    animation: fadeIn 0.5s ease;
    border: 1px solid rgba(0, 40, 85, 0.08);
}

.tab-panel.active {
    display: block;
}

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

.tab-panel h3 {
    font-size: 28px;
    color: #002855;
    margin-bottom: 20px;
    font-weight: 700;
    border-bottom: 3px solid #B8860B;
    padding-bottom: 15px;
    position: relative;
}

.tab-panel h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #002855 0%, transparent 100%);
}

.tab-panel p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin: 0;
}

/* ============================================
   RESPONSIVE - YENİ TASARIMLAR
   ============================================ */
@media (max-width: 768px) {
    /* Accordion */
    .acc-header {
        padding: 20px;
    }
    
    .acc-header h4 {
        font-size: 17px;
    }
    
    .acc-body p {
        font-size: 15px;
    }
    
    /* Grid Hover */
    .hover-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hover-box {
        height: 200px;
    }
    
    .hover-front h4 {
        font-size: 18px;
    }
    
    .hover-back p {
        font-size: 14px;
    }
    
    /* Tabs */
    .tabs-nav {
        flex-direction: column;
        gap: 5px;
    }
    
    .tab-btn {
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .tab-panel {
        padding: 30px 25px;
    }
    
    .tab-panel h3 {
        font-size: 22px;
    }
    
    .tab-panel p {
        font-size: 15px;
    }
}

/* Lawyers Grid */
.lawyers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.lawyer-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

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

.lawyer-photo {
    width: 180px;
    height: 180px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #002855;
    box-shadow: 0 4px 10px rgba(0,40,85,0.2);
}

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

.lawyer-card h3 {
    color: #002855;
    font-size: 24px;
    margin-bottom: 10px;
}

.lawyer-card .title {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lawyer-card p {
    color: #555;
    line-height: 1.6;
}

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

.service-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #002855;
}

.service-card h3 {
    color: #002855;
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    color: #555;
    line-height: 1.7;
}

/* Decision Cards */
.decisions-grid {
    display: grid;
    gap: 30px;
}

.decision-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.decision-header {
    padding: 25px;
    border-left: 4px solid #002855;
}

.decision-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
}

.decision-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.lawyer-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(184,134,11,0.1);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 13px;
}

.lawyer-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #002855;
}

.decision-card h3 {
    color: #002855;
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.decision-summary {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.decision-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
}

.decision-content.active {
    max-height: 600px;
    overflow-y: auto;
    padding: 0 25px 25px 25px;
    scrollbar-width: thin;
    scrollbar-color: #B8860B #f0f0f0;
}

/* Webkit tarayıcılar için özel scrollbar */
.decision-content.active::-webkit-scrollbar {
    width: 8px;
}

.decision-content.active::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.decision-content.active::-webkit-scrollbar-thumb {
    background: #B8860B;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.decision-content.active::-webkit-scrollbar-thumb:hover {
    background: #002855;
}

.decision-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.decision-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 4px;
}

.btn-toggle {
    background: linear-gradient(135deg, #002855 0%, #003875 100%);
    color: white;
    border: none;
    padding: 10px 28px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0,40,85,0.2);
}

.btn-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,40,85,0.3);
}

.btn-toggle.active {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,40,85,0.3);
}

/* Contact Form */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Yatay düzen: Form ve Bilgiler yan yana */
.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Form satırları (Ad-Soyad, Telefon-E-posta yan yana) */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 0;
}

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

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

.form-group label {
    display: block;
    color: #002855;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #002855;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #002855;
    flex-shrink: 0;
}

.checkbox-group label {
    color: #333;
    user-select: none;
}

.checkbox-group label a {
    font-weight: 600;
    transition: color 0.3s ease;
}

.checkbox-group label a:hover {
    color: #B8860B;
}

.btn-submit {
    background-color: #002855;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #004080;
}

/* Büro Bilgileri Kartı */
.contact-info-wrapper {
    position: sticky;
    top: 20px;
}

.contact-info-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: fit-content;
}

.contact-info-card h3 {
    color: #002855;
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 600;
    border-bottom: 2px solid #002855;
    padding-bottom: 15px;
}

.info-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

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

.info-item strong {
    display: block;
    color: #002855;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item p {
    color: #555;
    line-height: 1.8;
    margin: 0;
    font-size: 15px;
}

/* Responsive: Mobilde dikey düzen */
@media (max-width: 968px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info-wrapper {
        position: static;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 60px 0 25px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 30px;
}

/* Glassmorphism kutular - Her sütun için - Test sayfası 2. seçeneğe göre */
.footer-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

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

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

.footer-section h3 {
    color: white;
    font-size: 17px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p {
    opacity: 0.85;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-about-text p {
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-section ul li a:hover {
    color: #B8860B;
}

/* Modern Footer About Section */
.footer-about {
    max-width: 100%;
    text-align: left;
}

.footer-brand-title {
    display: none; /* Görselde yok */
}

.footer-brand-line {
    width: 80px;
    height: 2px;
    background: #B8860B;
    margin: 15px 0 15px 0;
}

.footer-brand-subtitle {
    font-size: 16px;
    color: white;
    margin: 0 0 20px 0;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.footer-logo-box {
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.footer-brand-logo {
    height: auto;
    max-height: 80px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    display: block;
    margin: 0 auto 15px auto;
    transition: all 0.3s ease;
}

.footer-brand-logo:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.footer-about-text {
    margin-left: 0;
}

.footer-about-text p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    text-align: left;
    margin: 0;
}

/* Footer Links Section */
.footer-links-section h3,
.footer-contact-section h3 {
    font-size: 17px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(184,134,11,0.3);
    position: relative;
    text-align: left;
}

.footer-links-section h3::after,
.footer-contact-section h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 45px;
    height: 2px;
    background: #B8860B;
}

.footer-links-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.footer-links-section ul li {
    margin-bottom: 10px;
    text-align: left;
}

.footer-links-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: left;
}

.footer-links-section ul li a:hover {
    color: #B8860B;
    padding-left: 8px;
}

/* Footer Contact Section */
.footer-contact-section {
    max-width: 350px;
}

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

/* İkonlar kaldırıldı - contact-icon kullanılmıyor */
.contact-icon-removed {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

.contact-text {
    flex: 1;
}

.contact-text strong {
    color: rgba(255,255,255,0.95);
    display: block;
    font-size: 13px;
    margin-bottom: 3px;
    font-weight: 600;
}

.contact-text p {
    color: rgba(255,255,255,0.75);
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #B8860B;
    text-decoration: underline;
}

.footer-links span {
    color: rgba(255,255,255,0.4);
    font-size: 12px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-about {
        max-width: 100%;
        text-align: left;
    }
    
    .footer-logo-box {
        display: block;
        margin: 0 0 20px 0;
        text-align: left;
    }
    
    .footer-brand-logo {
        height: 55px;
        margin: 0;
    }
    
    .footer-about-text p {
        text-align: left;
    }
    
    .footer-links-section,
    .footer-contact-section {
        max-width: 100%;
    }
    
    .footer-links-section h3,
    .footer-contact-section h3 {
        text-align: left;
    }
    
    .footer-links-section h3::after,
    .footer-contact-section h3::after {
        left: 0;
        transform: none;
    }
    
    .footer-links-section ul {
        text-align: left;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-links span {
        display: none;
    }
}

/* Responsive */
@media (max-width: 768px) {
    /* Top Bar Mobile */
    .top-bar {
        padding: 8px 0;
        font-size: 12px;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .contact-info a {
        font-size: 12px;
    }

    .social-links {
        gap: 10px;
    }

    .social-links a {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .header-content {
        justify-content: center;
        padding: 15px 0;
    }
    
    .logo {
        flex: 1;
        display: flex;
        justify-content: center;
    }
    
    .logo img {
        height: auto;
        max-height: 60px;
        max-width: 80%;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    /* Mobile'da Hamburger Menü Görünür */
    .mobile-menu-toggle {
        display: flex;
        right: 15px;
        width: 44px;
        height: 44px;
        padding: 10px;
    }
    
    .mobile-menu-toggle span {
        width: 22px;
        height: 2.5px;
    }
    
    .mobile-menu-toggle span:nth-child(1) {
        top: 14px;
    }
    
    .mobile-menu-toggle span:nth-child(2) {
        top: 20.5px;
    }
    
    .mobile-menu-toggle span:nth-child(3) {
        top: 27px;
    }
    
    .mobile-menu-toggle.active span:nth-child(1),
    .mobile-menu-toggle.active span:nth-child(3) {
        top: 20.5px;
    }

    /* Mobile'da Menü Dropdown */
    .main-nav {
        position: absolute;
        top: 100%;
        right: 0;
        background: white;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        border-radius: 0 0 12px 12px;
        min-width: 250px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }

    .main-nav.active {
        max-height: 500px;
        opacity: 1;
        transform: translateY(0);
        padding: 20px 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        text-align: left;
    }

    .main-nav li {
        border-bottom: 1px solid #f0f0f0;
    }

    .main-nav li:last-child {
        border-bottom: none;
    }

    .main-nav a {
        padding: 15px 25px;
        text-align: left;
    }

    .main-nav a:hover {
        padding-left: 30px;
    }

    .main-nav a.active:hover {
        padding-left: 25px;
    }
    
    .decision-content.active {
        max-height: 400px;
    }
    
    .practice-area-card [class^="service-full-"] {
        max-height: 350px;
    }

    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .services-grid,
    .lawyers-grid,
    .practice-areas-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .decision-meta {
        flex-direction: column;
        gap: 10px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-values {
        grid-template-columns: 1fr;
    }
    
    /* Hakkımızda Split Mobil Düzeni */
    .about-section-split {
        padding: 50px 0;
    }
    
    .about-header-split {
        margin-bottom: 40px;
    }
    
    .about-header-split h2 {
        font-size: 32px;
        letter-spacing: 2px;
    }
    
    .about-header-split p {
        font-size: 16px;
    }
    
    .about-box-split {
        grid-template-columns: 1fr;
        height: auto;
        max-height: none;
    }
    
    .about-image-split {
        height: 300px;
        order: -1; /* Görsel üstte */
    }
    
    .about-content-split {
        padding: 40px 30px;
        max-height: 500px; /* Mobilde maksimum yükseklik */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch; /* Dokunmatik scroll */
    }
    
    .about-content-split p {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 20px;
        text-align: left;
    }
}

/* Liste Stilleri - Minimal & Elegant */
.practice-area-card ul,
.decision-content ul,
#about-content ul,
[class^="service-short-"] ul,
[class^="service-full-"] ul {
    margin: 18px 0;
    padding: 0;
    list-style-type: none;
}

.practice-area-card ul li,
.decision-content ul li,
#about-content ul li,
[class^="service-short-"] ul li,
[class^="service-full-"] ul li {
    position: relative;
    padding: 10px 0 10px 28px;
    margin-bottom: 10px;
    line-height: 1.7;
    text-align: left;
    color: #444;
    font-size: 14.5px;
}

.practice-area-card ul li:before,
.decision-content ul li:before,
#about-content ul li:before,
[class^="service-short-"] ul li:before,
[class^="service-full-"] ul li:before {
    content: '';
    position: absolute;
    left: 8px;
    top: 16px;
    width: 6px;
    height: 6px;
    background: #B8860B;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(184,134,11,0.15);
}

.practice-area-card ul li:last-child,
.decision-content ul li:last-child,
#about-content ul li:last-child,
[class^="service-short-"] ul li:last-child,
[class^="service-full-"] ul li:last-child {
    margin-bottom: 0;
}

/* İç içe listeler için */
.practice-area-card ul ul,
.decision-content ul ul,
#about-content ul ul,
[class^="service-short-"] ul ul,
[class^="service-full-"] ul ul {
    margin: 8px 0 8px 15px;
}

.practice-area-card ul ul li:before,
.decision-content ul ul li:before,
#about-content ul ul li:before,
[class^="service-short-"] ul ul li:before,
[class^="service-full-"] ul ul li:before {
    width: 4px;
    height: 4px;
    background: rgba(184,134,11,0.6);
    box-shadow: 0 0 0 2px rgba(184,134,11,0.1);
}

