/* ============================================
   PETROL OTO KAPORTA — KOYU PREMİUM TEMA
   ============================================ */

/* Google Fonts — HTML <link> ile yükleniyor, @import kaldırıldı */

/* ─── Renk Değişkenleri ─── */
:root {
    --primary:        #F97316;
    --primary-light:  #FB923C;
    --primary-dark:   #EA580C;
    --primary-glow:   rgba(249, 115, 22, 0.18);
    --primary-border: rgba(249, 115, 22, 0.25);

    --bg-base:        #0F172A;
    --bg-card:        #1E293B;
    --bg-card-2:      #243044;
    --bg-light:       #F8FAFC;
    --bg-section:     #F1F5F9;

    --text-white:     #F8FAFC;
    --text-muted:     #94A3B8;
    --text-dark:      #0F172A;
    --text-body:      #334155;

    --border-dark:    rgba(255, 255, 255, 0.07);
    --border-orange:  rgba(249, 115, 22, 0.25);

    --shadow-sm:      0 1px 4px rgba(0, 0, 0, 0.35);
    --shadow:         0 4px 20px rgba(0, 0, 0, 0.45);
    --shadow-lg:      0 12px 40px rgba(0, 0, 0, 0.55);
    --shadow-orange:  0 8px 32px rgba(249, 115, 22, 0.35);

    --gradient-primary: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    --gradient-dark:    linear-gradient(160deg, #0F172A 0%, #1E293B 100%);
    --gradient-card:    linear-gradient(145deg, #1E293B, #243044);

    --radius-sm:  6px;
    --radius:     12px;
    --radius-lg:  20px;
    --radius-xl:  32px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Temel Sıfırlama ─── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-body);
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
}

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

img { display: block; max-width: 100%; }
a  { text-decoration: none; }

/* ============================================
   HEADER & NAVİGASYON
   ============================================ */
.header {
    background-color: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-dark);
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgba(15, 23, 42, 0.98);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
}

.logo img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 50%;
    background: var(--primary-glow);
    border: 2px solid var(--primary-border);
    padding: 2px;
}

