/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #eadcdc;
    background-color: #f3e7d7;
}

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

/* Typography */
/* Başlık stilleri */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #8d6630;
}

/* Buttons */
/* Buton stilleri */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

/* Birincil buton */
.btn-primary {
    background-color: #8d6630;
    color: #1f2937;
}

/* Birincil butonun hover efekti */
.btn-primary:hover {
    background-color: #b8893e;
    transform: translateY(-2px);
}

/* İkincil buton */
.btn-secondary {
    background-color: transparent;
    color: #8d6630;
    border: 2px solid #8d6630;
}

/* İkincil butonun hover efekti */
.btn-secondary:hover {
    background-color: #d4af37;
    color: #1f2937;
}

/* Konturlu buton */
.btn-outline {
    background-color: transparent;
    color: #8d6630;
    border: 2px solid #8d6630;
}

/* Konturlu butonun hover efekti */
.btn-outline:hover {
    background-color: #d4af37;
    color: #1f1f2937;
}

/* Navigation */
/* Navigasyon çubuğu stilleri */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #8d6630;
}

.nav-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
    color: #d1a246;
}

/* Logo kutucuğu ve iç ikon */
.nav-mark {
    width: auto;
    height: auto;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}
.nav-mark i {
    color: #d1a246;
    font-size: 28px;
}

/* Logo yazısına altın gradyan efekti */
.nav-logo span {
    background: linear-gradient(90deg, #b8842a 0%, #e8c977 40%, #f2df9e 60%, #b8842a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #8d6630;
}

/* Aktif linkin altındaki çizgi */
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #8d6630;
}

/* Hamburger menü ikonu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
/* Hero bölümü stilleri */
.hero {
    /* Warm sepia-toned background */
    background: #8B6F47;
    color: white;
    padding: 160px 0 120px;
    margin-top: 70px;
    min-height: 70vh;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    min-height: 60vh;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 3;
    position: relative;
}

