:root {
    --navy: #001f40;
    --navy-light: #0e3552;
    --blue: #2e6c96;
    --accent: #4fa3d8;
    --bg: #ffffff;
    --bg-alt: #f4f6fb;
    --text: #1c2434;
    --text-muted: #5b6478;
    --border: #e4e8f0;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(0, 31, 64, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

a { color: var(--blue); text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    color: var(--text);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0, 31, 64, 0.06);
}

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

.brand { display: flex; align-items: center; gap: 10px; color: #fff; }

.brand-logo {
    display: block;
    height: 58px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

.brand-mark {
    background: var(--accent);
    color: var(--navy);
    font-weight: 800;
    font-size: 14px;
    padding: 6px 10px;
    border-radius: 8px;
    letter-spacing: 1px;
}

.brand-text { font-weight: 800; letter-spacing: 3px; font-size: 18px; }

.site-nav { display: flex; align-items: center; gap: 26px; }

.site-nav a { color: var(--text); font-size: 15px; font-weight: 500; transition: color 0.2s; }
.site-nav a:hover { color: var(--blue); }

.site-nav a.active { color: var(--navy); position: relative; font-weight: 700; }
.site-nav a.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.lang-switch { display: flex; gap: 4px; margin-left: 6px; }

.lang-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    line-height: 1.4;
}

.lang-btn:hover { border-color: var(--blue); color: var(--blue); }

.lang-btn.active { background: var(--accent); color: var(--navy); border-color: var(--accent); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span { width: 24px; height: 3px; background: var(--navy); border-radius: 2px; transition: 0.3s; }

/* ---------- Hero ---------- */
.hero {
    background:
        linear-gradient(135deg, rgba(0, 31, 64, 0.90) 0%, rgba(14, 53, 82, 0.88) 60%, rgba(27, 79, 115, 0.86) 100%),
        url('assets/img/hero.jpg?v=20260913j') center/cover no-repeat;
    color: #fff;
    padding: 120px 0;
}

.hero-inner { max-width: 820px; }

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero p { font-size: 1.15rem; color: #c6d2ee; max-width: 640px; margin-bottom: 32px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1b4f73 100%);
    color: #fff;
    padding: 76px 0 60px;
}

.page-hero.has-bg {
    background:
        linear-gradient(135deg, rgba(0, 31, 64, 0.90) 0%, rgba(14, 53, 82, 0.88) 60%, rgba(27, 79, 115, 0.86) 100%),
        var(--hero-img) center/cover no-repeat;
}

.page-hero .page-tag {
    color: var(--accent);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.page-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 14px;
}

.page-hero p { font-size: 1.1rem; color: #c6d2ee; max-width: 640px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: transform 0.15s, box-shadow 0.2s;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--accent); color: var(--navy); box-shadow: 0 6px 20px rgba(79, 163, 216, 0.4); }
.btn-primary:hover { box-shadow: 0 8px 26px rgba(245, 158, 11, 0.45); }

.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255, 255, 255, 0.5); }
.btn-outline:hover { border-color: #fff; }

.btn-outline-dark { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline-dark:hover { background: var(--blue); color: #fff; }

.section-cta { margin-top: 36px; text-align: center; }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }

.section-tag {
    color: var(--blue);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title { font-size: clamp(1.6rem, 3.5vw, 2.3rem); font-weight: 800; margin-bottom: 44px; }

/* ---------- Services ---------- */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
}

.card:hover { transform: translateY(-4px); }

.card-num {
    display: inline-block;
    font-weight: 800;
    font-size: 14px;
    color: var(--accent);
    background: rgba(79, 163, 216, 0.14);
    padding: 4px 10px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.card-img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    max-height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius);
    margin: 0 0 18px;
}

.card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.card p { color: var(--text-muted); font-size: 0.95rem; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 44px; align-items: start; }

.about-text p { color: var(--text-muted); margin-bottom: 16px; }

.about-photo {
    width: 100%;
    aspect-ratio: 3 / 2;
    max-height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin: 0 0 22px;
}

.about-points { list-style: none; margin-top: 8px; }
.about-points li { position: relative; padding-left: 26px; margin-bottom: 10px; color: var(--text); }
.about-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: 800;
}

.about-stats { display: grid; grid-template-columns: 1fr; gap: 18px; }

.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }

.about-systems {
    margin-top: 44px;
    padding-top: 36px;
    border-top: 1px solid var(--border);
}

.about-systems .section-tag { margin-bottom: 18px; }

.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }

.chip {
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 999px;
    box-shadow: var(--shadow);
}

.stat {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow);
}

.stat-num { display: block; font-size: 2rem; font-weight: 800; color: var(--blue); }
.stat-label { color: var(--text-muted); font-size: 0.9rem; }

/* ---------- FAQ ---------- */
.faq-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: start; }

.faq-hero { position: relative; overflow: hidden; background: linear-gradient(180deg, #f4f6fb 0%, #e7edf7 50%, #f4f6fb 100%); }
.faq-hero .container { position: relative; z-index: 1; }
.faq-hero .section-tag, .faq-hero .section-title { text-align: center; }

.faq-preview { display: grid; gap: 14px; max-width: 780px; margin: 0 auto; }

.faq-list { display: grid; gap: 14px; max-width: 780px; }

.faq-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-item summary {
    cursor: pointer;
    padding: 18px 22px;
    font-weight: 600;
    font-size: 1.02rem;
    color: var(--navy);
    list-style: none;
    display: flex;
    align-items: center;
    gap: 14px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: "";
    margin-left: auto;
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--blue);
    border-bottom: 2px solid var(--blue);
    transform: rotate(45deg);
    transition: transform 0.25s ease;
}

.faq-item[open] summary::after { transform: rotate(-135deg); }

.faq-item[open] summary { border-bottom: 1px solid var(--border); }

.faq-num {
    background: var(--accent);
    color: var(--navy);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1px;
    border-radius: 8px;
    padding: 5px 9px;
    flex: 0 0 auto;
}

.faq-item p {
    margin: 0;
    padding: 18px 22px 20px;
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 15px;
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 44px; align-items: start; }

.contact-info { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: start; }

.ci-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px;
    box-shadow: var(--shadow);
}

.ci-card .ci-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 6px;
}

.ci-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: rgba(79, 163, 216, 0.14);
    margin-bottom: 12px;
}
.ci-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--blue); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.ci-card.ci-highlight {
    border-color: rgba(79, 163, 216, 0.45);
    background: linear-gradient(160deg, #ffffff 0%, #edf4fc 100%);
}

.ci-card .ci-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    word-break: break-word;
    line-height: 1.5;
}

a.ci-value:hover { color: var(--accent); }

.ci-card .ci-muted { margin-top: 10px; font-size: 0.9rem; color: var(--text-muted); }

.ci-card.ci-wide, .ci-card.ci-social { grid-column: 1 / -1; }

.ci-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    background: rgba(0, 31, 64, 0.06);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
}
.ci-note .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.22);
}

.social-links { display: flex; gap: 10px; margin-top: 14px; }
.social-links a {
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
}
.social-links a:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

.contact-form-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 30px;
}

.ct-head { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.ct-sub { color: var(--text-muted); margin-bottom: 20px; font-size: 0.95rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.contact-form { display: flex; flex-direction: column; gap: 14px; }

.contact-form label { font-weight: 600; font-size: 14px; }

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font: inherit;
    font-size: 15px;
    background: var(--bg);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.15);
}

.contact-form .btn { align-self: flex-start; }

