/* ========================================================
   C&H Hukuk ve Danışmanlık — style.css
   Fonts: Playfair Display (serif) + Open Sans (sans)
   Accent: #8E9BAA (koyu gri gümüş)
   ======================================================== */

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

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

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #333;
    background: #fff;
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* --------------------------------------------------------
   DEĞİŞKENLER
   -------------------------------------------------------- */
:root {
    --black:        #000000;
    --dark:         #111111;
    --dark2:        #1a1a1a;
    --gold:         #f5f5f5;
    --gold-dark:    #d0d0d0;
    --white:        #ffffff;
    --gray-100:     #f8f8f8;
    --gray-200:     #e5e7eb;
    --text-dark:    #333333;
    --text-gray:    #666666;
    --border-dark:  rgba(255,255,255,0.07);
    --transition:   0.3s ease;
    --shadow:       0 4px 20px rgba(0,0,0,0.08);
}

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

/* --------------------------------------------------------
   TİPOGRAFİ
   -------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

/* --------------------------------------------------------
   BUTONLAR
   -------------------------------------------------------- */
.btn {
    display: inline-block;
    padding: 12px 38px;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    line-height: 1;
}

.btn--gold {
    background: #f5f5f5;
    color: var(--black);
    border-color: #f5f5f5;
}
.btn--gold:hover {
    background: #d0d0d0;
    border-color: #d0d0d0;
    color: var(--black);
}

.btn--dark {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}
.btn--dark:hover {
    background: var(--dark);
    border-color: var(--dark);
}

.btn--sm {
    padding: 8px 22px;
    font-size: 13px;
}

.btn--hero {
    background: #f5f5f5;
    color: var(--black);
    font-size: 16px;
    font-weight: 600;
    padding: 13px 38px;
    position: relative;
    margin-left: 95px;
    border: 2px solid #f5f5f5;
    display: inline-block;
}
.btn--hero::before {
    content: '';
    position: absolute;
    width: 85px;
    height: 2px;
    left: -90px;
    top: 50%;
    background: rgba(255,255,255,0.6);
    transform: translateY(-50%);
    transition: left var(--transition), width var(--transition);
}
.btn--hero:hover {
    background: #d0d0d0;
    border-color: #d0d0d0;
    color: var(--black);
}
.btn--hero:hover::before {
    left: -100px;
}

.btn--outline-dark {
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    padding: 11px 32px;
    font-size: 14px;
}
.btn--outline-dark:hover {
    background: var(--text-dark);
    color: var(--white);
}

.btn--block {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 16px;
}

/* --------------------------------------------------------
   BÖLÜM BAŞLIKLARI
   -------------------------------------------------------- */
.section-badge {
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-bottom: 6px;
}
.section-badge--gold {
    color: #8E9BAA;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 500;
    color: var(--text-dark);
    padding-bottom: 20px;
    position: relative;
    margin-bottom: 5px;
}

.section-title--center {
    text-align: center;
}
.section-title--center::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.section-title--left {
    margin-left: 80px;
}
.section-title--left::before {
    content: '';
    position: absolute;
    left: -80px;
    top: 22px;
    width: 65px;
    height: 1px;
    background: var(--gold);
}

.section-title--white {
    color: var(--white);
    margin-left: 80px;
}
.section-title--white::before {
    content: '';
    position: absolute;
    left: -80px;
    top: 22px;
    width: 65px;
    height: 1px;
    background: var(--gold);
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    text-align: center;
    margin-top: 8px;
}

.section-header {
    margin-bottom: 50px;
}

/* --------------------------------------------------------
   TOPBAR
   -------------------------------------------------------- */
.topbar {
    background: var(--black);
    border-bottom: 1px solid var(--border-dark);
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.topbar__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.topbar__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 13px;
    padding: 14px 15px;
    position: relative;
}
.topbar__item i {
    font-size: 16px;
    color: var(--white);
}
.topbar__item--sep::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 25px;
    background: var(--border-dark);
}

.topbar__action {
    padding: 8px 0;
}

/* --------------------------------------------------------
   HEADER
   -------------------------------------------------------- */
.header {
    background: var(--black);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--transition);
}
.header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.header__inner {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    padding: 8px 0;
    flex-shrink: 0;
}
.logo__img {
    height: 78px;
    width: auto;
}

