/* ============================================================
   MOTOMARIN — ANA CSS DOSYASI (TEMIZ VERSIYON)
   ============================================================ */

/* --- RESET & DEĞIŞKENLER --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

:root {
    --red:        #e8282b;
    --red-glow:   rgba(232, 40, 43, 0.35);
    --red-soft:   rgba(232, 40, 43, 0.1);
    --blue:       #0ea5e9;
    --blue-glow:  rgba(14, 165, 233, 0.35);
    --blue-soft:  rgba(14, 165, 233, 0.1);
    --dark:       #18181b;
    --darker:     #09090b;
    --card:       #27272a;
    --glass:      rgba(24, 24, 27, 0.85);
    --text:       #f3f4f6;
    --muted:      #a1a1aa;
    --border:     #3f3f46;
    --border-hi:  #52525b;
    --font:       'Outfit', sans-serif;
    --mono:       'Roboto Mono', monospace;

    --topbar-h:   36px;
    --navbar-h:   76px;
    --offset:     112px; /* topbar + navbar */
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
}

a { text-decoration: none; transition: all 0.3s ease; }
ul { list-style: none; }

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

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: var(--topbar-h);
    background: var(--darker);
    border-bottom: 1px solid var(--border);
    z-index: 1001;
    font-family: var(--mono);
    font-size: 11.5px;
    color: var(--muted);
}

.top-bar-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-item i { color: var(--red); }

.status-dot-wrapper { display: flex; align-items: center; gap: 8px; }

.status-dot {
    width: 7px; height: 7px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 6px #22c55e;
    animation: pulse-green 2.2s infinite;
}

@keyframes pulse-green {
    0%  { box-shadow: 0 0 0 0 rgba(34,197,94,.7); }
    70% { box-shadow: 0 0 0 7px rgba(34,197,94,0); }
    100%{ box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
header {
    position: fixed;
    top: var(--topbar-h);
    left: 0;
    width: 100%;
    height: var(--navbar-h);
    background: var(--glass);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: background 0.3s;
}

.navbar {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    line-height: 1;
    flex-shrink: 0;
}

.logo img {
    height: 36px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255,255,255,.12));
}

.logo span {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 400;
    color: var(--muted);
    border-left: 1px solid var(--border);
    padding-left: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

@media (max-width: 1450px) {
    .logo span {
        display: none;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-links a {
    color: var(--muted);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 4px;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--red);
    transition: width .3s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid var(--red);
    color: var(--red) !important;
    padding: 8px 16px;
    border-radius: 4px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all .3s;
}

.nav-btn:hover {
    background: var(--red);
    color: #fff !important;
    box-shadow: 0 0 16px var(--red-glow);
}

/* Mobil menü butonu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: 1px solid var(--border);
    color: var(--text);
    width: 40px; height: 40px;
    border-radius: 7px;
    font-size: 17px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    flex-shrink: 0;
}
.mobile-menu-btn:hover { border-color: var(--red); color: var(--red); }

.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height .4s ease;
}
.mobile-nav.open { display: flex; max-height: 400px; }
.mobile-nav a {
    color: var(--muted);
    font-size: 14px;
    padding: 14px 24px;
    border-bottom: 1px solid var(--border);
}
.mobile-nav a.active, .mobile-nav a:hover { color: var(--red); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    min-height: 100vh;
    padding-top: var(--offset);
    background-color: var(--dark);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* ızgara deseni */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 42px 42px;
    pointer-events: none;
}

/* kırmızı parıltı */
.hero::after {
    content: '';
    position: absolute;
    bottom: -100px; right: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(232,40,43,.12), transparent 65%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 820px;
    animation: fadeUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(28px);
    padding: 60px 0;
}

/* tech badge */
.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--red);
    background: var(--red-soft);
    border: 1px solid rgba(232,40,43,.25);
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 22px;
}

.hero-content h1 {
    font-size: 66px;
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 22px;
    background: linear-gradient(160deg, #fff 40%, #777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content h1 span {
    color: var(--red);
    -webkit-text-fill-color: var(--red);
}

.hero-content > p {
    font-size: 17px;
    color: var(--muted);
    margin-bottom: 36px;
    max-width: 580px;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Butonlar (genel) */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    border-radius: 4px;
    font-family: var(--mono);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all .3s;
}

.btn-main {
    background: var(--red);
    color: #fff;
    border: 1px solid var(--red);
    box-shadow: 0 0 18px var(--red-glow);
}
.btn-main:hover {
    background: #c9201f;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(232,40,43,.5);
}

.btn-sub {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-hi);
}
.btn-sub:hover {
    background: rgba(255,255,255,.05);
    border-color: var(--text);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-hi);
}
.btn-outline:hover {
    border-color: var(--red);
    color: var(--red);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    border: 1px solid #25d366;
    box-shadow: 0 0 18px rgba(37,211,102,.3);
}
.btn-whatsapp:hover {
    background: #1ebc59;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(37,211,102,.5);
}