.logo span {
    background: linear-gradient(135deg, #fff 40%, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Menü */
.navbar ul {
    display: flex;
    list-style: none;
    gap: 6px;
}

.navbar a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.93rem;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.navbar a:hover,
.navbar a.active {
    color: var(--text-white);
    background-color: rgba(249, 115, 22, 0.12);
}

.navbar a.active {
    color: var(--primary-light);
}

/* Mobil Toggle */
.menu-toggle {
    display: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--primary-light);
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.menu-toggle:hover {
    background-color: var(--primary-glow);
}

/* Logo mobile */
@media (max-width: 767px) {
    .logo img { display: none; }
}
@media (min-width: 768px) {
    .logo img { display: inline-block; }
}

/* ============================================
   HERO BÖLÜMÜ
   ============================================ */
.hero {
    margin-top: 72px;
    color: var(--text-white);
    padding: 130px 0 110px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-dark);
}

.hero-with-image,
.hero[style] {
    background-image: none !important;
}

.hero-with-image {
    background:
        linear-gradient(to bottom,
            rgba(15, 23, 42, 0.75) 0%,
            rgba(15, 23, 42, 0.82) 70%,
            rgba(15, 23, 42, 0.97) 100%
        ),
        url('../images/batman-petrol-oto-kaporta.webp') !important;
    background-size: cover !important;
    background-position: center top !important;
}

/* Inline style olan index hero'yu da override et */
.hero[style*="batman-petrol"] {
    background:
        linear-gradient(to bottom,
            rgba(15, 23, 42, 0.75) 0%,
            rgba(15, 23, 42, 0.82) 70%,
            rgba(15, 23, 42, 0.97) 100%
        ),
        url('../images/batman-petrol-oto-kaporta.webp') center top / cover !important;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 20% 50%, rgba(249, 115, 22, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 80% 30%, rgba(249, 115, 22, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--bg-base));
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Küçük üst badge */
.hero-content::before {
    content: '★  1975'ten beri Batman'ın güveni  ★';
    display: inline-block;
    background: var(--primary-glow);
    border: 1px solid var(--primary-border);
    color: var(--primary-light);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero h1 span {
    color: var(--primary-light);
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    margin-bottom: 44px;
    color: rgba(248, 250, 252, 0.82);
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Butonlar */
.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── Butonlar ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-family: inherit;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(249, 115, 22, 0.5);
    filter: brightness(1.08);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: rgba(255,255,255,0.08);
    color: var(--text-white);
    border: 1.5px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #22C55E;
    color: #fff;
    box-shadow: 0 6px 24px rgba(34, 197, 94, 0.35);
}

.btn-whatsapp:hover {
    background: #16A34A;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.45);
}

/* ─── Buton — light bg için koyu versiyonlar ─── */
.on-light .btn-secondary {
    color: var(--text-dark);
    border-color: rgba(15,23,42,0.2);
    background: rgba(15,23,42,0.05);
}

.on-light .btn-secondary:hover {
    background: rgba(15,23,42,0.1);
}

/* ============================================
   BÖLÜM BAŞLIKLARI
   ============================================ */
.section-title {
    text-align: center;
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 54px;
    letter-spacing: -0.025em;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 52px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 4px;
    margin: 14px auto 0;
}

/* Açık bölümde section-title */
.dark-section .section-title {
    color: var(--text-white);
}

/* ============================================
   İSTATİSTİK BANDI
   ============================================ */
.stats-bar {
    background: var(--bg-base);
    padding: 32px 0;
    border-bottom: 1px solid var(--border-dark);
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 14px 44px;
    border-right: 1px solid var(--border-dark);
    flex: 1;
    min-width: 140px;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-light);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ============================================
   HİZMETLER BÖLÜMÜ (Ana Sayfa)
   ============================================ */
.services-preview {
    padding: 88px 0;
    background-color: var(--bg-light);
}

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

.service-card {
    background: #fff;
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid #E2E8F0;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
    border-color: var(--border-orange);
}

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

.service-card i {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 18px;
    display: block;
    transition: var(--transition);
}

.service-card:hover i {
    transform: scale(1.12);
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.service-card p {
    color: #64748B;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   NEDEN BİZ BÖLÜMÜ
   ============================================ */
.why-us {
    padding: 88px 0;
    background: var(--bg-base);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249,115,22,0.06) 0%, transparent 65%);
    pointer-events: none;
}

.why-us .section-title {
    color: var(--text-white);
}

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

.feature {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}

.feature:hover {
    border-color: var(--primary-border);
    background: var(--bg-card-2);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.feature i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 18px;
    display: block;
}

.feature h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-white);
    letter-spacing: -0.01em;
}

.feature p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   CTA BÖLÜMÜ
   ============================================ */
.cta {
    background: var(--gradient-primary);
    color: #fff;
    padding: 88px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 20px,
            rgba(0,0,0,0.04) 20px,
            rgba(0,0,0,0.04) 40px
        );
    pointer-events: none;
}

.cta > * {
    position: relative;
    z-index: 1;
}

.cta .container > * {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 34px;
    opacity: 0.9;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn-whatsapp {
    background: #fff;
    color: #166534;
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

.cta .btn-whatsapp:hover {
    background: #F0FDF4;
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.3);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-base);
    color: var(--text-muted);
    padding: 72px 0 28px;
    border-top: 1px solid var(--border-dark);
}

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

