/* Main Styles for Lawyer Website */

* {
    -webkit-user-select: none; /* Chrome, Safari, Opera */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE/Edge */
    user-select: none; /* Standard */
    -webkit-touch-callout: none; /* iOS (uzun dokunma menüsünü kapatır) */
}

/* Görselleri sürükleyerek kopyalamayı kapat */
img,
video {
    -webkit-user-drag: none;
    user-drag: none;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
}

:root {
    --primary-color: #1a365d;
    --secondary-color: #718096;
    --accent-color: #8b0000; /* Changed from #3182ce to burgundy */
    --burgundy-color: #8b0000; /* Main burgundy color */
    --burgundy-light: #a52a2a; /* Lighter burgundy for hover states */
    --burgundy-dark: #6b0000; /* Darker burgundy for active states */
    --light-gray: #f7fafc;
    --dark-gray: #2d3748;
    --text-color: #333333;
    --white: #ffffff;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--burgundy-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(
        --burgundy-color
    ); /* Changed from var(--accent-color) to burgundy */
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(
        --burgundy-dark
    ); /* Changed from var(--primary-color) to burgundy-dark */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Sabitleme ve Açık Tema */
header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background-color: rgba(255, 255, 255, 0.95) !important; /* Açık arka plan */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

header:hover nav ul li a {
    color: #a52a2a !important; /* Change from #b69468 to burgundy */
}

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

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

.logo img {
    height: 100px; /* Increased from 80px for larger logo */
    transition: all 0.3s ease;
}

header.scrolled .logo img {
    height: 75px; /* Increased from 65px to maintain proportion when scrolled */
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
}

nav ul li {
    margin-left: 2.5rem;
    position: relative;
}

/* Improved Navigation Hover Effects */
nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 8px 0;
}

/* Remove the existing underline effect that's causing issues */
nav ul li a::after {
    display: none;
}

/* Create new, smooth underline effect with site's primary color (red) */
nav ul li a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(
        --burgundy-color
    ); /* Changed to burgundy to match site theme */
    transition: width 0.3s ease;
    opacity: 0;
}

nav ul li a:hover::before,
nav ul li a.active::before {
    width: 100%;
    opacity: 1;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--burgundy-color); /* Changed to burgundy to match site theme */
}

/* Improved Dropdown Toggle Icon */
.dropdown-toggle {
    position: relative;
    padding-right: 24px !important; /* More space for the icon */
}

.dropdown-toggle::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Smoother animation */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px; /* Fixed width */
    height: 16px; /* Fixed height */
    font-size: 14px;
}

nav ul li:hover .dropdown-toggle::after {
    transform: translateY(-50%) rotate(180deg);
    color: var(--burgundy-color); /* Changed to burgundy to match site theme */
}

/* Improved Dropdown Menu Styles */
.dropdown-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 240px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
    padding: 10px 0;
    margin-top: 5px;
}

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

.dropdown-menu li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

.dropdown-menu li + li {
    border-top: 1px solid rgba(0, 0, 0, 0.05); /* Optional: add a slight separator between items */
}

.dropdown-menu a {
    padding: 12px 20px;
    display: block;
    color: #333;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

.dropdown-menu a::before {
    display: none; /* Remove the underline effect for dropdown items */
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background-color: rgba(139, 0, 0, 0.05); /* Subtle burgundy background */
    color: var(--burgundy-color);
}

/* Mobile Dropdown Adjustments */
@media (max-width: 992px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: hidden;
        display: none;
        transform: none;
        padding-left: 20px;
        margin-top: 0;
        background-color: transparent;
    }

    .dropdown-menu.show {
        visibility: visible;
        display: block;
    }

    .dropdown-toggle::after {
        right: 10px; /* Adjust position for mobile */
    }

    nav ul li:hover .dropdown-menu {
        display: none;
    }

    nav ul li.active .dropdown-menu {
        display: block;
    }
}

/* Hero content için top padding ekleme */
.hero {
    padding-top: 110px; /* Header'ın yüksekliğine göre ayarlayın */
}

.fas.fa-bars {
    color: #850000 !important;
}

/* Mobile Menu Toggle Button - only visible on mobile */
.mobile-menu-toggle {
    display: none; /* Hidden by default */
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2000;
    padding: 10px;
    position: relative;
    outline: none;
}

.mobile-menu-toggle i {
    display: block !important;
    font-size: 24px;
    color: #670a0d;
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
}