/* hero alt bilgi şeritleri */
.hero-badges {
    display: flex;
    gap: 16px;
    margin-top: 44px;
    flex-wrap: wrap;
}

.hero-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 13px;
    color: var(--muted);
}

.hero-badge-item i { color: var(--red); }

/* scroll göstergesi */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}
.hero-scroll-indicator span {
    display: block;
    width: 22px; height: 38px;
    border: 2px solid rgba(255,255,255,.18);
    border-radius: 11px;
    position: relative;
}
.hero-scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 5px; left: 50%;
    transform: translateX(-50%);
    width: 3px; height: 7px;
    background: var(--red);
    border-radius: 2px;
    animation: scrollDot 2s infinite;
}
@keyframes scrollDot {
    0%  { top: 5px; opacity: 1; }
    100%{ top: 22px; opacity: 0; }
}

/* ============================================================
   İSTATİSTİKLER
   ============================================================ */
.stats-section {
    background: linear-gradient(135deg, #0f0f0f, var(--card));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 56px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    text-align: center;
    padding: 28px 16px;
    border-right: 1px solid var(--border);
    transition: background .3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(232,40,43,.04); }

.stat-icon {
    width: 50px; height: 50px;
    background: var(--red-soft);
    border: 1px solid rgba(232,40,43,.2);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    color: var(--red);
    font-size: 20px;
}

.stat-number {
    font-family: var(--mono);
    font-size: 46px;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    display: inline;
}
.stat-suffix {
    font-family: var(--mono);
    font-size: 34px;
    font-weight: 700;
    color: var(--red);
    display: inline;
}
.stat-label {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--mono);
}

/* ============================================================
   SECTION ORTAK BAŞLIKLAR
   ============================================================ */
.section-eyebrow {
    display: block;
    text-align: center;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--red);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-title-new {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 14px;
}
.section-title-new span { color: var(--red); }

.section-subtitle {
    text-align: center;
    font-size: 15px;
    color: var(--muted);
    max-width: 580px;
    margin: 0 auto 56px;
    line-height: 1.9;
}

/* ============================================================
   HİZMET KARTLARI (ANA SAYFA ÖNİZLEME)
   ============================================================ */
.services-preview-section {
    padding: 96px 0;
    background: var(--dark);
    border-bottom: 1px solid var(--border);
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.svc-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 30px 26px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all .4s cubic-bezier(.175,.885,.32,1.275);
}

.svc-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--red), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s;
}
.svc-card:hover { transform: translateY(-7px); border-color: rgba(232,40,43,.3); box-shadow: 0 18px 48px rgba(0,0,0,.4); }
.svc-card:hover::after { transform: scaleX(1); }

.svc-card-featured {
    border-color: rgba(232,40,43,.35);
    background: linear-gradient(145deg, #180909, var(--card));
    box-shadow: 0 8px 28px rgba(232,40,43,.1);
}

.svc-featured-badge {
    position: absolute;
    top: 14px; right: 14px;
    background: var(--red);
    color: #fff;
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 9px;
    border-radius: 3px;
}

.svc-card-icon {
    width: 56px; height: 56px;
    background: var(--red-soft);
    border: 1px solid rgba(232,40,43,.2);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--red);
    font-size: 24px;
    margin-bottom: 18px;
    transition: all .3s;
}
.svc-card:hover .svc-card-icon { background: rgba(232,40,43,.18); transform: scale(1.1) rotate(-4deg); }

.svc-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
}

.svc-card > p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 18px;
    flex: 1;
}

.svc-list {
    list-style: none;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.svc-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    color: var(--muted);
}
.svc-list li i { color: var(--red); font-size: 10px; flex-shrink: 0; }

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    width: 100%;
    transition: gap .3s;
}
.svc-link:hover { gap: 13px; }

/* Marka etiketleri */
.svc-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.svc-brands span {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--muted);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 3px 8px;
    transition: all .25s;
}

.svc-card:hover .svc-brands span {
    border-color: rgba(232,40,43,.25);
    color: var(--text);
}