/* Desktop Nav */
.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.nav__list {
    display: flex;
    align-items: center;
}
.nav__link {
    display: block;
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 35px 18px;
    transition: color var(--transition);
    letter-spacing: 0.3px;
}
.nav__link:hover,
.nav__link--active {
    color: rgba(229,231,235,0.85);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px 5px;
    z-index: 200;
    flex-shrink: 0;
}
.hamburger__bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* Search */
.header__search {
    position: relative;
    flex-shrink: 0;
}
.search-toggle {
    color: var(--white);
    font-size: 16px;
    padding: 10px;
    transition: color var(--transition);
}
.search-toggle:hover {
    color: var(--gold);
}
.search-box {
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    width: 263px;
    background: var(--white);
    z-index: 50;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}
.search-box.active {
    opacity: 1;
    visibility: visible;
}
.search-box form {
    display: flex;
    position: relative;
}
.search-box input {
    width: 100%;
    height: 40px;
    padding: 0 40px 0 10px;
    border: 1px solid rgba(64,59,59,0.15);
    outline: none;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
}
.search-box button {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* --------------------------------------------------------
   MOBILE MENU
   -------------------------------------------------------- */
.mobile-menu__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}
.mobile-menu__panel {
    position: fixed;
    top: 0;
    left: -290px;
    width: 280px;
    height: 100%;
    background: var(--dark);
    z-index: 999;
    padding: 70px 30px 30px;
    transition: left var(--transition);
    overflow-y: auto;
}
.mobile-menu.open .mobile-menu__overlay {
    opacity: 1;
    visibility: visible;
}
.mobile-menu.open .mobile-menu__panel {
    left: 0;
}
.mobile-menu__close {
    position: absolute;
    top: 18px;
    right: 18px;
    color: var(--white);
    font-size: 20px;
    padding: 5px;
    line-height: 1;
}
.mobile-menu__nav a {
    display: block;
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color var(--transition), padding-left var(--transition);
}
.mobile-menu__nav a:hover {
    color: var(--gold);
    padding-left: 8px;
}

/* --------------------------------------------------------
   HERO
   -------------------------------------------------------- */
.hero {
    position: relative;
    z-index: 20;
    overflow: hidden;
}
.hero-swiper {
    width: 100%;
}
.hero__slide {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 620px;
    display: flex;
    align-items: center;
}
.hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #1a1a1a;
    z-index: 0;
}
.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    pointer-events: none;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.70);
    z-index: 1;
}
.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}
.hero__content {
    max-width: 700px;
    padding-left: 5px;
}
.hero__pretitle {
    color: var(--white);
    font-size: 18px;
    font-weight: 300;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 18px;
    letter-spacing: 1px;
    opacity: 0.9;
}
.hero__title {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 58px;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 22px;
}
.hero__desc {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 35px;
    max-width: 580px;
}
.hero__actions {
    display: flex;
    align-items: center;
}

/* Swiper özelleştirme */
.swiper-button-prev,
.swiper-button-next {
    color: var(--white);
    width: 46px;
    height: 46px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    transition: background var(--transition), border-color var(--transition);
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--gold);
    border-color: var(--gold);
}
.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 15px;
    font-weight: 700;
}
.swiper-pagination-bullet {
    background: rgba(255,255,255,0.5);
    opacity: 1;
    width: 10px;
    height: 10px;
    transition: transform var(--transition), background var(--transition);
}
.swiper-pagination-bullet-active {
    background: var(--gold);
    transform: scale(1.3);
}

/* --------------------------------------------------------
   HIZLI ERİŞİM
   -------------------------------------------------------- */
.quickbox {
    background: #f5f5f5;
    position: relative;
    z-index: 10;
}
.quickbox__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.quickbox__item {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 32px 44px;
    color: var(--black);
    border-right: 1px solid rgba(0,0,0,0.12);
    transition: background var(--transition);
    cursor: pointer;
}
.quickbox__item:last-child {
    border-right: none;
}
.quickbox__item:hover {
    background: rgba(212,194,145,0.06);
}
.quickbox__icon-wrap {
    width: 62px;
    height: 62px;
    border: 2px solid var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--black);
    flex-shrink: 0;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.quickbox__icon-wrap img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0);
    transition: filter var(--transition), transform var(--transition);
}
.quickbox__item:hover .quickbox__icon-wrap {
    background: var(--gold);
    color: var(--black);
}
.quickbox__item:hover .quickbox__icon-wrap img {
    filter: brightness(0);
    transform: scale(1.08);
}
.quickbox__text {
    display: flex;
    flex-direction: column;
}
.quickbox__text span {
    font-size: 11px;
    color: rgba(0,0,0,0.55);
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-bottom: 5px;
}
.quickbox__text strong {
    font-size: 20px;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: var(--black);
}

