:root {
    --primary: #0C1929;
    --primary-dark: #060E18;
    --primary-soft: #1E3A5F;
    --primary-tint: #E8EEF6;
    --accent: #F97316;
    --accent-dark: #EA580C;
    --accent-soft: #FFEDD5;
    --secondary: #475569;
    --dark: #0F172A;
    --light: #F8FAFB;
    --surface: #FFFFFF;
    --warning: #F59E0B;
    --warning-soft: #FEF3C7;
    --success: #10B981;
    --info: #0EA5E9;
    --border: #E2E8F0;
    --border-strong: #CBD5E1;
    --text: #0F172A;
    --text-muted: #475569;
    --shadow: 0 4px 16px rgba(11, 37, 69, 0.08);
    --shadow-lg: 0 12px 36px rgba(11, 37, 69, 0.14);
    --radius: 14px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: #f3f6fb;
    overflow-x: hidden; 
    padding-bottom: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

.d-flex { display: flex; }
.justify-content-between { justify-content: space-between; }
.justify-content-center { justify-content: center; }
.align-items-center { align-items: center; }
.gap-3 { gap: 0.4rem; }
.flex-wrap { flex-wrap: wrap; }
.d-block { display: block; }
.d-grid { display: grid; }
.d-none { display: none; }

.text-center { text-align: center; }
.text-muted { color: #6c757d; }
.text-dark { color: var(--dark); }
.text-white { color: #fff; }
.text-danger { color: var(--primary); }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-warning { color: var(--warning); }
.text-white-50 { color: rgba(255,255,255,0.5); }
.text-secondary { color: var(--secondary); }
.text-sm { font-size: 0.875rem; }

.fw-bold { font-weight: 700; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1.5rem; }
.me-1 { margin-right: 0.25rem; }
.me-2 { margin-right: 0.5rem; }
.ms-1 { margin-left: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.pb-3 { padding-bottom: 1rem; }
.ps-3 { padding-left: 1rem; }
.px-4 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-5 { padding-left: 3rem; padding-right: 3rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.w-100 { width: 100%; }
.rounded { border-radius: 0.375rem; }
.rounded-pill { border-radius: 50rem; }
.rounded-circle { border-radius: 50%; }
.shadow-lg { box-shadow: var(--shadow-lg); }
.border-bottom { border-bottom: 1px solid var(--border); }
.border-light { border-color: var(--border); }
.border-0 { border: 0; }
.bg-light { background: var(--light); }
.bg-dark { background: var(--dark); }

.h4 { font-size: 1.5rem; }
.h5 { font-size: 1.25rem; }
.display-6 { font-size: 2.5rem; font-weight: 300; }

.small { font-size: 0.875rem; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-size: 1rem;
}

.btn-danger,
.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 6px 14px rgba(11, 37, 69, 0.18);
}

.btn-danger:hover,
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    color: #fff;
}

.btn-accent {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 6px 14px rgba(249, 115, 22, 0.32);
}

.btn-accent:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    color: #fff;
}

.btn-dark {
    background: var(--dark);
    color: #fff;
}

.btn-dark:hover {
    background: #000;
}

.btn-light {
    background: #fff;
    color: var(--dark);
    border: 1px solid var(--border);
}

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

.btn-outline-danger,
.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-danger:hover,
.btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
}

.btn-outline-accent {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-outline-accent:hover {
    background: var(--accent);
    color: #fff;
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--dark);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-close {
    background: transparent;
    border: none;
    width: 32px;
    height: 32px;
    position: relative;
    cursor: pointer;
}

.btn-close::before,
.btn-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--dark);
    top: 50%;
    left: 50%;
}

.btn-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.btn-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}



.header-top {
    background: linear-gradient(90deg, #061629 0%, #0B2545 55%, #143764 100%);
    color: #cbd5e1;
    font-size: 0.83rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
}

.header-top::after {
    content: '';
    position: absolute;
    inset: auto 0 -1px 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16,185,129,0.5), transparent);
    pointer-events: none;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.5rem 0;
    flex-wrap: wrap;
}

.topbar-info,
.topbar-actions {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.topbar-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #dbe6f7;
    font-weight: 500;
    padding: 0.25rem 0.7rem 0.25rem 0;
    position: relative;
    line-height: 1.2;
}

.topbar-chip + .topbar-chip {
    padding-left: 0.85rem;
    border-left: 1px solid rgba(255,255,255,0.12);
}

.topbar-chip i {
    color: #5fa0ff;
    font-size: 0.82rem;
}

.topbar-chip strong {
    color: #ffffff;
    font-weight: 700;
}

a.topbar-chip { transition: var(--transition); }
a.topbar-chip:hover { color: #ffffff; }
a.topbar-chip:hover i { color: var(--accent); }

.topbar-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.42rem 0.95rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.2px;
    transition: var(--transition);
    white-space: nowrap;
    line-height: 1;
}

.topbar-pill i { font-size: 0.9rem; }

.topbar-pill-wa {
    background: rgba(37,211,102,0.14);
    color: #8ce9b1;
    border: 1px solid rgba(37,211,102,0.35);
}

.topbar-pill-wa:hover {
    background: #25D366;
    color: #ffffff;
    border-color: #25D366;
    box-shadow: 0 4px 14px rgba(37,211,102,0.4);
}

.topbar-pill-cta {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #ffffff;
    border: 1px solid transparent;
    box-shadow: 0 4px 14px rgba(16,185,129,0.28);
}

.topbar-pill-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(16,185,129,0.45);
    color: #ffffff;
}

.site-header {
    background: rgba(255,255,255,0.92);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    box-shadow: 0 6px 24px rgba(11,37,69,0.08);
    border-bottom: 1px solid rgba(11,37,69,0.05);
    position: sticky;
    top: 0;
    z-index: 3000;
    padding: 0.8rem 0;
    width: 100%;
    overflow: visible;
}

.header-spacer {
    display: none;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    width: 100%;
    overflow: visible;
}

.bes-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
    transition: var(--transition);
}

.bes-logo:hover { transform: translateY(-1px); }

.bes-logo-mark {
    position: relative;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    filter: drop-shadow(0 6px 16px rgba(11,37,69,0.18));
}

.bes-logo-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.bes-logo-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 9px;
    box-shadow: 0 3px 8px rgba(16,185,129,0.4);
}

.bes-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.bes-logo-title {
    font-size: 1.32rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
    display: inline-flex;
    align-items: baseline;
    gap: 0.35rem;
    white-space: nowrap;
}

.bes-logo-title em {
    font-style: normal;
    font-weight: 800;
    color: var(--accent);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bes-logo-sub {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-top: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.bes-logo-sub i { color: var(--accent); font-size: 0.7rem; }

.bes-logo--light .bes-logo-title {
    color: #ffffff;
}

.bes-logo--light .bes-logo-title em {
    background: linear-gradient(135deg, #34D9A4 0%, #10B981 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #34D9A4;
}

.bes-logo--light .bes-logo-sub {
    color: rgba(220,230,245,0.75);
}

.bes-logo--light .bes-logo-sub i {
    color: #34D9A4;
}

.bes-logo--light .bes-logo-badge {
    border-color: rgba(11,37,69,0.95);
    box-shadow: 0 3px 10px rgba(16,185,129,0.5);
}

.bes-logo--lg {
    gap: 1rem;
}

.bes-logo--lg .bes-logo-mark {
    width: 60px;
    height: 60px;
}

.bes-logo--lg .bes-logo-badge {
    width: 24px;
    height: 24px;
    font-size: 10px;
    bottom: -5px;
    right: -5px;
}

.bes-logo--lg .bes-logo-title {
    font-size: 1.45rem;
}

.bes-logo--lg .bes-logo-sub {
    font-size: 0.7rem;
    letter-spacing: 1.6px;
    margin-top: 6px;
}

.bes-logo--stacked {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

.bes-logo--stacked .bes-logo-text {
    align-items: flex-start;
}

.bes-logo--stacked .bes-logo-title {
    white-space: normal;
    flex-wrap: wrap;
    line-height: 1.1;
}

.bes-logo--stacked .bes-logo-sub {
    margin-top: 4px;
}

.footer-card-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-card-brand .bes-logo {
    margin-bottom: 0.25rem;
}

.not-found-logo {
    display: flex;
    justify-content: center;
}

.not-found-logo .bes-logo--stacked {
    align-items: center;
}

.not-found-logo .bes-logo--stacked .bes-logo-text {
    align-items: center;
    text-align: center;
}

.logo-mark {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    letter-spacing: -0.5px;
    box-shadow: var(--shadow);
    font-size: 1.1rem;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(11,37,69,0.045);
    border: 1px solid rgba(11,37,69,0.06);
    padding: 0.32rem;
    border-radius: 999px;
    position: relative;
    z-index: 3100;
    overflow: visible;
}

.nav-link {
    font-weight: 600;
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    font-size: 0.92rem;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.nav-link > i:not(.nav-caret) {
    font-size: 0.82rem;
    color: var(--secondary);
    transition: var(--transition);
}

.nav-link .nav-caret {
    font-size: 0.65rem;
    margin-left: 0.15rem;
    opacity: 0.7;
    transition: transform 0.25s ease;
}

.nav-link::after { display: none; }

.nav-link:hover,
.nav-link.active,
.has-dropdown:hover > .nav-link,
.has-dropdown.open > .nav-link {
    background: #ffffff;
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(11,37,69,0.1);
}

.nav-link:hover > i:not(.nav-caret),
.nav-link.active > i:not(.nav-caret),
.has-dropdown:hover > .nav-link > i:not(.nav-caret) {
    color: var(--accent);
}

.has-dropdown:hover .nav-link .nav-caret,
.has-dropdown.open .nav-link .nav-caret {
    transform: rotate(180deg);
}

.has-dropdown {
    position: relative;
    overflow: visible;
}

.has-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown.open .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translate(-50%, 6px);
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(11,37,69,0.18), 0 2px 8px rgba(11,37,69,0.06);
    border: 1px solid rgba(11,37,69,0.06);
    border-radius: 16px;
    padding: 0.7rem;
    min-width: 320px;
    max-width: 680px;
    max-height: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 4000;
    margin-top: 0;
    pointer-events: auto;
}

.mega-menu::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 14px;
    height: 14px;
    background: #ffffff;
    border-left: 1px solid rgba(11,37,69,0.06);
    border-top: 1px solid rgba(11,37,69,0.06);
    border-top-left-radius: 3px;
}

.has-dropdown:hover .mega-menu,
.has-dropdown.open .mega-menu,
.has-dropdown:focus-within .mega-menu {
    transform: translate(-50%, 0);
}

.compact-menu {
    padding: 0.55rem;
    min-width: 340px;
    max-width: 720px;
}

.compact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem;
}

.compact-grid .menu-item {
    padding: 0.55rem 0.7rem;
    border-radius: 10px;
    gap: 0.55rem;
}

.compact-grid .menu-item span {
    font-size: 0.82rem;
}

.menu-item {
    border: 1px solid transparent;
    background: #ffffff;
}

.menu-item:hover {
    background: linear-gradient(135deg, #f6f9ff 0%, #eef3fc 100%);
    border-color: rgba(11,37,69,0.08);
    transform: translateY(-1px);
}

.menu-item-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--primary-tint), #ffffff);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.menu-item:hover .menu-item-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-soft));
    color: #ffffff;
}

.menu-item strong {
    font-size: 0.88rem;
    color: var(--dark);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.6rem 0.7rem;
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.menu-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 8px;
}

.menu-item-content {
    flex: 1;
    min-width: 0;
}

.menu-item-content strong {
    display: block;
    color: var(--dark);
    margin-bottom: 0.15rem;
    line-height: 1.2;
}

.menu-item-content span {
    color: var(--secondary);
    font-size: 0.78rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.4rem 1.1rem 0.4rem 0.42rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-soft) 100%);
    color: #ffffff;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(11,37,69,0.22);
    transition: var(--transition);
    text-decoration: none;
    font-family: inherit;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(11,37,69,0.3);
    color: #ffffff;
}

