/* ═══════════════════════════════════════════════════════════════
   İstanbul Ankara Nakliyat — site.css
   Tasarım: siyah/beyaz, Inter, sıfırdan özel
   ═══════════════════════════════════════════════════════════════ */

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --black:      #23272f;
    --red:        #e63946;
    --red-dark:   #c1121f;
    --red-light:  #ffeaec;
    --white:      #ffffff;
    --gray-100:   #f7f7f7;
    --gray-200:   #ebebeb;
    --gray-400:   #b0b0b0;
    --gray-600:   #6b6b6b;
    --gray-800:   #2d2d2d;

    --nav-h:      80px;
    --radius:     6px;
    --radius-lg:  12px;
    --shadow:     0 2px 16px rgba(0,0,0,.10);
    --shadow-lg:  0 8px 40px rgba(0,0,0,.16);

    --font:       'Inter', system-ui, -apple-system, sans-serif;
    --transition: .22s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    color: var(--black);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

p  { color: var(--gray-800); line-height: 1.75; }

/* ── Utility ───────────────────────────────────────────────── */
.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    margin-bottom: .5rem;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
    margin-top: .45rem;
}
.text-center .section-title::after { margin-left: auto; margin-right: auto; }
.section-subtitle {
    color: var(--gray-600);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}
.text-center { text-align: center; }

/* ── Container override ────────────────────────────────────── */
.container { max-width: 1200px; padding-inline: 20px; }

/* ═══════════════════════════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════════════════════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--black);
    border-bottom: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 2px 12px rgba(0,0,0,.4);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: var(--nav-h);
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.site-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: invert(1);
    image-rendering: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-main {
    font-size: .9rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .02em;
}
.logo-sub {
    font-size: .75rem;
    font-weight: 500;
    color: var(--gray-400);
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: .15rem;
    margin-left: auto;
}

.nav-links a {
    color: rgba(255,255,255,.82);
    font-size: .875rem;
    font-weight: 500;
    padding: .45rem .75rem;
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    background: rgba(255,255,255,.1);
}

/* Telefon butonu (nav sağ) */
.header-phone {
    display: flex;
    align-items: center;
    gap: .45rem;
    margin-left: .75rem;
    padding: .55rem 1rem;
    background: var(--red);
    border: 1px solid var(--red);
    border-radius: 50px;
    color: var(--white);
    font-size: .85rem;
    font-weight: 600;
    white-space: nowrap;
    transition: background var(--transition), border-color var(--transition);
}
.header-phone:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: var(--white);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    gap: 5px;
    margin-left: .5rem;
    border-radius: var(--radius);
    transition: background var(--transition);
}
.nav-toggle:hover { background: rgba(255,255,255,.1); }
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
/* Hamburger → X */
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobil Menü */
.mobile-menu {
    display: none;
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-menu.open { display: block; }

.mobile-menu ul {
    max-width: 1200px;
    margin: 0 auto;
    padding: .75rem 20px 1rem;
}
.mobile-menu li { border-bottom: 1px solid rgba(255,255,255,.06); }
.mobile-menu a {
    display: block;
    padding: .85rem .25rem;
    color: rgba(255,255,255,.88);
    font-size: .95rem;
    font-weight: 500;
    transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--white); }
.mobile-menu .mobile-cta {
    margin-top: .5rem;
    padding: .85rem 1.5rem;
    background: var(--white);
    color: var(--black);
    text-align: center;
    border-radius: 50px;
    font-weight: 700;
    font-size: .95rem;
}

/* ── Desktop Dropdown ───────────────────────────────────── */
.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: .3rem;
}

.dropdown-arrow {
    transition: transform var(--transition);
    flex-shrink: 0;
}

.nav-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-links .dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 210px;
    background: var(--black);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: .5rem 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
    transform: translateX(-50%) translateY(-4px);
    z-index: 1000;
}

.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-links .dropdown-menu li { border: none; }

.nav-links .dropdown-menu a {
    display: block;
    padding: .6rem 1.2rem;
    font-size: .875rem;
    color: rgba(255,255,255,.82);
    border-radius: 0;
    transition: color var(--transition), background var(--transition);
}

.nav-links .dropdown-menu a:hover {
    color: var(--white);
    background: rgba(255,255,255,.08);
}

/* ── Mobil Dropdown ─────────────────────────────────────── */
.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: .85rem .25rem;
    color: rgba(255,255,255,.88);
    font-size: .95rem;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    transition: color var(--transition);
}
.mobile-dropdown-toggle:hover { color: var(--white); }