.footer-section h3 {
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-section a:hover {
    color: var(--primary-light);
    transform: translateX(3px);
}

.footer-section p {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-section p i {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-dark);
    color: #475569;
    font-size: 0.85rem;
}

/* ============================================
   SAYFA BAŞLIĞI (Alt Sayfalar)
   ============================================ */
.page-header {
    margin-top: 72px;
    background: var(--gradient-dark);
    color: var(--text-white);
    padding: 72px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-dark);
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 100% at 50% 100%, rgba(249,115,22,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 8px;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* ============================================
   SAYFA İÇERİK (Hakkımızda vb.)
   ============================================ */
.page-content {
    padding: 72px 0;
    max-width: 820px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.page-content h2 {
    color: var(--primary-dark);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 36px 0 14px;
    letter-spacing: -0.015em;
}

.page-content p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--text-body);
}

/* ============================================
   İLETİŞİM SAYFASI
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 72px 0;
}

.contact-info h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.contact-info p {
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info p i {
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.contact-form {
    background: #fff;
    padding: 44px 40px;
    border-radius: var(--radius-lg);
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 24px rgba(15,23,42,0.08);
}

.contact-form h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 28px;
    letter-spacing: -0.015em;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #CBD5E1;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: #F8FAFC;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   HİZMETLER SAYFASI
   ============================================ */
.services-page {
    padding: 72px 0;
    background-color: var(--bg-section);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.service-item {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 32px;
    align-items: start;
    border: 1px solid #E2E8F0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-item:hover {
    box-shadow: 0 12px 40px rgba(15,23,42,0.1);
    transform: translateY(-4px);
    border-color: var(--border-orange);
}

.service-icon {
    width: 96px;
    height: 96px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-orange);
    flex-shrink: 0;
}

.service-icon i {
    font-size: 2.2rem;
    color: #fff;
}

.service-info h2 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.service-info p {
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.service-info ul {
    list-style: none;
    margin-bottom: 26px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 20px;
}

.service-info ul li {
    padding: 5px 0;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.service-info ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ============================================
   HİZMET DETAY SAYFALARI
   ============================================ */
.service-detail {
    padding: 72px 0;
}

.service-detail-content {
    max-width: 1000px;
    margin: 0 auto;
}

.service-intro {
    text-align: center;
    margin-bottom: 72px;
}

.service-intro h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 18px;
    letter-spacing: -0.025em;
}

.service-intro p {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.8;
    max-width: 720px;
    margin: 0 auto;
}

.service-features-detail {
    margin-bottom: 72px;
}

.service-features-detail h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.feature-card {
    background: #fff;
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid #E2E8F0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(15,23,42,0.1);
    border-color: var(--border-orange);
}

.feature-card i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 16px;
    display: block;
}

.feature-card h4 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.feature-card p {
    color: #64748B;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Süreç Adımları */
.service-process {
    margin-bottom: 72px;
    background: var(--bg-base);
    padding: 64px 48px;
    border-radius: var(--radius-lg);
    color: var(--text-white);
    border: 1px solid var(--border-dark);
    position: relative;
    overflow: hidden;
}

.service-process::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 70%);
}

.service-process h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 44px;
    letter-spacing: -0.02em;
}

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

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

.step-number {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 auto 18px;
    box-shadow: var(--shadow-orange);
}

.step h4 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.step p {
    color: var(--text-muted);
    font-size: 0.87rem;
    line-height: 1.65;
}

/* SSS */
.service-faq {
    margin-bottom: 72px;
}

.service-faq h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 36px;
    letter-spacing: -0.02em;
}

.faq-item {
    background: #fff;
    padding: 26px 30px;
    border-radius: var(--radius);
    margin-bottom: 14px;
    border: 1px solid #E2E8F0;
    border-left: 3px solid var(--primary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--border-orange);
    border-left-color: var(--primary);
    box-shadow: 0 6px 24px rgba(15,23,42,0.08);
}

.faq-item h4 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.faq-item p {
    color: #64748B;
    font-size: 0.93rem;
    line-height: 1.75;
}

/* Service CTA */
.service-cta {
    text-align: center;
    background: var(--bg-base);
    color: var(--text-white);
    padding: 64px 48px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-dark);
    position: relative;
    overflow: hidden;
}

.service-cta::before {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 250px;
    background: radial-gradient(ellipse, rgba(249,115,22,0.12) 0%, transparent 70%);
}

.service-cta h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.025em;
    position: relative;
    z-index: 1;
}

.service-cta p {
    font-size: 1rem;
    margin-bottom: 32px;
    opacity: 0.82;
    position: relative;
    z-index: 1;
}

.service-cta .btn {
    margin: 6px;
    position: relative;
    z-index: 1;
}

/* ============================================
   GALERİ
   ============================================ */
.gallery-section {
    padding: 72px 0;
    background-color: var(--bg-section);
}

