/* ═══════════════════════════════════
   KIRCA TEKNİK – TV SERVİSİ
   Renk Paleti:
   --navy:   #0a1628  (derin gece mavisi)
   --blue:   #1a3a6b  (teknik lacivert)
   --cyan:   #00c8ff  (elektrik mavisi – imza)
   --orange: #ff6b35  (CTA turuncusu)
   --light:  #f0f7ff  (açık arka plan)
   --card:   #ffffff
   --text:   #1e293b
   --muted:  #64748b
═══════════════════════════════════ */

:root {
    --navy:   #0a1628;
    --blue:   #1a3a6b;
    --cyan:   #00c8ff;
    --orange: #ff6b35;
    --light:  #f0f7ff;
    --card:   #ffffff;
    --text:   #1e293b;
    --muted:  #64748b;
    --radius: 16px;
    --radius-lg: 24px;
    --shadow: 0 4px 24px rgba(10,22,40,0.10);
    --shadow-hover: 0 12px 40px rgba(10,22,40,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--light);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 58px; /* Mobil alt bar için */
}
@media(min-width:769px){
    body { padding-bottom: 0; }
}

/* ─── Tipografi ─── */
h1, h2, h3, h4, h5 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    line-height: 1.2;
    font-weight: 700;
}

.highlight {
    background: linear-gradient(135deg, var(--cyan), #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── Animasyonlar ─── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulse-ring {
    0%   { box-shadow: 0 0 0 0 rgba(0,200,255,0.4); }
    70%  { box-shadow: 0 0 0 16px rgba(0,200,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,200,255,0); }
}
@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes float {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}
@keyframes countUp {
    from { opacity: 0; transform: scale(0.8); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.anim-fadeup   { animation: fadeInUp 0.7s ease both; }
.anim-delay-1  { animation-delay: 0.1s; }
.anim-delay-2  { animation-delay: 0.2s; }
.anim-delay-3  { animation-delay: 0.3s; }
.anim-delay-4  { animation-delay: 0.4s; }

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* ─── HEADER ─── */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10,22,40,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,200,255,0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--cyan), #0080aa);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0;
    transition: transform 0.3s;
}
.logo:hover .logo-icon { transform: rotate(-8deg) scale(1.05); }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text .brand { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700; color: #fff; letter-spacing: -0.3px; }
.logo-text .tagline { font-size: 11px; color: var(--cyan); font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; margin-top: 2px; }

.nav-desktop { display: flex; align-items: center; gap: 8px; }
.nav-link {
    padding: 8px 16px;
    border-radius: 10px;
    color: rgba(255,255,255,0.82);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}
.nav-link:hover { background: rgba(0,200,255,0.12); color: var(--cyan); }
.nav-link.active { background: rgba(0,200,255,0.15); color: var(--cyan); }

.nav-dropdown { position: relative; }
.nav-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 10px;
    color: rgba(255,255,255,0.82);
    font-size: 14px;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}
.nav-dropdown-btn:hover { background: rgba(0,200,255,0.12); color: var(--cyan); }
.nav-dropdown-btn i { font-size: 11px; transition: transform 0.2s; }
.nav-dropdown:hover .nav-dropdown-btn i { transform: rotate(180deg); }

.dropdown-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    border: 1px solid rgba(0,200,255,0.18);
    border-radius: var(--radius);
    padding: 12px;
    min-width: 240px;
    max-height: 420px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    z-index: 200;
}
.nav-dropdown:hover .dropdown-panel { opacity: 1; visibility: visible; }
.dropdown-panel::-webkit-scrollbar { width: 4px; }
.dropdown-panel::-webkit-scrollbar-track { background: transparent; }
.dropdown-panel::-webkit-scrollbar-thumb { background: rgba(0,200,255,0.3); border-radius: 4px; }

.dropdown-item {
    display: block;
    padding: 8px 12px;
    color: rgba(255,255,255,0.78);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.15s;
}
.dropdown-item:hover { background: rgba(0,200,255,0.12); color: var(--cyan); }
.dropdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }

.nav-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--orange);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.25s;
    white-space: nowrap;
    animation: pulse-ring 2.5s infinite;
}
.nav-phone:hover { background: #e05a28; transform: translateY(-2px); }

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}
.menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