.scrolled .mobile-menu-toggle i {
    color: #670a0d;
}

/* Only display the mobile toggle button at mobile breakpoint */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block; /* Show ONLY on mobile */
        position: absolute;
        right: 15px;
        top: 15px;
    }
}

/* Ensure it's hidden on desktop even if there are other styles affecting it */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important; /* Force hide on desktop */
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block !important; /* Force display on mobile */
        position: absolute;
        right: 15px;
        top: 15px;
    }

    .header-container {
        position: relative;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: #ffffff;
        padding: 80px 20px 30px;
        transition: all 0.4s ease;
        z-index: 999;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
    }

    nav ul li {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    nav ul li a {
        display: block;
        padding: 12px 0;
        color: #333333;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        width: 100%;
    }

    .dropdown-toggle::after {
        float: right;
        margin-top: 8px;
    }

    .dropdown-menu {
        position: static;
        background-color: rgba(240, 240, 240, 0.5);
        box-shadow: none;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        opacity: 1;
        transform: none;
        padding: 0;
        margin-top: 0;
        visibility: visible;
    }

    .dropdown-menu.show {
        max-height: 500px;
        padding: 10px 0;
    }

    .dropdown-menu li a {
        padding-left: 20px;
        color: #555555;
    }

    body::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 90;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    body.menu-open::before {
        opacity: 1;
        visibility: visible;
    }
}

/* Hero İçeriği için düzenlemeler */
.hero-content {
    padding-top: 80px; /* Increased from 60px to move content down */
}

/* Hero Section */
.hero {
    position: relative;
    height: 75vh; /* Tam ekrandan daha az yükseklik (100vh yerine 75vh) */
    min-height: 500px; /* Minimum yükseklik sınırı */
    max-height: 700px; /* Maksimum yükseklik sınırı */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/index-bg.png");
    background-size: cover;
    background-position: center 30%; /* Görsel biraz yukarıdan başlasın */
    z-index: 1;
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgb(255 255 255 / 80%),
        rgb(46 68 99 / 85%)
    );
    z-index: 2;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 20px 0; /* Üst-alt padding azaltıldı */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #fff;
    text-align: center;
}

.hero-content .container {
    max-width: 800px;
}

.hero-content h1 {
    font-family: "Playfair Display", serif;
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    line-height: 1.2;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content h1::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #8b0000; /* Change from #c8a97e to burgundy */
    border-radius: 2px;
}

.hero-content p {
    font-family: "Montserrat", sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    margin-top: 25px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
    letter-spacing: 0.2px;
}

/* Responsive text size for hero content */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px; /* Smaller font size on mobile */
        line-height: 1.2;
        max-width: 100%;
        word-wrap: break-word; /* Ensure text wraps */
    }

    .hero-content p {
        font-size: 16px;
        line-height: 1.5;
        max-width: 100%;
        word-wrap: break-word;
    }
}

/* Even smaller text for very small screens */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
        padding: 0 10px;
    }

    .hero-content p {
        font-size: 14px;
        padding: 0 10px;
    }
}

/* Hero section responsive positioning fixes for low-resolution screens */
@media (max-width: 1366px) {
    .hero-content {
        padding-top: 120px; /* Adjusted padding for lower resolution screens */
        padding-bottom: 60px;
    }

    .hero-content h1 {
        margin-top: 40px; /* Add some margin to push the content down */
        font-size: 38px; /* Slightly smaller font size for better fit */
        line-height: 1.3;
    }

    .hero-content p {
        margin-bottom: 25px; /* Adjusted spacing between heading and paragraph */
        font-size: 15px;
    }

    /* Ensure the hero section maintains good vertical alignment */
    .hero {
        min-height: 500px;
    }

    /* Adjust service hero specifically */
    .service-hero .hero-content {
        padding-top: 130px;
    }
}

/* Even smaller screens adjustments */
@media (max-width: 1024px) {
    .hero-content {
        padding-top: 100px;
    }

    .hero-content h1 {
        margin-top: 2%;
        font-size: 1.4em;
    }

    .service-icon-large {
        display: none !important;
    }
}

/* Butonlar için iyileştirmeler */
.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 15px;
}