.header-cta-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.98rem;
    box-shadow: inset 0 0 0 2px rgba(255,255,255,0.18);
    flex-shrink: 0;
    animation: pulse-ring 2.4s ease-out infinite;
}

@keyframes pulse-ring {
    0%   { box-shadow: inset 0 0 0 2px rgba(255,255,255,0.18), 0 0 0 0 rgba(16,185,129,0.55); }
    70%  { box-shadow: inset 0 0 0 2px rgba(255,255,255,0.18), 0 0 0 10px rgba(16,185,129,0); }
    100% { box-shadow: inset 0 0 0 2px rgba(255,255,255,0.18), 0 0 0 0 rgba(16,185,129,0); }
}

.header-cta-text {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.1;
    text-align: left;
}

.header-cta-text small {
    font-size: 0.65rem;
    font-weight: 500;
    opacity: 0.85;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.header-cta-text strong {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.header-btn {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.5rem;
    background: var(--primary);
    color: #fff;
    border-radius: 50rem;
    font-weight: 600;
    transition: var(--transition);
}

.header-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: var(--transition);
    box-shadow: 0 2px 6px rgba(11,37,69,0.06);
}

.mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.mobile-toggle:hover span { background: #ffffff; }



.brand-marquee {
    background: var(--light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 0;
    margin: 0;
    padding: 0.4rem 0;
}

.brand-marquee-inner {
    display: inline-flex;
    gap: 1.5rem;
    align-items: center;
    animation: brand-marquee 26s linear infinite;
    width: max-content;
}

.brand-marquee-item {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(31, 75, 153, 0.18);
    background: #f7f9fd;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: var(--transition);
}

.brand-marquee-item:hover {
    background: #eef3ff;
    border-color: rgba(31, 75, 153, 0.35);
    color: var(--primary);
}

@keyframes brand-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}



.mobile-menu-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1999;
    box-shadow: -4px 0 16px rgba(0,0,0,0.1);
}

.mobile-menu-container.active {
    right: 0;
}


.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1rem;
    background: #fff;
    border-bottom: 1px solid #e9ecef;
}


.mobile-menu-body {
    flex: 1;
    overflow-y: auto;
    background: #fff;
    padding-bottom: 80px; 
}


.mobile-menu-link {
    display: block;
    padding: 1rem 1.5rem;
    color: #212529;
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 1px solid #e9ecef;
    transition: background 0.2s;
}

.mobile-menu-link:active {
    background: #f8f9fa;
}


.mobile-dropdown {
    border-bottom: 1px solid #e9ecef;
}

.mobile-dropdown-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: background 0.2s;
    user-select: none;
    background: #fff;
}

.mobile-dropdown-trigger:active, .mobile-dropdown-trigger.active {
    background: #f8f9fa;
}

.mobile-dropdown-trigger span {
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
}

.mobile-dropdown-trigger i {
    transition: transform 0.3s;
    color: #dc3545;
    font-size: 0.875rem;
}

.mobile-dropdown-trigger.active i {
    transform: rotate(180deg);
}


.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: #f8f9fa;
}

.mobile-dropdown-content.active {
    max-height: 1200px;
}


.mobile-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff;
}

.mobile-menu-item-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 0.5rem;
    border-right: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    color: #495057;
    transition: all 0.2s;
    height: 100%;
}

.mobile-menu-item-grid:active {
    background: #f8f9fa;
    color: #dc3545;
}

.mobile-menu-item-grid i {
    font-size: 1.5rem;
    color: #dc3545;
    margin-bottom: 0.5rem;
}

.mobile-menu-item-grid span {
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.3;
}


.mobile-brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 1rem;
    background: #f8f9fa;
}

.mobile-brand-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.2s;
}

.mobile-brand-item:active {
    background: #dc3545;
    color: #fff;
    transform: scale(0.98);
}

.mobile-brand-item img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.mobile-brand-item span {
    font-size: 0.875rem;
    font-weight: 600;
}



.hero-wrapper {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    overflow: hidden;
    width: 100%;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31,75,153,0.9), rgba(15,26,43,0.85));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: #212529;
    width: 100%;
}

.breadcrumb-area {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(12px);
    padding: 0.75rem 1.25rem;
    border-radius: 50rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    border: 2px solid rgba(255,255,255,0.4);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.breadcrumb-area a, .breadcrumb-area span, .breadcrumb-area i {
    color: #fff !important;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800 !important;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    text-shadow: 0 4px 12px rgba(0,0,0,0.6); 
    color: #fff !important;
    letter-spacing: -0.5px;
}

.hero-title span {
    color: #fff !important;
    text-shadow: none;
    font-weight: 800 !important;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 720px;
    margin: 0 0 1.5rem;
    line-height: 1.7;
    color: #fff !important;
    font-weight: 500 !important;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
    opacity: 0.95 !important;
}

.hero-headline {
    display: grid;
    gap: 1rem;
    max-width: 900px;
}

.hero-kicker {
    color: #9ec5ff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin: 0;
}

.hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero-badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.15);
    color: #fff;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(6px);
    font-weight: 700;
}

.hero-stats {
    max-width: 900px;
    margin: 3rem auto 0;
}

.stat-box {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    height: 100%;
}

.stat-box:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2rem;
    color: #ffc107 !important;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.stat-box h5 {
    color: #fff !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.stat-box small {
    color: #eee !important;
    font-weight: 500 !important;
}



.mobile-sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    display: none;
    background: #fff;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
}

.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    gap: 0.25rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.sticky-btn i {
    font-size: 1.25rem;
}

.btn-call {
    background: #dc3545;
    color: #fff;
}

.btn-call:active {
    background: #c82333;
}

.btn-appointment {
    background: #212529;
    color: #fff;
}

.btn-appointment:active {
    background: #000;
}



.main-layout {
    padding: 4rem 0;
    background: #fafafa;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-12 { width: 100%; padding: 0 15px; }
.col-6 { width: 50%; padding: 0 15px; }
.col-md-6 { width: 100%; padding: 0 15px; }
.col-lg-4 { width: 100%; padding: 0 15px; }
.col-lg-8 { width: 100%; padding: 0 15px; }

.g-4 { margin: 0 -1rem; }
.g-4 > * { padding: 0 1rem; margin-bottom: 2rem; }

.g-5 { margin: 0 -1.5rem; }
.g-5 > * { padding: 0 1.5rem; }

.service-list {
    display: grid;
    gap: 1rem;
    margin-bottom: 3rem;
}

.service-list-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.section-kicker {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.35rem;
}

.service-list-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.25rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: center;
}

.service-list-card:hover {
    box-shadow: var(--shadow-lg);
}

.service-list-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.service-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow);
}

.service-list-title {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dark);
}

.service-list-desc {
    margin: 0;
    color: var(--secondary);
    font-size: 0.95rem;
}

.service-list-actions {
    display: flex;
    gap: 0.5rem;
}

.brand-logos-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.mini-brand-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.6;
    transition: var(--transition);
}

.mini-brand-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}



.cta-section { margin: 4rem 0; }