.sidebar {
    position: fixed;
    inset-y: 0;
    left: 0;
    width: 300px;
    background: var(--navy);
    border-right: 1px solid rgba(0,200,255,0.15);
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.25,0.8,0.25,1);
    z-index: 300;
    overflow-y: auto;
    padding: 24px;
}
.sidebar.open { transform: translateX(0); }
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 299;
    backdrop-filter: blur(4px);
}
.sidebar-overlay.show { display: block; }

.sidebar-logo { margin-bottom: 24px; }
.sidebar-close {
    float: right;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    margin-bottom: 16px;
    display: block;
}
.sidebar-section { margin-bottom: 24px; }
.sidebar-section h4 { color: var(--cyan); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; font-weight: 600; }
.sidebar-item {
    display: block;
    padding: 9px 12px;
    color: rgba(255,255,255,0.78);
    font-size: 14px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.15s;
    margin-bottom: 2px;
}
.sidebar-item:hover { background: rgba(0,200,255,0.12); color: var(--cyan); }
.sidebar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }

/* ─── HERO ─── */
.hero {
    background: linear-gradient(150deg, var(--navy) 0%, #0d2145 50%, #0a1e35 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 24px 100px;
    text-align: center;
}
.hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,200,255,0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,107,53,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255,255,255,0.78);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

/* ─── HERO FOTO (hero'nun hemen altında, tam boy) ─── */
.hero-photo-strip {
    background: #0a1628;
    padding: 16px 24px;
    margin: 0;
    width: 100%;
    line-height: 0;
}
.hero-photo-strip img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 520px;
    border-radius: 16px;
}
@media(max-width: 768px){
    .hero-photo-strip { padding: 12px 16px; }
    .hero-photo-strip img { max-height: 240px; border-radius: 12px; }
}

/* Butonlar */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
}
.btn-primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255,107,53,0.35);
}
.btn-primary:hover { background: #e05a28; transform: translateY(-3px); box-shadow: 0 8px 28px rgba(255,107,53,0.45); }
.btn-secondary {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-secondary:hover { background: rgba(255,255,255,0.14); transform: translateY(-3px); }
.btn-cyan {
    background: var(--cyan);
    color: var(--navy);
    box-shadow: 0 4px 20px rgba(0,200,255,0.3);
}
.btn-cyan:hover { background: #00b0e0; transform: translateY(-3px); }

/* Trust bar */
.trust-bar {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    font-weight: 500;
}
.trust-item i { color: var(--cyan); font-size: 18px; }

/* ─── BREADCRUMB ─── */
.breadcrumb-bar {
    background: var(--card);
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 24px;
}
.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
    flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb .sep { color: #cbd5e1; }
.breadcrumb .current { color: var(--text); font-weight: 600; }

/* ─── MARQUEE STATS ─── */
.marquee-section {
    background: var(--navy);
    border-top: 1px solid rgba(0,200,255,0.15);
    border-bottom: 1px solid rgba(0,200,255,0.15);
    overflow: hidden;
    padding: 0;
    height: 52px;
    display: flex;
    align-items: center;
}
.marquee-track {
    display: flex;
    align-items: center;
    gap: 0;
    animation: marqueeScroll 30s linear infinite;
    white-space: nowrap;
    will-change: transform;
}
.marquee-section:hover .marquee-track {
    animation-play-state: paused;
}
.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 40px;
    border-right: 1px solid rgba(0,200,255,0.15);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    flex-shrink: 0;
}
.marquee-item strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: var(--cyan);
}
.marquee-item i {
    color: var(--cyan);
    font-size: 14px;
}

/* ─── STATS ─── */
.stats-section {
    background: var(--card);
    padding: 48px 24px;
    border-bottom: 1px solid #e8f0fe;
}
.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stat-card {
    text-align: center;
    padding: 24px 16px;
    border-radius: var(--radius);
    border: 1px solid #e8f0fe;
    background: var(--light);
    transition: all 0.3s;
}
.stat-card:hover { border-color: var(--cyan); box-shadow: var(--shadow); transform: translateY(-4px); }
.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--cyan), #0080aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
    animation: countUp 0.8s ease both;
}
.stat-label { font-size: 13px; color: var(--muted); font-weight: 500; }