/* --------------------------------------------------------
   HAKKIMIZDA
   -------------------------------------------------------- */
.about {
    padding: 100px 0;
    background: var(--white);
}
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    overflow: visible;
}
.about__image {
    position: relative;
    padding-top: 30px;
    padding-left: 30px;
}
.about__image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 30px;
    bottom: 30px;
    background: #e2e4e8;
    z-index: 0;
}
.about__image img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center center;
    display: block;
}
.about__badge {
    position: absolute;
    bottom: 0;
    right: -28px;
    background: var(--black);
    border: 1px solid var(--gold);
    padding: 22px 28px;
    min-width: 210px;
    z-index: 3;
}
.about__badge-sub {
    font-size: 11px;
    font-family: 'Open Sans', sans-serif;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.about__badge-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--white);
    font-weight: 500;
    line-height: 1.2;
}
.ataturk-imza {
    display: block;
    height: 52px;
    width: auto;
    margin-bottom: 22px;
    opacity: 0.75;
    filter: grayscale(1) contrast(1.2);
}
.about__content {
    padding-top: 10px;
}
.about__sub {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 6px;
    margin-left: 80px;
}
.about__desc {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.85;
    margin: 22px 0 28px;
}

/* Atatürk sözü */
.ataturk-quote {
    position: relative;
    background: #f0f2f4;
    border-left: 3px solid var(--gold);
    padding: 22px 24px 20px 28px;
    margin: 0 0 30px;
}
.ataturk-quote__mark {
    position: absolute;
    top: -14px;
    left: 18px;
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    color: #8E9BAA;
    line-height: 1;
    opacity: 0.5;
    font-style: italic;
}
.ataturk-quote__text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
    padding-top: 6px;
}
.ataturk-quote__imza {
    display: block;
    height: 44px;
    width: auto;
    margin-top: 10px;
    margin-left: auto;
    opacity: 0.70;
    filter: grayscale(1) contrast(1.3);
}
.ataturk-quote__sig {
    margin-top: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-dark);
    letter-spacing: 0.5px;
    text-align: right;
    font-style: italic;
}

/* Sabit iletişim ikonları */
.floating-contacts {
    position: fixed;
    right: 20px;
    bottom: 90px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9990;
}
.fc-item {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    transition: transform var(--transition), box-shadow var(--transition);
}
.fc-item:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}
.fc-item--phone  { background: var(--dark); border: 1px solid var(--gold); }
.fc-item--whatsapp { background: #25d366; }
.fc-item--instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }

/* --------------------------------------------------------
   HİZMETLER
   -------------------------------------------------------- */
.services {
    padding: 100px 0;
    background: var(--gray-100);
}
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 60px;
    margin-top: 20px;
}
.service-card {
    display: flex;
    gap: 22px;
    align-items: stretch;
    background: transparent;
    padding: 0;
}
.service-card__icon {
    align-self: flex-start;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    border: 1.5px solid #d8dde2;
    background: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color var(--transition), background var(--transition);
}
.service-card__icon i {
    font-size: 26px;
    color: #9ba4b0;
    transition: color var(--transition);
}
.service-card__icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
    filter: grayscale(0.2);
    transition: filter var(--transition), transform var(--transition);
}
.service-card:hover .service-card__icon img {
    filter: grayscale(0);
    transform: scale(1.08);
}
.service-card:hover .service-card__icon {
    border-color: #8E9BAA;
    background: rgba(142,155,170,0.08);
}
.service-card:hover .service-card__icon i {
    color: #8E9BAA;
}
.service-card__body {
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.service-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.25;
}
.service-card__desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
}
.btn--sm {
    padding: 10px 22px;
    font-size: 12px;
}