.cta-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: var(--shadow-lg);
}

.cta-content {
    padding: 3rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff !important;
}

.cta-content p {
    margin-bottom: 2rem;
    color: #fff !important;
    opacity: 0.95;
}

.cta-image {
    height: 100%;
    min-height: 300px;
}

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

.cta-card-inline {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 3rem;
    border-radius: var(--radius);
    text-align: center;
    margin-top: 2rem;
}

.cta-card-inline * { color: #fff !important; }

.full-cta .cta-card {
    width: 100%;
}

.full-cta .cta-card {
    grid-template-columns: 1.2fr 0.8fr;
}

.full-cta .cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(var(--radius) - 4px);
}

.cta-section.full-cta {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 3rem 0;
}

.cta-section.full-cta .cta-card {
    background: transparent;
    box-shadow: none;
}

.cta-section.full-cta .cta-content h2,
.cta-section.full-cta .cta-content p {
    color: #fff;
}

.home-services {
    margin-bottom: 3rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: grid;
}

.service-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #eef2f7;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-body {
    padding: 1.25rem;
    display: grid;
    gap: 0.75rem;
}

.service-title-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
}

.service-title-row i {
    color: var(--primary);
    font-size: 1.1rem;
}

.service-body h3 {
    font-size: 1.05rem;
    margin: 0;
}

.service-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.home-cities {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2.5rem;
}

.home-two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.home-col {
    min-width: 0;
}

.section-head.split {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.city-note {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--light);
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.city-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.city-card-modern {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: grid;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.city-card-modern:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(11, 37, 69, 0.12);
}

.city-card-modern.is-hidden {
    display: none;
}

.city-grid-modern.is-expanded .city-card-modern.is-hidden {
    display: grid;
}

.city-grid-more {
    display: flex;
    justify-content: center;
    margin-top: 1.25rem;
}

.city-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 1.4rem;
    background: #fff;
    color: var(--primary);
    border: 1.5px solid var(--border-strong);
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    transition: var(--transition);
}

.city-more-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.city-more-btn i {
    transition: transform 0.25s ease;
    font-size: 0.78rem;
}

.city-more-btn[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.city-card-body {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1rem;
    font-weight: 700;
    font-size: 0.95rem;
}

.city-cta {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
}

.city-card-body i {
    color: var(--primary);
}

.reviews-panel {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.reviews-panel .reviewSwiper {
    flex: 1;
    width: 100%;
}

.home-cities .display-6,
.reviews-panel .display-6 {
    font-size: 2rem;
}

.reviews-panel .review-card {
    box-shadow: var(--shadow);
    border-radius: var(--radius);
}

.cities-section { margin: 4rem 0; }

.cities-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.5rem;
    align-items: stretch;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.cities-grid.cities-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cities-map-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cities-map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 280px;
    border: 0;
    border-radius: calc(var(--radius) - 2px);
}

.city-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    min-height: 180px;
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.city-card i {
    font-size: 2rem;
    color: #ffc107;
    z-index: 1;
}

.city-card span {
    font-weight: 800;
    font-size: 1.05rem;
    z-index: 1;
}

.city-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.65));
    border-radius: var(--radius);
    transition: opacity 0.3s;
}

.city-card:hover::after {
    opacity: 0.5;
}



.gallery-section { margin: 4rem 0; }


.gallerySwiper, .reviewSwiper {
    padding-bottom: 3rem;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow);
}

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

.reviews-section { margin: 4rem 0; }

.review-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    height: auto;
    min-height: 250px;
    max-width: 600px;
    margin: 0 auto;
}

.service-visual {
    margin-top: 2rem;
}

.service-visual-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-visual-card img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.stars {
    color: var(--warning);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.review-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.review-author {
    display: block;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.review-date {
    display: block;
    font-size: 0.875rem;
    color: var(--secondary);
}

.swiper-pagination-bullet { background: var(--primary); }



.content-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.article-header {
    position: relative;
    height: 400px;
}

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

.article-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem;
    color: #fff;
}

.article-body { padding: 2rem; }

.dynamic-content-wrapper {
    position: relative;
    overflow: hidden;
    max-height: 600px;
    transition: max-height 0.5s ease;
}

.dynamic-content-wrapper.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, #fff, transparent);
}

.dynamic-content-wrapper.expanded { 
    max-height: none; 
}

.dynamic-content-wrapper.expanded::after { 
    display: none; 
}


@media (min-width: 992px) {
    .dynamic-content-wrapper {
        max-height: none !important;
        overflow: visible !important;
    }
    
    .dynamic-content-wrapper.collapsed::after {
        display: none !important;
    }
}

.read-more-trigger {
    text-align: center;
    padding: 1rem;
    cursor: pointer;
    color: var(--primary);
    font-weight: 700;
    display: flex; 
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
    background: var(--light);
    border-radius: 8px;
    margin-top: 1rem;
}


@media (min-width: 992px) {
    .read-more-trigger {
        display: none !important;
    }
}

.read-more-trigger:hover { background: #e9ecef; }
.read-more-trigger i { transition: transform 0.3s; }
.read-more-trigger.active i { transform: rotate(180deg); }

.mismatch-card {
    background: #fff5f5;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: var(--radius);
    border: 2px solid var(--primary);
}

.mismatch-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.not-found-body {
    background: var(--light);
}

.not-found-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3.5rem 1.5rem;
}

.not-found-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    max-width: 760px;
    width: 100%;
    padding: 3rem;
    text-align: center;
    border: 1px solid var(--border);
}

.not-found-eyebrow {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 0.75rem;
}

.not-found-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.not-found-text {
    color: #5c6b80;
    margin-bottom: 1.75rem;
}

.not-found-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.not-found-search input {
    padding: 0.85rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    font-size: 1rem;
}

.not-found-search button {
    padding: 0.85rem 1.25rem;
    border-radius: 10px;
    border: none;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
}

.not-found-actions {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .not-found-card {
        padding: 2rem 1.5rem;
    }
    .not-found-title { font-size: 1.6rem; }
    .not-found-search {
        grid-template-columns: 1fr;
    }
}

