/* ========================================
   YANGIN UYGUNLUK RAPORU - STYLE.CSS
   Pixel-Perfect Reference Match
   ======================================== */

/* ===== Variables ===== */
:root {
    --teal: #1a7a62;
    --teal-light: #e6f4ef;
    --teal-dark: #145a4a;
    --fire: #e8513d;
    --fire-dark: #d4442f;
    --fire-grad: linear-gradient(135deg, #ff6b35, #e8513d, #d4442f);
    --navy: #1b2d3f;
    --text: #1a2b3c;
    --text-mid: #4a5568;
    --text-light: #8896a6;
    --bg: #f0f4f8;
    --white: #ffffff;
    --gray-bg: #f7f9fc;
    --border: #e2e8f0;
    --border-lt: #edf2f7;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
    --shadow-card: 0 8px 32px rgba(0,0,0,0.12);
    --radius: 8px;
    --radius-lg: 14px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; height: auto; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 28px; border: none; border-radius: 50px;
    font-family: var(--font); font-size: 0.92rem; font-weight: 700;
    cursor: pointer; transition: all 0.3s var(--ease); white-space: nowrap;
}
.btn-green {
    background: var(--teal); color: #fff;
    box-shadow: 0 4px 16px rgba(26,122,98,0.3);
}
.btn-green:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(26,122,98,0.4); }

.btn-fire {
    background: var(--fire-grad); color: #fff;
    box-shadow: 0 4px 16px rgba(232,81,61,0.35);
}
.btn-fire:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(232,81,61,0.5); }

.btn-fire-cta {
    background: var(--fire-grad); color: #fff;
    padding: 18px 36px; font-size: 1.02rem; border-radius: 50px;
    box-shadow: 0 4px 20px rgba(232,81,61,0.35);
}
.btn-fire-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,81,61,0.5); }

.btn-outline {
    background: transparent; color: var(--text); border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }

.btn-block { width: 100%; }
.btn-hero { padding: 16px 36px; font-size: 0.95rem; }

.btn.loading { pointer-events: none; opacity: 0.7; }
.btn.loading i { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== Navbar ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: var(--white); border-bottom: 1px solid var(--border-lt);
    box-shadow: var(--shadow-sm);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 60px; }

.logo { display: flex; align-items: center; gap: 8px; font-size: 1.6rem; color: #1f2937; letter-spacing: -0.5px; }
.logo-icon {
    width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
    color: #e63946; font-size: 2.2rem; margin-right: 2px;
}
.logo-text { display: flex; align-items: center; gap: 6px; }
.logo-text strong { font-weight: 800; font-family: var(--font); color: #1f2937; }
.logo-badge {
    background: #373b4d; color: #ffffff; padding: 4px 10px;
    border-radius: 6px; font-weight: 700; font-size: 1.4rem;
    line-height: 1; margin-top: 2px;
}

.nav-links { display: flex; gap: 0; align-items: center; }
.nav-links > li { position: relative; }
.nav-links > li > a {
    padding: 18px 18px; font-size: 0.88rem; font-weight: 600;
    color: var(--text-mid); border-bottom: 3px solid transparent;
    transition: all 0.3s; display: flex; align-items: center; gap: 5px;
}
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--teal); border-bottom-color: var(--teal); }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-toggle i { font-size: 0.6rem; transition: transform 0.3s; }
.nav-dropdown:hover .dropdown-toggle i { transform: rotate(180deg); }

.dropdown-menu {
    position: absolute; top: 100%; left: 0;
    min-width: 280px; background: var(--white);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border: 1px solid var(--border-lt); border-top: 3px solid var(--teal);
    opacity: 0; visibility: hidden;
    transform: translateY(8px);
    transition: all 0.3s var(--ease);
    z-index: 100; padding: 8px 0;
    display: flex; flex-direction: column;
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}

.dropdown-menu li a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 20px; font-size: 0.85rem; font-weight: 500;
    color: var(--text-mid); transition: all 0.2s;
    border-bottom: none !important; white-space: nowrap;
}
.dropdown-menu li a i { width: 18px; text-align: center; color: var(--teal); font-size: 0.85rem; }
.dropdown-menu li a:hover { background: var(--teal-light); color: var(--teal); padding-left: 26px; }