.mobile-dropdown-toggle .dropdown-arrow {
    transition: transform var(--transition);
}
.mobile-dropdown.open .mobile-dropdown-toggle .dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    display: none;
    padding-left: 1rem;
    border-top: 1px solid rgba(255,255,255,.06);
}
.mobile-dropdown.open .mobile-dropdown-menu {
    display: block;
}
.mobile-dropdown-menu a {
    padding: .65rem .25rem;
    font-size: .9rem;
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
    background: var(--black);
    background-image: url('/img/galeri/galeri17.webp');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0 90px;
    overflow: hidden;
    position: relative;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.65) 60%, rgba(0,0,0,.5) 100%);
    pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.hero-eyebrow {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.25rem;
    background: var(--red);
    border: 1px solid var(--red);
    padding: .35rem .9rem;
    border-radius: 50px;
}

.hero h1 { color: var(--white); margin-bottom: 1.25rem; }

.hero-desc {
    color: rgba(255,255,255,.72);
    font-size: 1.1rem;
    max-width: 540px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: center;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.1);
}
.hero-badge {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: rgba(255,255,255,.75);
    font-size: .875rem;
}
.hero-badge svg { color: var(--gray-400); }

/* Hero sağ — görsel kutu */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    color: var(--white);
    width: 100%;
    max-width: 340px;
}
.hero-card-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: invert(1);
    margin: 0 auto 1.25rem;
    border-radius: 50%;
}
.hero-route {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: .04em;
    margin-bottom: .5rem;
}
.hero-route span { color: var(--gray-400); margin: 0 .5rem; }
.hero-card p { color: rgba(255,255,255,.6); font-size: .9rem; }

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .9rem;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--white);
}
.btn-primary:hover { background: var(--gray-100); }

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.35);
}
.btn-outline:hover { border-color: var(--white); }

.btn-dark {
    background: var(--black);
    color: var(--white);
    border: 2px solid var(--black);
}
.btn-dark:hover { background: var(--gray-800); }

.btn-wa {
    background: #25d366;
    color: var(--white);
    border: 2px solid #25d366;
}
.btn-wa:hover { background: #1ebe5d; }

/* ═══════════════════════════════════════════════════════════
   SECTIONS (genel)
   ═══════════════════════════════════════════════════════════ */
section { padding: 80px 0; }

.section-dark {
    background: var(--black);
    color: var(--white);
}
.section-dark .section-title,
.section-dark h2,
.section-dark h3 { color: var(--white); }
.section-dark .section-subtitle,
.section-dark p { color: rgba(255,255,255,.7); }

.section-gray { background: var(--gray-100); }

/* ═══════════════════════════════════════════════════════════
   HİZMET KARTLARI
   ═══════════════════════════════════════════════════════════ */
.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    height: 100%;
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
    display: block;
}
.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: var(--gray-400);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
}

.service-card h3 { margin-bottom: .5rem; font-size: 1.1rem; }
.service-card p  { font-size: .9rem; color: var(--gray-600); }

.service-card-dark {
    background: rgba(255,255,255,.05);
    border-color: rgba(255,255,255,.1);
}
.service-card-dark:hover { border-color: rgba(255,255,255,.3); }
.service-card-dark h3 { color: var(--white); }
.service-card-dark p  { color: rgba(255,255,255,.6); }
.section-dark .service-icon { background: rgba(255,255,255,.08); }

/* ═══════════════════════════════════════════════════════════
   STATS / SAYAÇLAR
   ═══════════════════════════════════════════════════════════ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1px;
    background: rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 0 auto;
}
.stat-item {
    background: var(--black);
    padding: 2rem 1.5rem;
    text-align: center;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: .4rem;
}
.stat-label {
    font-size: .85rem;
    color: var(--gray-400);
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════
   SÜREÇ ADIMLAR
   ═══════════════════════════════════════════════════════════ */
.step {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}
.step:last-child { margin-bottom: 0; }

.step-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
}

.step-body h3 { margin-bottom: .35rem; font-size: 1rem; }
.step-body p  { font-size: .9rem; color: var(--gray-600); }

.section-dark .step-num {
    background: rgba(255,255,255,.15);
    color: var(--white);
}
.section-dark .step-body h3 { color: var(--white); }
.section-dark .step-body p  { color: rgba(255,255,255,.6); }

/* ═══════════════════════════════════════════════════════════
   CTA BANTLAR
   ═══════════════════════════════════════════════════════════ */
.cta-band {
    background: var(--black);
    color: var(--white);
    padding: 70px 0;
    text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: .75rem; }
.cta-band p  { color: rgba(255,255,255,.7); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS — Yatay Kayan
   ═══════════════════════════════════════════════════════════ */
.testimonials-scroll-wrap {
    overflow: hidden;
    padding: 0 0 12px;
}
.testimonials-scroll {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 2rem 12px;
    cursor: grab;
}
.testimonials-scroll::-webkit-scrollbar      { height: 4px; }
.testimonials-scroll::-webkit-scrollbar-track { background: transparent; }
.testimonials-scroll::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 4px; }