.sidebar-widget {
  
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


.brand-list { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 0.75rem; 
}
.brand-link {
    display: flex;
    align-items: center;
    gap: 0.5rem; 
    padding: 0.5rem;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: var(--transition);
    flex-direction: column; 
    text-align: center;
    border: 1px solid var(--border);
}
.brand-link:hover { background: var(--light); border-color: var(--primary); }
.brand-link img { width: 32px; height: 32px; object-fit: contain; }
.brand-link span { font-size: 0.85rem; }

.location-list { display: flex; flex-direction: column; gap: 0.5rem; }
.location-link {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
}
.location-link:hover, .location-link.active { background: var(--primary); color: #fff; }



.site-footer {
    background: linear-gradient(135deg, #0f1a2b, #142c4f);
    color: #dce6f5;
    padding: 4.5rem 0 2.5rem;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(800px at 20% 20%, rgba(255,255,255,0.06), transparent),
                radial-gradient(600px at 80% 0%, rgba(255,255,255,0.05), transparent);
    pointer-events: none;
}

.footer-cta {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    box-shadow: 0 18px 48px rgba(0,0,0,0.15);
    position: relative;
    z-index: 1;
}

.footer-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    color: #9ec5ff;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.footer-cta-title {
    color: #fff;
    margin: 0 0 0.4rem;
    font-size: 1.75rem;
    font-weight: 800;
}

.footer-cta-text {
    color: #dce6f5;
    margin: 0;
    opacity: 0.9;
}

.footer-cta-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-cta-btn {
    min-width: 210px;
    box-shadow: var(--shadow);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
}

.footer-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-text {
    color: #dce6f5;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.footer-links {
    display: grid;
    gap: 0.5rem;
}

.footer-link {
    color: rgba(220,230,245,0.8);
    transition: var(--transition);
    font-weight: 600;
}

.footer-link:hover {
    color: #fff;
    padding-left: 0.35rem;
}

.footer-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.badge-dot {
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 0.85rem;
    border: 1px solid rgba(255,255,255,0.08);
}

.footer-mark {
    margin-bottom: 0.5rem;
    width: 52px;
    height: 52px;
}

.footer-contact {
    display: grid;
    gap: 0.65rem;
}

.contact-row {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 0.6rem;
    align-items: center;
    color: #dce6f5;
}

.contact-row a { color: #fff; font-weight: 700; }
.contact-row i { color: #9ec5ff; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(220,230,245,0.7);
    position: relative;
    z-index: 1;
}

.footer-highlights {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.footer-highlight-item {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    padding: 0.3rem 0;
    background: transparent;
    border: none;
    border-radius: 0;
    color: #fff;
}

.footer-highlight-item i {
    color: #9ec5ff;
    font-size: 1.1rem;
}

.footer-highlight-item strong {
    display: block;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.footer-highlight-item span {
    display: block;
    color: rgba(220,230,245,0.8);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .topbar-hide-md { display: none !important; }
    .topbar { padding: 0.4rem 0; gap: 0.5rem; }
    .topbar-pill { padding: 0.35rem 0.7rem; font-size: 0.72rem; }
    .topbar-pill-wa span { display: none; }
    .header-top { font-size: 0.78rem; }

    .footer-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-cta-actions {
        width: 100%;
    }
    .footer-cta-btn {
        width: 100%;
    }
}



@media (min-width: 768px) {
    .col-md-6 { width: 50%; }
    .d-md-block { display: block !important; }
}

@media (min-width: 992px) {
    .col-lg-2 { width: 16.666%; }
    .col-lg-4 { width: 33.333%; }
    .col-lg-8 { width: 66.666%; }
    .d-lg-flex { display: flex !important; }

    
    .heroStatsSwiper .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        transform: none !important;
    }
    .heroStatsSwiper .swiper-slide {
        width: auto !important;
        height: auto !important;
    }

    
    .gallerySwiper .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        transform: none !important;
    }
    .gallerySwiper .swiper-slide {
        width: auto !important;
        height: auto !important;
        margin-right: 0 !important;
    }
    .gallerySwiper .swiper-pagination {
        display: none;
    }
}

@media (max-width: 991px) {
    .desktop-nav { display: none; }
    .mobile-toggle { display: flex; }
    .topbar-hide-lg { display: none !important; }
    .header-cta { padding: 0.4rem; }
    .header-cta-text { display: none; }

    .hero-title { font-size: 2rem; }
    
    .cta-card { grid-template-columns: 1fr; }
    .cta-image { min-height: 250px; }
    
    .cities-layout { grid-template-columns: 1fr; }
    .cities-map-card img { max-height: 220px; }
    
    .d-sm-block { display: none !important; }
    .header-top-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .section-head.split {
        flex-direction: column;
        align-items: flex-start;
    }
    .city-grid-modern {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .home-two-col {
        grid-template-columns: 1fr;
    }

    .brand-strip-inner {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .brand-grid { justify-content: flex-start; }
    
    
    .mobile-sticky-footer { display: flex; }
    body { padding-bottom: 60px; }

    
    .sidebar-widget .brand-list,
    .sidebar-widget .location-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

.sidebar-widget.compact .location-list {
    max-height: 260px;
    overflow: auto;
    padding-right: 0.25rem;
}

.sidebar-widget.compact .location-link {
    padding: 0.45rem 0.5rem;
    font-size: 0.9rem;
}

.sidebar-widget.compact .sidebar-select {
    min-height: 260px;
    width: 100%;
}

.sidebar-select-wrap {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 0.75rem;
    border: 1px solid var(--border);
    width: 100%;
    box-sizing: border-box;
    display: block;
    max-width: 100%;
}

.sidebar-select {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    border: 1px solid #d4dde8;
    border-radius: calc(var(--radius) - 8px);
    padding: 0.65rem 0.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    outline: none;
    background: #f8fafc;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    box-shadow: inset 0 1px 2px rgba(15, 26, 43, 0.06);
    line-height: 1.3;
}

.sidebar-widget .sidebar-select-wrap,
.sidebar-widget .sidebar-select {
    width: 100% !important;
}

.sidebar-select option {
    padding: 0.6rem 0.75rem;
    font-weight: 500;
    line-height: 1.3;
}

.sidebar-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(31, 75, 153, 0.15), inset 0 1px 2px rgba(15, 26, 43, 0.08);
}

.sidebar-widget.compact .widget-title {
    margin-bottom: 0.9rem;
}

.sidebar-widget.compact .sidebar-select {
    background-image: linear-gradient(180deg, rgba(31, 75, 153, 0.04), rgba(31, 75, 153, 0));
}

.sidebar-widget.compact .sidebar-select::-webkit-scrollbar {
    width: 8px;
}

.sidebar-widget.compact .sidebar-select::-webkit-scrollbar-thumb {
    background: rgba(31, 75, 153, 0.35);
    border-radius: 10px;
}

.sidebar-widget.compact .sidebar-select::-webkit-scrollbar-track {
    background: rgba(15, 26, 43, 0.06);
    border-radius: 10px;
}
    
    .location-link {
        font-size: 0.9rem;
        padding: 0.5rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    
    .header-inner {
        gap: 0.5rem;
        padding-right: 0;
    }
    .logo-area {
        gap: 0.5rem;
        font-size: 1.25rem;
    }
    
    .site-header .container {
        padding-right: 15px; 
    }
}

@media (max-width: 576px) {
    .bes-logo { gap: 0.6rem; }
    .bes-logo-mark { width: 44px; height: 44px; }
    .bes-logo-badge { width: 18px; height: 18px; font-size: 8px; bottom: -3px; right: -3px; }
    .bes-logo-title { font-size: 1.1rem; gap: 0.25rem; }
    .bes-logo-sub { display: none; }
    .header-inner { gap: 0.6rem; }
    .topbar-actions { gap: 0.3rem; }
    .topbar-pill-cta span { display: none; }
    .topbar-pill-cta { padding: 0.42rem 0.55rem; }
    .topbar-pill i { font-size: 1rem; }

    .service-grid { grid-template-columns: 1fr; }
    .home-cities { padding: 1.5rem; }
    .city-grid-modern { grid-template-columns: 1fr; }
    .reviews-panel { padding: 1.5rem; }
    .cities-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item { height: 200px; }
    
    
    .logo-area img { max-width: 175px; }
}


@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.pulse-anim { animation: pulse 2s infinite; }


.service-article {
    color: var(--dark);
    line-height: 1.8;
}

.article-hero {
    margin-bottom: 3rem;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.article-subtitle {
    font-size: 1.125rem;
    color: var(--secondary);
    font-weight: 500;
}

.article-section {
    margin-bottom: 3rem;
}

.section-content {
    max-width: 100%;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary);
    display: inline-block;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin: 2rem 0 1.5rem;
}

.text-paragraph {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.text-paragraph.final-cta {
    font-weight: 600;
    color: var(--dark);
    background: var(--light);
    padding: 1.5rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    margin-top: 2rem;
}


.brand-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
    background: var(--light);
    padding: 2rem;
    border-radius: var(--radius);
    margin: 2rem 0;
    box-shadow: var(--shadow);
}

.brand-img {
    width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
}

.brand-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.brand-info p {
    color: var(--secondary);
    line-height: 1.6;
    margin: 0;
}


.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 1rem;
    align-items: start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    border-left: 3px solid var(--primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.feature-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.feature-list li i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 0.25rem;
}

.feature-list li strong {
    display: block;
    font-size: 1.0625rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.feature-list li span {
    display: block;
    color: var(--secondary);
    line-height: 1.6;
}


.fault-list-card {
    background: linear-gradient(135deg, #fff5f5, #fff);
    padding: 2rem;
    border-radius: var(--radius);
    border: 2px solid #ffe0e0;
    margin: 2rem 0;
}

.fault-list-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.fault-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.fault-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #ffcccb;
    transition: var(--transition);
}

.fault-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.1);
}

.fault-item i {
    font-size: 1.25rem;
    color: var(--warning);
    flex-shrink: 0;
}

.fault-item span {
    font-size: 0.9375rem;
    color: #555;
    line-height: 1.5;
}


.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.process-step {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 0.9375rem;
    color: var(--secondary);
    line-height: 1.6;
    margin: 0;
}


@media (max-width: 768px) {
    .article-title {
        font-size: 1.75rem;
    }

    .hero-content { text-align: center; }
    .hero-headline { justify-items: center; }
    .hero-actions { justify-content: center; }
    .hero-badges { justify-content: center; }
    .service-list-card {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 1.25rem;
    }

    .brand-showcase {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .brand-img {
        margin: 0 auto;
    }

    .feature-list li {
        grid-template-columns: 35px 1fr;
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .feature-list li i {
        font-size: 1.25rem;
    }

    .fault-grid {
        grid-template-columns: 1fr;
    }

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

    .text-paragraph {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .article-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .text-paragraph {
        font-size: 1rem;
    }

    .fault-list-card {
        padding: 1.5rem;
    }

    .process-step {
        padding: 1.5rem 1rem;
    }
}

/* ============================================ */
/*  V2 COMPONENTS - Lacivert/Yesil Design        */
/* ============================================ */

/* ---- 1. Brand Disclaimer Bar (Misrepresentation Policy Compliance) ---- */
.brand-disclaimer-bar {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border-top: 1px solid #F59E0B;
    border-bottom: 1px solid #F59E0B;
    padding: 0.85rem 0;
    color: #78350F;
    font-size: 0.92rem;
    line-height: 1.55;
    position: relative;
    z-index: 5;
}
.brand-disclaimer-bar .bdb-inner {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}
.brand-disclaimer-bar i {
    color: #B45309;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}
.brand-disclaimer-bar p {
    margin: 0;
    color: #7C2D12;
}
.brand-disclaimer-bar strong {
    color: #7C2D12;
    font-weight: 700;
}
.brand-disclaimer-bar em {
    font-style: normal;
    border-bottom: 1px dashed #B45309;
    padding-bottom: 1px;
}

/* ---- 2. Trust Stripe (Hero Below) ---- */
.trust-stripe {
    background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
    border-top: 1px solid rgba(11, 37, 69, 0.06);
    border-bottom: 1px solid rgba(11, 37, 69, 0.06);
    padding: 1.6rem 0;
    margin-top: -1px;
    position: relative;
}
.trust-stripe::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(0, 168, 89, 0.06) 0%, transparent 35%),
        radial-gradient(circle at 90% 80%, rgba(11, 37, 69, 0.05) 0%, transparent 40%);
    pointer-events: none;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 1;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    padding: 0.95rem 1.1rem;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(11, 37, 69, 0.07);
    box-shadow: 0 1px 2px rgba(11, 37, 69, 0.03), 0 4px 16px rgba(11, 37, 69, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}
.trust-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent, #00a859), var(--primary, #0b2545));
    opacity: 0;
    transition: opacity 0.25s ease;
}
.trust-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 37, 69, 0.05), 0 12px 28px rgba(11, 37, 69, 0.09);
    border-color: rgba(0, 168, 89, 0.25);
}
.trust-item:hover::before { opacity: 1; }
.trust-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent, #00a859) 0%, #00874a 100%);
    color: #ffffff;
    border-radius: 12px;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 6px 14px rgba(0, 168, 89, 0.25);
}
.trust-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    min-width: 0;
}
.trust-text strong {
    font-size: 1rem;
    color: var(--text, #0b2545);
    font-weight: 700;
    letter-spacing: -0.01em;
}
.trust-text span {
    font-size: 0.82rem;
    color: var(--text-muted, #6b7c93);
    margin-top: 2px;
}
@media (max-width: 991px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
    }
}
@media (max-width: 540px) {
    .trust-stripe { padding: 1.1rem 0; }
    .trust-grid { gap: 0.7rem; }
    .trust-item {
        gap: 0.7rem;
        padding: 0.75rem 0.85rem;
        border-radius: 12px;
    }
    .trust-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        border-radius: 10px;
    }
    .trust-text strong { font-size: 0.9rem; }
    .trust-text span { font-size: 0.72rem; }
}

/* ---- 3. Cookie Consent Banner ---- */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(11, 37, 69, 0.97);
    color: #fff;
    box-shadow: 0 -12px 32px rgba(11, 37, 69, 0.28);
    backdrop-filter: blur(10px);
    padding: 1.1rem 0;
    opacity: 0;
    transform: translateY(100%);
    transition:
        transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.6s ease;
    pointer-events: none;
}
.cookie-banner.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.cookie-banner.is-fading {
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
}
.cookie-banner[hidden] {
    display: none !important;
}
.cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.cookie-text {
    flex: 1;
    min-width: 240px;
}
.cookie-text strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}
.cookie-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.88rem;
    line-height: 1.5;
}
.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}
.cookie-text a:hover {
    color: #6EE7B7;
}
.cookie-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}
@media (max-width: 640px) {
    .cookie-inner {
        flex-direction: column;
        align-items: stretch;
    }
    .cookie-actions {
        justify-content: stretch;
    }
    .cookie-actions .btn {
        flex: 1;
    }
}