.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-phone { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--text); font-size: 0.95rem; }

.btn-teklif {
    background: #d32f2f; color: #ffffff;
    padding: 10px 20px; font-size: 0.95rem; font-weight: 700;
    border-radius: 8px; display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.25);
    transition: all 0.3s var(--ease);
}
.btn-teklif:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(211, 47, 47, 0.35);
    color: #ffffff;
}

.mobile-menu-btn {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer;
}
.mobile-menu-btn span { width: 22px; height: 2.5px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
    padding: 80px 0 40px;
    background: linear-gradient(160deg, #f4f7fb 0%, #eaeff6 40%, #e4eaf3 100%);
    position: relative; overflow: hidden; min-height: 560px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 320px 1fr 320px;
    gap: 20px;
    align-items: start;
    padding-top: 20px;
}

/* -- Hero Left -- */
.hero-left { padding-top: 24px; position: relative; z-index: 3; }

.hero-pre {
    font-size: 1.5rem; font-weight: 600; color: var(--text);
    margin-bottom: 0; line-height: 1.3;
}
.hero-title {
    font-size: 2.3rem; font-weight: 900; color: var(--text);
    line-height: 1.2; margin-bottom: 0;
}
.hero-accent-line { width: 120px; margin: 8px 0 18px; }
.hero-accent-line svg { width: 100%; height: 12px; }

.hero-desc { font-size: 1rem; color: var(--text-mid); margin-bottom: 24px; line-height: 1.7; }
.hero-desc strong { color: var(--teal); font-weight: 700; }

.hero-cabinet {
    margin-top: 32px;
    width: 120px;
}
.hero-cabinet img {
    width: 100%; border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

/* -- Hero Images (center) -- */
.hero-images {
    position: relative;
    height: 420px;
    z-index: 2;
}

.hero-img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    background: var(--white);
}

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

.hero-img-main {
    width: 280px; height: 340px;
    top: 20px; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-img-extinguisher {
    width: 140px; height: 200px;
    bottom: 10px; left: 10px;
    z-index: 3;
    border: 3px solid var(--white);
}

.hero-img-detector {
    width: 130px; height: 130px;
    top: 0; right: 10px;
    z-index: 3;
    border: 3px solid var(--white);
    border-radius: 50%;
}
.hero-img-detector img { border-radius: 50%; }

/* /* -- Status UI Card (Right) -- */
.status-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--border-lt);
    position: relative;
    z-index: 3;
}
.status-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 24px;
}
.status-gauge-wrap {
    position: relative;
    width: 220px;
    height: 130px;
    margin: 0 auto;
}
.status-gauge {
    width: 100%;
    height: 100%;
}
.status-result {
    font-size: 1.4rem;
    font-weight: 800;
    color: #d32f2f;
    margin-top: 0px;
    margin-bottom: 12px;
}
.status-note {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.5;
    margin-bottom: 24px;
    padding: 0 10px;
}
.status-action {
    border-top: 1px solid var(--border-lt);
    padding-top: 24px;
}
.status-subtitle {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-top: 12px;
}

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

/* ===== WAVE DIVIDERS ===== */
.wave-divider {
    width: 100%; line-height: 0; overflow: hidden;
    background: var(--bg);
}
.wave-divider svg { width: 100%; height: 60px; display: block; }
.wave-divider-bottom { background: var(--bg); }
.wave-divider-bottom svg { transform: scaleX(-1); }

/* ===== HOW SECTION ===== */
.how-section {
    padding: 40px 0 44px;
    background: var(--white);
    position: relative;
}
.section-title {
    display: flex; align-items: center; justify-content: center; gap: 20px;
    text-align: center; font-size: 1.8rem; font-weight: 800; color: #0f172a;
    margin-bottom: 40px; position: relative;
}
.section-title::before, .section-title::after {
    content: ''; flex: 1; max-width: 150px; height: 1px; background: #e0e6ed;
}