/* --------------------------------------------------------
   DANIŞMANLIK FORMU
   -------------------------------------------------------- */
.consult {
    background: var(--black);
    padding: 100px 0;
}
.consult__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.consult__info {
    padding-top: 5px;
}
.consult__phones {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    line-height: 1.75;
    margin: 28px 0 20px;
}
.consult__phones a {
    color: var(--gold);
    font-weight: 600;
}
.consult__phones a:hover {
    text-decoration: underline;
}
.consult__desc {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    line-height: 1.85;
}

/* Form alanları */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-control {
    width: 100%;
    height: 50px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.20);
    color: rgba(229,231,235,0.9);
    padding: 0 15px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color var(--transition), background var(--transition);
    -webkit-appearance: none;
    appearance: none;
}
.form-control::placeholder {
    color: rgba(255,255,255,0.38);
}
.form-control:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.14);
}
.form-control option {
    background: #222;
    color: var(--white);
}
.form-control--textarea {
    height: 150px;
    resize: vertical;
    padding: 14px 15px;
    margin-bottom: 15px;
}
.form-alert {
    padding: 16px 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}
.form-alert--success {
    background: rgba(34,197,94,0.12);
    border: 1px solid rgba(34,197,94,0.3);
    color: #4ade80;
}
.form-alert--error {
    background: rgba(239,68,68,0.12);
    border: 1px solid rgba(239,68,68,0.3);
    color: #f87171;
}

/* --------------------------------------------------------
   İSTATİSTİKLER
   -------------------------------------------------------- */
.stats {
    background: var(--dark2);
    padding: 80px 0;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}