.btn {
    display: inline-block;
    padding: 15px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

.primary-btn {
    background-color: #8b0000; /* Change from #c8a97e to burgundy */
    color: #ffffff;
    border: 2px solid #8b0000; /* Change from #c8a97e to burgundy */
}

.primary-btn:hover {
    background-color: #a52a2a; /* Change from #b69468 to lighter burgundy */
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
}

/* Secondary Button Update */
.secondary-btn {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background-color: var(
        --burgundy-color
    ); /* Changed from rgba(255, 255, 255, 0.15) to burgundy */
    color: #ffffff;
    border-color: var(
        --burgundy-color
    ); /* Changed from rgba(255, 255, 255, 0.8) to burgundy */
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(139, 0, 0, 0.2), 0 0 15px rgba(139, 0, 0, 0.2); /* Changed to burgundy shadow */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Animasyonlar */
@keyframes fadeInDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 1;
    }
    to {
        opacity: 1;
    }
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.section-heading h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-heading h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    transform: translateX(-50%);
}

/* Update all section headers to burgundy */
.section-header h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--burgundy-color); /* Changed from #192638 to burgundy */
    margin-bottom: 20px;
    position: relative;
}

/* Yeniden Tasarlanmış Giriş Bölümü */
.introduction {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.introduction::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 100%;
    background-color: rgba(
        139,
        0,
        0,
        0.03
    ); /* Change from rgba(200, 169, 126, 0.03) to burgundy */
    z-index: 1;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

/* Başlık Bölümü Tasarımı */
.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.section-header .section-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #8b0000; /* Change from #c8a97e to burgundy */
    margin-bottom: 15px;
    font-family: "Montserrat", sans-serif;
}

.section-header h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--burgundy-color); /* Changed from #192638 to burgundy */
    margin-bottom: 20px;
    position: relative;
}

.section-header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    max-width: 180px;
}

.section-header-decoration .line {
    height: 1px;
    flex-grow: 1;
    background-color: var(--burgundy-color);
}

.section-header-decoration .icon {
    margin: 0 15px;
    color: var(--burgundy-color);
    font-size: 18px;
}

/* İçerik Düzeni */
.introduction-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* Resim Alanı Tasarımı */
.introduction-image {
    flex: 1;
    position: relative;
}

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

.introduction-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    border-radius: 10px;
}

.introduction-image:hover img {
    transform: scale(1.03);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    background-color: #192638;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 3;
}

.badge-inner {
    text-align: center;
    padding: 15px;
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b0000; /* Change from #c8a97e to burgundy */
    line-height: 1;
    font-family: "Playfair Display", serif;
}

.experience-badge .text {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    font-family: "Montserrat", sans-serif;
}

/* Metin Alanı Tasarımı */
.introduction-text {
    flex: 1;
    padding-right: 20px;
}

.introduction-text .lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #192638;
    margin-bottom: 30px;
    font-weight: 500;
}

.introduction-text strong {
    color: #192638;
    font-weight: 600;
}

/* Anahtar Noktalar */
.key-points {
    margin-bottom: 40px;
}

.key-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.key-point:last-child {
    margin-bottom: 0;
}

.key-point-icon {
    min-width: 50px;
    height: 50px;
    background-color: rgba(
        139,
        0,
        0,
        0.1
    ); /* Change from rgba(200, 169, 126, 0.1) to burgundy */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b0000; /* Change from #c8a97e to burgundy */
    font-size: 18px;
    margin-right: 20px;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.key-point:hover .key-point-icon {
    background-color: #8b0000; /* Change from #c8a97e to burgundy */
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 0, 0, 0.2); /* Change to burgundy shadow */
}

.key-point-text h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #192638;
    margin-bottom: 8px;
}

.key-point-text p {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* CTA Butonları */
.cta-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.5px;
    font-family: "Montserrat", sans-serif;
}

.primary-btn {
    background-color: #8b0000; /* Change from #c8a97e to burgundy */
    color: white;
    border: 2px solid #8b0000; /* Change from #c8a97e to burgundy */
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.25); /* Change to burgundy shadow */
}

.primary-btn:hover {
    background-color: #a52a2a; /* Change from #b69468 to lighter burgundy */
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(139, 0, 0, 0.3); /* Change to burgundy shadow */
}

.primary-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.primary-btn:hover i {
    transform: translateX(5px);
}

.outline-btn {
    background-color: transparent;
    color: #192638;
    border: 2px solid #e5e5e5;
}

.outline-btn:hover {
    border-color: var(--burgundy-color);
    color: var(--burgundy-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.05);
}

