/* ============================================
   ESBerk Avukatlık - Kurumsal Stil Dosyası
   Renk Paleti: Kahve-Krem #3d2517, #c9a96e
   Font: Fira Sans
   ============================================ */

/* ============================================
   TYPEWRITER EFECT (Hero Subtitle)
   ============================================ */

/* Daktilo efekti aktifken kullanılan stil */
.hero-subtitle.typewriter {
    display: inline-block;
    overflow: hidden;
    border-right: 3px solid var(--gold);
    white-space: nowrap;
    animation: blink-caret 0.75s step-end infinite;
    opacity: 1;
    min-height: 1.2em;
    color: var(--gold);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* İmlecin yanıp sönmesi */
@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--gold); }
}
/* ============================================
   DROPDOWN İKON RENKLERİ (text-warning override)
   ============================================ */
.dropdown-item i.text-warning,
.dropdown-item i.bi.text-warning {
    color: var(--gold) !important;
}

/* 5 sütunlu grid (masaüstü) */
.col-five {
    flex: 0 0 20%;
    max-width: 20%;
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
}

@media (max-width: 767px) {
    .col-five {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* CSS Değişkenleri */
:root {
    --primary-dark: #2c1810;
    --primary: #4a2c17;
    --primary-light: #6b4423;
    --gold: #c9a96e;
    --gold-light: #d4b896;
    --gold-dark: #a6854a;
    --white: #ffffff;
    --gray-100: #f9f6f0;
    --gray-200: #f0e8d8;
    --gray-300: #e0d4c0;
    --gray-600: #7a6855;
    --gray-800: #4a3f35;
    --gray-900: #2c1810;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.15);
    --shadow-lg: 0 15px 50px rgba(0,0,0,0.2);
    --shadow-gold: 0 4px 20px rgba(212,175,55,0.3);
}

/* ============================================
   GENEL AYARLAR
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Fira Sans', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--gray-800);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--white);
}

/* ============================================
   BLOG TAB MENÜ - KAHVERENGİ OVERRIDE
   ============================================ */
.btn-group .btn-outline-primary {
    border-color: var(--primary) !important;
    color: var(--primary) !important;
    background-color: transparent !important;
}

.btn-group .btn-outline-primary:hover {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--white) !important;
}

.btn-group .btn-outline-primary.active,
.btn-group .btn-outline-primary:active {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--white) !important;
}

.btn-group .btn-outline-primary:focus,
.btn-group .btn-outline-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(74, 44, 23, 0.25) !important;
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--white) !important;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-dark);
}

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

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

::selection {
    background-color: var(--gold);
    color: var(--primary-dark);
}

/* ============================================
   BUTONLAR
   ============================================ */
.btn {
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 12px 32px;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--primary-dark);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212,175,55,0.4);
    color: var(--primary-dark);
}

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

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

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-lg-custom {
    padding: 16px 48px;
    font-size: 1rem;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    padding: 15px 0;
    transition: var(--transition);
    z-index: 9999;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.98) !important;
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.navbar.scrolled .navbar-brand,
.navbar.scrolled .nav-link {
    color: var(--primary-dark) !important;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--gold) !important;
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white) !important;
    letter-spacing: 1px;
}

.navbar-brand span {
    color: var(--gold);
}

.nav-link {
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    padding: 8px 18px !important;
    color: rgba(255,255,255,0.9) !important;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

/* Mobilde nav-link alt çizgisi gizlensin */
@media (max-width: 991px) {
    .nav-link::after,
    .nav-link:hover::after,
    .nav-link.active::after {
        display: none !important;
    }
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold) !important;
}

/* Dropdown menüdeki mavi çerçeve ve active rengi sorunu */
.dropdown-toggle:focus,
.dropdown-toggle:active,
.dropdown-toggle.show {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--primary) !important;
    color: var(--white) !important;
}

.dropdown-menu {
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
}

/* Dropdown menü öğeleri arası çizgi kaldırılsın */
.dropdown-item {
    border: none !important;
    border-bottom: none !important;
}

/* Hizmetlerimiz dropdown menüsünün altındaki çizgi */
.dropdown-menu::after,
.dropdown-menu::before {
    display: none !important;
}

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: var(--gray-100) !important;
    color: var(--primary) !important;
}