.gallery-filters {
    text-align: center;
    margin-bottom: 48px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.filter-btn {
    padding: 9px 22px;
    border: 1.5px solid #CBD5E1;
    background: #fff;
    color: #475569;
    border-radius: 100px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow-orange);
    transform: translateY(-1px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 28px;
}

.gallery-item {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #E2E8F0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 44px rgba(15,23,42,0.12);
    border-color: var(--border-orange);
}

.gallery-item.hidden { display: none; }

.before-after-horizontal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--bg-base);
}

.before-after-horizontal .before,
.before-after-horizontal .after {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.before-after-horizontal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover .before-after-horizontal img {
    transform: scale(1.04);
}

.before-after-horizontal .label {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(15,23,42,0.85);
    backdrop-filter: blur(6px);
    color: #fff;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    z-index: 2;
}

.before-after-horizontal .after .label {
    left: auto;
    right: 12px;
    background: var(--gradient-primary);
}

.gallery-info {
    padding: 22px 24px;
}

.gallery-info h3 {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: -0.01em;
}

.gallery-info p {
    color: #64748B;
    font-size: 0.87rem;
}

/* ============================================
   HARİTA BÖLÜMÜ
   ============================================ */
.map-section {
    padding: 72px 0;
    background-color: var(--bg-light);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(15,23,42,0.1);
    border: 1px solid #E2E8F0;
    margin-bottom: 24px;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 440px;
    border: 0;
}

.map-address {
    text-align: center;
    padding: 32px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid #E2E8F0;
    box-shadow: var(--shadow-sm);
}

.map-address p {
    font-size: 1rem;
    color: var(--text-body);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.map-address i {
    color: var(--primary);
}

/* ============================================
   FORM MESAJ STİLLERİ
   ============================================ */
#successMessage {
    animation: fadeIn 0.5s ease;
}

#successMessage i {
    animation: scaleIn 0.5s ease 0.2s both;
}

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

@keyframes scaleIn {
    from { transform: scale(0); }
    to   { transform: scale(1); }
}

#submitBtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* ============================================
   MOBİL UYUMLULUK
   ============================================ */
@media (max-width: 768px) {
    /* Mobilde hero görseli yüklenmiyor — gradient yeterli, LCP hızlanır */
    .hero-with-image {
        background: var(--gradient-dark) !important;
    }

    .hero-content::before {
        display: none;
    }

    .header .container { height: 64px; }

    .menu-toggle { display: block; }

    .navbar {
        position: fixed;
        top: 64px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 64px);
        background: rgba(15,23,42,0.98);
        backdrop-filter: blur(16px);
        transition: left 0.35s ease;
        border-top: 1px solid var(--border-dark);
    }

    .navbar.active { left: 0; }

    .navbar ul {
        flex-direction: column;
        padding: 40px 28px;
        gap: 4px;
    }

    .navbar a {
        font-size: 1.05rem;
        padding: 9px 18px;
        border-radius: var(--radius);
    }

    .hero {
        margin-top: 64px;
        padding: 80px 0 70px;
    }

    .hero-content::before {
        font-size: 0.7rem;
        padding: 5px 14px;
    }

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

    .btn { width: 100%; max-width: 320px; justify-content: center; }

    .stats-bar { padding: 20px 0; }
    .stat-item { padding: 12px 20px; }
    .stat-number { font-size: 1.6rem; }

    .section-title { font-size: 1.7rem; margin-bottom: 40px; }

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

    .service-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .service-icon { margin: 0 auto; }
    .service-info h2 { font-size: 1.3rem; }
    .service-info ul { grid-template-columns: 1fr; }

    .contact-grid { grid-template-columns: 1fr; }
    .contact-form { padding: 28px 24px; }

    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-filters { gap: 8px; }
    .filter-btn { padding: 8px 16px; }
    .before-after-horizontal .before,
    .before-after-horizontal .after { aspect-ratio: 1/1; }

    .service-process,
    .service-cta { padding: 44px 24px; }

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

    .map-container iframe { height: 280px; }

    .footer-content { gap: 36px; }
}

@media (max-width: 480px) {
    .process-steps { grid-template-columns: 1fr; }
    .contact-form { padding: 22px 18px; }
}