/* ---- 4. Floating Call Button (Mobile) ---- */
.floating-call-btn {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 998;
    background: var(--accent);
    color: #fff;
    border-radius: 50rem;
    padding: 0.9rem 1.4rem;
    display: none;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.38);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
}
.floating-call-btn:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 16px 32px rgba(16, 185, 129, 0.45);
}
.floating-call-btn i {
    animation: pulse-call 1.4s ease-in-out infinite;
}
@keyframes pulse-call {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.18); }
}
@media (max-width: 992px) {
    .floating-call-btn {
        display: inline-flex;
    }
    .floating-call-btn span { display: none; }
    .floating-call-btn {
        width: 56px; height: 56px;
        padding: 0;
        justify-content: center;
        font-size: 1.3rem;
    }
}

/* ---- 5. FAQ Accordion v2 ---- */
.faq-accordion-v2 {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
}
.faq-item-v2 {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item-v2[open] {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(11, 37, 69, 0.08);
}
.faq-item-v2 summary {
    list-style: none;
    cursor: pointer;
    padding: 1.05rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--text);
    font-size: 1.02rem;
    line-height: 1.4;
}
.faq-item-v2 summary::-webkit-details-marker {
    display: none;
}
.faq-item-v2 summary i {
    color: var(--primary);
    font-size: 0.85rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.faq-item-v2[open] summary i {
    transform: rotate(180deg);
}
.faq-item-v2 summary:hover {
    color: var(--primary);
}
.faq-answer-v2 {
    padding: 0 1.25rem 1.25rem;
    border-top: 1px solid var(--border);
    margin-top: 0.25rem;
    color: var(--text-muted);
    line-height: 1.65;
}
.faq-answer-v2 p {
    margin: 1rem 0 0;
}

/* ---- 6. Static Pages (Hakkımızda, KVKK, Hizmet Şartları, vb.) ---- */
.hero-wrapper-static {
    min-height: 320px;
}
.hero-wrapper-static .hero-bg-img {
    filter: brightness(0.55);
}
.static-page {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}
.static-content .static-section {
    margin-bottom: 2rem;
}
.static-content .static-section:last-of-type {
    margin-bottom: 0;
}
.static-content h2 {
    color: var(--primary);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
    line-height: 1.3;
}
.static-content h3 {
    color: var(--text);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 1.25rem 0 0.6rem;
}
.static-content p {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 0.85rem;
}
.static-content ul, .static-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    line-height: 1.85;
}
.static-content ul li, .static-content ol li {
    margin-bottom: 0.35rem;
}
.static-content strong { color: var(--text); }
.static-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.static-content a:hover {
    color: var(--accent);
}
.static-legal h2 {
    font-size: 1.35rem;
    border-bottom: 2px solid var(--primary-tint);
    padding-bottom: 0.5rem;
}
.static-note {
    background: var(--primary-tint);
    border-left: 4px solid var(--primary);
    padding: 0.85rem 1rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 0.92rem;
    color: var(--primary-dark) !important;
    margin: 1rem 0 !important;
}
.static-note i {
    color: var(--primary);
    margin-right: 0.4rem;
}
.static-feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}
.static-feature-list li {
    display: flex;
    gap: 0.85rem;
    padding: 0.85rem;
    background: var(--light);
    border-radius: var(--radius);
    margin-bottom: 0.6rem;
}
.static-feature-list li i {
    color: var(--accent);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.static-feature-list li strong {
    display: inline;
    color: var(--text);
    margin-right: 0.3rem;
}

/* ---- 7. Disclaimer Card ---- */
.disclaimer-card {
    background: #fff;
    border: 1px solid var(--border);
    border-left: 4px solid var(--warning);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    margin: 1.5rem 0;
}
.disclaimer-card h3 {
    color: var(--warning) !important;
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.disclaimer-card p {
    margin: 0;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.65;
}
.warning-card {
    background: linear-gradient(135deg, #FEF3C7 0%, #FFF7E0 100%);
    border-color: #FCD34D;
    border-left-color: #F59E0B;
}
.warning-card h3 { color: #92400E !important; }
.warning-card p { color: #7C2D12; }

/* ---- 8. Legal / Contact Grids ---- */
.legal-grid {
    background: var(--light);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin: 1rem 0;
}
.legal-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1rem;
    padding: 0.6rem 0;
    border-bottom: 1px dashed var(--border);
}
.legal-row:last-child { border-bottom: none; }
.legal-row span {
    color: var(--text-muted);
    font-size: 0.92rem;
}
.legal-row strong {
    color: var(--text);
    font-weight: 600;
    word-break: break-word;
}
@media (max-width: 640px) {
    .legal-row {
        grid-template-columns: 1fr;
        gap: 0.2rem;
    }
}

.region-pills {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}
.region-pill {
    background: var(--primary-tint);
    color: var(--primary);
    padding: 0.55rem 1rem;
    border-radius: 50rem;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid transparent;
    text-decoration: none;
}
.region-pill:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}
.region-pill i { margin-right: 0.4rem; }

/* ---- 9. Contact Page Grids ---- */
.contact-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}
@media (max-width: 768px) {
    .contact-grid-v2 { grid-template-columns: 1fr; }
}
.contact-card-v2 {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: left;
    transition: var(--transition);
}
.contact-card-v2:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 28px rgba(11, 37, 69, 0.08);
    transform: translateY(-3px);
}
.contact-card-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-soft) 100%);
    color: #fff;
    border-color: var(--primary);
}
.contact-card-primary h3,
.contact-card-primary .contact-cta { color: #fff !important; }
.contact-card-primary .contact-meta,
.contact-card-primary .contact-sub { color: rgba(255,255,255,0.78) !important; }
.contact-card-primary .contact-icon { color: var(--accent); }
.contact-card-v2 .contact-icon {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
    display: block;
}
.contact-card-v2 h3 {
    color: var(--text);
    font-size: 1.15rem;
    margin: 0 0 0.25rem;
}
.contact-card-v2 .contact-meta {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0 0 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.contact-card-v2 .contact-cta {
    display: block;
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    margin: 0.5rem 0;
    word-break: break-word;
}
.contact-card-primary .contact-cta { font-size: 1.55rem; }
.contact-card-v2 .contact-cta-text {
    font-weight: 600;
    color: var(--text);
    margin: 0.5rem 0;
    word-break: break-word;
    line-height: 1.5;
}
.contact-card-v2 .contact-sub {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0.5rem 0 0;
    line-height: 1.5;
}

/* ---- 10. Contact Form ---- */
.contact-form-v2 {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    margin-top: 1rem;
    border: 1px solid var(--border);
}
.contact-form-v2 .form-row {
    margin-bottom: 1rem;
}
.contact-form-v2 label {
    display: block;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.4rem;
    font-size: 0.92rem;
}
.contact-form-v2 input[type="text"],
.contact-form-v2 input[type="tel"],
.contact-form-v2 textarea {
    width: 100%;
    padding: 0.75rem 0.95rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text);
    transition: var(--transition);
}
.contact-form-v2 input:focus,
.contact-form-v2 textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(11, 37, 69, 0.08);
}
.contact-form-v2 textarea {
    resize: vertical;
    min-height: 110px;
}
.contact-form-v2 .form-row-check label {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--text-muted);
    cursor: pointer;
}
.contact-form-v2 .form-row-check input { margin-top: 0.25rem; }
.contact-form-v2 .form-row-check a { color: var(--primary); }