/* ─── SECTION TITLES ─── */
.section-title {
    text-align: center;
    margin-bottom: 56px;
}
.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cyan);
    background: rgba(0,200,255,0.08);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
    border: 1px solid rgba(0,200,255,0.2);
}
.section-title h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    color: var(--navy);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}
.section-title p {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ─── ARA FOTOĞRAF (bölümler arası, tam boy) ─── */
.section-photo {
    width: 100%;
    background: #0a1628;
    line-height: 0;
    overflow: hidden;
    padding: 0 24px 16px;
}
.section-photo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 480px;
    border-radius: 16px;
}
.section-photo-overlay {
    display: none;
}
@media(max-width: 768px){
    .section-photo { padding: 0 16px 12px; }
    .section-photo img { max-height: 220px; border-radius: 10px; }
}

/* ─── HIZMET KARTLARI ─── */
.services-section { padding: 80px 24px; background: var(--light); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.service-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    border: 1.5px solid #e8f0fe;
    transition: all 0.35s cubic-bezier(0.25,0.8,0.25,1);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--orange));
    transform: scaleX(0);
    transition: transform 0.35s;
    transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { border-color: rgba(0,200,255,0.3); box-shadow: var(--shadow-hover); transform: translateY(-8px); }

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0,200,255,0.12), rgba(0,200,255,0.04));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--cyan);
    border: 1px solid rgba(0,200,255,0.2);
    transition: all 0.3s;
}
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--cyan), #0080aa); color: #fff; border-color: transparent; transform: scale(1.1); }
.service-card h3 { font-size: 1.05rem; color: var(--navy); font-weight: 700; }
.service-card p { font-size: 13.5px; color: var(--muted); line-height: 1.6; flex: 1; }
.service-card .card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--cyan);
    margin-top: 4px;
    transition: gap 0.2s;
}
.service-card:hover .card-arrow { gap: 10px; }

/* ─── MARKA KARTLARI ─── */
.brands-section { padding: 80px 24px; background: var(--card); }
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}
.brand-card {
    background: var(--light);
    border: 1.5px solid #e2e8f0;
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.brand-card:hover { border-color: var(--cyan); background: rgba(0,200,255,0.04); transform: translateY(-6px); box-shadow: var(--shadow); }
.brand-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--cyan);
    transition: all 0.3s;
}
.brand-card:hover .brand-icon { background: linear-gradient(135deg, var(--cyan), #0080aa); color: var(--navy); }
.brand-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.brand-tag { font-size: 11px; color: var(--muted); }
.brand-year { font-size: 11px; color: var(--cyan); font-weight: 600; }

/* ─── İLÇE GRID ─── */
.districts-section { padding: 80px 24px; background: var(--light); }
.districts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}
.district-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--card);
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    transition: all 0.25s;
}
.district-chip i { color: var(--cyan); font-size: 13px; }
.district-chip:hover { background: var(--navy); color: var(--cyan); border-color: var(--navy); transform: translateY(-3px); }

/* ─── GALERİ ─── */
.gallery-section { padding: 80px 24px; background: var(--light); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}
.gallery-grid .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}
.gallery-item {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    background: var(--navy);
}
.gallery-item:first-child { aspect-ratio: auto; }
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,22,40,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    color: #fff;
    font-size: 24px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ─── İÇERİK BÖLÜMÜ ─── */
.content-section { padding: 80px 24px; background: var(--card); }
.content-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.content-text h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--navy); margin-bottom: 20px; }
.content-text p { font-size: 15.5px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.content-text h3 { font-size: 1.15rem; color: var(--navy); margin-top: 28px; margin-bottom: 12px; }

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
}
.feature-list li i {
    width: 28px; height: 28px;
    background: rgba(0,200,255,0.12);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--cyan); font-size: 13px; flex-shrink: 0;
}