.stat-item {
    padding: 20px 10px;
    border-right: 1px solid rgba(255,255,255,0.06);
}
.stat-item:last-child {
    border-right: none;
}
.stat-item__number {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 2px;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 14px;
}
.counter {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
}
.stat-suffix {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 6px;
}
.stat-item__label {
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* --------------------------------------------------------
   E-BÜLTEN
   -------------------------------------------------------- */
.newsletter {
    background: #f5f5f5;
    padding: 55px 0;
}
.newsletter__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.newsletter__title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 500;
    color: var(--black);
}
.newsletter__form {
    display: flex;
    gap: 0;
}
.newsletter__input {
    height: 48px;
    padding: 0 20px;
    border: 1px solid rgba(0,0,0,0.2);
    border-right: none;
    outline: none;
    font-size: 14px;
    width: 280px;
    background: var(--white);
    color: var(--black);
    font-family: 'Open Sans', sans-serif;
}
.newsletter__input::placeholder {
    color: rgba(0,0,0,0.45);
}
.newsletter .btn--dark {
    height: 48px;
    display: flex;
    align-items: center;
    padding: 0 28px;
    font-size: 14px;
}
.newsletter__success {
    color: var(--black);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --------------------------------------------------------
   FOOTER
   -------------------------------------------------------- */
.footer {
    background: var(--dark);
}
.footer__top {
    padding: 80px 0 60px;
    border-bottom: 1px solid var(--border-dark);
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.8fr;
    gap: 40px;
}
.footer__col--about .footer__logo img {
    height: 55px;
    margin-bottom: 22px;
}
.footer__about-text {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    line-height: 1.85;
}
.footer__heading {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}
.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer__links a {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    transition: color var(--transition), padding-left var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer__links a::before {
    content: '›';
    font-size: 18px;
    color: var(--gold);
    line-height: 1;
}
.footer__links a:hover {
    color: var(--gold);
    padding-left: 5px;
}
.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.footer__contact li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.footer__contact i {
    color: var(--gold);
    font-size: 15px;
    margin-top: 4px;
    flex-shrink: 0;
}
.footer__contact span {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    line-height: 1.7;
}
.footer__contact a {
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
}
.footer__contact a:hover {
    color: var(--gold);
}
.footer__bottom {
    background: var(--black);
    padding: 20px 0;
    text-align: center;
}
.footer__bottom p {
    color: rgba(255,255,255,0.38);
    font-size: 13px;
}

/* --------------------------------------------------------
   YUKARI ÇIK
   -------------------------------------------------------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition), background var(--transition);
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: var(--gold-dark);
}

/* ========================================================
   RESPONSIVE
   ======================================================== */

/* Büyük tablet (≤1024px) */
@media (max-width: 1024px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .services__grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px 40px;
    }
    .quickbox__item {
        padding: 26px 28px;
    }
    .nav__link {
        padding: 35px 12px;
        font-size: 13px;
    }
    .logo__img {
        height: 64px;
    }
    .section-title--left,
    .section-title--white {
        margin-left: 0;
    }
    .section-title--left::before,
    .section-title--white::before {
        display: none;
    }
    .about__sub {
        margin-left: 0;
    }
    .about__grid {
        gap: 40px;
    }
    .consult__grid {
        gap: 50px;
    }
}

/* Tablet (≤768px) */
@media (max-width: 768px) {
    .topbar__list {
        display: none;
    }
    .topbar__inner {
        justify-content: center;
        padding: 5px 0;
    }

    .nav {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .header__search {
        display: none;
    }

    .logo__img {
        height: 54px;
    }

    .hero__slide {
        height: 45vh;
        height: 45dvh;
        min-height: 300px;
    }
    .hero__content {
        padding-top: 60px;
    }
    .hero__title {
        font-size: 16px;
        line-height: 1.2;
        margin-bottom: 8px;
    }
    .hero__pretitle {
        font-size: 9px;
        margin-bottom: 6px;
    }
    .hero__desc {
        font-size: 9px;
        line-height: 1.5;
        margin-bottom: 12px;
    }
    .btn--hero {
        margin-left: 0;
        font-size: 11px;
        padding: 7px 18px;
    }
    .btn--hero::before {
        display: none;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }

    .quickbox__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .quickbox__item {
        padding: 14px 6px;
        border-right: none;
        border-bottom: 1px solid var(--border-dark);
        text-align: center;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .quickbox__icon-wrap {
        width: 58px;
        height: 58px;
        font-size: 18px;
    }
    .quickbox__icon-wrap img {
        width: 26px;
        height: 26px;
    }
    .quickbox__text span {
        font-size: 9px;
        letter-spacing: 0.5px;
    }
    .quickbox__text strong {
        font-size: 11px;
    }

    .about {
        padding: 60px 0;
    }
    .about__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about__image {
        padding-top: 16px;
        padding-left: 16px;
    }
    .about__image::before {
        right: 16px;
        bottom: 16px;
    }
    .about__image img {
        aspect-ratio: 4/3;
        height: auto;
    }
    .about__badge {
        right: 0;
        bottom: -40px;
        min-width: 180px;
        padding: 16px 20px;
    }

    .services {
        padding: 60px 0;
    }
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    .service-card__icon {
        width: 68px;
        height: 68px;
        flex-shrink: 0;
    }
    .service-card__icon i {
        font-size: 22px;
    }

    .consult {
        padding: 60px 0;
    }
    .consult__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }

    .stats {
        padding: 60px 0;
    }
    .stats__grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .counter {
        font-size: 44px;
    }
    .stat-suffix {
        font-size: 28px;
    }

    .newsletter {
        padding: 45px 0;
    }
    .newsletter__inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .newsletter__form {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
    }
    .newsletter__input {
        width: 100%;
        max-width: 340px;
        border-right: 1px solid rgba(255,255,255,0.35);
    }

    .footer__top {
        padding: 60px 0 40px;
    }
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

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

    .page-hero {
        height: 320px;
    }
    .page-hero__title {
        font-size: 32px;
    }

    .blog-section {
        padding: 60px 0;
    }
    .blog-detail-section {
        padding: 60px 0;
    }
    .search-section {
        padding: 50px 0 70px;
    }
    .search-page__form {
        flex-direction: column;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* Küçük mobil (≤480px) */
@media (max-width: 480px) {
    .hero__title {
        font-size: 14px;
        margin-bottom: 6px;
    }
    .hero__slide {
        height: 40vh;
        height: 40dvh;
        min-height: 260px;
    }
    .topbar {
        display: none;
    }
    .counter {
        font-size: 38px;
    }
    .stat-suffix {
        font-size: 24px;
    }
    .page-hero {
        height: auto;
        min-height: 0;
        background-size: contain;
        background-position: center center;
        background-color: #1a1a1a;
        padding: 80px 0 50px;
    }
    .page-hero__title {
        font-size: 26px;
    }
    .services__grid {
        grid-template-columns: 1fr;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .stats__grid {
        grid-template-columns: 1fr 1fr;
    }
    .section-title {
        font-size: 24px;
    }
    .blog-detail__footer {
        flex-direction: column;
    }
}

/* --------------------------------------------------------
   PAGE HERO (iç sayfa başlığı)
   -------------------------------------------------------- */
.page-hero {
    position: relative;
    height: 600px;
    background: url('../images/hero-2.jpg') center 25%/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.40);
    z-index: 1;
}
.page-hero .container {
    position: relative;
    z-index: 2;
}
.page-hero__content {
    text-align: center;
}
.page-hero__title {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 46px;
    margin-bottom: 12px;
}
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255,255,255,0.75);
    font-size: 14px;
}
.breadcrumb a {
    color: var(--gold);
    transition: opacity var(--transition);
}
.breadcrumb a:hover {
    opacity: 0.8;
}

/* --------------------------------------------------------
   EKİP (TEAM)
   -------------------------------------------------------- */
.team-section {
    padding: 80px 0;
    background: var(--gray-100);
}
.team-swiper {
    padding: 10px 5px 55px !important;
}
.team-card {
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 4px 22px rgba(0,0,0,0.10);
    transition: transform var(--transition), box-shadow var(--transition);
    text-align: center;
}
.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.16);
}
.team-card__photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(160deg, #1e2530 0%, #2d3748 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.45s ease;
}
.team-card:hover .team-card__photo img {
    transform: scale(1.04);
}
.team-card__photo img[src*="avukat-placeholder"] {
    width: 80px;
    height: 80px;
    object-fit: contain;
    opacity: 0.25;
}
.team-card__info {
    padding: 22px 18px 26px;
    border-top: 3px solid var(--gold);
}
.team-card__name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 7px;
    line-height: 1.3;
}
.team-card__title {
    font-size: 12px;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
}
.team-swiper .swiper-button-prev,
.team-swiper .swiper-button-next {
    color: var(--white);
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    width: 42px;
    height: 42px;
}
.team-swiper .swiper-button-prev:hover,
.team-swiper .swiper-button-next:hover {
    background: var(--gold);
    border-color: var(--gold);
}
.team-swiper .swiper-button-prev::after,
.team-swiper .swiper-button-next::after {
    font-size: 14px;
}