.testimonial-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
}
.testimonial-stars { color: #f59e0b; font-size: 1rem; margin-bottom: .85rem; }
.testimonial-text  { font-size: .95rem; color: var(--gray-800); margin-bottom: 1.25rem; line-height: 1.75; }
.testimonial-author {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .95rem;
    color: var(--gray-600);
    flex-shrink: 0;
}
.testimonial-name  { font-weight: 600; font-size: .9rem; }
.testimonial-loc   { font-size: .8rem; color: var(--gray-600); }

/* ═══════════════════════════════════════════════════════════
   FAQ / ACCORDION
   ═══════════════════════════════════════════════════════════ */
.faq-item {
    border-bottom: 1px solid var(--gray-200);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    font-weight: 600;
    font-size: 1rem;
    text-align: left;
    color: var(--black);
    background: none;
    border: none;
    cursor: pointer;
    transition: color var(--transition);
}
.faq-question:hover { color: var(--gray-600); }
.faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 2px solid var(--gray-400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    transition: transform var(--transition), border-color var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--black); }
.faq-answer {
    display: none;
    padding-bottom: 1.25rem;
    color: var(--gray-800);
    font-size: .95rem;
    line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }

/* ═══════════════════════════════════════════════════════════
   BLOG KARTLARI
   ═══════════════════════════════════════════════════════════ */
.blog-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    transition: box-shadow var(--transition), transform var(--transition);
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.blog-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: var(--gray-200);
}
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: .8rem; color: var(--gray-600); margin-bottom: .6rem; }
.blog-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.blog-card p  { font-size: .88rem; color: var(--gray-600); line-height: 1.65; flex: 1; }
.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    margin-top: 1rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--red);
    border-bottom: 1px solid var(--red);
    padding-bottom: 1px;
    transition: color var(--transition);
    align-self: flex-start;
}
.blog-card-link:hover { color: var(--red-dark); border-color: var(--red-dark); }

/* ═══════════════════════════════════════════════════════════
   İLETİŞİM / FORM
   ═══════════════════════════════════════════════════════════ */
.contact-form {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.form-group { margin-bottom: 1.25rem; }
.form-label {
    display: block;
    font-size: .875rem;
    font-weight: 600;
    margin-bottom: .4rem;
    color: var(--black);
}
.form-control {
    width: 100%;
    padding: .75rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font: inherit;
    font-size: .95rem;
    color: var(--black);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-control:focus {
    border-color: var(--black);
    box-shadow: 0 0 0 3px rgba(0,0,0,.08);
}
textarea.form-control { resize: vertical; min-height: 120px; }

/* ═══════════════════════════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════════════════════════ */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    align-items: center;
    font-size: .82rem;
    color: var(--gray-600);
    padding: .85rem 0;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 2.5rem;
}
.breadcrumb a { color: var(--gray-600); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--black); }
.breadcrumb-sep { color: var(--gray-400); }

/* ═══════════════════════════════════════════════════════════
   PAGE HEADER (dahili sayfalar)
   ═══════════════════════════════════════════════════════════ */
.page-header {
    background: var(--black);
    color: var(--white);
    padding: 65px 0 55px;
    text-align: center;
}
.page-header h1 { color: var(--white); margin-bottom: .6rem; }
.page-header p  { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }

/* ═══════════════════════════════════════════════════════════
   BREADCRUMB NAV (iç sayfa üstü)
   ═══════════════════════════════════════════════════════════ */
.breadcrumb-nav {
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
    padding: .7rem 0;
    font-size: .85rem;
}
.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: .5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    color: var(--gray-500);
}
.breadcrumb-list a { color: var(--gray-600); text-decoration: none; }
.breadcrumb-list a:hover { color: var(--black); }

/* ═══════════════════════════════════════════════════════════
   WHY LIST (neden biz)
   ═══════════════════════════════════════════════════════════ */
.why-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin: 1.5rem 0 2rem;
}
.why-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--white);
}
.why-item h4 { font-size: 1rem; margin-bottom: .3rem; }
.why-item p  { font-size: .9rem; color: var(--gray-600); margin: 0; line-height: 1.55; }
.why-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
}

/* ═══════════════════════════════════════════════════════════
   PRICE TABLE (div tabanlı)
   ═══════════════════════════════════════════════════════════ */