.dropdown-item.active:focus,
.dropdown-item.active:hover {
    background-color: var(--primary) !important;
    color: var(--white) !important;
}

/* Dropdown ok icon rengi */
.dropdown-toggle::after {
    border-top-color: var(--gold) !important;
}

/* Dropdown hover ile açılma (masaüstü) + toggle rengi */
@media (min-width: 992px) {
    .nav-item.dropdown:hover > .mega-menu {
        display: grid !important;
    }
    .nav-item.dropdown:hover > .dropdown-toggle {
        color: var(--gold) !important;
    }
}

/* ============================================
   MEGA MENÜ STILLERI - CSS Grid 4 sütun
   ============================================ */

/* Dropdown hover alanini genislet - menuye ulasmadan kaybolmasin */
.nav-item.dropdown {
    padding-bottom: 15px;
    margin-bottom: -15px;
}

/* Mega menü ana konteyner - ortalanmış ve daraltılmış */
.mega-menu {
    min-width: 860px;
    padding: 18px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.98);
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: 100% !important;
    margin-top: 0 !important;
    /* CSS Grid: 4 sütun, öğeler sütun sütun dolar */
    display: none;
    grid-template-rows: auto repeat(10, auto);
    grid-auto-flow: column;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 10px;
    row-gap: 0;
}

/* Açık olduğunda grid göster */
.mega-menu.show {
    display: grid !important;
}

/* Grid item'lar blok olarak */
.mega-menu li.d-inline-block {
    display: block !important;
    width: 100% !important;
    margin: 0;
}

/* Dropdown menü öğeleri */
.mega-menu .dropdown-item {
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mega-menu .dropdown-item:hover {
    background: var(--gray-100) !important;
    padding-left: 12px;
}

/* Dropdown header stilleri */
a.dropdown-header,
.mega-menu .dropdown-header {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-dark);
    padding: 6px 8px;
    border-bottom: 2px solid var(--gold);
    margin-bottom: 3px;
    margin-top: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    text-decoration: none;
    transition: all 0.2s ease;
}

a.dropdown-header:hover {
    color: var(--gold) !important;
    background: var(--gray-100);
}

/* ============================================
   MOBİL MEGA MENÜ DÜZELTMELERİ
   ============================================ */
@media (max-width: 991px) {
    .nav-item.dropdown {
        padding-bottom: 0;
        margin-bottom: 0;
    }
    
    .mega-menu {
        min-width: auto !important;
        width: 100% !important;
        left: 0 !important;
        transform: none !important;
        position: static !important;
        box-shadow: none !important;
        background: rgba(255,255,255,0.05);
        border-radius: 8px;
        padding: 10px;
        margin-top: 5px !important;
        /* Mobilde tek sütun, aşağı doğru ak */
        grid-template-columns: 1fr !important;
        grid-auto-flow: row !important;
    }
    
    .mega-menu.show {
        display: grid !important;
    }
    
    .mega-menu li.d-inline-block {
        display: block !important;
        width: 100% !important;
        margin: 0;
    }
    
    a.dropdown-header,
    .mega-menu .dropdown-header {
        color: var(--gold) !important;
        border-bottom-color: rgba(201,169,110,0.3);
        padding: 10px 12px;
        margin-top: 6px;
        margin-bottom: 4px;
        font-size: 0.92rem;
    }
    
    a.dropdown-header:hover {
        background: rgba(201,169,110,0.15) !important;
    }
    
    /* Mobilde sadece ana başlıklar görünsün, alt öğeler gizli (JS ile açılabilir) */
    .mega-menu .dropdown-item {
        display: none;
    }
    
    .mega-menu .dropdown-item.expanded {
        display: block !important;
        color: #fff !important;
        border-radius: 6px;
        margin: 1px 0;
        padding: 6px 12px;
    }
    
    .mega-menu .dropdown-item.expanded:hover {
        color: var(--gold) !important;
        text-decoration: underline;
    }
    
    .mega-menu .dropdown-item:hover {
        background: rgba(201,169,110,0.15) !important;
        color: var(--gold) !important;
    }
    
    /* Mobilde dropdown toggle oku */
    .dropdown-toggle::after {
        float: right;
        margin-top: 8px;
    }
}