/* --------------------------------------------------------
   YORUMLAR (TESTIMONIALS)
   -------------------------------------------------------- */
.testimonials {
    padding: 80px 0;
    background: var(--dark);
}
.testimonials .section-badge {
    color: var(--gold);
    border-color: var(--gold);
}
.testimonials .section-title {
    color: var(--white);
}
.testimonial-swiper {
    padding-bottom: 45px !important;
}
.testimonial-swiper .swiper-slide {
    display: flex;
    height: auto;
}
.testimonial-card {
    background: var(--dark2);
    border: 1px solid var(--border-dark);
    border-radius: 4px;
    padding: 32px 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}
.testimonial-card__stars {
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.testimonial-card__text {
    flex: 1;
    color: rgba(255,255,255,0.82);
    font-size: 15px;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 22px;
}
.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-card__avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--dark);
    flex-shrink: 0;
}
.testimonial-card__author strong {
    display: block;
    color: var(--white);
    font-size: 15px;
    margin-bottom: 2px;
}
.testimonial-card__author span {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.testimonial-pagination .swiper-pagination-bullet {
    background: rgba(255,255,255,0.3);
}
.testimonial-pagination .swiper-pagination-bullet-active {
    background: var(--gold);
}

/* --------------------------------------------------------
   İLETİŞİM SAYFASI
   -------------------------------------------------------- */
.contact-section {
    padding: 80px 0;
    background: var(--white);
}
.contact-section__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}
.contact-info__item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start;
}
.contact-info__icon {
    width: 46px;
    height: 46px;
    background: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 16px;
    flex-shrink: 0;
}
.contact-info__text strong {
    display: block;
    color: var(--dark);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}