.price-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 0;
    border-bottom: 1px solid var(--gray-200);
}
.price-row span {
    padding: .9rem 1.1rem;
    font-size: .93rem;
    color: var(--gray-800);
}
.price-row--header {
    background: var(--black);
    border-radius: var(--radius) var(--radius) 0 0;
}
.price-row--header span {
    color: var(--white);
    font-weight: 600;
    font-size: .82rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.price-row:last-child { border-bottom: none; }
.price-row:not(.price-row--header):hover { background: var(--gray-100); }

/* ═══════════════════════════════════════════════════════════
   PAGE SIDEBAR
   ═══════════════════════════════════════════════════════════ */
.page-sidebar {
    position: sticky;
    top: calc(var(--nav-h) + 1.5rem);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.sidebar-cta {
    background: var(--black);
    color: var(--white);
    padding: 1.75rem 1.5rem;
    border-radius: var(--radius);
}
.sidebar-cta h3 { color: var(--white); font-size: 1.15rem; margin-bottom: .5rem; }
.sidebar-cta p  { color: rgba(255,255,255,.7); font-size: .9rem; margin-bottom: 1.25rem; }
.sidebar-box {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    background: var(--white);
}
.sidebar-box h4 { font-size: .95rem; margin-bottom: .85rem; text-transform: uppercase; letter-spacing: .05em; color: var(--gray-500); }
.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.sidebar-links a {
    font-size: .92rem;
    color: var(--gray-800);
    text-decoration: none;
    display: block;
    padding: .35rem 0;
    border-bottom: 1px solid var(--gray-100);
    transition: color var(--transition);
}
.sidebar-links a:hover { color: var(--black); }
.sidebar-trust {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem .75rem;
}
.sidebar-trust li {
    font-size: .87rem;
    color: var(--gray-700);
}

/* ═══════════════════════════════════════════════════════════
   İLÇE CHIP GRID (rota sayfaları)
   ═══════════════════════════════════════════════════════════ */
.ilce-chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: 1rem 0 1.5rem;
}
.ilce-chip {
    display: inline-block;
    padding: .35rem .85rem;
    border: 1px solid var(--gray-300);
    border-radius: 100px;
    font-size: .82rem;
    color: var(--gray-700);
    text-decoration: none;
    background: var(--white);
    transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.ilce-chip:hover {
    border-color: var(--black);
    background: var(--black);
    color: var(--white);
}

/* Why-list responsive */
@media (max-width: 575px) {
    .why-list { grid-template-columns: 1fr; }
    .price-row { grid-template-columns: 1.5fr 1fr 1.2fr; }
    .price-row span { padding: .7rem .6rem; font-size: .82rem; }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.site-footer {
    background: var(--black);
    color: rgba(255,255,255,.75);
    padding-top: 60px;
}

.footer-top { padding-bottom: 50px; row-gap: 2.5rem; }

/* Footer logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem;
}
.footer-logo img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    filter: invert(1);
    border-radius: 50%;
}
.footer-logo span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.footer-brand p {
    font-size: .9rem;
    color: rgba(255,255,255,.6);
    line-height: 1.75;
    margin-bottom: 1rem;
}
.footer-email {
    font-size: .85rem;
    color: rgba(255,255,255,.5);
    word-break: break-all;
    transition: color var(--transition);
}
.footer-email:hover { color: var(--white); }

.footer-heading {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    margin-bottom: 1rem;
}

.footer-links li { margin-bottom: .6rem; }
.footer-links a {
    font-size: .9rem;
    color: rgba(255,255,255,.65);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-contact li { margin-bottom: .75rem; }
.footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .9rem;
    color: rgba(255,255,255,.65);
    transition: color var(--transition);
}
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom p  { font-size: .82rem; color: rgba(255,255,255,.4); }
.footer-bottom ul { display: flex; gap: 1.25rem; }
.footer-bottom a  { font-size: .82rem; color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }

/* ═══════════════════════════════════════════════════════════
   FAB (Floating Action Buttons)
   ═══════════════════════════════════════════════════════════ */
.fab-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .65rem;
    z-index: 800;
}

.fab {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(0,0,0,.3);
    transition: transform var(--transition), box-shadow var(--transition);
}
.fab:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(0,0,0,.4); }

.fab-call     { background: var(--red); color: var(--white); border: 1px solid var(--red-dark); }
.fab-call:hover { background: var(--red-dark); }
.fab-whatsapp { background: #25d366;      color: var(--white); }

/* ═══════════════════════════════════════════════════════════
   TABLO (fiyat vs.)
   ═══════════════════════════════════════════════════════════ */
.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .95rem;
}
.price-table th, .price-table td {
    padding: .9rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}
.price-table th {
    background: var(--black);
    color: var(--white);
    font-weight: 600;
    font-size: .85rem;
    letter-spacing: .04em;
}
.price-table tr:hover td { background: var(--gray-100); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 991px) {
    .nav-links, .header-phone { display: none; }
    .nav-toggle { display: flex; margin-left: auto; }

    .hero { padding: 70px 0 60px; }
    .hero-visual { margin-top: 2.5rem; }

    section { padding: 60px 0; }
    .cta-band { padding: 55px 0; }
}

/* Mobil */
@media (max-width: 575px) {
    h1 { font-size: 1.9rem; }
    h2 { font-size: 1.5rem; }

    .hero { padding: 55px 0 50px; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-actions .btn { width: 100%; justify-content: center; }

    .contact-form { padding: 1.5rem; }

    .fab-container { bottom: 1rem; right: 1rem; }
    .fab { width: 48px; height: 48px; }

    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom ul { justify-content: center; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }

    section { padding: 50px 0; }
}

/* ═══════════════════════════════════════════════════════════
   HİZMET KARTLARI — Yatay Kayan (svc-card)
   ═══════════════════════════════════════════════════════════ */
.services-scroll-wrap {
    overflow: hidden;
    padding-bottom: .5rem;
}

.services-scroll {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: .25rem 20px 1.25rem;
    scrollbar-width: thin;
    scrollbar-color: var(--gray-200) transparent;
    /* centering fallback when few cards */
    max-width: 1240px;
    margin: 0 auto;
}
.services-scroll::-webkit-scrollbar      { height: 4px; }
.services-scroll::-webkit-scrollbar-track{ background: transparent; }
.services-scroll::-webkit-scrollbar-thumb{ background: var(--gray-200); border-radius: 4px; }

.svc-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
}
.svc-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,.12);
    transform: translateY(-4px);
    border-color: var(--gray-300);
}

