/* Boru Kaplama — vidanjoristanbul.com.tr tasarım uyumu */
:root {
    --primary: #0452da;
    --primary-dark: #0461c9;
    --navy: #051a34;
    --navy-deep: #0e2644;
    --nav-text: #00152c;
    --red-cta: #cf2e2e;
    --whatsapp: #13c254;
    --whatsapp-pulse: #25d366;
    --border-light: #cbdaf5;
    --footer-btn: #f0f0f0;
}
* { box-sizing: border-box; }
body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px; color: #212529; margin: 0; line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

.header-top,
.site-header {
    background: #fff;
    border-top: 3px solid var(--primary);
    position: sticky; top: 0; z-index: 1000;
    box-shadow: 0 4px 24px rgba(5,26,52,.08);
}
.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    max-width: 1320px;
    margin: 0 auto;
    padding: 10px 15px;
    min-height: 68px;
}
@media (max-width:991px) {
    .header-inner {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        gap: 8px 10px;
        padding: 10px 12px;
    }
}
.header-brand-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
@media (max-width:991px) {
    .header-brand-wrap { grid-column: 1; grid-row: 1; }
}
.header-brand {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.2;
}
.brand-name {
    font-size: clamp(17px, 4vw, 22px);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.brand-tag {
    font-size: 10px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (max-width:400px) {
    .brand-tag { display: none; }
}
.header-nav {
    display: none;
    justify-self: center;
}
@media (min-width:992px) {
    .header-nav { display: block; }
}
.header-nav ul {
    list-style: none; margin: 0; padding: 0;
    display: flex; align-items: center; gap: 6px;
}
.header-nav ul li a {
    display: block;
    padding: 8px 14px;
    color: var(--nav-text);
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: color .2s, background .2s;
    position: relative;
}
.header-nav ul li a:hover {
    color: var(--primary);
    background: #eef4ff;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
@media (max-width:991px) {
    .header-actions {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
    }
}
.lang-switcher { position: relative; }
.lang-switcher-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 13px;
    cursor: pointer;
    font-weight: 700;
    color: var(--navy);
    transition: border-color .2s, box-shadow .2s;
}
.lang-switcher-btn:hover {
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(4,82,218,.12);
}
.lang-flag { font-size: 16px; line-height: 1; }
.lang-code { font-size: 12px; letter-spacing: .04em; }
.lang-chevron { font-size: 11px; opacity: .6; }
.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(5,26,52,.14);
    min-width: 160px;
    z-index: 100;
    overflow: hidden;
}
.lang-dropdown.show { display: block; }
.lang-dropdown a {
    display: block;
    padding: 11px 16px;
    font-size: 14px;
    color: #334155;
    transition: background .15s;
}
.lang-dropdown a:hover,
.lang-dropdown a.active {
    background: #eef4ff;
    color: var(--primary);
    font-weight: 600;
}
.header-phone-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff !important;
    padding: 8px 14px 8px 10px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(4,82,218,.28);
    transition: transform .2s, box-shadow .2s;
    white-space: nowrap;
}
.header-phone-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(4,82,218,.35);
}
.header-phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,.18);
    border-radius: 8px;
    font-size: 16px;
}
.header-phone-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.header-phone-text small {
    font-size: 10px;
    font-weight: 600;
    opacity: .88;
    text-transform: uppercase;
    letter-spacing: .03em;
}
.header-phone-text strong {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .01em;
}
@media (max-width:991px) {
    .header-phone-text { display: none; }
    .header-phone-cta { padding: 8px; border-radius: 10px; }
    .header-phone-icon { width: 36px; height: 36px; background: rgba(255,255,255,.2); }
}
.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #eef4ff;
    border: none;
    border-radius: 10px;
    font-size: 22px;
    color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
    transition: background .2s;
}
.nav-toggle:hover { background: #dbeafe; }
@media (min-width:992px) {
    .nav-toggle { display: none; }
}

/* Legacy aliases */
.header-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; gap: 15px; max-width: 1320px; margin: 0 auto; padding-left: 15px; padding-right: 15px; }
.logo-area .logo-text { font-size: 22px; font-weight: 700; color: var(--navy); line-height: 1.2; }
.logo-area .logo-sub { font-size: 11px; color: var(--primary); font-weight: 600; text-transform: uppercase; }
.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 28px; }
.main-nav ul li a { color: var(--nav-text); font-size: 15px; font-weight: 600; }
.main-nav ul li a:hover { color: var(--primary); }
.btn-head-phone { display: flex; flex-direction: column; align-items: flex-end; background: transparent; border: none; cursor: pointer; }
.btn-head-phone .label { color: var(--primary-dark); font-size: 13px; font-weight: 600; }
.btn-head-phone .number { color: var(--nav-text); font-size: 15px; font-weight: 700; }
.hamburger { display: block; background: none; border: none; font-size: 28px; color: #0f4382; cursor: pointer; }
.main-nav { display: none; }
@media (min-width: 992px) { .main-nav { display: block; flex: 1; text-align: center; } .hamburger { display: none; } }

.sidebar-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 2000; }
.sidebar-overlay.show { display: block; }
.sidebar-drawer { position: fixed; top: 0; left: -100%; width: 100%; max-width: 400px; height: 100%; background: #fff; z-index: 2001; overflow-y: auto; transition: left .3s ease; padding: 0; box-shadow: 8px 0 40px rgba(0,0,0,.15); }
[dir="rtl"] .sidebar-drawer { left: auto; right: -100%; transition: right .3s ease; }
.sidebar-drawer.open { left: 0; }
[dir="rtl"] .sidebar-drawer.open { right: 0; left: auto; }
.sidebar-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid #eef2f7; background: linear-gradient(135deg, #051a34, #0452da); color: #fff; }
.sidebar-brand { font-size: 18px; font-weight: 800; color: #fff !important; }
.sidebar-close { background: rgba(255,255,255,.15); border: none; width: 36px; height: 36px; border-radius: 8px; font-size: 18px; cursor: pointer; color: #fff; display: flex; align-items: center; justify-content: center; }
.sidebar-btns { display: flex; gap: 10px; margin: 20px; }
.sidebar-note { font-size: 13px; color: #64748b; margin: 0 20px 16px; line-height: 1.55; }
.sidebar-trust { font-size: 12px; color: #94a3b8; margin: 20px; padding-top: 16px; border-top: 1px solid #eef2f7; }
.sidebar-close { float: none; }
.sidebar-btns { display: flex; gap: 10px; margin: 20px 0; }
.btn-phone, .btn-whatsapp { flex: 1; text-align: center; padding: 12px; border-radius: 25px; color: #fff !important; font-weight: 600; font-size: 14px; }
.btn-phone { background: var(--primary); }
.btn-whatsapp { background: var(--whatsapp); }
.sidebar-menu { list-style: none; padding: 0 12px; margin: 0 0 12px; }
.sidebar-menu li a { display: block; padding: 14px 12px; border-bottom: 1px solid #f1f5f9; font-weight: 600; color: var(--navy); border-radius: 8px; transition: background .15s, color .15s; }
.sidebar-menu li a:hover { background: #eef4ff; color: var(--primary); }

.hero-slider { background: linear-gradient(135deg, #051a34 0%, #0452da 55%, #0461c9 100%); min-height: 460px; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-slider::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 75% 40%, rgba(255,255,255,.08) 0%, transparent 60%); pointer-events: none; }
.hero-with-image .hero-inner { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; width: 100%; position: relative; z-index: 1; padding: 48px 15px; }
@media (min-width:992px){ .hero-with-image .hero-inner { grid-template-columns: 1fr 1fr; gap: 48px; padding: 56px 15px; } }
.hero-text { color: #fff; text-align: center; }
@media (min-width:992px){ .hero-text { text-align: left; } }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 20px; }
@media (min-width:992px){ .hero-badges { justify-content: flex-start; } }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(6px); padding: 6px 14px; border-radius: 50px; font-size: 12px; font-weight: 600; letter-spacing: .02em; }
.hero-badge i { font-size: 13px; opacity: .9; }
.hero-text h1 { font-size: clamp(28px, 4.5vw, 42px); font-weight: 800; margin: 0 0 16px; line-height: 1.15; letter-spacing: -.02em; }
.hero-lead { font-size: clamp(16px, 2vw, 18px); opacity: .92; max-width: 560px; margin: 0 auto 28px; line-height: 1.65; }
@media (min-width:992px){ .hero-lead { margin-left: 0; margin-right: 0; } }
.hero-btns-left { justify-content: center; }
@media (min-width:992px){ .hero-btns-left { justify-content: flex-start; } }
.hero-visual { border-radius: 16px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.35); border: 3px solid rgba(255,255,255,.15); aspect-ratio: 4/3; max-width: 560px; margin: 0 auto; }
@media (min-width:992px){ .hero-visual { margin: 0 0 0 auto; } }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-content { max-width: 1320px; margin: 0 auto; padding: 60px 15px; color: #fff; text-align: center; width: 100%; }
.hero-content h1 { font-size: clamp(28px, 5vw, 42px); font-weight: 700; margin-bottom: 16px; }
.hero-content p { font-size: 18px; opacity: .9; max-width: 700px; margin: 0 auto 30px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; }
.btn-phone2, .btn-mail2 { display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; border-radius: 50px; font-size: 18px; font-weight: 700; color: #fff !important; animation: btn-pulse 2s infinite; }
.btn-phone2 { background: var(--primary); }
.btn-mail2 { background: var(--whatsapp); animation-name: btn-pulse-green; }
@keyframes btn-pulse { 0%,100%{box-shadow:0 0 0 0 rgba(4,82,218,.5)} 50%{box-shadow:0 0 0 12px rgba(4,82,218,0)} }
@keyframes btn-pulse-green { 0%,100%{box-shadow:0 0 0 0 rgba(19,194,84,.5)} 50%{box-shadow:0 0 0 12px rgba(19,194,84,0)} }

.section-box { padding: 60px 0; background: #fff; border-top: 1px solid var(--border-light); }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { font-size: 28px; font-weight: 600; color: var(--primary-dark); margin: 0 0 12px; }
.section-title h2 strong { color: var(--primary); }
.section-title p { color: #666; max-width: 700px; margin: 0 auto; }

.services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 15px; max-width: 1320px; margin: 0 auto; padding: 0 15px; }
@media (min-width:768px){.services-grid{grid-template-columns:repeat(3,1fr)}}
@media (min-width:992px){.services-grid{grid-template-columns:repeat(4,1fr);gap:20px}}

.blog-item { position: relative; overflow: hidden; border-radius: 5px; display: block; }
.blog-item .img-box { position: relative; aspect-ratio: 540/640; background: linear-gradient(160deg,#0452da,#051a34); display: flex; align-items: center; justify-content: center; transition: transform .3s; overflow: hidden; }
.blog-item .img-box img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.blog-item .img-box i { font-size: 48px; color: rgba(255,255,255,.3); }
.blog-item h3 { position: absolute; bottom: 0; width: 100%; color: #fff; font-size: 16px; font-weight: 700; padding: 40px 16px 16px; text-align: center; margin: 0; z-index: 1; line-height: 1.3; }
.blog-item h3::after { content:''; position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top,#000,rgba(0,0,0,.6),transparent); z-index: -1; }
.blog-item:hover .img-box { transform: scale(1.02); }

.contact-box-section { background: linear-gradient(rgba(7,28,54,.88),rgba(7,28,54,.88)),linear-gradient(135deg,#051a34,#0452da); padding: 70px 15px; text-align: center; color: #fff; }
.contact-box-section .small-label { font-size: 14px; letter-spacing: 2px; text-transform: uppercase; opacity: .8; margin-bottom: 8px; }
.contact-box-section h3 { font-size: 32px; font-weight: 700; margin: 0 0 8px; }
.contact-box-section h4 { font-size: 20px; font-weight: 400; opacity: .9; margin: 0 0 30px; }

.bolgeler-box { padding: 70px 0; background: #fafafa; }
.bolgeler-grid { display: grid; grid-template-columns: 1fr; max-width: 1320px; margin: 0 auto; padding: 0 15px; list-style: none; }
@media (min-width:576px){.bolgeler-grid{grid-template-columns:repeat(2,1fr)}}
@media (min-width:768px){.bolgeler-grid{grid-template-columns:repeat(3,1fr)}}
@media (min-width:992px){.bolgeler-grid{grid-template-columns:repeat(4,1fr)}}
.bolgeler-grid li a { display: block; padding: 8px 0; color: #333; font-size: 16px; }
.bolgeler-grid li a::before { content:'\F3E7'; font-family:'bootstrap-icons'; margin-right:8px; color:#999; }
.bolgeler-grid li a:hover { color: var(--primary); text-decoration: underline; }

.page-section { padding: 30px 0 60px; }
.page-content { background: #fff; padding: 25px; border-radius: 5px; box-shadow: 0 0 65px rgba(0,0,0,.08); }
.page-title { display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--primary); padding-bottom: 15px; margin-bottom: 20px; }
.page-title i { color: var(--primary); font-size: 24px; }
.page-title h1 { font-size: 22px; font-weight: 600; color: var(--navy); margin: 0; }
.article-body h2,.article-body h3 { color: var(--navy); font-weight: 500; margin-top: 28px; }
.article-body p { color: #4b4b4b; line-height: 1.8; }
.mid-cta-row { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 30px 0; }
@media (min-width:576px){.mid-cta-row{grid-template-columns:1fr 1fr}}
.cta-block-blue,.cta-block-red { display: block; text-align: center; padding: 20px; border-radius: 5px; color: #fff !important; font-weight: 700; font-size: 16px; animation: btn-pulse 2s infinite; }
.cta-block-blue { background: #0693e3; }
.cta-block-red { background: var(--red-cta); animation-name: btn-pulse-red; }
@keyframes btn-pulse-red { 0%,100%{box-shadow:0 0 0 0 rgba(207,46,46,.5)} 50%{box-shadow:0 0 0 12px rgba(207,46,46,0)} }

.home-iletisim-box { position: relative; }
@media (min-width:992px) {
    .service-sidebar-col {
        align-self: stretch;
    }
    .service-sidebar-sticky {
        position: sticky;
        top: 118px;
        z-index: 50;
    }
}
.sidebar-stack { display: flex; flex-direction: column; gap: 14px; }
.sidebar-cta-phone, .sidebar-cta-wa { border-radius: 12px !important; margin-bottom: 0 !important; box-shadow: 0 4px 16px rgba(0,0,0,.1); }
.btn-phone3,.btn-whatsapp3 { display: block; width: 100%; text-align: center; padding: 14px; border-radius: 5px; color: #fff !important; font-weight: 700; font-size: 15px; margin-bottom: 10px; animation: btn-pulse 2s infinite; }
.btn-phone3 { background: var(--primary); }
.btn-whatsapp3 { background: var(--whatsapp); animation-name: btn-pulse-green; }

/* Sidebar cards — unified lux panel */
.sidebar-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e8eef7;
    box-shadow: 0 8px 32px rgba(5,26,52,.07);
    padding: 16px;
    overflow: hidden;
}
.sidebar-card-head {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
}
.sidebar-card-head.compact { align-items: center; margin-bottom: 12px; }
.sidebar-card-head.compact h4 { margin: 0; }
.sidebar-card-icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #eef4ff, #dbeafe);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
}
.sidebar-card-icon-green {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #059669;
}
.sidebar-card-head h4 {
    color: var(--navy);
    font-size: 15px;
    font-weight: 800;
    margin: 0 0 4px;
    line-height: 1.25;
}
.sidebar-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 240px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}
.sidebar-link-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 10px;
    margin-bottom: 4px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    transition: background .15s, color .15s;
}
.sidebar-link-list li a:hover {
    background: #eef4ff;
    color: var(--primary);
}
.sidebar-link-list li a::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--primary);
    opacity: .35;
    flex-shrink: 0;
}
.sidebar-link-list li a:hover::before { opacity: 1; }

.contactbox h4 { color: var(--navy); font-size: 15px; font-weight: 800; margin: 0; }
.contactbox ul { list-style: none; padding: 0; margin: 0; max-height: 280px; overflow-y: auto; }
.contactbox ul li a { display: block; padding: 8px 0; border-bottom: 1px solid #eee; font-size: 14px; color: #333; }
.contactbox ul li a:hover { color: var(--primary); }
.iletisim-item { background: #fff; padding: 20px; border-radius: 5px; box-shadow: 0 0 30px rgba(0,0,0,.06); margin-bottom: 15px; text-align: center; }
.iletisim-item h5 { color: var(--navy); font-size: 16px; margin: 0 0 10px; }
.iletisim-item p { font-size: 13px; color: #666; margin-bottom: 15px; }
.btn-iletisim { display: inline-block; padding: 10px 24px; border-radius: 30px; font-weight: 600; font-size: 14px; background: #fff; color: var(--primary); border: 2px solid var(--primary); }
.btn-iletisim:hover { background: var(--primary); color: #fff !important; }

.breadcrumb-nav { padding: 12px 0; font-size: 13px; color: #666; }
.breadcrumb-nav ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumb-nav li+li::before { content:'/'; margin-right: 6px; color: #ccc; }
.breadcrumb-nav a { color: var(--primary); }

.footer { background: var(--navy); color: #fff; }
.footer-top { border-bottom: 1px solid rgba(255,255,255,.1); padding: 30px 15px; text-align: center; }
.footer-top .logo-text { font-size: 24px; font-weight: 700; }
.footer-top p { opacity: .8; max-width: 600px; margin: 15px auto 0; font-size: 14px; }
.footer-body { max-width: 1320px; margin: 0 auto; padding: 40px 15px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
@media (min-width:768px){.footer-grid{grid-template-columns:repeat(2,1fr)}}
@media (min-width:992px){.footer-grid{grid-template-columns:repeat(4,1fr)}}
.footer-phone { display: block; color: #cf2e2f !important; font-size: 22px; font-weight: 700; margin-bottom: 15px; }
.footer-widget h4 { background: var(--navy-deep); display: inline-block; padding: 8px 16px; border-radius: 4px; font-size: 15px; margin-bottom: 15px; }
.footer-widget ul { list-style: none; padding: 0; margin: 0; }
.footer-widget ul li { margin-bottom: 8px; }
.footer-widget ul li a { color: rgba(255,255,255,.8); font-size: 14px; }
.footer-widget ul li a:hover { color: #fff; }
.footer-btn a { display: inline-block; background: var(--footer-btn); color: #0a1928 !important; padding: 10px 20px; border-radius: 30px; font-weight: 600; font-size: 14px; margin-top: 15px; }
.site-info { background: var(--navy-deep); text-align: center; padding: 12px; font-size: 12px; opacity: .8; }

.fixed-whatsapp-pulse,.fixed-phone-pulse {
    display: none;
    position: fixed; bottom: 24px; z-index: 9999;
    width: 56px; height: 56px; border-radius: 50%;
    align-items: center; justify-content: center;
    color: #fff !important; font-size: 26px;
    box-shadow: 0 6px 24px rgba(0,0,0,.22);
    animation: float-pulse 1.5s infinite;
    transition: transform .2s;
}
.fixed-whatsapp-pulse:hover,.fixed-phone-pulse:hover { transform: scale(1.06); }
.fixed-whatsapp-pulse { display: none !important; }
.fixed-phone-pulse { background: var(--primary); right: 28px; }
[dir="rtl"] .fixed-phone-pulse { right: auto; left: 28px; }
@keyframes float-pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.07)} }
@media (min-width:992px) {
    .fixed-whatsapp-pulse,.fixed-phone-pulse { display: flex; }
}
.mobile-bottom-bar { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998; background: #fff; border-top: 1px solid #eee; padding: 10px 12px; gap: 10px; box-shadow: 0 -4px 20px rgba(0,0,0,.08); }
.mobile-bottom-bar a { flex: 1; text-align: center; padding: 12px; border-radius: 8px; color: #fff !important; font-weight: 700; font-size: 14px; animation: btn-pulse 2s infinite; }
.mobile-bottom-bar .call-btn { background: var(--primary); }
.mobile-bottom-bar .wa-btn { display: none !important; }
@media (min-width:992px){.mobile-bottom-bar{display:none} body{padding-bottom:0}}
@media (max-width:991px){body{padding-bottom:70px}}

.container-main { max-width: 1320px; margin: 0 auto; padding: 0 15px; }
.row-main { display: flex; flex-wrap: wrap; margin: 0 -12px; align-items: flex-start; }
.col-lg-8 { width: 100%; padding: 0 12px; }
.col-lg-4 { width: 100%; padding: 0 12px; margin-top: 30px; }
@media (min-width:992px){.col-lg-8{width:66.666%}.col-lg-4{width:33.333%;margin-top:0}}
.benefit-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 15px 0; }
.benefit-tag { background: #eef4ff; color: var(--primary); padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 600; }
.faq-item { border: 1px solid #eee; border-radius: 5px; margin-bottom: 10px; }
.faq-item summary { padding: 15px; font-weight: 600; cursor: pointer; color: var(--navy); list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .faq-answer { padding: 0 15px 15px; color: #666; font-size: 14px; }
.review-card { background: #fafafa; padding: 16px; border-radius: 5px; margin-bottom: 12px; border: 1px solid #eee; }
.review-card .stars { color: #f59e0b; }
.internal-links { margin-top: 24px; padding-top: 20px; border-top: 1px solid #eee; font-size: 15px; }
.internal-links a { color: var(--primary); font-weight: 600; }
.internal-links a:hover { text-decoration: underline; }

/* ——— Service page hero ——— */
.service-hero {
    background: linear-gradient(135deg, #051a34 0%, #0452da 45%, #0461c9 100%);
    padding: 40px 0 52px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.service-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 60%, rgba(255,255,255,.1) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 20%, rgba(255,255,255,.06) 0%, transparent 45%);
    pointer-events: none;
}
.service-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
}
.service-hero .container-main { position: relative; z-index: 1; max-width: 900px; }
.service-hero-breadcrumb { font-size: 13px; margin-bottom: 16px; opacity: .88; }
.service-hero-breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.service-hero-breadcrumb li+li::before { content: '/'; margin-right: 6px; opacity: .55; }
.service-hero-breadcrumb a { color: rgba(255,255,255,.92); }
.service-hero-breadcrumb a:hover { color: #fff; text-decoration: underline; }
.service-hero-title {
    font-size: clamp(26px, 4.5vw, 38px);
    font-weight: 800;
    margin: 0 0 12px;
    line-height: 1.2;
    letter-spacing: -.02em;
}
.service-hero-lead {
    font-size: clamp(15px, 2vw, 17px);
    line-height: 1.65;
    opacity: .92;
    margin: 0 0 18px;
    max-width: 720px;
}
.service-hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.service-hero-rating {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; font-weight: 600; margin-bottom: 24px; opacity: .95;
}
.hero-stars { color: #fbbf24; letter-spacing: 2px; font-size: 17px; }
.service-hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-btn-call, .hero-btn-wa {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px; border-radius: 50px; font-size: 16px; font-weight: 700;
    transition: transform .2s, box-shadow .2s;
}
.hero-btn-call {
    background: #fff; color: var(--primary) !important;
    box-shadow: 0 8px 28px rgba(0,0,0,.22);
    animation: btn-pulse 2s infinite;
}
.hero-btn-call i { color: var(--primary); }
.hero-btn-wa {
    background: var(--whatsapp); color: #fff !important;
    box-shadow: 0 8px 28px rgba(0,0,0,.22);
    animation: btn-pulse-green 2s infinite;
}
.hero-btn-call:hover, .hero-btn-wa:hover { transform: translateY(-2px); }

.article-lead-image {
    margin: 0 0 24px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(5,26,52,.12);
    border: 1px solid var(--border-light);
}
.article-lead-image img { width: 100%; height: auto; display: block; aspect-ratio: 16/9; object-fit: cover; }

.section-heading-inline { color: var(--navy); font-size: 22px; margin-top: 30px; }

/* ——— Gallery ——— */
.gallery-section { background: #fafafa; }
.gallery-section-dark { background: var(--navy); }
.gallery-section-dark .section-title h2,
.gallery-section-dark .section-title h2 strong { color: #fff; }
.gallery-section-dark .section-title p { color: rgba(255,255,255,.75); }
.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 1320px; margin: 0 auto; padding: 0 15px;
}
@media (min-width:768px){ .photo-gallery-grid { grid-template-columns: repeat(3,1fr); gap: 16px; } }
@media (min-width:992px){ .photo-gallery-grid { grid-template-columns: repeat(4,1fr); } }
.gallery-card {
    margin: 0; border-radius: 10px; overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    aspect-ratio: 4/3; background: #e5e7eb;
}
.gallery-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s; }
.gallery-card:hover img { transform: scale(1.04); }
.video-gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1320px; margin: 0 auto; padding: 0 15px;
}
@media (min-width:768px){ .video-gallery-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width:992px){ .video-gallery-grid { grid-template-columns: repeat(3,1fr); } }
.gallery-video-card {
    margin: 0; border-radius: 12px; overflow: hidden;
    background: #0e2644; box-shadow: 0 8px 30px rgba(0,0,0,.25);
}
.gallery-video-card video { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; background: #000; }

/* Article inline media */
.article-body .article-media,
.article-body .gallery-video {
    margin: 28px 0; border-radius: 12px; overflow: hidden;
    box-shadow: 0 6px 28px rgba(0,0,0,.1);
}
.article-body .article-media img { width: 100%; height: auto; display: block; }
.article-body .gallery-video video { width: 100%; display: block; aspect-ratio: 16/9; background: #111; }

/* ——— Homepage: Process ——— */
.home-process-section { background: #f8fafc; }
.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width:576px){ .process-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width:992px){ .process-grid { grid-template-columns: repeat(4,1fr); gap: 24px; } }
.process-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 28px 22px 24px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(5,26,52,.06);
    transition: transform .25s, box-shadow .25s;
}
.process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(4,82,218,.12);
}
.process-num {
    position: absolute;
    top: 14px; right: 16px;
    font-size: 12px; font-weight: 800;
    color: var(--primary); opacity: .35;
}
.process-icon {
    width: 56px; height: 56px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #eef4ff, #dbeafe);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: var(--primary);
}
.process-card h3 {
    font-size: 16px; font-weight: 700;
    color: var(--navy); margin: 0 0 10px;
}
.process-card p {
    font-size: 14px; color: #64748b;
    margin: 0; line-height: 1.6;
}

/* ——— Homepage: Stats bar ——— */
.home-stats-bar {
    background: linear-gradient(135deg, #051a34 0%, #0452da 100%);
    padding: 36px 15px;
    color: #fff;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
@media (min-width:768px){ .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item strong {
    display: block;
    font-size: clamp(28px, 5vw, 38px);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
}
.stat-item span {
    font-size: 13px;
    opacity: .85;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* ——— Homepage: Google Reviews ——— */
.home-reviews-section { background: #fff; }
.google-badge-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 6px 16px 6px 8px;
    margin-bottom: 16px;
}
.google-g {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    background: #fff;
    border-radius: 50%;
    font-weight: 800;
    font-size: 16px;
    font-family: 'Product Sans', Arial, sans-serif;
    background: linear-gradient(135deg, #4285f4 25%, #ea4335 25%, #ea4335 50%, #fbbc05 50%, #fbbc05 75%, #34a853 75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.google-badge-label { font-size: 13px; font-weight: 700; color: #334155; }
.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 15px;
    color: #475569;
}
.reviews-stars { color: #fbbf24; letter-spacing: 2px; font-size: 18px; }
.google-reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width:768px){ .google-reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width:992px){ .google-reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.google-review-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(5,26,52,.05);
    transition: box-shadow .2s;
}
.google-review-card:hover { box-shadow: 0 8px 24px rgba(5,26,52,.1); }
.review-card-head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: start;
    margin-bottom: 12px;
}
.review-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 16px;
}
.review-card-head strong { display: block; font-size: 14px; color: var(--navy); }
.review-location { display: block; font-size: 12px; color: #94a3b8; margin-top: 2px; }
.review-location i { font-size: 11px; }
.review-meta { text-align: right; }
.review-stars-sm { display: block; color: #fbbf24; font-size: 13px; letter-spacing: 1px; }
.review-meta time { font-size: 11px; color: #94a3b8; }
.google-review-card > p {
    font-size: 14px; color: #475569;
    line-height: 1.65; margin: 0 0 12px;
}
.review-verified {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    color: #16a34a;
    text-transform: uppercase;
    letter-spacing: .03em;
}

/* ——— Homepage: FAQ ——— */
.home-faq-section { background: #fafafa; }
.home-faq-list { max-width: 860px; margin: 0 auto; }
.home-faq-item { background: #fff; border-radius: 12px; margin-bottom: 10px; overflow: hidden; }
.home-faq-item summary { padding: 18px 20px; font-size: 15px; }
.home-faq-item .faq-answer { padding: 0 20px 18px; }
.home-faq-item .faq-answer p { margin: 0; font-size: 14px; line-height: 1.7; color: #64748b; }

/* ——— Homepage: SEO content ——— */
.home-seo-section { background: #fff; border-top: 1px solid var(--border-light); }
.seo-content-box {
    max-width: 860px;
    margin: 0 auto;
    padding: 8px 0;
}
.seo-content-box h2 {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 20px;
    line-height: 1.3;
}
.seo-content-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin: 0 0 16px;
}

/* ——— Hidden services sidebar ——— */
.hidden-services-box { padding: 0; }
.hidden-services-box .sidebar-card-head { padding: 16px 16px 0; margin-bottom: 10px; }
.hidden-services-note {
    font-size: 12px;
    color: #64748b;
    margin: 0;
    line-height: 1.45;
}
.hidden-categories { padding: 0 12px 12px; }
.hidden-category {
    border: 1px solid #e8eef7;
    border-radius: 12px;
    margin-bottom: 8px;
    overflow: hidden;
    background: #fafbfd;
    transition: border-color .2s, box-shadow .2s;
}
.hidden-category.is-active {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(4,82,218,.1);
}
.hidden-cat-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 12px;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    text-align: left;
    transition: background .15s;
}
.hidden-cat-toggle:hover { background: #eef4ff; }
.hidden-cat-name { flex: 1; }
.hidden-cat-count {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    background: #eef4ff;
    padding: 2px 8px;
    border-radius: 20px;
}
.hidden-cat-toggle i { font-size: 12px; color: #94a3b8; transition: transform .25s; }
.hidden-category.is-open .hidden-cat-toggle i { transform: rotate(180deg); color: var(--primary); }
.hidden-svc-list {
    list-style: none;
    margin: 0;
    padding: 4px 6px 6px;
    display: none;
    max-height: 200px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}
.hidden-category.is-open .hidden-svc-list { display: block; }
.hidden-svc-list li a {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    padding: 8px 10px;
    margin-bottom: 3px;
    font-size: 12px;
    font-weight: 600;
    color: #475569;
    line-height: 1.4;
    border-radius: 8px;
    transition: background .15s, color .15s;
}
.hidden-svc-list li a i {
    font-size: 16px;
    color: var(--primary);
    opacity: .5;
    flex-shrink: 0;
    margin-top: -1px;
}
.hidden-svc-list li a:hover {
    color: var(--primary);
    background: #fff;
    box-shadow: 0 1px 4px rgba(4,82,218,.08);
}
.hidden-svc-list li a:hover i { opacity: 1; }
.hidden-svc-list li.is-current a {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 4px 12px rgba(4,82,218,.25);
}
.hidden-svc-list li.is-current a i { color: #fff; opacity: 1; }
.hidden-svc-extra { display: none; }
.hidden-category.is-expanded .hidden-svc-extra { display: list-item; }
.hidden-category.is-expanded .hidden-svc-list { max-height: 320px; }
.hidden-show-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: calc(100% - 12px);
    margin: 0 6px 6px;
    padding: 9px;
    background: #fff;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s, border-color .15s;
}
.hidden-show-more:hover {
    background: #eef4ff;
    border-color: var(--primary);
}
.hidden-service-intro {
    background: #eef4ff;
    border-left: 4px solid var(--primary);
    padding: 14px 16px;
    border-radius: 0 8px 8px 0;
    font-size: 15px;
    line-height: 1.65;
    color: #334155;
    margin-bottom: 20px;
}

/* ——— Location picker sidebar ——— */
.location-picker-box .sidebar-card-head { padding: 16px 16px 0; }
.location-picker-note { font-size: 12px; color: #64748b; margin: 0; line-height: 1.45; }
.location-picker-form { padding: 0 16px 16px; display: flex; flex-direction: column; gap: 8px; }
.loc-label {
    font-size: 11px;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-top: 4px;
}
.loc-select-wrap {
    position: relative;
}
.loc-select-wrap > i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 14px;
    pointer-events: none;
    z-index: 1;
}
.loc-select {
    width: 100%;
    padding: 11px 12px 11px 36px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    background: #f8fafc;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    transition: border-color .2s, box-shadow .2s;
}
.loc-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(4,82,218,.12);
    background-color: #fff;
}
.loc-select:disabled { opacity: .5; cursor: not-allowed; }
.loc-go-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 6px;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}
.loc-go-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(4,82,218,.28);
}

/* ——— Urgency bar ——— */
.urgency-bar {
    background: linear-gradient(90deg, #0a1928 0%, #0f2744 50%, #0a1928 100%);
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.08);
    position: relative;
    z-index: 900;
}
.urgency-bar-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 15px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 13px;
}
.urgency-pulse {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34,197,94,.6);
    animation: urgency-pulse 1.8s infinite;
}
@keyframes urgency-pulse {
    0% { box-shadow: 0 0 0 0 rgba(34,197,94,.6); }
    70% { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.urgency-label { font-weight: 800; white-space: nowrap; }
.urgency-text { opacity: .85; }
.urgency-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: #fff !important;
    padding: 7px 16px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    margin-left: auto;
    transition: transform .15s, box-shadow .15s;
    white-space: nowrap;
}
.urgency-call-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(4,82,218,.35);
}
[dir="rtl"] .urgency-call-btn { margin-left: 0; margin-right: auto; }
@media (max-width:767px) {
    .urgency-text { display: none; }
    .urgency-call-btn { margin-left: 0; width: 100%; justify-content: center; }
}

/* ——— Service wizard ——— */
.service-wizard-section {
    background: linear-gradient(180deg, #f0f6ff 0%, #fff 100%);
    padding: 56px 0 64px;
    border-bottom: 1px solid #e8eef7;
}
.wizard-header { text-align: center; max-width: 720px; margin: 0 auto 28px; }
.wizard-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eef4ff;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 12px;
}
.wizard-header h2 {
    color: var(--navy);
    font-size: clamp(24px, 4vw, 34px);
    font-weight: 900;
    margin: 0 0 10px;
    line-height: 1.2;
}
.wizard-subtitle { color: #64748b; font-size: 16px; line-height: 1.6; margin: 0 0 16px; }
.wizard-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #475569;
}
.wizard-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 6px 12px;
    border-radius: 999px;
}
.service-wizard {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e8eef7;
    box-shadow: 0 20px 60px rgba(5,26,52,.1);
    padding: 24px;
    max-width: 920px;
    margin: 0 auto;
}
.wizard-progress {
    height: 4px;
    background: #e2e8f0;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 18px;
}
.wizard-progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary), #38bdf8);
    border-radius: 999px;
    transition: width .35s ease;
}
.wizard-steps-indicator {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.wizard-steps-indicator li {
    text-align: center;
    font-size: 11px;
    color: #94a3b8;
    font-weight: 700;
}
.wizard-steps-indicator li span {
    display: inline-flex;
    width: 28px; height: 28px;
    align-items: center; justify-content: center;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    font-size: 13px;
    margin-bottom: 4px;
    transition: all .2s;
}
.wizard-steps-indicator li.is-active span,
.wizard-steps-indicator li.is-done span {
    background: var(--primary);
    color: #fff;
}
.wizard-steps-indicator li.is-active { color: var(--primary); }
.wizard-panel { display: none; }
.wizard-panel.is-active { display: block; animation: wizardFade .3s ease; }
@keyframes wizardFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.wizard-panel-title { font-size: 18px; font-weight: 800; color: var(--navy); margin: 0 0 6px; }
.wizard-panel-hint { font-size: 14px; color: #64748b; margin: 0 0 14px; }
.wizard-search-wrap {
    position: relative;
    margin-bottom: 14px;
}
.wizard-search-wrap > i {
    position: absolute;
    left: 14px; top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}
.wizard-search {
    width: 100%;
    padding: 12px 14px 12px 40px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    transition: border-color .15s, box-shadow .15s;
}
.wizard-search:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(4,82,218,.12);
}
.wizard-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
    max-height: 320px;
    overflow-y: auto;
}
.wizard-service-card,
.wizard-district-card,
.wizard-neighborhood-card {
    border: 1px solid #e2e8f0;
    background: #fafbfd;
    border-radius: 12px;
    padding: 12px;
    cursor: pointer;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    transition: border-color .15s, background .15s, transform .15s;
}
.wizard-service-card:hover,
.wizard-district-card:hover,
.wizard-neighborhood-card:hover {
    border-color: var(--primary);
    background: #eef4ff;
    transform: translateY(-1px);
}
.wizard-service-card.is-selected,
.wizard-district-card.is-selected,
.wizard-neighborhood-card.is-selected {
    border-color: var(--primary);
    background: linear-gradient(135deg, #eef4ff, #dbeafe);
    box-shadow: 0 4px 14px rgba(4,82,218,.15);
}
.wizard-svc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    margin: 0 auto 8px;
    border-radius: 10px;
    background: #fff;
    color: var(--primary);
    font-size: 18px;
}
.wizard-district-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 8px;
    max-height: 340px;
    overflow-y: auto;
}
.wizard-district-card i { color: var(--primary); margin-bottom: 4px; display: block; }
.wizard-neighborhood-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
    max-height: 280px;
    overflow-y: auto;
}
.wizard-skip-btn {
    display: block;
    width: 100%;
    margin-top: 12px;
    padding: 10px;
    background: none;
    border: 1px dashed #cbd5e1;
    border-radius: 10px;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}
.wizard-skip-btn:hover { border-color: var(--primary); color: var(--primary); background: #f8fafc; }
.wizard-result-card { text-align: center; padding: 12px 8px 4px; }
.wizard-result-icon { font-size: 48px; color: #22c55e; margin-bottom: 8px; }
.wizard-result-title { font-size: 20px; font-weight: 900; color: var(--navy); margin: 0 0 8px; }
.wizard-result-text, .wizard-result-location { color: #64748b; font-size: 15px; margin: 0 0 8px; }
.wizard-result-location { font-weight: 700; color: var(--primary); }
.wizard-result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 18px 0 10px;
}
.wizard-result-phone { font-size: 13px; color: #94a3b8; margin: 0; }
.wizard-nav {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}
.wizard-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s;
}
.wizard-btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff !important;
}
.wizard-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(4,82,218,.28); }
.wizard-btn-outline {
    background: #fff;
    border: 2px solid var(--primary);
    color: var(--primary) !important;
}
.wizard-btn-ghost {
    background: #f1f5f9;
    color: #64748b !important;
}
.wizard-btn:disabled { opacity: .45; cursor: not-allowed; transform: none !important; }
.wizard-noscript { text-align: center; color: #64748b; margin-top: 16px; }
.wizard-noscript-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.wizard-noscript-links a {
    padding: 6px 12px;
    background: #eef4ff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}

.btn-wizard-hero, .hero-btn-wizard {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 999px;
    background: #fff;
    color: var(--primary) !important;
    border: 2px solid rgba(255,255,255,.6);
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    transition: transform .15s, box-shadow .15s;
}
.service-hero .hero-btn-wizard {
    background: rgba(255,255,255,.15);
    border-color: rgba(255,255,255,.35);
    color: #fff !important;
    backdrop-filter: blur(6px);
}
.btn-wizard-hero:hover, .hero-btn-wizard:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(4,82,218,.2);
}
.hero-with-image .btn-wizard-hero {
    border-color: var(--primary);
    background: #fff;
}

/* ——— Article inline CTAs ——— */
.article-call-cta {
    margin: 24px 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #dbeafe;
}
.article-call-cta--blue { background: linear-gradient(135deg, #eef4ff 0%, #f8fbff 100%); }
.article-call-cta--navy { background: linear-gradient(135deg, #0f2744 0%, #1a3a5c 100%); border-color: #1a3a5c; }
.article-call-cta--navy .article-call-cta-title,
.article-call-cta--navy .article-call-cta-text { color: rgba(255,255,255,.92); }
.article-call-cta--navy .article-call-cta-badges span { background: rgba(255,255,255,.12); color: #fff; }
.article-call-cta-inner { padding: 20px 22px; }
.article-call-cta-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}
.article-call-cta-badges span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    background: #fff;
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 999px;
}
.article-call-cta-title {
    display: block;
    font-size: 17px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
    line-height: 1.35;
}
.article-call-cta-text { font-size: 14px; color: #64748b; margin: 0 0 14px; line-height: 1.55; }
.article-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff !important;
    font-weight: 800;
    font-size: 15px;
    animation: btn-pulse 2s infinite;
    transition: transform .15s;
}
.article-call-btn:hover { transform: scale(1.03); }
.article-call-cta--navy .article-call-btn { background: #fff; color: var(--primary) !important; animation: none; }

/* ——— Conversion trust strip ——— */
.conversion-trust-strip {
    background: #fff;
    border-bottom: 1px solid #e8eef7;
    padding: 18px 0;
    box-shadow: 0 4px 20px rgba(5,26,52,.04);
}
.conversion-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
@media (max-width:991px) { .conversion-trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width:480px) { .conversion-trust-grid { grid-template-columns: 1fr; } }
.conversion-trust-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #eef2f7;
}
.conversion-trust-item i { color: var(--primary); font-size: 20px; margin-bottom: 4px; }
.conversion-trust-item strong { font-size: 14px; color: var(--navy); }
.conversion-trust-item span { font-size: 12px; color: #64748b; line-height: 1.4; }

.conversion-wizard-card { padding-bottom: 14px; }
.wizard-sidebar-link {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 16px;
    padding: 12px;
    border-radius: 10px;
    background: linear-gradient(135deg, #eef4ff, #dbeafe);
    color: var(--primary) !important;
    font-weight: 700;
    font-size: 14px;
    transition: transform .15s;
}
.wizard-sidebar-link:hover { transform: translateY(-1px); }

.btn-iletisim-solid { background: var(--primary) !important; color: #fff !important; border-color: var(--primary) !important; }
.mid-cta-row-single { grid-template-columns: 1fr !important; }
.cta-block-full { width: 100%; justify-content: center; font-size: 16px; padding: 16px !important; }
.hero-btns-single { justify-content: center; }
.btn-phone2-lg { font-size: 16px; padding: 16px 32px !important; }
.sidebar-btns-single .btn-phone { width: 100%; }
.sidebar-cta-phone-only { margin-bottom: 0 !important; }

/* Mobile bottom bar — phone only */
.mobile-bottom-bar-single { grid-template-columns: 1fr !important; }
.mobile-bottom-bar-single .call-btn-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: #fff !important;
    font-weight: 800;
    font-size: 15px;
    animation: btn-pulse 2s infinite;
}