.contact-info__text p,
.contact-info__text a {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    transition: color var(--transition);
}
.contact-info__text a:hover {
    color: var(--gold-dark);
}
.map-section {
    height: 400px;
    overflow: hidden;
}
.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* İletişim sayfası — beyaz arka planda form override */
.contact-section .form-control {
    background: var(--white);
    border: 1px solid #d0d5db;
    color: var(--text-dark);
}
.contact-section .form-control::placeholder {
    color: #9ca3af;
}
.contact-section .form-control:focus {
    border-color: var(--gold);
    background: var(--white);
}
.contact-section .form-control option {
    background: var(--white);
    color: var(--text-dark);
}
.contact-section .form-alert--success {
    background: rgba(34,197,94,0.08);
    border-color: rgba(34,197,94,0.3);
    color: #16a34a;
}
.contact-section .form-alert--error {
    background: rgba(239,68,68,0.08);
    border-color: rgba(239,68,68,0.3);
    color: #dc2626;
}

@media (max-width: 768px) {
    .contact-section__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .page-hero {
        height: auto;
        min-height: 0;
        background-size: contain;
        background-position: center center;
        background-color: #1a1a1a;
        padding: 80px 0 50px;
    }
    .page-hero__title {
        font-size: 32px;
    }
}

/* --------------------------------------------------------
   AVUKAT DETAY SAYFASI
   -------------------------------------------------------- */
.attorney-profile {
    padding: 80px 0;
    background: var(--white);
}
.attorney-profile__grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}
.attorney-profile__left {
    position: sticky;
    top: 90px;
}
.attorney-profile__photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(160deg, #1e2530 0%, #2d3748 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}
.attorney-profile__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.attorney-profile__photo img[src*="avukat-placeholder"] {
    width: 80px;
    height: 80px;
    object-fit: contain;
    opacity: 0.2;
}
.attorney-contact-card {
    background: var(--dark);
    padding: 24px;
    margin-top: 0;
    border-top: 3px solid var(--gold);
}
.attorney-contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    color: var(--white);
    margin-bottom: 14px;
}
.attorney-contact-card a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    transition: opacity var(--transition);
}
.attorney-contact-card a:last-of-type { margin-bottom: 0; }
.attorney-contact-card a:hover { opacity: 0.8; }
.attorney-contact-card i { font-size: 13px; width: 14px; }

.attorney-profile__name {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.2;
}
.attorney-profile__role {
    font-size: 13px;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}
.attorney-profile__bio {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 16px;
}
.attorney-profile__subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--dark);
    margin: 30px 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}
.attorney-profile__areas {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
}
.attorney-profile__areas li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}
.attorney-profile__areas li i {
    color: #8E9BAA;
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Ekipteki diğer avukatlar */
.attorney-others {
    padding: 70px 0;
    background: var(--gray-100);
}
.attorney-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Takım kartı tıklanabilir */
.team-card--link {
    cursor: pointer;
}

@media (max-width: 768px) {
    .attorney-profile__grid {
        grid-template-columns: 1fr;
    }
    .attorney-profile__left {
        position: static;
        max-width: 320px;
        margin: 0 auto;
    }
    .attorney-profile__areas {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------
   HİZMET DETAY SAYFASI
   -------------------------------------------------------- */
.service-detail {
    padding: 80px 0;
    background: var(--white);
}
.service-detail__grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
    align-items: start;
}
.service-detail__icon-wrap {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 22px;
}
.service-detail__heading {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--gray-200);
}
.service-detail__desc {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 20px;
}
.service-detail__subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--dark);
    margin: 32px 0 16px;
}
.service-detail__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}
.service-detail__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.65;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
}
.service-detail__list li i {
    color: #8E9BAA;
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Sidebar */
.service-sidebar {
    position: sticky;
    top: 90px;
}
.service-sidebar__contact {
    background: var(--dark);
    padding: 32px 26px;
    margin-bottom: 20px;
}
.service-sidebar__contact h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 12px;
}
.service-sidebar__contact p {
    color: rgba(255,255,255,0.60);
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 20px;
}
.service-sidebar__phones {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}
.service-sidebar__phones a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 15px;
    font-weight: 600;
    transition: opacity var(--transition);
}
.service-sidebar__phones a:hover { opacity: 0.8; }
.service-sidebar__phones i { font-size: 13px; }