/* Görsel alan */
.svc-card-img {
    width: 100%;
    aspect-ratio: 3/2;
    position: relative;
    overflow: hidden;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: .6rem;
}
.svc-card-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}
.svc-card:hover .svc-card-img img { transform: scale(1.07); }

/* İkon — fotoğraf yokken görünür */
.svc-card-img-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-500);
    transition: background .25s, color .25s;
    position: relative;
    z-index: 1;
}
.svc-card-img-icon svg { width: 28px; height: 28px; }
.svc-card:hover .svc-card-img-icon { background: var(--black); color: var(--white); }

/* Etiket metni */
.svc-card-img-label {
    position: relative;
    z-index: 1;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--gray-400);
}

/* Fotoğraf varken ikon + etiket gizle */
.svc-card-img img ~ .svc-card-img-icon,
.svc-card-img img ~ .svc-card-img-label { display: none; }

.svc-card-body {
    padding: 1.25rem 1.35rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.svc-card-body h3 { font-size: 1rem; margin-bottom: .45rem; }
.svc-card-body p  { font-size: .875rem; color: var(--gray-600); line-height: 1.65; flex: 1; }
.svc-card-link    {
    display: inline-block;
    margin-top: .9rem;
    font-size: .82rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: .02em;
}

/* Rota kartı — büyük versiyon */
.svc-card--route {
    flex: 0 0 380px;
}
.svc-card--route .svc-card-img {
    aspect-ratio: 16/9;
}
.svc-card--route .svc-card-body h3 {
    font-size: 1.15rem;
    margin-bottom: .55rem;
}
.svc-card--route .svc-card-body p {
    font-size: .93rem;
}
.svc-card-route-badge {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--black);
    padding: .25rem .65rem;
    border-radius: 100px;
    margin-bottom: .6rem;
}

/* ═══════════════════════════════════════════════════════════
   İLÇE KART GRİDİ (dist-card)
   ═══════════════════════════════════════════════════════════ */
.dist-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.25rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.dist-section-badge {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: .6rem;
    border: 1px solid var(--red);
    padding: .3rem .85rem;
    border-radius: 50px;
}

.dist-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: .85rem;
}

.dist-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    text-decoration: none;
    color: inherit;
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.dist-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,.1);
    transform: translateY(-2px);
    border-color: var(--gray-400);
}

.dist-card-img {
    aspect-ratio: 4/3;
    background: var(--gray-100);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.dist-card-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
    display: block;
}
.dist-card:hover .dist-card-img img { transform: scale(1.07); }