/* ---- 11. Cookie Table (Cerez Politikasi) ---- */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.92rem;
}
.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.cookie-table th {
    background: var(--primary-tint);
    color: var(--primary-dark);
    font-weight: 700;
}
.cookie-table tr:nth-child(even) {
    background: var(--light);
}

/* ---- 12. Home WHY-US Section ---- */
.home-why-us .section-head { margin-bottom: 1.5rem; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
@media (max-width: 992px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .why-grid { grid-template-columns: 1fr; }
}
.why-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: var(--transition);
}
.why-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 16px 32px rgba(11, 37, 69, 0.10);
}
.why-card i {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-tint);
    color: var(--primary);
    border-radius: 14px;
    font-size: 1.4rem;
    margin-bottom: 0.85rem;
}
.why-card h3 {
    color: var(--text);
    font-size: 1.12rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}
.why-card p {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.6;
    margin: 0;
}

/* ---- 13. Service FAQ Block (Hizmet Sayfasi) ---- */
.service-faq-block {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    margin: 1.5rem 0;
}
.section-title-v2 {
    color: var(--primary);
    font-size: 1.45rem;
    font-weight: 700;
    margin: 0 0 1.25rem;
    line-height: 1.3;
}

/* ---- 14. Sidebar CTA Dark v2 ---- */
.sidebar-cta-dark {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-soft) 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    border: 0;
}
.sidebar-cta-dark h3 { color: #fff !important; }
.sidebar-cta-dark p { color: rgba(255,255,255,0.78); }

/* ---- 15. Footer Disclaimer Strong ---- */
.footer-disclaimer-strong {
    background: rgba(245, 158, 11, 0.12);
    border-left: 4px solid var(--warning);
    padding: 0.9rem 1.1rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    color: rgba(255,255,255,0.92) !important;
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 1rem 0 0.85rem;
}
.footer-disclaimer-strong i {
    color: var(--warning);
    margin-right: 0.4rem;
}
.footer-disclaimer-strong strong { color: #fff; }
.footer-disclaimer-strong em { font-style: italic; color: #FEF3C7; }
.footer-legal-line {
    color: rgba(255,255,255,0.55) !important;
    font-size: 0.82rem !important;
    margin: 0.35rem 0 !important;
}

/* ---- 16. Hero v2 Tweaks ---- */
.hero-title span {
    color: var(--accent);
}
.hero-kicker {
    color: var(--accent) !important;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ---- 17. Update existing review/danger color references ---- */
.text-danger { color: var(--primary) !important; }
.section-kicker { color: var(--accent); }

/* ---- 18. Mobile optimizations ---- */
@media (max-width: 768px) {
    .static-page { padding: 1.5rem; }
    .static-content h2 { font-size: 1.35rem; }
    .static-content h3 { font-size: 1.08rem; }
    .floating-call-btn { bottom: 1rem; right: 1rem; }
}

/* ---- 19. Focus ring (a11y) ---- */
*:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
    border-radius: 4px;
}
button:focus-visible, a:focus-visible {
    outline-offset: 3px;
}

/* ---- 20. Hero CTA refinement for v2 palette ---- */
.hero-actions .btn-accent {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.32);
}
.hero-actions .btn-accent:hover {
    background: var(--accent-dark);
    color: #fff;
}
.cta-card .btn-light {
    color: var(--primary);
    font-weight: 700;
}

/* ---- 21. Brand Fault Profile (Marka spesifik içerik) ---- */
.brand-fault-profile {
    background: var(--primary-tint);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1.25rem 1.4rem;
    margin: 1.25rem 0;
}
.brand-fault-profile h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
}
.brand-fault-profile p {
    color: var(--text);
    margin: 0;
    line-height: 1.7;
    font-size: 0.97rem;
}

/* ---- 22. CTA Card-inline using accent ---- */
.cta-card-inline {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    margin: 1.5rem 0;
}

/* ---- 23. Trust stripe spacing on hero-wrapper-static ---- */
.hero-wrapper-static + .main-layout {
    padding-top: 2rem;
}

/* ---- 24. 404 v2 styling ---- */
.not-found-wrapper {
    min-height: calc(100vh - 80px);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-soft) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.25rem;
}
.not-found-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    max-width: 720px;
    width: 100%;
    text-align: center;
    box-shadow: 0 32px 80px rgba(11, 37, 69, 0.35);
}
.not-found-card .logo-mark {
    margin: 0 auto 1rem;
    background: var(--primary);
    color: #fff;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}
.not-found-eyebrow {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}
.not-found-title {
    color: var(--primary);
    font-size: 1.85rem;
    font-weight: 800;
    margin: 0 0 0.75rem;
    line-height: 1.25;
}
.not-found-text {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0 0 1.5rem;
    line-height: 1.6;
}
.not-found-search {
    display: flex;
    gap: 0.5rem;
    max-width: 480px;
    margin: 0 auto 1.5rem;
}
.not-found-search input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 50rem;
    background: var(--light);
    font-size: 0.95rem;
    color: var(--text);
}
.not-found-search input:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(11, 37, 69, 0.08);
}
.not-found-search button {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50rem;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}
.not-found-search button:hover { background: var(--primary-dark); }
.not-found-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
}
.not-found-links {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
}
.not-found-links-title {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.85rem;
    font-weight: 600;
}
.not-found-link-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}
@media (max-width: 640px) {
    .not-found-link-grid { grid-template-columns: 1fr; }
    .not-found-title { font-size: 1.5rem; }
    .not-found-card { padding: 1.75rem 1.25rem; }
}
.not-found-link-grid a {
    background: var(--light);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 0.65rem 0.85rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.not-found-link-grid a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.not-found-link-grid a i {
    color: var(--primary);
    font-size: 1rem;
}
.not-found-link-grid a:hover i { color: var(--accent); }

/* ==========================================================
   SEO/UX ENHANCEMENTS: process showcase, related grids,
   service gallery grid, static hero, service-card badge
   ========================================================== */

.service-media { position: relative; overflow: hidden; }
.service-media .service-img,
.service-media picture { display: block; width: 100%; height: 100%; }
.service-media-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 37, 69, 0.92);
    color: #fff;
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 16px rgba(11, 37, 69, 0.25);
    font-size: 1rem;
    z-index: 2;
}

.service-visual-card { position: relative; }
.service-visual-caption {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    padding: 0.85rem 1rem;
    margin-top: 0.6rem;
    background: var(--accent-soft);
    border-radius: var(--radius);
    color: var(--primary-dark);
    font-size: 0.94rem;
}
.service-visual-caption i {
    color: var(--accent-dark);
    font-size: 1.05rem;
    margin-top: 0.15rem;
}

.service-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.7rem;
    margin-top: 1rem;
}
.service-gallery-item {
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 4 / 3;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.service-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.service-gallery-item:hover { box-shadow: var(--shadow-lg); }
.service-gallery-item:hover .service-gallery-img { transform: scale(1.06); }

@media (max-width: 768px) {
    .service-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Process Showcase (home) */
.home-process { margin-top: 3rem; }
.process-showcase {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.process-showcase-media {
    position: relative;
    min-height: 320px;
    overflow: hidden;
}
.process-showcase-media picture { display: block; width: 100%; height: 100%; }
.process-showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.process-showcase-badge {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    background: rgba(11, 37, 69, 0.92);
    color: #fff;
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    backdrop-filter: blur(6px);
    box-shadow: var(--shadow-lg);
}
.process-showcase-badge i { color: var(--accent); font-size: 1.4rem; }
.process-showcase-badge strong { display: block; font-size: 0.95rem; }
.process-showcase-badge span { font-size: 0.78rem; opacity: 0.85; }

.process-showcase-steps {
    list-style: none;
    padding: 1.5rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.process-showcase-steps li {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    padding: 0.85rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}
.process-showcase-steps li:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.process-showcase-steps .proc-num {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-soft));
    color: #fff;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}
.process-showcase-steps h3 { font-size: 1rem; margin: 0 0 0.2rem; color: var(--primary-dark); }
.process-showcase-steps p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

@media (max-width: 768px) {
    .process-showcase { grid-template-columns: 1fr; }
    .process-showcase-media { min-height: 220px; }
}

/* CTA bullets */
.cta-bullets {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.cta-bullets li {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.95rem;
}
.cta-bullets i { color: var(--accent); }

/* Related Services & Locations */
.related-services-block,
.related-locations-block {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.related-head { margin-bottom: 1.2rem; }
.related-head .section-kicker {
    color: var(--accent-dark);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    margin-bottom: 0.2rem;
}
.related-head h2 { font-size: 1.5rem; color: var(--primary-dark); margin: 0 0 0.4rem; }

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}
.related-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
    background: #fff;
    transition: var(--transition);
    position: relative;
}
.related-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    color: var(--text);
}
.related-card-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.related-card-media picture { display: block; width: 100%; height: 100%; }
.related-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.related-card:hover .related-card-img { transform: scale(1.07); }
.related-card-icon {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(11, 37, 69, 0.9);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    backdrop-filter: blur(6px);
}
.related-card-body { padding: 0.85rem 0.95rem 1rem; }
.related-card-body h3 { font-size: 1rem; color: var(--primary-dark); margin: 0 0 0.3rem; }
.related-card-body p { font-size: 0.85rem; color: var(--text-muted); margin: 0 0 0.6rem; line-height: 1.5; }
.related-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--accent-dark);
    font-weight: 700;
    font-size: 0.88rem;
}

.related-locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.55rem;
}
.related-loc-link {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 0.85rem;
    background: var(--primary-tint);
    color: var(--primary-dark);
    border-radius: var(--radius);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid transparent;
}
.related-loc-link:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.related-loc-link i { color: var(--accent-dark); }
.related-loc-link:hover i { color: var(--accent); }