.form-note { font-weight: 600; color: #15803d; }
.form-note-error { color: #b91c1c; }

/* ---------- Admin panel ---------- */
.admin-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.admin-title { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; color: var(--navy); }
.admin-actions { display: flex; gap: 10px; }
.admin-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin: 26px 0 10px; border-bottom: 1px solid var(--border); padding-bottom: 14px; }
.admin-tab { padding: 9px 18px; border-radius: 9px; font-weight: 600; font-size: .92rem; color: var(--text-muted); background: var(--bg); border: 1px solid var(--border); text-decoration: none; transition: all .2s; }
.admin-tab:hover { border-color: var(--blue); color: var(--blue); }
.admin-tab.on { background: var(--navy); color: #fff; border-color: var(--navy); }
.msg { margin: 8px 0 0; padding: 12px 16px; border-radius: 10px; background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; font-weight: 600; }
.toolbar { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; margin: 4px 0 18px; color: var(--text-muted); font-size: .9rem; }
.dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 18px 0 26px; }
.dash-stat { display: block; background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 20px; box-shadow: var(--shadow); text-decoration: none; transition: transform .2s, border-color .2s; }
.dash-stat:hover { transform: translateY(-3px); border-color: var(--accent); }
.ds-num { display: block; font-size: 1.9rem; font-weight: 800; color: var(--navy); }
.ds-label { font-size: .9rem; color: var(--text-muted); }
.panel-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.panel-card { background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 22px; box-shadow: var(--shadow); }
.panel-card h3 { color: var(--navy); margin-bottom: 8px; }
.panel-card p { color: var(--text-muted); font-size: .92rem; line-height: 1.6; margin-bottom: 16px; }
.panel-form { display: flex; flex-direction: column; gap: 14px; background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 26px; box-shadow: var(--shadow); }
.panel-form-narrow { max-width: 460px; }
.panel-form label { font-weight: 600; font-size: 14px; display: block; margin-bottom: 6px; }
.panel-form label small { color: var(--text-muted); font-weight: 400; }
.panel-form input, .panel-form textarea, .panel-form select { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px; font: inherit; font-size: 15px; background: var(--bg); transition: border-color .2s, box-shadow .2s; }
.panel-form input:focus, .panel-form textarea:focus, .panel-form select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(46, 108, 150, 0.15); }
.panel-form .btn { align-self: flex-start; }
.check-field { margin: 2px 0; }
.check { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; }
.check input { width: auto; }
.hint { font-size: .85rem; color: var(--text-muted); margin-top: 6px; }
.btn-icon { display: inline-block; border: 1px solid var(--border); background: var(--bg); color: var(--blue); padding: 6px 12px; border-radius: 8px; font-size: .83rem; font-weight: 600; cursor: pointer; text-decoration: none; margin-right: 6px; transition: all .2s; }
.btn-icon:hover { border-color: var(--blue); background: rgba(46, 108, 150, 0.08); }
.btn-icon.danger { color: #b91c1c; }
.btn-icon.danger:hover { border-color: #b91c1c; background: #fef2f2; }
.cell-actions { white-space: nowrap; }
.row-unread td { background: #f0f7ff; }
.badge-new { background: #fee2e2; color: #b91c1c; border-radius: 20px; padding: 3px 12px; font-size: .78rem; font-weight: 700; }
.badge-ok { background: #ecfdf5; color: #065f46; border-radius: 20px; padding: 3px 12px; font-size: .78rem; font-weight: 700; }
.badge-off { background: #f3f4f6; color: #6b7280; border-radius: 20px; padding: 3px 12px; font-size: .78rem; font-weight: 700; }
.img-name { font-size: .83rem; color: var(--text-muted); word-break: break-all; }
.fmt-toolbar { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 8px; }
.fmt-toolbar .btn { background: #fff; border: 1.5px solid #3b82f6; color: #1d4ed8; font-weight: 600; cursor: pointer; box-shadow: none; }
.fmt-toolbar .btn:hover { background: #3b82f6; color: #fff; }
.live-prev { margin-top: 10px; border: 1px dashed #cbd5e1; border-radius: 10px; padding: 10px 14px; background: #fbfdff; }
.live-prev summary { cursor: pointer; font-weight: 600; font-size: .85rem; color: var(--blue); }
.live-body { padding-top: 8px; border-top: 1px solid #eef2f7; margin-top: 8px; }
.live-body h2 { font-size: 1.25rem; margin: .5em 0 .25em; color: var(--navy); }
.live-body ul { margin: .4em 0; }
.live-body strong { color: var(--navy); }
.img-row { display: flex; gap: 10px; align-items: center; }
.img-name-input { flex: 1; }
.img-file-hidden { display: none; }
.img-preview { display: block; max-width: 240px; max-height: 160px; margin-top: 10px; border-radius: 10px; border: 1px solid var(--border); }
.media-library { margin-top: 12px; }
.media-library summary { font-weight: 600; cursor: pointer; color: var(--blue); font-size: .92rem; margin-bottom: 10px; }
.media-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 10px; max-height: 300px; overflow: auto; padding: 6px; }
.media-item { border: 2px solid var(--border); border-radius: 10px; padding: 6px; cursor: pointer; text-align: center; transition: border-color .15s, transform .15s; background: var(--bg); }
.media-item:hover { transform: translateY(-2px); border-color: var(--blue); }
.media-item.on { border-color: var(--accent); }
.media-item img { width: 100%; height: 70px; object-fit: cover; border-radius: 6px; display: block; }
.media-item span { display: block; font-size: .68rem; color: var(--text-muted); margin-top: 4px; word-break: break-all; }

/* ---------- Admin table ---------- */
.table-scroll { overflow-x: auto; }

.admin-table { width: 100%; border-collapse: collapse; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }

.admin-table th, .admin-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.92rem; }

.admin-table thead th { background: var(--navy); color: #fff; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; }

.admin-table tbody tr:hover { background: var(--bg-alt); }
.admin-table .cell-details { color: var(--text-muted); }

/* ---------- CTA banner ---------- */
.cta-banner {
    background:
        linear-gradient(120deg, rgba(0, 31, 64, 0.93) 0%, rgba(14, 53, 82, 0.90) 55%, rgba(27, 79, 115, 0.88) 100%),
        url('assets/img/hero.jpg?v=20260913j') center/cover no-repeat;
    color: #fff;
    border-radius: 16px;
    padding: 44px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.cta-text h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; margin-bottom: 8px; }
.cta-text p { color: #c6d2ee; }

/* ---------- Values ---------- */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.value {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow);
}

.value h3 { font-size: 1.05rem; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
.value p { color: var(--text-muted); font-size: 0.95rem; }

.step-num {
    display: inline-block;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--accent);
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

/* ---------- Info panel ---------- */
.info-panel {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.info-panel h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.info-panel p { color: var(--text-muted); margin-bottom: 4px; }

/* ---------- Expertise list ---------- */
.expertise-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 28px;
    list-style: none;
    max-width: 820px;
}

.expertise-list li {
    position: relative;
    padding-left: 30px;
    color: var(--text);
    font-size: 0.98rem;
    line-height: 1.5;
}

.expertise-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--blue);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* ---------- Map ---------- */
.map-wrap {
    margin-top: 44px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    background: #eef2f8;
}

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

/* ---------- Breadcrumb ---------- */
.breadcrumb { background: var(--navy); padding: 8px 0; }
.breadcrumb .container { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: #93a1c6; }
.breadcrumb a { color: #c6d2ee; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .crumb-sep { color: #5b6478; }

/* ---------- Floating actions ---------- */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 24px;
    z-index: 90;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
    transition: transform 0.15s, box-shadow 0.2s;
}

.whatsapp-float:hover { transform: scale(1.06); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35); }
.whatsapp-float svg { width: 32px; height: 32px; fill: #fff; }

.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 92px;
    z-index: 90;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s, background 0.2s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { background: var(--blue); }

/* ---------- Reveal on scroll ---------- */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

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

.testimonial {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.testimonial p { color: var(--text-muted); font-style: italic; flex-grow: 1; }

.testimonial footer { border-top: 1px solid var(--border); padding-top: 12px; }
.testimonial footer strong { display: block; font-size: 0.95rem; }
.testimonial footer span { color: var(--text-muted); font-size: 0.85rem; }

/* ---------- Blog ---------- */
.blog-grid { grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }

.blog-card h3 { margin-bottom: 8px; }
.blog-card h3 a { color: var(--text); transition: color 0.2s; }
.blog-card h3 a:hover { color: var(--blue); }

.btn-sm { padding: 10px 18px; font-size: 14px; align-self: flex-start; margin-top: 8px; }

.post-tags {
    font-size: 0.85rem;
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 20px;
}

.post-body { max-width: 780px; }
.post-body h2 { font-size: 1.35rem; font-weight: 700; margin: 28px 0 12px; }
.post-body p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.75; }
.post-body a { color: var(--blue); text-decoration: underline; }
.post-body ul, .post-body ol { padding-left: 22px; margin-bottom: 16px; color: var(--text-muted); }
.post-body li { margin-bottom: 6px; }
.post-body img { max-width: 100%; border-radius: var(--radius); margin: 20px 0; }

.post-img {
    width: 100%;
    aspect-ratio: 3 / 2;
    max-height: 460px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin: 0 0 26px;
}

.post-cta { display: flex; gap: 14px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border); flex-wrap: wrap; }

/* ---------- Servis detay ---------- */
.service-hero {
    position: relative;
    color: #fff;
    background-size: cover;
    background-position: center;
    padding: 84px 0 76px;
}

.service-hero .page-tag { color: var(--accent); }
.service-hero h1 { font-size: 2.4rem; letter-spacing: -0.5px; }
.service-hero p { font-size: 1.1rem; color: #c6d2ee; max-width: 640px; margin-bottom: 0; }

.svc-layout { display: grid; grid-template-columns: 1.7fr 1fr; gap: 40px; align-items: start; }

.svc-main .post-body { max-width: none; }
.svc-main .post-body > p:first-of-type { font-size: 1.12rem; color: var(--text); }

.svc-sidebar { position: sticky; top: 96px; display: grid; gap: 20px; }

.side-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.side-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.side-card p { color: var(--text-muted); font-size: 15px; margin-bottom: 16px; line-height: 1.6; }
.side-card .btn { display: flex; align-items: center; justify-content: center; width: 100%; margin-top: 10px; }
.side-card .btn:first-of-type { margin-top: 0; }

.side-note {
    display: flex; gap: 10px; align-items: flex-start;
    background: #eef4fb; border: 1px solid #dbe7f5; border-radius: 12px;
    padding: 14px 16px; font-size: 13.5px; color: var(--text-muted); line-height: 1.55;
}
.side-note strong { color: var(--navy); }

.features-wrap { margin-top: 56px; }
.features-wrap h2 { margin-bottom: 18px; }

.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }

.feature-item {
    display: flex; gap: 12px; align-items: flex-start;
    background: var(--bg); border: 1px solid var(--border); border-radius: 12px;
    padding: 14px 16px; box-shadow: var(--shadow); font-size: 15px;
}

.feature-check {
    flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%;
    background: var(--accent); color: var(--navy); font-weight: 800;
    display: flex; align-items: center; justify-content: center; font-size: 12px; margin-top: 2px;
}

.other-posts { margin-top: 56px; }
.other-posts h3 { margin-bottom: 20px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #cdd6ea; padding-top: 56px; }

.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 40px;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    display: block;
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    background: #fff;
    border-radius: 10px;
    padding: 10px 16px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
    margin: 0 auto;
    transition: transform 0.2s ease;
}

.footer-brand a:hover .footer-logo { transform: scale(1.03); }

.footer-brand p { margin: 16px auto 0; color: #93a1c6; line-height: 1.6; max-width: 300px; }

.footer-col h4 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.footer-col h4::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 14px;
    border-radius: 2px;
    background: var(--accent);
    margin-right: 8px;
    vertical-align: -2px;
}
.footer-col p { font-size: 0.9rem; color: #93a1c6; line-height: 1.7; }
.footer-col .footer-link { color: #c8d4ee; text-decoration: none; transition: color 0.2s; word-break: break-all; }
.footer-col .footer-link:hover { color: var(--accent); }
.footer-col .footer-link-row { margin-top: 4px; }
.footer-col .footer-address { color: #93a1c6; }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); padding: 18px 0; text-align: center; }
.footer-bottom p { font-size: 0.85rem; color: #a9b6d6; margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    .grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .svc-layout { grid-template-columns: 1fr; }
    .svc-sidebar { position: static; }
    .faq-layout { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
    .nav-toggle { display: flex; }

    .site-nav {
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 18px;
        display: none;
        box-shadow: 0 8px 20px rgba(0, 31, 64, 0.1);
    }

    .site-nav.open { display: flex; }

    .grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .hero { padding: 80px 0; }
    .section { padding: 60px 0; }
    .footer-inner { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .expertise-list { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .dash-stats { grid-template-columns: 1fr; }
    .panel-grid { grid-template-columns: 1fr; }
    .back-to-top { right: 16px; bottom: 84px; }
    .whatsapp-float { right: 16px; }
    .cta-banner { flex-direction: column; text-align: center; padding: 32px 24px; }
    .cta-banner .btn { align-self: center; }
    .info-panel { flex-direction: column; text-align: center; }
    .info-panel .btn { align-self: center; }
}