/* Text links with icons */
.text-link {
    color: var(--burgundy-color);
}

.text-link:hover {
    color: var(--burgundy-dark);
}

.text-link i {
    transition: transform 0.3s ease;
}

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

/* Animasyon Sınıfları */
.animated-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animated-element.visible {
    opacity: 1;
    transform: translateY(0);
}

.animated-element[data-animation="fadeInLeft"] {
    transform: translateX(-30px);
}

.animated-element[data-animation="fadeInRight"] {
    transform: translateX(30px);
}

.animated-element.visible[data-animation="fadeInLeft"],
.animated-element.visible[data-animation="fadeInRight"] {
    transform: translateX(0);
}

/* Uzmanlık Alanlarımız Bölümü */
.services-preview {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
}

.services-preview .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-preview .section-header h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--burgundy-color); /* Ensure all section headers use burgundy */
    margin-bottom: 15px;
}

.services-preview .section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

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

.service-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

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

.service-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(
        --burgundy-color
    ); /* Changed from var(--primary-color) to burgundy */
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.service-card:hover:before {
    transform: scaleY(1);
    transform-origin: top;
}

.service-card-inner {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(
        139,
        0,
        0,
        0.1
    ); /* Change from rgba(200, 169, 126, 0.1) to burgundy */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #8b0000; /* Change from #c8a97e to burgundy */
    font-size: 28px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: var(
        --burgundy-color
    ); /* Changed from var(--primary-color) to burgundy */
}

.service-card:hover .service-icon i {
    color: #fff; /* Keep icon color white on hover for contrast */
}

.service-card h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #192638;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(
        --burgundy-color
    ); /* Changed from var(--primary-color) to burgundy */
}

.service-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-separator {
    width: 40px;
    height: 3px;
    background-color: #8b0000; /* Change from #c8a97e to burgundy */
    margin-bottom: 20px;
}

.service-link {
    display: flex;
    align-items: center;
    justify-content: center; /* Add this to center the link */
    color: var(--burgundy-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: #6b0000; /* Change from #9b7c50 to darker burgundy */
}

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

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

/* Müvekkil Yorumları Bölümü */
.testimonials {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
}

.testimonials::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/quotes-bg.png");
    background-size: 300px;
    background-repeat: repeat;
    opacity: 0.03;
    z-index: 1;
}

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

.testimonials .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials .section-header h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--burgundy-color); /* Ensure all section headers use burgundy */
    margin-bottom: 15px;
}

.testimonials .section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.testimonial-item {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin: 20px;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 40px);
}

.testimonial-item.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}

.quote-mark {
    color: #8b0000; /* Change from #c8a97e to burgundy */
    font-size: 60px;
    position: absolute;
    top: 30px;
    left: 30px;
    opacity: 0.2;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid #fff;
}

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

.client-details h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #192638;
    margin-bottom: 5px;
}

.client-details p {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 20px;
}

.testimonial-controls button {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border: 2px solid #e5e5e5;
    border-radius: 50%;
    cursor: pointer;
    color: #192638;
    font-size: 18px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-controls button:hover {
    background-color: #8b0000; /* Change from #c8a97e to burgundy */
    border-color: #8b0000; /* Change from #c8a97e to burgundy */
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 0, 0, 0.2); /* Change to burgundy shadow */
}

.testimonial-progress {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.progress-dot {
    width: 12px;
    height: 12px;
    background-color: #e5e5e5;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.progress-dot.active {
    background-color: #8b0000; /* Change from #c8a97e to burgundy */
    transform: scale(1.2);
}

/* Neden Bizi Seçmelisiniz Bölümü */
.why-choose-us {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.why-choose-us::after {
    content: "";
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background-color: rgba(
        139,
        0,
        0,
        0.05
    ); /* Change from rgba(200, 169, 126, 0.05) to burgundy */
    border-radius: 50%;
    z-index: 1;
}

.why-choose-us .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.why-choose-us .section-header h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--burgundy-color); /* Ensure all section headers use burgundy */
    margin-bottom: 15px;
}

.why-choose-us .section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--burgundy-color); /* Changed from #3a506b to burgundy */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.feature-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(139, 0, 0, 0.05),
        rgba(165, 42, 42, 0.1)
    ); /* Changed to burgundy colors */
    z-index: 0;
}