.dist-card-body {
    padding: .6rem .75rem .75rem;
    display: flex;
    flex-direction: column;
    gap: .18rem;
}
.dist-card-name {
    font-size: .875rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1.2;
}
.dist-card-route {
    font-size: .72rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* section-gray içinde kart rengi */
.section-gray .dist-card { border-color: #e0e0e0; }
.section-gray .dist-card:hover { background: var(--white); }

/* ═══════════════════════════════════════════════════════════
   İLÇE ŞERİDİ (chips — artık gizli, eski versiyon)
   ═══════════════════════════════════════════════════════════ */
.districts-section { padding: 70px 0; }

.district-group { margin-bottom: 1.75rem; }
.district-group:last-child { margin-bottom: 0; }

.district-group-label {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: .85rem;
}

.districts-scroll {
    display: flex;
    gap: .55rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: .6rem;
    scrollbar-width: none;
}
.districts-scroll::-webkit-scrollbar { display: none; }

.district-chip {
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: .5rem 1rem;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50px;
    color: rgba(255,255,255,.82);
    font-size: .82rem;
    font-weight: 500;
    white-space: nowrap;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.district-chip:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.4);
    color: var(--white);
}

/* ═══════════════════════════════════════════════════════════
   GALERİ
   ═══════════════════════════════════════════════════════════ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: .75rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--gray-200);
}
.gallery-item--featured {
    grid-row: 1 / 3;   /* Büyük kart — 2 satır kaplar */
}

/* Gerçek fotoğraf eklenince bu stilleri kullan */
.gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
    display: block;
}
.gallery-item:hover img { transform: scale(1.06); }

/* Fotoğraf yokken placeholder */
.gallery-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    transition: background var(--transition);
}
.gallery-item:hover .gallery-placeholder {
    background: linear-gradient(135deg, #222 0%, #444 100%);
}
.gallery-icon  { font-size: 2rem; }
.gallery-label {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
}

/* Overlay (fotoğraf varken) */
.gallery-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,.7));
    color: var(--white);
    padding: 1rem .85rem .75rem;
    font-size: .82rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Responsive galeri */
@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 180px);
    }
    .gallery-item--featured {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-rows: repeat(3, 150px); }
    .svc-card { flex: 0 0 260px; }
}

/* ═══════════════════════════════════════════════════════════
   İLÇE KARTLARI — İlk 12 göster, geri kalanı gizle
   ═══════════════════════════════════════════════════════════ */
#ist-grid .dist-card:nth-child(n+13),
#ank-grid .dist-card:nth-child(n+13) { display: none; }

.dist-show-more-wrap {
    text-align: center;
    margin-top: 2rem;
}

/* ═══════════════════════════════════════════════════════════
   YORUM FORMU
   ═══════════════════════════════════════════════════════════ */
.review-form-section {
    background: var(--gray-100);
    padding: 80px 0;
}

.review-form-wrap {
    max-width: 640px;
    margin: 0 auto;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-form-row { display: flex; flex-direction: column; }

.review-form input[type="text"],
.review-form textarea {
    width: 100%;
    padding: .85rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font: inherit;
    font-size: .95rem;
    background: var(--white);
    color: var(--black);
    transition: border-color var(--transition), box-shadow var(--transition);
    resize: vertical;
}
.review-form input[type="text"]:focus,
.review-form textarea:focus {
    outline: none;
    border-color: var(--black);
    box-shadow: 0 0 0 3px rgba(15,15,15,.08);
}

/* Yıldız puanlama */
.review-stars-pick {
    display: flex;
    gap: .35rem;
    justify-content: center;
    margin-bottom: .25rem;
}
.star-btn {
    font-size: 2.2rem;
    color: var(--gray-300);
    line-height: 1;
    transition: color .12s;
    padding: 0 .15rem;
}
/* JS .lit sınıfı ile yönetilir */
.star-btn.lit { color: #f59e0b; }

.review-form .btn { align-self: flex-start; }

/* Teşekkür mesajı */
.review-thanks {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--black);
}
.review-thanks svg { color: #16a34a; margin: 0 auto 1rem; display: block; }
.review-thanks h3 { font-size: 1.5rem; margin-bottom: .5rem; }
.review-thanks p { color: var(--gray-600); }

/* Hata mesajı */
.review-error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #b91c1c;
    border-radius: var(--radius);
    padding: .75rem 1rem;
    font-size: .9rem;
    margin-bottom: .5rem;
}

/* Kullanıcı yorumu kartı — hafif ayırt edici */
.testimonial-card--user {
    border-color: var(--gray-300);
    background: var(--gray-100);
}

/* ═══════════════════════════════════════════════════════════
   BLOG KARTLARI
   ═══════════════════════════════════════════════════════════ */
.blog-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,.1);
    transform: translateY(-4px);
}
.blog-card-img {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--gray-100);
    overflow: hidden;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    color: var(--gray-300);
}
.blog-card-img img:not([style*="none"]) ~ .blog-card-img-placeholder { display: none; }
.blog-card-tag {
    position: absolute;
    top: .75rem;
    left: .75rem;
    background: var(--red);
    color: var(--white);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .25rem .65rem;
    border-radius: 100px;
    z-index: 1;
}
.blog-card-body {
    padding: 1.35rem 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    color: var(--gray-500);
    margin-bottom: .75rem;
}
.blog-card-title,
.blog-card h3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: .65rem;
    color: var(--black);
}
.blog-card p {
    font-size: .88rem;
    color: var(--gray-600);
    line-height: 1.65;
    flex: 1;
    margin-bottom: .9rem;
}
.blog-card-link {
    font-size: .82rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: .02em;
    margin-top: auto;
}