/* Hero arka plan medyası */
.hero-with-bg {
    position: relative;
    overflow: hidden;
    background-color: #2c1810;
    background-image: url('https://i.pinimg.com/1200x/99/ed/32/99ed3244159144e15480eb3fdbe561b5.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

/* Genel amaçlı arka plan görsel sınıfı (terazi görseli) */
/* Eğer hero-with-bg yerine bu sınıfı kullanmak isterseniz, HTML'e ekleyin. */
.bg-terazi {
    background-image: url('avukat-foto.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Alternatif background image sınıfı */
.hero-with-bg-alt {
    position: relative;
    overflow: hidden;
    background-color: #2c1810;
    background-image: url('professional-legal-symbols-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

/* Opsiyonel: okunabilirlik için koyu bir overlay eklemek isterseniz */
.bg-terazi-overlay {
    position: relative;
    overflow: hidden;
}
.bg-terazi-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    pointer-events: none;
}

/* Hero video arka planı */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Hero üzerindeki bindirme katmanı */
.hero-overlay {
    position: absolute;
    inset: 0;
    /* Subtle overlay for text readability over professional legal symbols with bookshelf background */
    background: rgba(0, 0, 0, 0.35);
    z-index: 2;
}

/* Hero içeriğinin katman üzerinde görünürlüğünü sağlama */
.hero-with-bg .hero-container,
.hero-with-bg .hero-content,
.hero-with-bg .hero-image {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.1;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    color: #ffffff;
    line-height: 1.4;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero bölümündeki buton: beyaz çerçeve ve yazı */
.hero .btn-secondary {
    color: #ffffff;
    border: 2px solid #ffffff;
    background-color: transparent;
    padding: 14px 28px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}
.hero .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-icon {
    font-size: 3rem;
    opacity: 0.5;
    color: #d4af37;
    margin-bottom: 1rem;
}

.hero-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    border: 4px solid rgba(54, 45, 45, 0.2);
    transition: transform 0.3s ease;
}

.hero-photo:hover {
    transform: translateY(-5px);
}

/* Page Header */
/* Sayfa başlığı bölümü */
.page-header {
    background: linear-gradient(135deg, #8d6630 0%, #6b4f2a 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    color: rgb(244, 239, 239);
}

/* Section Titles */
/* Bölüm başlıkları */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

/* Bölüm başlığının altındaki çizgi */
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #8d6630;
}

/* Services Overview */
/* Hizmetlere genel bakış bölümü */
.services-overview {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8d6630 30%, #6b4f2a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.service-card h3 {
    margin-bottom: 1rem;
    color: #1f1c13;
}

/* Why Choose Us */
/* Neden bizi seçmelisiniz bölümü */
.why-choose-us {
    padding: 80px 0;
}

.why-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-text h2 {
    margin-bottom: 2rem;
    color: #d4af37;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature i {
    color: #8d6630;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.feature h4 {
    margin-bottom: 0.5rem;
    color: #1b1212;
}

.why-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #8d6630 0%, #6b4f2a 100%);
    color: rgb(229, 220, 220);
    border-radius: 12px;
}

.stat h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat p {
    color: rgb(248, 237, 237);
    opacity: 0.9;
}

/* Contact Info */
/* İletişim bilgileri bölümü */
.contact-info {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

.contact-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.contact-item h4 {
    margin-bottom: 1rem;
    color: #333;
}

/* About Content */
/* Hakkımızda içeriği */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-aside {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Sağ sütundaki misyon kartını Değerlerimiz başlığıyla hizalamak için yukarı boşluk */
.about-grid .mission-section {
    margin-top: 140px;
}

.about-text h2 {
    margin-bottom: 2rem;
    color: #333;
}

/* Hakkımızda sayfasındaki Misyonumuz başlığı siyah */
.about-text h3 {
    color: #000;
}

.values {
    margin-top: 3rem;
}

.values h3 {
    margin-bottom: 2rem;
    color: #333;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
}

.value-item i {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.value-item h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Görüntü yer tutucusu */
.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

/* Team Section */
/* Ekip bölümü */
.team-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.member-photo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #8d6630 0%, #6b4f2a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.member-photo i {
    font-size: 3rem;
    color: white;
}

.member-title {
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-specialty {
    color: #666;
    margin-bottom: 1rem;
}

.member-experience {
    background: #f0f9ff;
    color: #d4af37;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
}

/* Mission & Vision */
/* Misyon ve Vizyon bölümü */
.mission-vision {
    padding: 80px 0;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.mission, .vision {
    text-align: center;
    padding: 2rem;
    background: #101112;
    border-radius: 12px;
}

.mission-icon, .vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8d6630 0%, #6b4f2a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mission-icon i, .vision-icon i {
    font-size: 2rem;
    color: white;
}

.mission h3, .vision h3 {
    margin-bottom: 1rem;
    color: #333;
}

/* Mission Section (within about-content) */
/* Misyon bölümü (hakkımızda içeriği içinde) */
.mission-section {
    margin: 0;
    padding: 0;
    border: none;
}

.mission-section .mission {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.mission-section .mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37 0%, #8d6630 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mission-section .mission-icon i {
    font-size: 2rem;
    color: white;
}

.mission-section .mission h3 {
    margin-bottom: 1rem;
    color: #333;
}

/* Achievements */
/* Başarılar bölümü */
.achievements {
    padding: 80px 0;
    background-color: #f8fafc;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.achievement {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.achievement h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

/* Practice Areas */
/* Uygulama alanları bölümü */
.practice-areas {
    padding: 80px 0;
    background-color: #f8fafc;
}

.practice-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.practice-area-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.practice-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8d6630 0%, #6b4f2a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.practice-icon i {
    font-size: 2rem;
    color: white;
}

.practice-area-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.service-list {
    list-style: none;
    margin: 1.5rem 0;
}

.service-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
    color: #8d6630;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.service-list li:last-child {
    border-bottom: none;
}

/* Process Section */
/* Süreç bölümü */
.process-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37 0%, #b8893e 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-content h3 {
    margin-bottom: 1rem;
    color: #333;
}

/* CTA Section */
/* Harekete geçirici mesaj bölümü */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #8d6630 0%, #6b4f2a 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA buttons: brown text, white border; on hover brown fill */
.cta-section .btn-primary,
.cta-section .btn-secondary {
    color: #8d6630;
    background: #ffffff;
    border: 2px solid #8d6630;
}
.cta-section .btn-primary:hover,
.cta-section .btn-secondary:hover {
    background: #8d6630;
    border-color: #8d6630;
    color: #1f2937;
}

/* Contact Section */
/* İletişim bölümü */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-form-container h2 {
    margin-bottom: 1rem;
    color: #333;
}

.contact-form-container p {
    margin-bottom: 2rem;
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.2rem;
}

.privacy-link {
    color: #8d6630;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.contact-info-container h2 {
    margin-bottom: 2rem;
    color: #333;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8d6630 0%, #6b4f2a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-details h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: #666;
}

.contact-details a {
    color: #8d6630;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.emergency-contact {
    background: #fef2f2;
    border: 2px solid #fecaca;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.emergency-contact h4 {
    color: #dc2626;
    margin-bottom: 1rem;
}

.emergency-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #dc2626;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
}

.emergency-phone:hover {
    background: #8d6630;
    color: white;
}

/* Map Section */
/* Harita bölümü */
.map-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

/* Harita yer tutucusu */
.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #d4af37 0%, #b8893e 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.map-placeholder h3 {
    margin-bottom: 1rem;
}

.map-placeholder p {
    margin-bottom: 2rem;
    color: white;
    opacity: 0.9;
}

/* FAQ Section */
/* Sıkça Sorulan Sorular bölümü */
.faq-section {
    padding: 80px 0;
}

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

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f1f5f9;
}

.faq-question h4 {
    margin: 0;
    color: #333;
}

.faq-question i {
    color: #8d6630;
    transition: transform 0.3s ease;
}

/* Açık olan SSS öğesinin ikonu */
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

/* Açık olan SSS cevabı */
.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #666;
}

/* Footer */
/* Altbilgi stilleri */
.footer {
    background-color: #2f2415;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #8d6630;
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-section p {
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.footer-section p i {
    margin-right: 0.5rem;
    color: #8d6630;
}

.footer-bottom {
    border-top: 1px solid #3b2e1c;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
/* Duyarlı tasarım ayarları */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-photo {
        max-width: 300px;
        margin-top: 2rem;
    }

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

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

    /* Mobilde üst boşluğu kaldır */
    .about-grid .mission-section {
        margin-top: 0;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }

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

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

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

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Animation Classes */
/* Animasyon sınıfları */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scrolling */
/* Yumuşak kaydırma */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
/* Yükleme animasyonu */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #8d6630;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success/Error Messages */
/* Başarı/Hata mesajları */
.message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.message.success {
    background-color: #f3e7d7;
    color: #4b3a23;
    border: 1px solid #e0c8a8;
}

.message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Map Section Styles */
.map-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.map-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.map-placeholder {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 12px;
    color: white;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: white;
    opacity: 0.9;
}

.map-placeholder h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.map-placeholder p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: white;
    opacity: 0.95;
    max-width: 500px;
}

.map-placeholder .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.map-placeholder .btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.map-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1.5rem;
}

.map-actions .btn {
    display: inline-flex;
    align-items: center;     /* Logo ve yazıyı dikeyde hizalar (Bu doğru) */
    justify-content: center; /* İçeriği buton içinde yatayda ortalar (Bu da kalsın) */
    gap: 0.3rem;
    padding: 0.3rem 1.8rem;
    border-radius: 14px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 800;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    /* flex: 1; satırı kaldırıldı. */
    
    /* OPSİYONEL: Yine de eşit genişlikte ve belirli bir boyutta olmalarını isterseniz, */
    /* sabit bir genişlik veya min-width (minimum genişlik) verebilirsiniz. */
    /* Örneğin: */
    /* width: 180px; */
    /* veya */
    /* min-width: 160px; */
}
/* BU KODU CSS DOSYANIZA EKLEYİN */

/* Butonların içindeki ikonların (logo) boyutunu standart hale getirmek için */
.map-actions .btn img,
.map-actions .btn svg,
.map-actions .btn i {
    /* Yüksekliği yazı boyutunun 1.2 katı yap (0.8rem * 1.2 = 0.96rem) */
    /* Bu, ikonların metinle daha orantılı görünmesini sağlar. */
    height: 0.8em;
    width: auto; /* Yüksekliğe göre genişliği otomatik ayarlar */
    
    /* Dikey hizalamayı tam metin ortasına almak için bunu da ekleyebilirsiniz */
    vertical-align: middle; 
}

.map-actions .btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Apple Maps Button Special Styling */
.map-actions .btn[href*="apple.com"] {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.map-actions .btn[href*="apple.com"]:hover {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
}

.map-actions .btn[href*="apple.com"] i {
    color: #ffffff;
    font-size: 1.1em;
}

@media (max-width: 768px) {
    .map-placeholder {
        padding: 2rem 1.5rem;
        min-height: 250px;
    }
    
    .map-placeholder i {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .map-placeholder h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .map-placeholder p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .map-actions {
        flex-direction: row;
        gap: 0.6rem;
    }
    
    .map-actions .btn {
        flex: 1;
        padding: 0.35rem 0.6rem;
        font-size: 0.75rem;
    }
}

/* Contact Info Action Buttons */
.location-actions, .phone-actions {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.phone-actions {
    justify-content: flex-start;
}

.location-btn, .phone-btn, .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.location-btn {
    background: #e8f4fd;
    color: #1976d2;
    border-color: #1976d2;
}

.location-btn:hover {
    background: #1976d2;
    color: white;
    transform: translateY(-1px);
}

.phone-btn {
    background: #e8f5e8;
    color: #2e7d32;
    border-color: #2e7d32;
}

.phone-btn:hover {
    background: #2e7d32;
    color: white;
    transform: translateY(-1px);
}

.whatsapp-btn {
    background: #e8f5e8;
    color: #25d366;
    border-color: #25d366;
}

.whatsapp-btn:hover {
    background: #25d366;
    color: white;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .location-actions {
        flex-direction: column;
    }
    
    .phone-actions {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .location-btn, .phone-btn, .whatsapp-btn {
        justify-content: center;
    }
    
    .phone-actions .phone-btn, .phone-actions .whatsapp-btn {
        flex: 1;
        min-width: 0;
    }
}