.feature-icon i {
    font-size: 28px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    color: var(--burgundy-color); /* Explicitly set icon color */
}

.feature:hover .feature-icon {
    background: linear-gradient(
        135deg,
        #8b0000,
        #a52a2a
    ); /* Burgundy gradient */
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.2);
}

.feature:hover .feature-icon i {
    transform: scale(1.1);
    color: white !important; /* Ensure icon is white on hover */
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--burgundy-color); /* Changed from #2c3e50 to burgundy */
    font-weight: 600;
    transition: color 0.3s ease;
}

.feature-content p {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

.feature:hover .feature-content h3 {
    color: #a52a2a; /* Changed from #3a506b to lighter burgundy */
}

.stats-counter {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background-color: #fff;
    border-radius: 10px;
    padding: 50px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

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

.counter-value {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    font-weight: 700;
    color: #8b0000; /* Change from #c8a97e to burgundy */
    margin-bottom: 10px;
    line-height: 1;
}

.counter-title {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #192638;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Hukuki Danışmanlık Bölümü - Light Theme */
.cta-section {
    padding: 90px 0;
    background-image: linear-gradient(
            rgba(255, 255, 255, 0.9),
            rgba(255, 255, 255, 0.95)
        ),
        url("../images/cta-bg.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.cta-content {
    text-align: center;
    color: #192638;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background-color: #8b0000; /* Change from #c8a97e to burgundy */
    border-radius: 2px;
}

.cta-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--burgundy-color); /* Ensure all section headers use burgundy */
    letter-spacing: 0.5px;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    line-height: 1.7;
    color: #666;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .btn.primary-btn {
    background-color: #8b0000; /* Change from #c8a97e to burgundy */
    color: #ffffff;
    border: 2px solid #8b0000; /* Change from #c8a97e to burgundy */
    padding: 16px 40px;
    font-size: 1.05rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.3); /* Change to burgundy shadow */
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.cta-content .btn.primary-btn:hover {
    background-color: #a52a2a; /* Change from #b69468 to lighter burgundy */
    color: #ffffff;
    border-color: #a52a2a; /* Change from #b69468 to lighter burgundy */
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(139, 0, 0, 0.4); /* Change to burgundy shadow */
}

/* Ekstra CTA için büyük ekranlarda yan kenarlar */
@media screen and (min-width: 992px) {
    .cta-section::before,
    .cta-section::after {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 120px;
        height: 2px;
        background-color: rgba(
            139,
            0,
            0,
            0.2
        ); /* Change from rgba(200, 169, 126, 0.2) to burgundy */
    }

    .cta-section::before {
        left: 10%;
    }

    .cta-section::after {
        right: 10%;
    }
}

/* Mobil düzenlemeler */
@media screen and (max-width: 768px) {
    .cta-content h2 {
        font-size: 2.2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }
}

/* Professional Intro Section */
.professional-intro {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
}

.professional-intro::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/pattern-light.png");
    opacity: 0.07;
    z-index: 0;
}

.intro-banner {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.intro-icon {
    background: linear-gradient(135deg, #2c3e50, #4a6491);
    color: white;
    padding: 70px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 120px;
}

.intro-icon i {
    font-size: 4rem;
}

.intro-content {
    padding: 50px;
    flex: 1;
}

.intro-content h2 {
    color: var(--burgundy-color); /* Ensure all section headers use burgundy */
    margin-bottom: 20px;
    font-size: 2.2rem;
    font-family: "Playfair Display", serif;
}

.intro-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.intro-benefits {
    display: flex;
    flex-wrap: wrap;
    margin: 30px 0;
    gap: 20px;
}

.benefit-item {
    flex: 1 1 calc(25% - 20px);
    min-width: 150px;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #e9ecef;
    transform: translateY(-3px);
}

.benefit-item i {
    color: #4a6491;
    font-size: 1.4rem;
}

.benefit-item span {
    font-weight: 500;
    color: #2c3e50;
}

.secondary-btn {
    background-color: #4a6491;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    display: inline-block;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

.secondary-btn:hover {
    background-color: #2c3e50;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Mediation Highlight Section */
.mediation-highlight {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.mediation-highlight::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-image: url("../images/pattern-light.png");
    opacity: 0.05;
    z-index: 0;
}

.highlight-wrapper {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    display: flex;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.highlight-icon {
    /* background: linear-gradient(135deg, #2c3e50, #3a506b); */
    background: linear-gradient(
        to bottom,
        rgb(255 255 255 / 80%),
        rgb(76 119 179)
    ) !important;
    color: white;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 140px;
    position: relative;
    overflow: hidden;
}

.highlight-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(
        to bottom,
        rgb(255 255 255 / 80%),
        rgb(76 119 179)
    ) !important;
    transform: translateY(-50%) rotate(45deg);
    z-index: 1;
}

.highlight-icon i {
    font-size: 4rem;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.highlight-content {
    padding: 45px 50px;
    flex: 1;
}

.highlight-content h2 {
    color: var(--burgundy-color); /* Ensure all section headers use burgundy */
    margin-bottom: 20px;
    font-size: 2.2rem;
    font-weight: 700;
    font-family: "Playfair Display", serif;
    position: relative;
    padding-bottom: 15px;
}

.highlight-content h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #3a506b, #5d7fa3);
}

.highlight-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 30px;
}

.highlight-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.feature:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.highlight-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.action-btn {
    background: linear-gradient(135deg, #3a506b, #5d7fa3);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(58, 80, 107, 0.2);
}

.action-btn:hover {
    background: linear-gradient(135deg, #2c3e50, #3a506b);
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(44, 62, 80, 0.25);
}

.text-link {
    color: #3a506b;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.text-link:hover {
    color: #2c3e50;
}

.text-link i {
    transition: transform 0.3s ease;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
    .highlight-wrapper {
        flex-direction: column;
    }

    .highlight-icon {
        padding: 40px 20px;
        flex: 0 0 auto;
        width: 100%;
    }

    .highlight-icon::after {
        display: none;
    }

    .highlight-features {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }

    .feature {
        padding: 12px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon i {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .highlight-content {
        padding: 30px 25px;
    }

    .highlight-features {
        grid-template-columns: 1fr;
    }

    .feature {
        padding: 15px;
    }

    .highlight-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .action-btn,
    .text-link {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .intro-banner {
        flex-direction: column;
    }

    .intro-icon {
        padding: 30px;
        flex: 0 0 auto;
        width: 100%;
    }

    .benefit-item {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .intro-content {
        padding: 30px 20px;
    }

    .benefit-item {
        flex: 1 1 100%;
    }
}

/* Footer Bölümü */
footer {
    background-color: #192638;
    color: #fff;
    padding-top: 80px;
}

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

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    max-width: 230px;
    height: auto;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(139, 0, 0, 0.1); /* Updated to burgundy background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-color); /* Updated to burgundy color */
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(
        --burgundy-color
    ); /* Changed from var(--primary-color) to burgundy */
    color: white;
}

.footer-column h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    color: #ccc;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #8b0000; /* Change from #c8a97e to burgundy */
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
    color: #8b0000; /* Change from #c8a97e to burgundy */
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

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

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info li i {
    color: var(--burgundy-color);
    margin-right: 15px;
    margin-top: 5px;
}

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

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

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.legal-links a:hover {
    color: #8b0000; /* Change from #c8a97e to burgundy */
}

/* White Footer Styles */
.white-footer {
    background-color: #ffffff;
    color: #333;
}

.white-footer .footer-logo img {
    max-width: 120px;
}

.white-footer h3 {
    color: #222;
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.white-footer p {
    color: #555;
}

.white-footer .footer-links a {
    color: #444;
    transition: color 0.3s;
}

.white-footer .footer-links a:hover {
    color: #8b0000; /* Change from #9c8b7a to burgundy */
}

.white-footer .contact-info li {
    color: #555;
}

.white-footer .contact-info a {
    color: #555;
    transition: color 0.3s;
}

.white-footer .contact-info a:hover {
    color: #8b0000; /* Change from #9c8b7a to burgundy */
}

.white-footer .social-links a {
    color: #555;
    transition: color 0.3s;
}

.white-footer .social-links a:hover {
    background-color: var(--burgundy-color);
    color: white;
}

.white-footer .footer-bottom {
    border-top: 1px solid #eee;
    margin-top: 40px;
    padding-top: 20px;
    color: #666;
}

.white-footer .legal-links a {
    color: #666;
}

/* Responsive adjustments for footer */
@media (max-width: 768px) {
    .white-footer .footer-column {
        flex-basis: 100%;
    }

    .white-footer .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .white-footer .legal-links {
        margin-top: 15px;
    }

    .white-footer .legal-links a {
        margin: 0 10px;
    }
}

/* Responsive Düzenlemeler */
@media screen and (max-width: 992px) {
    .introduction-content {
        flex-direction: column;
        gap: 50px;
    }

    .introduction-text {
        padding-right: 0;
    }

    .image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .experience-badge {
        bottom: -25px;
        right: 20px;
        width: 120px;
        height: 120px;
    }
}

@media screen and (max-width: 768px) {
    .introduction {
        padding: 70px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .introduction-text .lead {
        font-size: 1rem;
    }

    .key-point-text h4 {
        font-size: 1.05rem;
    }

    .experience-badge {
        width: 100px;
        height: 100px;
    }

    .experience-badge .years {
        font-size: 2rem;
    }

    .experience-badge .text {
        font-size: 0.7rem;
    }
}

@media screen and (max-width: 576px) {
    .btn {
        width: 100%;
    }
}

@media screen and (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-counter {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 30px;
    }

    .counter-item {
        margin-bottom: 20px;
    }

    .counter-item:nth-last-child(-n + 2) {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-column:first-child {
        grid-column: span 2;
    }
}

@media screen and (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .testimonial-item {
        padding: 30px;
    }

    .quote-mark {
        font-size: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-column:first-child {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom p {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 576px) {
    .stats-counter {
        grid-template-columns: 1fr;
    }

    .counter-item {
        margin-bottom: 30px;
    }

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

    .testimonial-controls button {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .client-image {
        width: 60px;
        height: 60px;
    }
}

/* Icons */
.fa-check-circle,
.fa-user-shield,
.fa-balance-scale,
.fa-handshake,
.fa-history,
.fa-comments,
.fa-building,
.fa-phone-alt,
.fa-envelope,
.fa-map-marker-alt,
.fa-university,
.fa-certificate,
.fa-globe,
.fa-gavel,
.fa-lightbulb,
.fa-mobile-alt,
.fa-clock {
    color: var(--burgundy-color);
}

/* Update all icons across the site */
.fas,
.far,
.fab,
.fa {
    color: var(--burgundy-color);
}

/* Fix specific icons that should have different colors */
.hero .fas,
.hero .far,
.hero .fab,
.hero .fa,
.cta-section .fas,
.cta-section .far,
.cta-section .fab,
.cta-section .fa,
.social-links .fas,
.social-links .far,
.social-links .fab,
.social-links .fa,
.footer-links .fas,
.footer-links .far,
.footer-links .fab,
.footer-links .fa,
button .fas,
button .far,
button .fab,
button .fa,
.btn .fas,
.btn .far,
.btn .fab,
.btn .fa {
    color: inherit; /* These should inherit parent color */
}

/* Service Icons */
.service-card-icon i,
.icon-wrapper i {
    color: var(--burgundy-color);
}

/* Contact page specific icons */
.contact-card .icon-wrapper i {
    color: var(--burgundy-color);
}

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

/* FAQ icons */
.faq-toggle i {
    color: var(--burgundy-color);
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001; /* Higher than the menu to stay on top */
    transition: all 0.3s ease;
    padding: 0;
}

.mobile-menu-toggle i {
    transition: transform 0.3s ease;
}

.mobile-menu-toggle.active i {
    transform: rotate(90deg);
}

/* Mobile Menu Styles - Light Mode */
@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: #ffffff; /* Changed to white for light mode */
        padding: 80px 20px 30px;
        transition: all 0.4s ease;
        z-index: 1000;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
    }

    nav ul li {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    nav ul li a {
        display: block;
        padding: 12px 0;
        color: #333333; /* Changed to dark text for light mode */
        border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* Changed border color */
        width: 100%;
    }

    .dropdown-toggle::after {
        float: right;
        margin-top: 8px;
    }

    .dropdown-menu {
        position: static;
        background-color: rgba(
            240,
            240,
            240,
            0.5
        ); /* Changed to light gray for light mode */
        box-shadow: none;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        opacity: 1;
        transform: none;
        padding: 0;
        margin-top: 0;
        visibility: visible;
    }

    .dropdown-menu.show {
        max-height: 500px;
        padding: 10px 0;
    }

    .dropdown-menu li a {
        padding-left: 20px;
        color: #555555; /* Slightly lighter color for dropdown items */
    }

    body::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 90;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    body.menu-open::before {
        opacity: 1;
        visibility: visible;
    }
}