/* Inline rich CTA */
.cta-card-inline--rich {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 1.2rem;
    padding: 0;
    overflow: hidden;
    text-align: left;
}
.cta-card-inline--rich .cta-card-inline-media {
    overflow: hidden;
}
.cta-card-inline--rich .cta-card-inline-media picture,
.cta-card-inline--rich .cta-card-inline-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cta-card-inline--rich .cta-card-inline-body {
    padding: 1.5rem 1.5rem 1.5rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
}
@media (max-width: 768px) {
    .cta-card-inline--rich { grid-template-columns: 1fr; }
    .cta-card-inline--rich .cta-card-inline-media { aspect-ratio: 16 / 9; }
    .cta-card-inline--rich .cta-card-inline-body { padding: 1.25rem; }
}

/* Static page hero (about/contact) */
.static-section-hero { padding-bottom: 0.5rem; }
.static-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.5rem;
    align-items: center;
}
.static-hero-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3;
}
.static-hero-media picture,
.static-hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.static-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
    margin-top: 1rem;
}
.static-stat {
    background: var(--primary-tint);
    padding: 0.85rem 0.7rem;
    border-radius: var(--radius);
    text-align: center;
}
.static-stat strong {
    display: block;
    color: var(--primary-dark);
    font-size: 1.15rem;
    margin-bottom: 0.2rem;
}
.static-stat span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.static-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.85rem;
    margin-top: 0.75rem;
}
.static-gallery-card {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: #fff;
    transition: var(--transition);
}
.static-gallery-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.static-gallery-card picture { display: block; aspect-ratio: 4 / 3; overflow: hidden; }
.static-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.static-gallery-card:hover img { transform: scale(1.05); }
.static-gallery-card figcaption {
    padding: 0.55rem 0.75rem;
    font-size: 0.88rem;
    color: var(--primary-dark);
    font-weight: 600;
    background: var(--light);
}

@media (max-width: 768px) {
    .static-hero-grid { grid-template-columns: 1fr; }
    .static-stats { grid-template-columns: repeat(2, 1fr); }
}

/* 404 cities grid */
.not-found-cities { margin-top: 1.25rem; }
.not-found-city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.not-found-city-grid a {
    background: var(--accent-soft);
    color: var(--primary-dark);
    text-decoration: none;
    padding: 0.55rem 0.75rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 600;
    border: 1px solid transparent;
    transition: var(--transition);
}
.not-found-city-grid a:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent-dark);
}

/* Teknik Servis — kurumsal v2 tema */
.tser-logo-badge {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark)) !important;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, #152a45 42%, #1e4a7a 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 85% 20%, rgba(249, 115, 22, 0.18), transparent 55%);
    pointer-events: none;
}

.hero-headline .hero-title span {
    color: var(--accent);
}

.trust-stripe {
    background: linear-gradient(180deg, #fff 0%, var(--light) 100%);
    border-top: 3px solid var(--accent);
}

.trust-bar,
.stats-strip {
    border-color: rgba(249, 115, 22, 0.15);
}

.service-card:hover,
.brand-card:hover {
    border-color: rgba(249, 115, 22, 0.35);
}

/* ============================================================
   TS Chrome — Header & Footer (ayrı tasarım, önceki siteden farklı)
   ============================================================ */

.header-top,
.header-spacer {
    display: none !important;
}

.ts-chrome {
    position: sticky;
    top: 0;
    z-index: 3200;
    box-shadow: 0 8px 32px rgba(6, 14, 24, 0.12);
}

/* Üst şerit — açık zemin, turuncu vurgu */
.ts-strip {
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.ts-strip-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 0.45rem 0;
    font-size: 0.8rem;
}

.ts-strip-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.75rem;
    border-radius: 6px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-weight: 700;
    white-space: nowrap;
}

.ts-strip-badge i {
    color: var(--accent);
}

.ts-strip-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    color: var(--text-muted);
    font-weight: 500;
}

.ts-strip-center a {
    color: var(--text-muted);
}

.ts-strip-center a:hover {
    color: var(--accent-dark);
}

.ts-strip-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ts-strip-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.7rem;
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid var(--border);
    color: var(--text);
}

.ts-strip-wa:hover {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

.ts-strip-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    border-radius: 8px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
}

.ts-strip-phone:hover {
    background: var(--accent);
    color: #fff;
}

/* Ana navbar — koyu lacivert şerit, alt turuncu çizgi */
.ts-navbar.site-header {
    background: linear-gradient(180deg, #0a1628 0%, #0c1929 100%);
    border-bottom: 3px solid var(--accent);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    position: relative;
    top: auto;
}

.ts-navbar-shell {
    padding: 0;
}

.ts-navbar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 72px;
}

.ts-chrome .bes-logo-title {
    color: #fff;
}

.ts-chrome .bes-logo-title em {
    color: var(--accent);
}

.ts-chrome .bes-logo-sub {
    color: rgba(255, 255, 255, 0.65);
}

.ts-chrome .bes-logo-sub i {
    color: var(--accent);
}

.ts-chrome .bes-logo-mark {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

/* Nav — düz metin, alt çizgi aktif */
.ts-main-nav {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    flex: 1;
    justify-content: center;
    max-width: 640px;
    margin: 0 auto;
}

.ts-main-nav .ts-nav-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.65rem 1rem;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
    font-size: 0.92rem;
    border-bottom: 3px solid transparent;
    margin-bottom: -3px;
    background: transparent;
}

.ts-main-nav .ts-nav-item > i:not(.nav-caret) {
    display: none;
}

.ts-main-nav .ts-nav-item:hover,
.ts-main-nav .ts-nav-item.active,
.ts-main-nav .has-dropdown:hover > .ts-nav-item,
.ts-main-nav .has-dropdown.open > .ts-nav-item {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border-bottom-color: var(--accent);
}

.ts-main-nav .nav-caret {
    font-size: 0.7rem;
    opacity: 0.7;
}

/* Mega menü — tam genişlik panel, kart kutusu değil */
.ts-chrome .mega-menu {
    left: 0;
    right: 0;
    transform: none;
    top: 100%;
    max-width: none;
    min-width: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    border-radius: 0;
    border: none;
    border-top: 1px solid var(--border);
    border-bottom: 3px solid var(--accent);
    box-shadow: 0 24px 48px rgba(6, 14, 24, 0.2);
    padding: 1.25rem 0;
}

.ts-chrome .mega-menu::before {
    display: none;
}

.ts-chrome .has-dropdown:hover .mega-menu,
.ts-chrome .has-dropdown.open .mega-menu,
.ts-chrome .has-dropdown:focus-within .mega-menu {
    transform: none;
}

.ts-mega .container,
.ts-mega {
    padding-left: max(15px, calc((100vw - 1320px) / 2 + 15px));
    padding-right: max(15px, calc((100vw - 1320px) / 2 + 15px));
}

.ts-mega-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-dark);
    font-weight: 800;
    margin: 0 0 0.85rem;
}

.ts-mega-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.35rem;
}

.ts-mega-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.85rem;
    border-radius: 10px;
    border-left: 3px solid transparent;
    transition: var(--transition);
}

.ts-mega-link:hover {
    background: var(--accent-soft);
    border-left-color: var(--accent);
}

.ts-mega-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--primary-tint);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ts-mega-link:hover .ts-mega-icon {
    background: var(--accent);
    color: #fff;
}

.ts-mega-text {
    flex: 1;
    font-weight: 700;
    color: var(--dark);
    font-size: 0.9rem;
}

.ts-mega-arrow {
    color: var(--accent);
    opacity: 0;
    transform: translateX(-4px);
    transition: var(--transition);
    font-size: 0.75rem;
}

.ts-mega-link:hover .ts-mega-arrow {
    opacity: 1;
    transform: translateX(0);
}

.ts-mega-brand-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.5rem;
}

.ts-mega-brand {
    padding: 0.5rem 0.65rem;
    border-radius: 8px;
    background: var(--light);
    border: 1px solid var(--border);
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--dark);
    text-align: center;
}

.ts-mega-brand:hover {
    border-color: var(--accent);
    color: var(--accent-dark);
    background: #fff;
}

/* Sağ aksiyonlar */
.ts-navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.ts-call-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.15;
    color: #fff;
    padding-right: 0.75rem;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.ts-call-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
}

.ts-call-block strong {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--accent);
}

.ts-call-block:hover strong {
    color: #fff;
}

.ts-btn-randevu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.25rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    font-weight: 800;
    font-size: 0.88rem;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.45);
    white-space: nowrap;
}

.ts-btn-randevu:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 12px 28px rgba(249, 115, 22, 0.55);
}

.ts-chrome .header-cta {
    display: none;
}

.ts-menu-toggle {
    border-color: rgba(255, 255, 255, 0.35);
}

.ts-menu-toggle span {
    background: #fff;
}

/* Mobil menü başlık */
.ts-mobile-head {
    background: var(--primary);
    border-bottom: 3px solid var(--accent);
    padding: 1rem 1.25rem;
}

.ts-mobile-head .bes-logo-title {
    color: #fff;
}

.ts-mobile-head .bes-logo-title em {
    color: var(--accent);
}

.ts-mobile-close {
    filter: invert(1);
}

/* ============================================================
   TS Footer
   ============================================================ */

.ts-footer.site-footer {
    background: #f1f5f9;
    color: var(--text);
    padding: 0;
    margin-bottom: 0;
}