/* ============================================
   DROPDOWN MENÜ STILLERI
   ============================================ */

/* Dropdown ok icon rengi */
.dropdown-toggle::after {
    border-top-color: var(--gold) !important;
}

/* ============================================
   YASAL SAYFA STILLERI (KVKK / Gizlilik)
   ============================================ */
.legal-content h2 {
    color: var(--primary-dark);
    font-weight: 700;
}

.legal-section {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--gray-200);
}

.legal-section:last-of-type {
    border-bottom: none;
}

.legal-section h3 {
    color: var(--primary-dark);
    font-size: 1.15rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-section h3 i {
    color: var(--gold);
}

.legal-section p,
.legal-section ul {
    color: var(--gray-600);
    font-size: 0.92rem;
    line-height: 1.8;
}

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

.legal-section a {
    color: var(--gold);
    text-decoration: underline;
}

/* ============================================
   HİZMET KARTI ALT LİNKLER - 2 sütun (5 sol, 5 sağ)
   ============================================ */
.service-sub-links {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
    column-count: 2;
    column-gap: 12px;
}

.service-sub-links li {
    padding: 3px 0;
    font-size: 0.78rem;
    break-inside: avoid;
    page-break-inside: avoid;
}

.service-sub-links li a {
    color: var(--gray-600);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-sub-links li a:hover {
    color: var(--gold);
    padding-left: 3px;
}

/* Mobilde navbar */
.navbar-toggler {
    border: 2px solid var(--gold);
    padding: 6px 10px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28201, 169, 110, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-collapse {
    background: rgba(44,24,16,0.95);
    padding: 15px;
    border-radius: 10px;
    margin-top: 10px;
}

.scrolled .navbar-collapse {
    background: transparent;
    padding: 0;
    margin-top: 0;
}

/* ============================================
   HERO BÖLÜMÜ
   ============================================ */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/hero-bg.jpg') center center / cover no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(44,24,16,0.88) 0%,
        rgba(74,44,23,0.78) 50%,
        rgba(44,24,16,0.85) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.hero-subtitle {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.hero-title {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-title span {
    color: var(--gold);
}

.hero-desc {
    color: rgba(255,255,255,0.85);
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.7s;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.9s;
}

/* Hero Animasyonlu Elementler */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

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

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -3%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: 15%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 20%;
    animation-delay: 6s;
}

/* Scroll Down İndikatörü */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--gold);
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.2s, bounce 2s infinite 1.5s;
}

/* ============================================
   BÖLÜM STILLERİ
   ============================================ */
.section-padding {
    padding: 100px 0;
}

.section-bg {
    background-color: var(--gray-100);
}

.section-bg-dark {
    background-color: var(--primary);
}

.section-bg-dark .section-title h2 {
    color: #ffffff;
}

.section-bg-dark .section-title p {
    color: rgba(255,255,255,0.7);
}

.feature-box {
    text-align: center;
    padding: 50px 30px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,169,110,0.15);
    border-radius: var(--radius);
    transition: var(--transition);
    height: 100%;
}

.feature-box:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(201,169,110,0.3);
    transform: translateY(-8px);
}

.feature-box .feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary);
    box-shadow: 0 8px 25px rgba(201,169,110,0.25);
}

.feature-box h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-box p {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.stat-box {
    text-align: center;
    padding: 20px 10px;
}

.stat-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    margin: 15px auto;
    border-radius: 2px;
}

.section-bg-dark {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
}

.section-bg-dark h2,
.section-bg-dark h3 {
    color: var(--white);
}

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

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    border-radius: 3px;
}