/* Blog makale */
.blog-article { max-width: 100%; }
.blog-article-meta {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .82rem;
    color: var(--gray-500);
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}
.blog-article h1 {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    line-height: 1.3;
    margin-bottom: 1.75rem;
}
.blog-article-img {
    aspect-ratio: 16/9;
    background: var(--gray-100);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 2rem;
}
.blog-article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.blog-article-lead {
    font-size: 1.08rem;
    line-height: 1.85;
    color: var(--gray-700);
    border-left: 3px solid var(--black);
    padding-left: 1.25rem;
    margin-bottom: 2rem;
}
.blog-article h2 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: .75rem;
}
.blog-article h3 {
    font-size: 1.05rem;
    margin-top: 1.25rem;
    margin-bottom: .5rem;
}
.blog-article p {
    font-size: .98rem;
    color: var(--gray-700);
    line-height: 1.85;
    margin-bottom: 1rem;
}
.blog-article a { color: var(--black); font-weight: 600; }
.blog-article-tip {
    background: var(--gray-100);
    border-left: 4px solid var(--black);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1.1rem 1.35rem;
    font-size: .95rem;
    color: var(--gray-800);
    line-height: 1.7;
    margin: 1.75rem 0;
}
.blog-article-nav {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

/* Responsive blog grid */
@media (max-width: 991px) {
    .blog-card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .blog-card-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   HAKKIMIZDA SAYFASI
   ═══════════════════════════════════════════════════════════ */

/* Hero bant */
.about-hero {
    position: relative;
    background: var(--black);
    padding: 80px 0 70px;
    overflow: hidden;
    text-align: center;
}
.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/img/hakkimizda/hero-bg.jpg') center/cover no-repeat;
    opacity: .18;
    pointer-events: none;
}
.about-hero-overlay {
    display: none; /* Sadece yedek */
}
.about-hero-content {
    position: relative;
    z-index: 1;
}
.about-hero-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 1.25rem;
    filter: drop-shadow(0 4px 20px rgba(255,255,255,.15));
}
.about-hero h1 {
    color: var(--white);
    font-size: clamp(1.75rem, 4vw, 2.8rem);
    margin-bottom: .5rem;
}
.about-hero-sub {
    color: rgba(255,255,255,.65);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

/* İstatistik satırı */
.about-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    max-width: 680px;
    margin: 0 auto;
}
.about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2rem;
}
.about-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: .3rem;
}
.about-stat-label {
    font-size: .78rem;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: .04em;
}
.about-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,.15);
    flex-shrink: 0;
}

/* Görsel grid */
.about-img-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
    border-radius: var(--radius);
    overflow: hidden;
}
.about-img-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.about-img-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--gray-100);
    min-height: 180px;
}
.about-img-card--tall {
    min-height: 380px;
}
.about-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    color: var(--gray-400);
    font-size: .78rem;
}
/* Fotoğraf yüklenince placeholder gizlenir */
.about-img-card img:not([style*="none"]) ~ .about-img-placeholder { display: none; }

/* Ekip kartları */
.about-team-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    text-align: center;
    height: 100%;
    transition: box-shadow var(--transition), transform var(--transition);
}
.about-team-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
    transform: translateY(-3px);
}
.about-team-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--black);
}
.about-team-card h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.about-team-card p  { font-size: .92rem; color: var(--gray-600); line-height: 1.7; margin: 0; }

/* Süreç adımları */
.about-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    flex-wrap: wrap;
}
.about-step {
    flex: 1;
    min-width: 160px;
    text-align: center;
    padding: 1.5rem 1.25rem;
}
.about-step-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-200);
    line-height: 1;
    margin-bottom: .75rem;
}
.about-step h3 { font-size: 1rem; margin-bottom: .5rem; }
.about-step p  { font-size: .88rem; color: var(--gray-600); line-height: 1.65; margin: 0; }
.about-step-arrow {
    font-size: 1.5rem;
    color: var(--gray-300);
    padding-top: 2rem;
    flex-shrink: 0;
    align-self: flex-start;
}

/* Responsive */
@media (max-width: 767px) {
    .about-stats-row { padding: 1.25rem 1rem; }
    .about-stat { padding: 0 1rem; }
    .about-stat-num { font-size: 1.5rem; }
    .about-img-grid { grid-template-columns: 1fr; }
    .about-img-card--tall { min-height: 220px; }
    .about-steps { flex-direction: column; align-items: center; }
    .about-step-arrow { display: none; }
    .about-team-card { margin-bottom: 1rem; }
}