/* ============================================================
   NEDEN MOTOMARİN
   ============================================================ */
.why-section {
    padding: 96px 0;
    background: var(--darker);
    border-bottom: 1px solid var(--border);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.why-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px 26px;
    position: relative;
    overflow: hidden;
    transition: all .3s;
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 0;
    background: var(--red);
    transition: height .4s;
}
.why-card:hover { border-color: rgba(232,40,43,.22); transform: translateY(-4px); }
.why-card:hover::before { height: 100%; }

.why-icon {
    width: 52px; height: 52px;
    background: var(--red-soft);
    border: 1px solid rgba(232,40,43,.15);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--red);
    font-size: 20px;
    margin-bottom: 18px;
    transition: all .3s;
}
.why-card:hover .why-icon { background: rgba(232,40,43,.18); transform: scale(1.08); }

.why-card h4 { font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.why-card p  { font-size: 13.5px; color: var(--muted); line-height: 1.8; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    padding: 72px 0;
    background: var(--dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
/* Removed flame/glow effects for cleaner look */

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-text h2 { font-size: 30px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.cta-text p  { font-size: 15px; color: var(--muted); max-width: 480px; }

.cta-buttons {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* ============================================================
   ARAÇ SORGULAMA
   ============================================================ */
.tracking-section {
    padding: 96px 0;
    background: var(--darker);
    border-bottom: 1px solid var(--border);
}

.tracking-container {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.tracking-desc {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 28px;
}

.tracking-tabs {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--muted);
    padding: 11px 22px;
    border-radius: 30px;
    font-family: var(--mono);
    font-size: 13px;
    cursor: pointer;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.tab-btn:hover { color: var(--text); border-color: var(--border-hi); }
.tab-btn.active { background: var(--red); color: #fff; border-color: var(--red); box-shadow: 0 0 14px var(--red-glow); }

.tracking-form-wrapper { position: relative; margin-bottom: 36px; }
.tracking-form { position: relative; }

.search-icon {
    position: absolute;
    left: 20px; top: 50%;
    transform: translateY(-50%);
    color: var(--red);
    font-size: 17px;
    pointer-events: none;
}

.tracking-input {
    width: 100%;
    padding: 18px 18px 18px 50px;
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 50px;
    font-size: 15px;
    color: var(--text);
    font-family: var(--mono);
    transition: all .3s;
}
.tracking-input:focus { outline: none; border-color: var(--red); box-shadow: 0 0 14px rgba(232,40,43,.18); }

.tracking-btn {
    position: absolute;
    right: 7px; top: 7px; bottom: 7px;
    background: var(--red);
    color: #fff;
    border: none;
    padding: 0 28px;
    border-radius: 40px;
    font-family: var(--mono);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s;
}
.tracking-btn:hover { background: #c9201f; box-shadow: 0 0 14px rgba(232,40,43,.35); }

/* Sonuç kartı */
.tracking-result-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    text-align: left;
    animation: fadeUp .5s ease-out;
    position: relative;
    overflow: hidden;
}
.tracking-result-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: #f59e0b;
}
.tracking-result-card.status-bar-done::before     { background: #10b981; }
.tracking-result-card.status-bar-progress::before { background: #f59e0b; }
.tracking-result-card.status-bar-wait::before     { background: #3b82f6; }
.tracking-result-card.status-bar-parts::before    { background: #ec4899; }

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 18px;
    margin-bottom: 18px;
}

.result-row {
    display: flex;
    margin-bottom: 13px;
    font-size: 14px;
}

.result-label {
    width: 180px;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 12px;
    text-transform: uppercase;
}

.result-value { color: var(--text); flex: 1; }

.tech-id {
    font-family: var(--mono);
    color: var(--red);
    font-size: 15px;
    font-weight: 700;
}

.status-badge {
    display: inline-block;
    padding: 5px 11px;
    border-radius: 4px;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-done     { color: #10b981; background: rgba(16,185,129,.1);  border: 1px solid rgba(16,185,129,.2);  }
.status-progress { color: #f59e0b; background: rgba(245,158,11,.1);  border: 1px solid rgba(245,158,11,.2);  }
.status-wait     { color: #3b82f6; background: rgba(59,130,246,.1);  border: 1px solid rgba(59,130,246,.2);  }
.status-parts    { color: #ec4899; background: rgba(236,72,153,.1);  border: 1px solid rgba(236,72,153,.2);  }

/* ============================================================
   MÜŞTERİ YORUMLARI
   ============================================================ */
.reviews-section {
    padding: 96px 0;
    background: var(--dark);
    border-bottom: 1px solid var(--border);
}

.reviews-header-meta {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

.reviews-overall {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.reviews-score {
    font-family: var(--mono);
    font-size: 60px;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.reviews-stars-overall {
    display: flex;
    gap: 4px;
    color: #f59e0b;
    font-size: 20px;
}

.reviews-count {
    font-size: 13px;
    color: var(--muted);
    font-family: var(--mono);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.review-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transition: all .3s;
}
.review-card::before {
    content: '\201C';
    position: absolute;
    top: 12px; right: 20px;
    font-size: 68px;
    color: rgba(232,40,43,.07);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}
.review-card:hover {
    border-color: rgba(232,40,43,.22);
    transform: translateY(-4px);
    box-shadow: 0 14px 38px rgba(0,0,0,.3);
}

.review-card-top {
    display: flex;
    align-items: center;
    gap: 13px;
}

.reviewer-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.reviewer-info { flex: 1; }
.reviewer-info strong { display: block; font-size: 14px; color: var(--text); margin-bottom: 2px; }
.reviewer-info span  { font-size: 11px; color: var(--muted); font-family: var(--mono); }

.review-stars { color: #f59e0b; font-size: 12px; display: flex; gap: 2px; flex-shrink: 0; }

.review-text {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.85;
    flex: 1;
    font-style: italic;
}

.review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    color: var(--muted);
    border-top: 1px solid var(--border);
    padding-top: 12px;
    font-family: var(--mono);
}
.review-footer i { color: #4285f4; margin-right: 5px; }
.review-date { color: var(--muted); }

.reviews-cta { text-align: center; margin-top: 48px; }

/* ============================================================
   SSS (FAQ)
   ============================================================ */
.faq-section {
    padding: 96px 0;
    background: var(--darker);
    border-bottom: 1px solid var(--border);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 48px;
    margin-top: 56px;
}

.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color .3s;
}
.faq-item.open { border-color: rgba(232,40,43,.28); }

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    cursor: pointer;
    color: var(--text);
    font-size: 14.5px;
    font-weight: 500;
    font-family: var(--font);
    text-align: left;
    transition: color .3s;
}
.faq-question:hover, .faq-item.open .faq-question { color: var(--red); }

.faq-question i {
    color: var(--red);
    font-size: 13px;
    transition: transform .3s;
    flex-shrink: 0;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}
.faq-item.open .faq-answer { max-height: 220px; }
.faq-answer p {
    padding: 0 22px 18px;
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.85;
}

.faq-contact-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 36px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    height: fit-content;
}
/* Removed red glowing top border */

.faq-contact-icon {
    width: 66px; height: 66px;
    background: var(--red-soft);
    border: 2px solid rgba(232,40,43,.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--red);
    font-size: 26px;
    margin-bottom: 18px;
}

.faq-contact-card h3 { font-size: 21px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.faq-contact-card p  { font-size: 13.5px; color: var(--muted); line-height: 1.7; }

.faq-contact-hours {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 20px;
    font-size: 12px;
    color: var(--muted);
    font-family: var(--mono);
}
.faq-contact-hours i { color: var(--red); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: var(--darker);
    border-top: 1px solid var(--border);
    padding: 72px 0 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 52px;
}

.footer-col h3 {
    color: var(--text);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 32px; height: 2px;
    background: var(--red);
}

.footer-col p { font-size: 13.5px; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
    width: 36px; height: 36px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text);
    font-size: 14px;
    transition: all .3s;
}
.footer-socials a:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 0 10px var(--red-glow);
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: var(--muted);
    font-size: 13.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .3s;
}
.footer-links a i { color: var(--red); font-size: 9px; }
.footer-links a:hover { color: var(--text); padding-left: 4px; }

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 13.5px;
}
.footer-contact-info i { color: var(--red); font-size: 15px; margin-top: 3px; flex-shrink: 0; }
.contact-value { color: var(--text); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--muted);
}

.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { color: var(--muted); transition: color .3s; }
.footer-bottom-links a:hover { color: var(--red); }

/* ============================================================
   WHATSAPP WIDGET
   ============================================================ */
.whatsapp-widget {
    position: fixed;
    bottom: 28px; left: 28px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-bubble {
    width: 58px; height: 58px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 16px rgba(37,211,102,.4);
    transition: all .3s;
    animation: float 3s ease-in-out infinite;
}
.whatsapp-widget:hover .whatsapp-bubble { transform: scale(1.1) rotate(12deg); box-shadow: 0 6px 22px rgba(37,211,102,.6); }

.whatsapp-tooltip {
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 9px 14px;
    border-radius: 8px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-8px);
    transition: all .3s;
    pointer-events: none;
}
.whatsapp-widget:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

@keyframes float {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

/* ============================================================
   HİZMETLER SAYFASI (hizmetlerimiz.html)
   ============================================================ */
.page-content-offset { padding-top: var(--offset); }

.services-section {
    padding: 96px 0;
    background: var(--darker);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 36px;
    margin-top: 16px;
}

.service-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 36px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all .4s cubic-bezier(.175,.885,.32,1.275);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s;
}
.service-card:hover { transform: translateY(-8px); border-color: var(--border-hi); box-shadow: 0 18px 38px rgba(0,0,0,.5), 0 0 18px rgba(232,40,43,.08); }
.service-card:hover::before { transform: scaleX(1); }

.service-card-img-wrapper {
    width: 100%; height: 190px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 26px;
    border: 1px solid var(--border);
}
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.service-card:hover img { transform: scale(1.05); }

.service-card h3 { font-size: 22px; margin-bottom: 12px; color: var(--text); }
.service-card p  { color: var(--muted); font-size: 14px; line-height: 1.85; }

/* ============================================================
   HAKKIMIZDA (hakkimizda.html)
   ============================================================ */
.about-section {
    padding: 96px 0;
    background: var(--dark);
    border-top: 1px solid var(--border);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 { font-size: 38px; margin-bottom: 22px; line-height: 1.2; }
.about-text p  { color: var(--muted); font-size: 15px; margin-bottom: 18px; }

.about-features { margin-top: 36px; display: grid; gap: 16px; }

.feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--card);
    padding: 14px 22px;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: border-color .3s;
}
.feature-item:hover { border-color: var(--red); }

.feature-icon {
    width: 38px; height: 38px;
    background: var(--red-soft);
    color: var(--red);
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px;
    font-size: 17px;
}

.feature-text { font-weight: 500; font-size: 15px; }

.about-image { position: relative; }
.about-image img {
    width: 100%; height: auto;
    border-radius: 12px;
    box-shadow: 0 18px 48px rgba(0,0,0,.5);
    border: 1px solid var(--border-hi);
    position: relative;
    z-index: 2;
}
.about-image::after {
    content: '';
    position: absolute;
    top: 18px; right: -18px;
    width: 100%; height: 100%;
    border: 2px solid var(--red);
    border-radius: 12px;
    z-index: 1;
    opacity: .45;
}

/* ============================================================
   İLETİŞİM (iletisim.html)
   ============================================================ */
.contact-section {
    padding: 96px 0;
    background: var(--darker);
    border-top: 1px solid var(--border);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 56px;
    margin-top: 16px;
}

.contact-info {
    background: var(--card);
    padding: 36px;
    border-radius: 12px;
    border: 1px solid var(--border);
}
.contact-info h3 { font-size: 26px; margin-bottom: 26px; }

.info-link {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 26px;
}
.info-link i {
    font-size: 18px;
    color: var(--red);
    background: var(--red-soft);
    padding: 11px;
    border-radius: 8px;
}
.info-link div { display: flex; flex-direction: column; }
.info-link .label {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 3px;
}
.info-link .value { font-size: 15px; font-weight: 500; }

.contact-form {
    background: var(--card);
    padding: 44px;
    border-radius: 12px;
    border: 1px solid var(--border);
    position: relative;
}


.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-group { margin-bottom: 22px; }
.form-group.full-width { grid-column: 1 / -1; }

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-control {
    width: 100%;
    padding: 14px;
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
    color: var(--text);
    font-family: var(--font);
    transition: all .3s;
}
.form-control:focus { outline: none; border-color: var(--red); box-shadow: 0 0 10px rgba(232,40,43,.18); background: #000; }
textarea.form-control { resize: vertical; min-height: 110px; }

.submit-btn {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 16px 36px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--mono);
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: all .3s;
}
.submit-btn:hover { background: #c9201f; box-shadow: 0 8px 20px rgba(232,40,43,.3); }

/* ============================================================
   SECTION TITLE (eski sayfalarda kullanılan)
   ============================================================ */
.section-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 56px;
    color: var(--text);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.section-title::before { content: '//'; color: var(--red); margin-right: 10px; font-family: var(--mono); }
.section-title::after {
    content: '';
    display: block;
    width: 70px; height: 3px;
    background: linear-gradient(90deg, var(--red), transparent);
    margin: 14px auto 0;
}

/* Sayfa başlıklarının fixed header altında kalmasını engeller */
.page-content-offset {
    padding-top: 150px;
}

/* ============================================================
   ANİMASYONLAR
   ============================================================ */
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   MOBİL UYUMLULUK
   ============================================================ */
@media (max-width: 1100px) {
    .services-cards-grid  { grid-template-columns: repeat(2, 1fr); }
    .stats-grid           { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2)                { border-right: none; }
    .stat-item:nth-child(3),
    .stat-item:nth-child(4)               { border-top: 1px solid var(--border); }
}

@media (max-width: 992px) {
    .footer-grid      { grid-template-columns: 1fr 1fr; }
    .about-wrapper    { grid-template-columns: 1fr; }
    .contact-wrapper  { grid-template-columns: 1fr; }
    .why-grid         { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid     { grid-template-columns: repeat(2, 1fr); }
    .faq-grid         { grid-template-columns: 1fr; }
    .cta-content      { flex-direction: column; text-align: center; }
    .cta-text p       { margin: 0 auto; }
    .hero-content h1  { font-size: 48px; }
}

@media (max-width: 768px) {
    .nav-links        { display: none; }
    .mobile-menu-btn  { display: flex; }
    .services-cards-grid  { grid-template-columns: 1fr; }
    .why-grid         { grid-template-columns: 1fr; }
    .reviews-grid     { grid-template-columns: 1fr; }
    .footer-grid      { grid-template-columns: 1fr; }
    .footer-bottom    { flex-direction: column; text-align: center; }
    .section-title-new { font-size: 26px; }
    .hero-content h1  { font-size: 36px; }
    .hero-badges      { flex-direction: column; gap: 10px; }
    .cta-buttons      { flex-direction: column; }
    .form-grid        { grid-template-columns: 1fr; }
    .contact-form     { padding: 28px; }
    .top-bar-left .top-bar-item:last-child { display: none; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .tracking-tabs { flex-direction: column; align-items: center; }
}

/* Clean Hero Text */
.animated-pattern-text {
    font-size: 80px;
    font-family: var(--font);
    font-weight: 800;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}
@media (max-width: 768px) {
    .animated-pattern-text {
        font-size: 42px;
    }
}

/* Hero Split Design */
.hero-split {
    display: flex;
    width: 100%;
    height: 85vh; /* 85% of viewport height */
    position: relative;
    overflow: hidden;
    margin-top: 0; 
}

.hero-half {
    flex: 1;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: filter 0.4s ease;
}

.hero-half::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 10, 10, 0.5); /* Dark overlay */
    transition: background 0.4s ease;
}

.hero-half:hover::before {
    background: rgba(10, 10, 10, 0.1); /* Lighter on hover */
}

.hero-left {
    background-image: url('images/k1600.png');
    border-right: 2px solid var(--red);
}

.hero-right {
    background-image: url('images/boat.png');
}

.hero-center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background: rgba(15, 15, 15, 0.85);
    padding: 40px;
    border-radius: 50%;
    backdrop-filter: blur(12px);
    border: 2px solid var(--red);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
    from { box-shadow: 0 0 30px rgba(232, 40, 43, 0.3); }
    to { box-shadow: 0 0 60px rgba(232, 40, 43, 0.8); }
}

.hero-center-logo img {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.2));
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }
    .hero-left {
        border-right: none;
        border-bottom: 2px solid var(--red);
    }
    .hero-center-logo img {
        max-width: 120px;
    }
}
/* Restored Hero with Split Background */
.hero-bg-left, .hero-bg-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.9) contrast(1.1); /* Lighter than before */
}
.hero-bg-left {
    left: 0;
    background-image: url('images/k1600.png');
    border-right: 1px solid rgba(232, 40, 43, 0.3);
}
.hero-bg-right {
    right: 0;
    background-image: url('images/boat.png');
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(rgba(10, 10, 10, 0.4), rgba(10, 10, 10, 0.6));
    z-index: 1;
}
@media (max-width: 768px) {
    .hero-bg-left, .hero-bg-right {
        width: 100%;
        height: 50%;
    }
    .hero-bg-right {
        top: 50%;
        bottom: 0;
    }
    .hero-bg-left {
        border-right: none;
        border-bottom: 1px solid rgba(232, 40, 43, 0.3);
    }
}