.steps-row { display: flex; align-items: center; justify-content: center; gap: 0; }

.step-card {
    display: flex; align-items: center; gap: 14px;
    flex: 0 0 auto; position: relative;
}
.step-icon {
    width: 56px; height: 56px; flex-shrink: 0;
    background: var(--teal-light); border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem; color: var(--teal);
    transition: all 0.3s var(--ease);
    box-shadow: 0 3px 12px rgba(26,122,98,0.1);
}
.step-icon.step-illus {
    width: 90px; height: 85px; position: relative;
    background: transparent; border-radius: 0; padding: 0; box-shadow: none; flex-shrink: 0;
}
.step-card:hover .step-icon.step-illus {
    transform: translateY(-3px) scale(1.05); /* Same hover effect */
}

/* Illustration Backgrounds */
.illus-bg {
    position: absolute; top: 10px; left: 0; width: 65%; height: 60%;
    border-radius: 12px; z-index: 1;
}
.illus-bg-1 { background: #dce4ef; } /* blue-gray */
.illus-bg-2 { background: #fee2e2; left: auto; right: 0; } /* red-pinkish */
.illus-bg-3 { background: #e0f2fe; width: 55%; } /* light-blue */

/* --- Step 1 & 3: Clipboard --- */
.illus-clipboard {
    position: absolute; right: 10px; bottom: 5px; width: 50%; height: 75%;
    background: #f8fafc; border: 3px solid #dc2626; border-radius: 6px;
    z-index: 2; display: flex; flex-direction: column; align-items: center; padding-top: 10px;
    box-shadow: 2px 4px 10px rgba(0,0,0,0.1);
}
.blue-clip { border-color: #3b82f6; right: 25px; bottom: 0; height: 80%; }

.illus-clip {
    position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
    width: 14px; height: 6px; background: #64748b; border-radius: 4px; border: 2px solid #334155;
}
.illus-line-wrap {
    width: 60%; display: flex; flex-direction: column; gap: 4px; margin-top: 4px;
}
.illus-line { height: 3px; background: #cbd5e1; border-radius: 2px; width: 100%; }
.illus-line.yellow { background: #eab308; width: 40%; }
.illus-line.orange { background: #f97316; width: 50%; }
.illus-line.teal { background: #14b8a6; width: 60%; }

/* Red Badge for Step 1 */
.illus-badge {
    position: absolute; left: 16px; bottom: 18px;
    width: 22px; height: 22px; background: #64748b; color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; font-weight: 800; z-index: 3;
}

/* Check Badge for Step 3 */
.illus-check-badge {
    position: absolute; right: 12px; bottom: -5px;
    width: 24px; height: 24px; background: #3b82f6; color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; border: 2px solid #fff; z-index: 3;
}

/* --- Step 2: POS Terminal --- */
.illus-pos {
    position: absolute; left: 12px; bottom: 10px; width: 75%; height: 50%;
    background: #1e40af; border-radius: 6px; z-index: 2;
    box-shadow: 2px 4px 10px rgba(0,0,0,0.15); display: flex; flex-direction: column;
}
.pos-top {
    height: 6px; background: #ef4444; margin: 0 10px; border-radius: 0 0 4px 4px;
    position: absolute; top: -6px; left: 5px; right: 5px;
}
.pos-screen {
    height: 40%; background: #f1f5f9; margin: 8px 6px 0; border-radius: 2px;
    display: flex; align-items: center; padding: 0 4px;
}
.pos-line { height: 3px; background: #94a3b8; width: 60%; border-radius: 2px; }
.pos-line.pointer { width: 40%; background: #1d4ed8; }
.pos-dots {
    display: flex; gap: 4px; margin-top: auto; padding: 4px 8px 6px;
}
.pos-dot { width: 6px; height: 6px; border-radius: 50%; background: #64748b; }
.pos-dot.yellow { background: #eab308; }
.pos-dot.red { background: #ef4444; width: 14px; }
.pos-dot.white { background: #fff; }

/* Connectors */
.step-connector {
    flex: 0 0 30px; max-width: 30px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 10px;
}
.step-connector svg { width: 30px; height: 30px; }

/* ===== FORM SECTION ===== */
.form-section { padding: 54px 0; }

.form-card {
    max-width: 680px; margin: 0 auto;
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card); border: 1px solid var(--border-lt);
    overflow: hidden;
}
.form-header {
    text-align: center; padding: 26px 30px 18px;
    border-bottom: 1px solid var(--border-lt);
}
.form-header h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 2px; }
.form-header p { font-size: 0.88rem; color: var(--text-light); }

.form-body, .payment-grid { padding: 24px 30px 30px; }

.form-group { margin-bottom: 12px; }
.form-group.full { width: 100%; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-label {
    display: block; font-size: 0.78rem; font-weight: 600;
    color: var(--text-mid); margin-bottom: 6px;
}
.form-group input,
.form-group select {
    width: 100%; padding: 13px 16px;
    background: var(--gray-bg); border: 1px solid var(--border);
    border-radius: var(--radius); color: var(--text);
    font-family: var(--font); font-size: 0.9rem;
    transition: all 0.3s; outline: none;
}
.form-group input::placeholder { color: var(--text-light); }
.form-group input:focus, .form-group select:focus {
    border-color: var(--teal); background: #fff;
    box-shadow: 0 0 0 3px rgba(26,122,98,0.1);
}

/* Custom Select Dropdowns for Main Form */
.form-custom-select {
    position: relative;
    width: 100%;
}
.fcs-trigger {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 12px 16px; background: var(--gray-bg); border: 1px solid var(--border);
    border-radius: var(--radius); color: var(--text);
    font-family: var(--font); font-size: 0.9rem;
    transition: all 0.3s; cursor: pointer;
}
.fcs-trigger:hover, .form-custom-select.open .fcs-trigger {
    border-color: var(--teal); background: #fff;
    box-shadow: 0 0 0 3px rgba(26,122,98,0.1);
}
.fcs-value {
    display: flex; align-items: center; gap: 10px; font-weight: 500;
}
.fcs-value i { color: var(--teal); width: 18px; text-align: center; }
.fcs-chevron { color: var(--text-light); transition: transform 0.3s; font-size: 0.8rem; }
.form-custom-select.open .fcs-chevron { transform: rotate(180deg); }

.fcs-options {
    position: absolute; top: calc(100% + 4px); left: 0; right: 0;
    background: #fff; border: 1px solid var(--teal);
    border-radius: var(--radius); box-shadow: var(--shadow-card);
    z-index: 100; max-height: 300px; display: flex; flex-direction: column;
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: all 0.3s var(--ease); overflow-y: auto;
}
.fcs-options-list {
    overflow-y: auto; flex: 1; padding: 6px 0;
}
.fcs-search-box {
    padding: 10px; border-bottom: 1px solid var(--border-lt);
    background: #f8fafc; position: sticky; top: 0; z-index: 2;
}
.fcs-search-input {
    width: 100%; padding: 8px 12px; border: 1px solid var(--border);
    border-radius: 4px; font-size: 0.85rem; font-family: var(--font);
    outline: none; transition: border-color 0.2s;
}
.fcs-search-input:focus { border-color: var(--teal); }

.form-custom-select.open .fcs-options {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.fcs-option {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 16px; font-size: 0.9rem; font-weight: 500;
    color: var(--text-mid); cursor: pointer; transition: all 0.2s;
}
.fcs-option i { width: 18px; text-align: center; color: var(--text-light); font-size: 0.95rem; }
.fcs-option:hover { background: var(--gray-bg); color: var(--teal); }
.fcs-option:hover i { color: var(--teal); }
.fcs-option.selected { background: var(--teal-light); color: var(--teal); font-weight: 700; }
.fcs-option.selected i { color: var(--teal); }

.form-badges {
    display: flex; justify-content: center; align-items: center; gap: 8px;
    margin-top: 16px; font-size: 0.78rem; color: var(--text-light); flex-wrap: wrap;
}
.form-badges i { color: var(--teal); }
.form-badges .dot { color: var(--border); }

.form-group.error input, .form-group.error select {
    border-color: var(--fire) !important; background: #fff5f5 !important;
}

/* ===== RESULTS ===== */
.results-section { padding: 0 0 54px; }

.results-new-header {
    text-align: left;
    margin-bottom: 24px;
}
.results-new-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.results-new-desc {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 24px;
}
.results-warning-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background-color: #fffbeb;
    padding: 18px 24px;
    border-radius: 8px;
}
.warning-icon {
    font-size: 1.6rem;
    color: #f59e0b;
    margin-top: 4px;
    text-shadow: 1px 1px 2px rgba(245, 158, 11, 0.2);
}
.warning-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.warning-text strong {
    font-size: 1.05rem;
    color: #1f2937;
    font-weight: 700;
}
.warning-text span {
    font-size: 0.95rem;
    color: #6b7280;
}

.results-body { padding: 36px 40px 40px; }

/* Gauge */
.gauge-wrap { text-align: center; margin-bottom: 24px; }
.gauge { position: relative; width: 150px; height: 150px; margin: 0 auto 10px; }
.gauge svg { transform: rotate(-90deg); width: 100%; height: 100%; }
.gauge-bg { fill: none; stroke: var(--border-lt); stroke-width: 12; }
.gauge-fill {
    fill: none; stroke: var(--teal); stroke-width: 12; stroke-linecap: round;
    stroke-dasharray: 534; stroke-dashoffset: 534;
    transition: stroke-dashoffset 1.5s var(--ease), stroke 0.5s;
}
.gauge-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; }
.gauge-num { display: block; font-size: 2.4rem; font-weight: 900; line-height: 1; }
.gauge-num::after { content:'%'; font-size: 1rem; font-weight: 600; }
.gauge-lbl { display: block; font-size: 0.65rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 2px; }

.gauge-status { font-size: 0.88rem; font-weight: 700; padding: 5px 18px; border-radius: 50px; display: inline-block; }
.gauge-status.status-good { background: #e8f5e9; color: #2e7d32; }
.gauge-status.status-warning { background: #fff3e0; color: #f57c00; }
.gauge-status.status-danger { background: #ffebee; color: #d32f2f; }

/* Warning Cards */
.warn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.warn-card {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 14px; background: var(--gray-bg);
    border: 1px solid var(--border); border-radius: var(--radius);
    animation: fadeUp 0.4s ease-out;
}
.warn-ico {
    width: 38px; height: 38px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.warn-ico.red { background: #ffebee; color: #d32f2f; }
.warn-ico.orange { background: #fff3e0; color: #f57c00; }
.warn-card strong { display: block; font-size: 0.8rem; }
.warn-card span { font-size: 0.72rem; color: var(--text-light); }

/* Deficiency */
.deficiency-block { margin-bottom: 24px; }
.deficiency-block h4 { font-size: 0.9rem; font-weight: 700; color: #f57c00; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.deficiency-block ul { display: flex; flex-direction: column; gap: 6px; }
.deficiency-block li {
    padding: 10px 14px; background: #fff8f0;
    border-left: 3px solid #f57c00; border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 0.84rem; color: var(--text-mid); line-height: 1.5;
    animation: fadeUp 0.4s ease-out;
}
.deficiency-block li strong { color: var(--text); margin-right: 4px; }

.results-cta { text-align: center; padding-top: 18px; border-top: 1px solid var(--border-lt); }
.results-cta p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 14px; }

.report-ready-msg {
    background: #e8f5e9; border: 1px solid #c8e6c9; border-radius: var(--radius);
    padding: 16px 20px; margin-bottom: 18px; text-align: center;
}
.report-ready-msg i { color: #2e7d32; font-size: 1.6rem; margin-bottom: 6px; display: block; }
.report-ready-msg strong { display: block; font-size: 1.05rem; color: #2e7d32; margin-bottom: 4px; }
.report-ready-msg p { font-size: 0.85rem; color: var(--text-mid); margin-bottom: 0; }
.cta-trust { margin-top: 10px; font-size: 0.78rem; color: var(--text-light); }
.cta-trust i { color: var(--teal); }

/* ===== PAYMENT ===== */
.payment-section { padding: 0 0 54px; }
.payment-grid { display: grid; grid-template-columns: 260px 1fr; gap: 24px; }

.pay-summary {
    background: var(--gray-bg); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 18px;
}
.pay-summary h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.pay-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--border-lt); font-size: 0.86rem; color: var(--text-mid); }
.pay-total { font-weight: 700; color: var(--text); border-bottom: none; margin-top: 4px; font-size: 0.95rem; }

.method-tabs { display: flex; gap: 10px; margin-bottom: 18px; }
.method-tab {
    flex: 1; padding: 11px; background: var(--gray-bg); border: 2px solid var(--border);
    border-radius: var(--radius); color: var(--text-mid); font-family: var(--font);
    font-size: 0.85rem; font-weight: 600; cursor: pointer;
    transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.method-tab.active { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }

.pay-badges { display: flex; justify-content: center; gap: 14px; margin-top: 12px; font-size: 1.5rem; color: var(--text-light); align-items: center; }
.pay-badges span { font-size: 0.76rem; display: flex; align-items: center; gap: 4px; }

.eft-box { background: var(--gray-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; margin-bottom: 14px; }
.eft-box h4 { font-size: 0.92rem; margin-bottom: 10px; color: var(--teal); }
.eft-row { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid var(--border-lt); font-size: 0.84rem; }
.eft-row span { color: var(--text-light); }
.eft-row strong { color: var(--text); }
.eft-note { margin-top: 10px; font-size: 0.78rem; color: var(--text-light); }

/* ===== SUCCESS ===== */
.success-section { padding: 54px 0; text-align: center; }
.success-box { max-width: 480px; margin: 0 auto; }
.success-icon { font-size: 3.5rem; color: var(--teal); margin-bottom: 18px; animation: scaleIn 0.5s ease-out; }
@keyframes scaleIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.success-box h2 { font-size: 1.6rem; margin-bottom: 8px; }
.success-box p { color: var(--text-mid); margin-bottom: 24px; }
.success-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== STATS BAR ===== */
.stats-bar { padding: 24px 0; }
.stats-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.stat-box {
    display: flex; align-items: center; gap: 16px; justify-content: flex-start;
    background: var(--white); border: 1px solid #e2e8f0;
    border-radius: 16px; padding: 20px 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    position: relative; overflow: hidden;
}
.stat-icon-img {
    width: 54px; height: 54px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.stat-text { display: flex; flex-direction: column; z-index: 2; }
.stat-text strong { font-size: 1.4rem; font-weight: 800; color: #0f172a; margin-bottom: 2px; }
.stat-text span { font-size: 0.85rem; color: #64748b; font-weight: 500; }

/* Turkey map specific styles */
.turkey-box {
    justify-content: center; padding: 12px 24px;
}
.turkey-map-wrapper {
    position: relative; width: 64px; height: 40px; margin-right: 12px;
}
.turkey-svg {
    width: 64px; height: 40px; display: block; filter: drop-shadow(0 2px 2px rgba(0,0,0,0.05));
}
.map-pin {
    position: absolute; top: 12px; left: 24px;
    color: #dc2626; font-size: 0.8rem;
    filter: drop-shadow(0 2px 4px rgba(220,38,38,0.3));
}
.turkey-text strong { font-size: 1rem; color: #1e293b; font-weight: 600; }
.plus-icon {
    position: absolute; right: 24px; top: 50%; transform: translateY(-50%);
    color: #cbd5e1; font-size: 1.2rem; font-weight: 300;
}

/* ===== FOOTER ===== */
.footer {
    background: #1b2a3d; color: #c5cdd8; padding: 0;
}
.footer-top {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px; padding: 48px 0 36px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 14px; font-size: 1.4rem; color: #fff;
}
.footer-brand .logo-icon {
    width: 32px; height: 32px; font-size: 1.8rem; color: #e63946; background: transparent;
}
.footer-brand .logo-text strong { color: #ffffff; }
.footer-about {
    font-size: 0.82rem; line-height: 1.6; color: #8b97a8;
    margin-bottom: 18px;
}
.footer-social {
    display: flex; gap: 10px;
}
.footer-social a {
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    color: #8b97a8; font-size: 0.85rem; transition: all 0.3s;
}
.footer-social a:hover { background: var(--teal); color: #fff; border-color: var(--teal); }

.footer-col h4 {
    color: #fff; font-size: 0.92rem; font-weight: 700;
    margin-bottom: 16px; position: relative; padding-bottom: 10px;
}
.footer-col h4::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 28px; height: 2px; background: var(--teal); border-radius: 1px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
    color: #8b97a8; font-size: 0.82rem; transition: all 0.2s;
    display: inline-block;
}
.footer-col ul li a:hover { color: var(--teal); padding-left: 4px; }

.footer-contact li {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.82rem; color: #8b97a8;
}
.footer-contact li i { color: var(--teal); width: 16px; text-align: center; font-size: 0.78rem; }
.footer-contact li a { color: #8b97a8; }
.footer-contact li a:hover { color: #fff; }

.footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 0; font-size: 0.78rem; color: #6b7a8c;
}
.footer-pay {
    display: flex; align-items: center; gap: 12px; font-size: 1.5rem; color: #8b97a8;
}
.iyzico-badge {
    font-size: 0.82rem; font-weight: 800; color: #8b97a8;
    background: rgba(255,255,255,0.06); padding: 3px 10px; border-radius: 4px;
}
.pay-trust {
    font-size: 0.72rem; color: #6b7a8c; display: flex; align-items: center; gap: 4px;
}
.pay-trust i { color: var(--teal); font-size: 0.8rem; }

/* ===== TOAST ===== */
.toast {
    position: fixed; bottom: -80px; left: 50%; transform: translateX(-50%);
    padding: 12px 26px; background: var(--teal); color: #fff;
    border-radius: 50px; font-size: 0.88rem; font-weight: 600;
    display: flex; align-items: center; gap: 10px; z-index: 9999;
    transition: bottom 0.4s var(--ease); box-shadow: var(--shadow-lg);
}
.toast.show { bottom: 28px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr 1fr; }
    .hero-images { display: none; }
    .hero-cabinet { display: none; }
    .payment-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links, .nav-phone { display: none; }
    .mobile-menu-btn { display: flex; }
    .nav-actions { display: none; }
    .mobile-extra-links { display: flex !important; }
    .navbar.mobile-open .nav-links {
        display: flex; flex-direction: column; position: absolute;
        top: 100%; left: 0; right: 0; background: var(--white);
        padding: 14px 24px; gap: 0; border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
    }
    .hero-grid { grid-template-columns: 1fr; gap: 20px; }
    .hero-left { text-align: center; padding-top: 16px; }
    .hero-accent-line { margin: 8px auto 18px; }
    .hero-images { display: none; }
    .hero-cabinet { display: none; }
    .steps-row { flex-direction: column; gap: 14px; }
    .step-connector { transform: rotate(90deg); }
    .form-body, .payment-grid { padding: 20px; }
    .form-row { grid-template-columns: 1fr; }
    .warn-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; gap: 16px; padding: 0 10px; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-pre { font-size: 1.2rem; }
    .hero-title { font-size: 1.8rem; }
    .quick-card { padding: 20px; }

    /* Mobil Menü Sıkışma Düzenlemesi */
    .logo { font-size: 1.3rem; gap: 4px; }
    .logo-icon { width: 30px; height: 30px; font-size: 1.6rem; }
    .logo-badge { font-size: 1rem; padding: 2px 6px; }
    .nav-actions { gap: 8px; }
    .btn-teklif { padding: 8px 12px; font-size: 0.85rem; }
    .btn-teklif i { display: none; } /* Dar ekranlarda ikonu gizle */
    .mobile-menu-btn { gap: 4px; padding-left: 2px; }
    .mobile-menu-btn span { width: 20px; }
}