.service-sidebar__other {
    background: var(--gray-100);
    padding: 26px;
}
.service-sidebar__other h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
}
.service-sidebar__other ul { list-style: none; }
.service-sidebar__other ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 0;
    border-bottom: 1px solid var(--gray-200);
    color: var(--text-dark);
    font-size: 14px;
    transition: color var(--transition), padding-left var(--transition);
}
.service-sidebar__other ul li:last-child a { border-bottom: none; }
.service-sidebar__other ul li a:hover {
    color: var(--gold-dark);
    padding-left: 4px;
}
.service-sidebar__other ul li a i {
    font-size: 10px;
    color: #8E9BAA;
}

/* Hizmet kartlarındaki link */
.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    padding-top: 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-dark);
    letter-spacing: 0.3px;
    transition: gap var(--transition), color var(--transition);
}
.service-card__link:hover {
    color: #8E9BAA;
    gap: 10px;
}
.service-card__link--dark {
    color: var(--black);
}
.service-card__link--dark:hover {
    color: #333;
}

@media (max-width: 1024px) {
    .service-detail__grid {
        grid-template-columns: 1fr;
    }
    .service-sidebar {
        position: static;
    }
}

/* --------------------------------------------------------
   BLOG
   -------------------------------------------------------- */
.blog-section {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.blog-card {
    background: var(--white);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.13);
}

.blog-card__img-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

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

.blog-card:hover .blog-card__img-wrap img {
    transform: scale(1.04);
}

.blog-card__body {
    padding: 24px 22px 28px;
}

.blog-card__cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--white);
    background: var(--dark2);
    padding: 4px 10px;
    margin-bottom: 14px;
}

.blog-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card__excerpt {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 14px;
}

.blog-card__meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 6px;
    display: flex;
    gap: 14px;
}

.blog-card__meta i {
    margin-right: 4px;
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 0.3px;
    transition: gap var(--transition), color var(--transition);
}

.blog-card__link:hover {
    color: #8E9BAA;
    gap: 10px;
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------
   BLOG DETAY
   -------------------------------------------------------- */
.blog-detail-section {
    padding: 80px 0;
}

.blog-detail__grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

.blog-detail__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.blog-detail__date,
.blog-detail__author {
    font-size: 13px;
    color: #999;
}

.blog-detail__date i,
.blog-detail__author i {
    margin-right: 5px;
}

.blog-detail__title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 28px;
}

.blog-detail__cover {
    width: 100%;
    aspect-ratio: 16 / 7;
    overflow: hidden;
    margin-bottom: 36px;
}

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

.blog-detail__body p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.85;
    margin-bottom: 20px;
}

.blog-detail__body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin: 32px 0 12px;
}

.blog-detail__footer {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.blog-sidebar__box {
    background: var(--gray-100);
    padding: 28px 24px;
    margin-bottom: 28px;
}

.blog-sidebar__heading {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--dark);
}

.blog-sidebar__box p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 14px;
    line-height: 1.6;
}

.blog-sidebar__cats {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.blog-sidebar__cats li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    font-size: 14px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--gray-200);
    transition: color var(--transition), padding-left var(--transition);
}

.blog-sidebar__cats li a:hover {
    color: var(--dark);
    padding-left: 6px;
}

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

@media (max-width: 768px) {
    .blog-detail__title {
        font-size: 24px;
    }
}

/* --------------------------------------------------------
   ARAMA SAYFASI
   -------------------------------------------------------- */
.search-section {
    padding: 70px 0 100px;
}

.search-page__form {
    display: flex;
    gap: 12px;
    max-width: 680px;
    margin: 0 auto 40px;
}

.search-page__form .form-control {
    flex: 1;
}

.search-page__info {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 32px;
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
}

.search-result-item {
    padding: 24px;
    background: var(--gray-100);
    border-left: 3px solid var(--dark);
}

.search-result-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 8px;
}

.search-result-item h3 a {
    color: var(--dark);
    transition: color var(--transition);
}

.search-result-item h3 a:hover {
    color: #8E9BAA;
}

.search-result-item p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 8px;
}

.search-result-item__link {
    font-size: 12px;
    color: #8E9BAA;
}

.search-page__empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-gray);
}

.search-page__empty i {
    font-size: 48px;
    color: var(--gray-200);
    margin-bottom: 16px;
    display: block;
}

.search-page__empty p {
    font-size: 16px;
    margin-bottom: 24px;
}