.section-title p {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-top: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-bg-dark .section-title p {
    color: rgba(255,255,255,0.8);
}

/* ============================================
   HİZMET KARTLARI
   ============================================ */
.service-card {
    background: linear-gradient(160deg, var(--white) 60%, rgba(201,169,110,0.06) 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(44,24,16,0.08), 0 2px 8px rgba(201,169,110,0.08), inset 0 0 0 1px rgba(201,169,110,0.12);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark), var(--gold));
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(44,24,16,0.12), 0 0 25px rgba(201,169,110,0.12), inset 0 0 0 1px rgba(201,169,110,0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

.service-card-body {
    padding: 30px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

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

.service-card h3 {
    font-size: 1.45rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.service-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.service-link:hover {
    color: var(--gold-dark);
    gap: 12px;
}

/* ============================================
   ÖZELLİK / AVANTAJ KARTLARI
   ============================================ */
.feature-box {
    text-align: center;
    padding: 40px 25px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    border: 1px solid rgba(212,175,55,0.1);
    transition: var(--transition);
    height: 100%;
}

.feature-box:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(212,175,55,0.3);
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: var(--primary-dark);
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
}

.feature-box:hover .feature-icon {
    transform: rotateY(360deg);
    box-shadow: 0 8px 30px rgba(212,175,55,0.5);
}

.feature-box h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.feature-box p {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   İSTATİSTİK SAYAÇLAR
   ============================================ */
.stat-box {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
}



.stat-label {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 15px auto;
    opacity: 0.5;
}

/* ============================================
   DANIŞAN YORUMLARI
   ============================================ */
.testimonial-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    text-align: center;
    margin: 20px 15px;
    position: relative;
    transition: var(--transition);
}

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

.testimonial-quote {
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 15px;
    opacity: 0.5;
}

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

.testimonial-author {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.testimonial-role {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
}

/* ============================================
   TESTIMONIAL DOTS
   ============================================ */
/* Altin baslik cizgisi */
.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    border-radius: 3px;
    transition: width 0.3s ease;
}

.testimonial-card:hover::after {
    width: 80px;
}

/* ============================================
   BLOG KARTLARI
   ============================================ */
.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

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

.blog-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--primary-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-body {
    padding: 25px;
}

.blog-date {
    color: var(--gray-600);
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-title {
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--gold-dark);
}

.blog-excerpt {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* ============================================
   İLETİŞİM BÖLÜMÜ
   ============================================ */
.contact-info-box {
    background: var(--white);
    border-radius: 15px;
    padding: 35px;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: var(--transition);
    border-left: 4px solid var(--gold);
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.contact-info-box h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.contact-info-box p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

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

.form-control-custom {
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    padding: 14px 20px;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--gray-100);
}

.form-control-custom:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212,175,55,0.1);
    background: var(--white);
    outline: none;
}

.form-label-custom {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

/* Harita */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    min-height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

/* ============================================
   HAKKIMIZDA BÖLÜMÜ
   ============================================ */
.about-img-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
}

.about-img-wrapper img {
    border-radius: 15px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-img-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold);
    border-radius: 15px;
    z-index: -1;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-text h2 span {
    color: var(--gold);
}

.about-text p {
    color: var(--gray-600);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.about-list li {
    padding: 8px 0;
    color: var(--gray-800);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.about-list li i {
    color: var(--gold);
    font-size: 1.1rem;
}

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

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(201,169,110,0.08);
    border-radius: 50%;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

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

/* ============================================
   WHATSAPP BUTONU
   ============================================ */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 5px 25px rgba(37,211,102,0.4);
    z-index: 9999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 8px 35px rgba(37,211,102,0.5);
}

/* ============================================
   TELEFON ARAMA BUTONU
   ============================================ */
.phone-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.5rem;
    box-shadow: var(--shadow-gold);
    z-index: 9999;
    transition: var(--transition);
    animation: pulse 2s infinite 1s;
}

.phone-btn:hover {
    transform: scale(1.1);
    color: var(--primary-dark);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(135deg, #0f0804, #1a0f08);
    color: rgba(255,255,255,0.8);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark), var(--gold));
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    display: block;
}

.footer-brand span {
    color: var(--gold);
}

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

.footer-title {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.footer-links a i {
    font-size: 0.75rem;
    color: var(--gold);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(212,175,55,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-info strong {
    color: var(--white);
    display: block;
    margin-bottom: 3px;
    font-size: 0.95rem;
}

.footer-contact-info span {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(212,175,55,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 60px;
    padding: 25px 0;
    text-align: center;
}

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

/* ============================================
   BAŞVURU FORMLARI SAYFASI
   ============================================ */
.page-header {
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/hero-bg.jpg') center center / cover no-repeat;
    opacity: 0.15;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-header-title {
    color: var(--white);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.page-header-subtitle {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.breadcrumb-custom {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-custom .breadcrumb-item a {
    color: rgba(255,255,255,0.7);
}

.breadcrumb-custom .breadcrumb-item.active {
    color: var(--gold);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--gold);
}

/* Form Tabs */
.form-tabs {
    border: none;
    gap: 10px;
    margin-bottom: 30px;
}

.form-tabs .nav-link {
    border: 2px solid var(--gray-300);
    border-radius: 12px;
    padding: 15px 25px !important;
    color: var(--gray-600) !important;
    font-weight: 600;
    transition: var(--transition);
    background: var(--white);
}

.form-tabs .nav-link.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white) !important;
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.form-tabs .nav-link:hover:not(.active) {
    border-color: var(--gold);
    color: var(--primary) !important;
}

.form-tab-icon {
    font-size: 1.3rem;
    margin-right: 8px;
}

/* ============================================
   HİZMET DETAY SAYFASI
   ============================================ */
.service-detail-img {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 40px;
}

.service-detail-img img {
    width: 100%;
    height: auto;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
    color: var(--primary);
}

.service-detail-content p {
    color: var(--gray-600);
    line-height: 1.9;
    margin-bottom: 15px;
}

.service-detail-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-detail-list li {
    padding: 10px 0;
    color: var(--gray-800);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--gray-200);
}

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

.service-detail-list li i {
    color: var(--gold);
    font-size: 1rem;
}

/* Sidebar */
.service-sidebar {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}

.sidebar-title {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold);
}

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

.sidebar-links li {
    margin-bottom: 5px;
}

.sidebar-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    border-radius: 10px;
    color: var(--gray-600);
    font-weight: 500;
    transition: var(--transition);
}

.sidebar-links a:hover,
.sidebar-links a.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
    text-align: center;
    color: var(--white);
}

.sidebar-cta h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.sidebar-cta p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb-wrapper {
    background: var(--gray-100);
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-200);
}

.breadcrumb-wrapper .breadcrumb {
    margin: 0;
}

.breadcrumb-wrapper .breadcrumb-item a {
    color: var(--primary);
    font-weight: 500;
}

/* ============================================
   BOOTSTRAP OVERRIDE - LACIVERT YERINE KAHVERENGI
   ============================================ */
.btn-outline-primary {
    border-color: var(--primary) !important;
    color: var(--primary) !important;
}

.btn-outline-primary:hover,
.btn-outline-primary.active {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--white) !important;
}

.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.breadcrumb-wrapper .breadcrumb-item.active {
    color: var(--gray-600);
}

/* ============================================
   ANİMASYONLAR
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-15px); }
    60% { transform: translateX(-50%) translateY(-8px); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(212,175,55,0.4); }
    70% { box-shadow: 0 0 0 20px rgba(212,175,55,0); }
    100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

/* ============================================
   RESPONSİVE TASARIM
   ============================================ */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    .section-padding {
        padding: 70px 0;
    }

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

    .hero-desc {
        font-size: 1.05rem;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }

    .service-sidebar {
        position: relative;
        top: 0;
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 50px 0;
    }

    .hero {
        min-height: 600px;
        height: auto;
        padding: 120px 0 80px;
    }

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

    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 24px;
        font-size: 0.8rem;
    }

    .section-title h2 {
        font-size: 1.7rem;
    }

    .page-header {
        height: 300px;
    }

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

    .stat-number {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .whatsapp-btn,
    .phone-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
    }

    .phone-btn {
        bottom: 20px;
        left: 20px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.7rem;
    }

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

    .btn {
        width: 100%;
        max-width: 280px;
    }

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

    .testimonial-card {
        padding: 30px 20px;
    }

    .form-tabs .nav-link {
        padding: 12px 15px !important;
        font-size: 0.85rem;
    }
}

/* ============================================
   SCROLLBAR ÖZELLEŞTİRME
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--primary-light));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--gold), var(--primary-light));
}