.ts-footer.site-footer::before {
    display: none;
}

.ts-footer-band {
    background: linear-gradient(105deg, var(--accent) 0%, #fb923c 48%, var(--accent-dark) 100%);
    color: #fff;
    padding: 2.5rem 0;
}

.ts-footer-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.ts-footer-kicker {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 0.35rem;
}

.ts-footer-band-title {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 900;
    margin: 0 0 0.5rem;
    line-height: 1.15;
}

.ts-footer-band-copy p {
    margin: 0;
    max-width: 520px;
    opacity: 0.95;
    font-size: 1rem;
}

.ts-footer-band-cta {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    min-width: 260px;
}

.ts-footer-call {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #fff;
    color: var(--primary);
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.ts-footer-call i {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.ts-footer-call small {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
}

.ts-footer-call strong {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--primary);
}

.ts-footer-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.65);
    color: #fff;
    font-weight: 700;
}

.ts-footer-wa:hover {
    background: #fff;
    color: #128c7e;
    border-color: #fff;
}

.ts-footer-main {
    padding: 3rem 0 2rem;
    background: #fff;
}

.ts-footer-layout {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1.15fr;
    gap: 2rem;
}

.ts-footer-about-text {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin: 1rem 0;
    line-height: 1.65;
}

.ts-footer-pills {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
}

.ts-footer-pills li {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.7rem;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
}

.ts-footer-pills i {
    color: var(--accent);
}

.ts-footer-heading {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ts-footer-heading span {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 900;
}

.ts-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ts-footer-menu li {
    border-bottom: 1px dashed var(--border);
}

.ts-footer-menu li:last-child {
    border-bottom: none;
}

.ts-footer-menu a {
    display: block;
    padding: 0.45rem 0;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.88rem;
}

.ts-footer-menu a:hover {
    color: var(--accent-dark);
    padding-left: 0.35rem;
}

.ts-contact-cards {
    display: grid;
    gap: 0.5rem;
}

.ts-contact-card {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.65rem 0.75rem;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: inherit;
}

.ts-contact-card i {
    color: var(--accent);
    margin-top: 0.15rem;
}

.ts-contact-card small {
    display: block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 700;
}

.ts-contact-card strong {
    font-size: 0.88rem;
    color: var(--dark);
    font-weight: 700;
    word-break: break-word;
}

.ts-contact-card--static {
    cursor: default;
}

.ts-footer-stats {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.ts-stat {
    text-align: center;
    padding: 1rem;
    background: var(--primary);
    color: #fff;
    border-radius: 14px;
}

.ts-stat em {
    display: block;
    font-style: normal;
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1.1;
}

.ts-stat span {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.82rem;
    opacity: 0.85;
}

.ts-footer-legal {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.75);
    padding: 1.25rem 0;
}

.ts-footer-legal-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.ts-footer-disclaimer {
    flex: 1 1 60%;
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.55;
}

.ts-footer-disclaimer strong {
    color: #fff;
}

.ts-footer-legal-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: right;
    font-size: 0.78rem;
}

@media (max-width: 1199px) {
    .ts-mega-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .ts-mega-brand-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .ts-footer-layout {
        grid-template-columns: 1fr 1fr;
    }
    .ts-footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 991px) {
    .ts-strip-hide-mobile {
        display: none;
    }
    .ts-main-nav {
        display: none;
    }
    .ts-call-block {
        display: none;
    }
    .ts-btn-randevu {
        display: none;
    }
    .ts-navbar-row {
        min-height: 64px;
    }
    .ts-footer-layout {
        grid-template-columns: 1fr;
    }
    .ts-footer-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .ts-footer-band-inner {
        flex-direction: column;
        align-items: stretch;
    }
    .ts-footer-band-cta {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .ts-strip-badge span,
    .ts-strip-link span {
        display: none;
    }
    .ts-mega-list,
    .ts-mega-brand-grid {
        grid-template-columns: 1fr;
    }
    .ts-footer-stats {
        grid-template-columns: 1fr;
    }
    .ts-footer-legal-meta {
        text-align: left;
    }
}

/* ============================================================
   Üst bilgi çubuğu (ts-topbar)
   ============================================================ */

.ts-topbar {
    background: linear-gradient(90deg, #060e18 0%, #0c1929 55%, #0a1628 100%);
    border-bottom: 1px solid rgba(249, 115, 22, 0.28);
    font-size: 0.8125rem;
    line-height: 1.3;
}

.ts-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.25rem;
    min-height: 40px;
    padding: 0.4rem 0;
}

.ts-topbar-hours {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0;
    flex: 1 1 auto;
    justify-content: flex-start;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 500;
    white-space: nowrap;
}

.ts-topbar-hours i {
    color: #7dd3fc;
    font-size: 0.9rem;
}

.ts-topbar-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-shrink: 0;
    margin-left: auto;
}

.ts-topbar-mail {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 500;
    transition: color 0.2s ease;
}

.ts-topbar-mail:hover {
    color: #fff;
}

.ts-topbar-mail i {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
}

.ts-topbar-call {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.38rem 0.95rem 0.38rem 0.75rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(249, 115, 22, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ts-topbar-call:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.45);
}

.ts-topbar-call i {
    font-size: 0.82rem;
}

.ts-topbar-call-label {
    font-size: 0.72rem;
    font-weight: 600;
    opacity: 0.92;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ts-topbar-call strong {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.ts-topbar-hide-mobile {
    display: inline-flex;
}

@media (max-width: 991px) {
    .ts-topbar-hours {
        flex: 1 1 auto;
    }
}

@media (max-width: 767px) {
    .ts-topbar-hide-mobile {
        display: none !important;
    }
    .ts-topbar-inner {
        min-height: 38px;
        gap: 0.65rem;
    }
    .ts-topbar-call-label {
        display: none;
    }
    .ts-topbar-call {
        padding: 0.38rem 0.85rem;
    }
}

@media (max-width: 575px) {
    .ts-topbar-hours span {
        font-size: 0.78rem;
    }
    .ts-topbar-call strong {
        font-size: 0.88rem;
    }
}

/* Kurumsal logo (SVG) */
.site-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
    min-width: 0;
}

.site-logo:hover {
    opacity: 0.94;
}

.site-logo-img {
    display: block;
    width: auto;
    height: 40px;
    max-width: min(232px, 52vw);
    object-fit: contain;
    object-position: left center;
}

.site-logo--lg .site-logo-img {
    height: 48px;
    max-width: min(240px, 70vw);
}

.site-logo--stacked .site-logo-img {
    height: 44px;
    max-width: 220px;
}

.ts-navbar-row .site-logo-img {
    height: 38px;
    max-width: min(180px, 50vw);
}

@media (max-width: 575px) {
    .ts-navbar-row .site-logo-img {
        height: 34px;
        max-width: 150px;
    }
}

.ts-chrome .bes-logo-title,
.ts-chrome .bes-logo-sub,
.ts-mobile-head .bes-logo-title {
    display: none;
}

/* Trust slider */
.trustSwiper {
    position: relative;
    z-index: 1;
    padding: 0 2.5rem 2.5rem;
}

.trustSwiper .swiper-slide {
    height: auto;
}

.trustSwiper .trust-item {
    height: 100%;
    min-height: 88px;
}

.trust-pagination {
    bottom: 0 !important;
}

.trust-prev,
.trust-next,
.review-prev,
.review-next {
    color: var(--primary);
    width: 38px;
    height: 38px;
    background: #fff;
    border-radius: 50%;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.trust-prev::after,
.trust-next::after,
.review-prev::after,
.review-next::after {
    font-size: 0.95rem;
    font-weight: 900;
}

@media (min-width: 1200px) {
    .trust-prev,
    .trust-next {
        display: none;
    }
    .trust-pagination {
        display: none;
    }
}

/* Review slider */
.reviews-panel {
    position: relative;
}

.reviews-panel-head {
    margin-bottom: 1.25rem;
}

.reviews-panel .reviewSwiper {
    position: relative;
    padding: 0 2.75rem 2.75rem;
    min-height: 280px;
}

.reviewSwiper--sidebar {
    padding: 0 0 2rem;
    min-height: 200px;
}

.review-card {
    text-align: left;
    max-width: none;
    margin: 0;
    padding: 1.75rem 1.75rem 1.5rem;
    border: 1px solid var(--border);
    position: relative;
}

.review-card--compact {
    padding: 1.25rem;
    min-height: 180px;
}

.review-quote-icon {
    color: var(--accent-soft);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.review-quote-icon i {
    color: var(--accent);
    opacity: 0.35;
}

.review-card .stars {
    margin-bottom: 0.75rem;
}

.review-text {
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--text);
    margin-bottom: 1rem;
}

.review-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px dashed var(--border);
}

.review-author {
    font-weight: 700;
    color: var(--primary);
}

.review-date {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.review-pagination {
    bottom: 0 !important;
}

.reviewSwiper .swiper-slide {
    opacity: 0.4;
    transition: opacity 0.45s ease;
}

.reviewSwiper .swiper-slide-active {
    opacity: 1;
}

@media (max-width: 767px) {
    .reviews-panel .reviewSwiper {
        padding: 0 0 2.5rem;
    }
    .review-prev,
    .review-next {
        display: none;
    }
}

/* Footer randevu */
.ts-footer-randevu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.25rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.55);
    color: #fff;
    font-weight: 700;
}

.ts-footer-randevu:hover {
    background: #fff;
    color: var(--accent-dark);
    border-color: #fff;
}

.ts-footer-wa,
.ts-strip-wa {
    display: none !important;
}