.info-card {
    background: var(--light);
    border: 1.5px solid #e8f0fe;
    border-radius: var(--radius-lg);
    padding: 32px;
}
.info-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.info-card h3 i { color: var(--cyan); }
.info-row { display: flex; gap: 12px; margin-bottom: 14px; font-size: 14px; }
.info-row strong { color: var(--navy); min-width: 120px; flex-shrink: 0; }
.info-row span { color: var(--muted); }

/* ─── İLÇE COĞRAFİ BİLGİ KARTI ─── */
.district-geo-card {
    background: linear-gradient(135deg, var(--navy), var(--blue));
    border-radius: var(--radius-lg);
    padding: 32px;
    color: #fff;
    margin-bottom: 24px;
}
.district-geo-card h3 { color: var(--cyan); margin-bottom: 16px; font-size: 1.1rem; }
.geo-row { display: flex; gap: 10px; margin-bottom: 10px; font-size: 14px; }
.geo-row i { color: var(--cyan); width: 18px; flex-shrink: 0; margin-top: 3px; }
.geo-row span { color: rgba(255,255,255,0.85); line-height: 1.5; }

/* ─── SSS ─── */
.faq-section { padding: 80px 24px; background: var(--light); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--card);
    border: 1.5px solid #e2e8f0;
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--cyan); }
.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    gap: 16px;
    user-select: none;
}
.faq-q i { color: var(--cyan); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-a-inner { padding: 0 24px 20px; font-size: 14.5px; color: var(--muted); line-height: 1.7; }

/* ─── MARKA DETAY ─── */
.brand-hero {
    background: linear-gradient(150deg, var(--navy), var(--blue));
    padding: 60px 24px;
    color: #fff;
}
.brand-hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.brand-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 12px; }
.brand-hero .slogan { color: var(--cyan); font-size: 1.1rem; font-style: italic; margin-bottom: 20px; }
.brand-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(0,200,255,0.12); border: 1px solid rgba(0,200,255,0.25);
    border-radius: 8px; padding: 6px 14px; font-size: 13px; color: var(--cyan); font-weight: 600;
    margin-right: 8px; margin-bottom: 8px;
}
.brand-stat-box { text-align: center; }
.brand-stat-big { font-size: 3rem; font-weight: 800; color: var(--cyan); line-height: 1; }
.brand-stat-lbl { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* ─── CTA BÖLÜMÜ ─── */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, #0d2145 100%);
    padding: 80px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0,200,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.cta-section h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); color: #fff; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.72); font-size: 1.05rem; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─── */
footer {
    background: var(--navy);
    border-top: 1px solid rgba(0,200,255,0.1);
    padding: 60px 24px 32px;
    color: rgba(255,255,255,0.65);
}
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand h3 { font-size: 1.3rem; color: #fff; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cyan); margin-bottom: 16px; }
.footer-link { display: block; color: rgba(255,255,255,0.6); font-size: 13.5px; text-decoration: none; margin-bottom: 8px; transition: color 0.2s; }
.footer-link:hover { color: var(--cyan); }
.footer-phone { display: flex; align-items: center; gap: 10px; color: var(--cyan); font-weight: 700; font-size: 18px; text-decoration: none; margin-bottom: 16px; }
.social-links { display: flex; gap: 10px; }
.social-btn {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
    transition: all 0.2s;
}
.social-btn:hover { background: var(--cyan); color: var(--navy); border-color: var(--cyan); transform: translateY(-3px); }
.footer-bottom {
    max-width: 1200px; margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px; flex-wrap: wrap; gap: 12px;
}
.footer-bottom .district-links { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-bottom .district-links a { color: rgba(255,255,255,0.4); font-size: 12px; text-decoration: none; transition: color 0.2s; }
.footer-bottom .district-links a:hover { color: var(--cyan); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .nav-desktop { display: none; }
    .nav-phone { display: none; }
    .menu-btn { display: flex; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .content-grid { grid-template-columns: 1fr; gap: 32px; }
    .brand-hero-inner { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .hero { padding: 60px 20px 80px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid .gallery-item:first-child { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; }
    .section-photo img { height: 220px; }
}
@media (max-width: 480px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .brands-grid { grid-template-columns: repeat(2, 1fr); }
    .districts-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-btns { flex-direction: column; align-items: center; }
    .hero-photo-strip img { max-height: 200px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