/* ═══════════════════════════════════════════════════════════
   GALERİ SAYFASI
   ═══════════════════════════════════════════════════════════ */
.galeri-hero {
    padding: 60px 0 48px;
    border-bottom: 1px solid var(--gray-200);
    background: var(--white);
}
.galeri-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: .75rem;
}
.galeri-hero p {
    color: var(--gray-600);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.galeri-section { padding: 56px 0 64px; }

.galeri-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.galeri-item {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--gray-100);
    cursor: pointer;
    outline: none;
}
.galeri-item:focus-visible {
    outline: 3px solid var(--black);
    outline-offset: 2px;
}
.galeri-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
    display: block;
}
.galeri-item:hover img,
.galeri-item:focus-visible img {
    transform: scale(1.07);
}

.galeri-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 55%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: .4rem;
    padding: .85rem 1rem;
    transition: opacity .3s ease;
}
.galeri-item:hover .galeri-overlay,
.galeri-item:focus-visible .galeri-overlay {
    opacity: 1;
}

.galeri-caption {
    color: var(--white);
    font-size: .78rem;
    font-weight: 600;
    line-height: 1.3;
    transform: translateY(6px);
    transition: transform .3s ease;
}
.galeri-item:hover .galeri-caption { transform: translateY(0); }

.galeri-zoom-icon {
    color: rgba(255,255,255,.8);
    flex-shrink: 0;
    order: -1;
    align-self: flex-end;
}

.galeri-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--gray-400);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.galeri-empty p { font-size: 1rem; }

/* ── Lightbox ─────────────────────────────────────────────── */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
    animation: lbFadeIn .2s ease;
}
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }

.lightbox[hidden] { display: none; }

.lightbox-img-wrap {
    max-width: 1100px;
    max-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-img-wrap img {
    max-width: 100%;
    max-height: calc(100vh - 140px);
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: fixed;
    background: rgba(255,255,255,.12);
    border: none;
    color: var(--white);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
    z-index: 10000;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,.25); }

.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); }

.lightbox-caption {
    position: fixed;
    bottom: 44px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.8);
    font-size: .85rem;
    font-weight: 500;
    text-align: center;
    max-width: 600px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lightbox-counter {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.5);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .08em;
}

/* Galeri responsive */
@media (max-width: 992px) {
    .galeri-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
    .galeri-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
    .lightbox { padding: 60px 20px; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
}

/* ═══════════════════════════════════════════════════════════
   PRINT
   ═══════════════════════════════════════════════════════════ */
@media print {
    .site-header, .fab-container, .mobile-menu { display: none; }
    body { color: #000; }
    a { color: #000; text-decoration: underline; }
}

/* ═══════════════════════════════════════════════════════════════
   TEKLİF MODAL
   ═══════════════════════════════════════════════════════════════ */
.teklif-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.teklif-modal[hidden] { display: none; }
.teklif-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.65);
    backdrop-filter: blur(3px);
}
.teklif-modal-box {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl, 16px);
    padding: 2rem 2rem 2.25rem;
    width: 100%;
    max-width: 620px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 64px rgba(0,0,0,.22);
}
.teklif-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: var(--gray-400);
    padding: .25rem .5rem;
    border-radius: var(--radius-sm, 6px);
    transition: background .15s;
}
.teklif-modal-close:hover { background: var(--gray-100); color: var(--gray-900); }
.teklif-modal-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .3rem;
}
.teklif-modal-sub {
    font-size: .9rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}
.teklif-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.teklif-form-group { display: flex; flex-direction: column; gap: .35rem; }
.teklif-form-group label { font-size: .82rem; font-weight: 600; color: var(--gray-700); }
.teklif-form-group label span { color: var(--gray-400); }
.teklif-form-group input,
.teklif-form-group select {
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md, 10px);
    padding: .6rem .85rem;
    font-size: .9rem;
    font-family: inherit;
    color: var(--gray-900);
    background: var(--white);
    transition: border-color .15s;
    outline: none;
}
.teklif-form-group input:focus,
.teklif-form-group select:focus { border-color: var(--gray-900); }
.teklif-submit { width: 100%; justify-content: center; margin-top: .75rem; gap: .5rem; display: flex; align-items: center; }
.teklif-error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #b91c1c;
    border-radius: var(--radius-md, 10px);
    padding: .6rem 1rem;
    font-size: .88rem;
    margin-top: .5rem;
}
@media (max-width: 540px) {
    .teklif-form-row { grid-template-columns: 1fr; }
    .teklif-modal-box { padding: 1.5rem 1.25rem 1.75rem; }
}
