/* Car Service - Modern Site Styles */
:root {
    --primary: #e63946;
    --primary-dark: #c1121f;
    --dark: #1a1a2e;
    --dark-alt: #16213e;
    --gray: #6c757d;
    --light: #f8f9fa;
    --white: #ffffff;
    --accent: #e63946;
    --accent-dark: #c1121f;
    --shadow: 0 10px 40px rgba(0,0,0,.12);
    --radius: 12px;
    --transition: .3s ease;
}

/* Top bar */
.top-bar {
    background: var(--primary-dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}
.top-bar a { color: var(--white); text-decoration: none; }
.top-bar a:hover { opacity: .85; }
.top-bar .fa { margin-right: 6px; }

/* Header */
.site-header {
    background: var(--dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}
.site-header .navbar-brand {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--white) !important;
}
.site-header .navbar-brand span { color: var(--primary); }
.site-header .nav-link {
    color: rgba(255,255,255,.85) !important;
    font-weight: 500;
    padding: .5rem 1rem !important;
    transition: var(--transition);
}
.site-header .nav-link:hover,
.site-header .nav-link.active { color: var(--primary) !important; }
.site-header .btn-call {
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}
.site-header .btn-call:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    min-height: 50vh;
    overflow: hidden;
    background: var(--dark);
}
.hero-slides {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 360px;
    max-height: 480px;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,.88) 0%, rgba(30,41,59,.75) 50%, rgba(15,23,42,.6) 100%);
}
.hero-slide .hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 50px 0 60px;
}
.hero-slide .hero-badge {
    display: inline-block;
    background: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-slide h1 {
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 14px;
    max-width: 650px;
}
.hero-slide .lead {
    font-size: 1rem;
    opacity: .92;
    max-width: 520px;
    margin-bottom: 22px;
    line-height: 1.6;
}
.hero-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}
.hero-nav button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.6);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}
.hero-nav button.active {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.2);
}
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,.15);
    border: none;
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: var(--primary); }
.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }

/* Legacy hero (fallback) */
.hero-section {
    background: linear-gradient(135deg, rgba(15,23,42,.9) 0%, rgba(30,41,59,.85) 100%),
                url('../images/full-width-images/section-bg-19.jpg') center/cover no-repeat;
    min-height: 85vh;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
}
.hero-section .hero-badge {
    display: inline-block;
    background: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-section h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-section .lead {
    font-size: 1.15rem;
    opacity: .9;
    max-width: 600px;
    margin-bottom: 30px;
}
.hero-buttons .btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    margin-right: 12px;
    margin-bottom: 12px;
}
.btn-primary-custom {
    background: var(--primary);
    border: 2px solid var(--primary);
    color: var(--white);
}
.btn-primary-custom:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}
.btn-outline-custom {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}
.btn-outline-custom:hover {
    background: var(--white);
    color: var(--dark);
}
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}
.hero-stats .stat strong {
    display: block;
    font-size: 2rem;
    color: var(--primary);
}
.hero-stats .stat span { font-size: 14px; opacity: .8; }

/* Sections */
.section-padding { padding: 80px 0; }
.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}
.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px;
}

/* Service cards */
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid #eee;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
}
.service-card .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    font-size: 28px;
}
.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}
.service-card p { color: var(--gray); margin-bottom: 15px; line-height: 1.7; }
.service-card a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}
.service-card a:hover { text-decoration: underline; }

/* Vehicle cards */
.vehicle-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}
.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(15,23,42,.15);
}
.vehicle-card .card-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--light);
}
.vehicle-card .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .5s ease;
}
.vehicle-card:hover .card-img { transform: scale(1.05); }
.vehicle-card .card-img-wrap .brand-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.vehicle-card .card-body {
    padding: 22px 24px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.vehicle-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}
.vehicle-card .problems {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
}
.vehicle-card .problems li {
    font-size: 13px;
    color: var(--gray);
    padding: 4px 0;
    padding-left: 18px;
    position: relative;
}
.vehicle-card .problems li::before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}
.vehicle-card .btn-read {
    display: inline-block;
    background: var(--dark);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    margin-top: auto;
    align-self: flex-start;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.vehicle-card .btn-read:hover {
    background: var(--primary);
    color: var(--white);
}

/* Gallery crop helpers for section-bg-19 collage */
.img-crop-tl { object-position: 15% 20%; }
.img-crop-tc { object-position: 50% 15%; }
.img-crop-tr { object-position: 85% 20%; }
.img-crop-bl { object-position: 20% 80%; }
.img-crop-br { object-position: 85% 75%; }

/* Location cards */
.location-card {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-alt) 100%);
    color: var(--white);
    border-radius: var(--radius);
    padding: 35px;
    height: 100%;
    transition: var(--transition);
    display: block;
}
.location-card:hover {
    transform: translateY(-5px);
    color: var(--white);
    box-shadow: var(--shadow);
}
.location-card h3 { font-size: 1.4rem; font-weight: 600; margin-bottom: 10px; }
.location-card p { opacity: .85; margin-bottom: 15px; line-height: 1.7; }
.location-card .link-text {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}
.location-card .link-text:hover { text-decoration: underline; }

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(0,0,0,.7));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
}
.gallery-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}
.gallery-filter button {
    background: var(--white);
    border: 2px solid #ddd;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}
.gallery-filter button.active,
.gallery-filter button:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 8px;
}
.lightbox .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 40px;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}
.lightbox .caption {
    position: absolute;
    bottom: 30px;
    color: var(--white);
    text-align: center;
    width: 100%;
    font-size: 16px;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}
.cta-banner h2 { font-size: 2rem; font-weight: 700; margin-bottom: 15px; }
.cta-banner p { opacity: .9; margin-bottom: 25px; font-size: 1.1rem; }
.cta-banner .btn {
    background: var(--white);
    color: var(--primary);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}
.cta-banner .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
    color: var(--primary-dark);
}

/* Breadcrumb */
.breadcrumb-section {
    background: var(--light);
    padding: 20px 0;
}
.breadcrumb {
    margin: 0;
    background: none;
    padding: 0;
}
.breadcrumb-item a { color: var(--primary); text-decoration: none; }
.breadcrumb-item.active { color: var(--gray); }

/* Content pages */
.content-page h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark);
    margin: 35px 0 15px;
}
.content-page h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-alt);
    margin: 25px 0 12px;
}
.content-page p, .content-page li {
    color: #444;
    line-height: 1.8;
    font-size: 16px;
}
.content-page ul { margin-bottom: 20px; }
.content-page .problem-box {
    background: var(--light);
    border-left: 4px solid var(--primary);
    padding: 20px 25px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 20px 0;
}
.content-page .problem-box h4 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}
.content-page .sidebar {
    background: var(--light);
    border-radius: var(--radius);
    padding: 30px;
    position: sticky;
    top: 100px;
}
.content-page .sidebar h4 {
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark);
}
.content-page .sidebar ul {
    list-style: none;
    padding: 0;
}
.content-page .sidebar ul li {
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}
.content-page .sidebar ul li a {
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}
.content-page .sidebar ul li a:hover { color: var(--primary); }

/* Contact */
.contact-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px;
    text-align: center;
    box-shadow: var(--shadow);
    height: 100%;
    border: 1px solid #eee;
}
.contact-card .icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 24px;
}
.contact-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; }
.contact-card p, .contact-card a {
    color: var(--gray);
    text-decoration: none;
    font-size: 15px;
}
.contact-card a:hover { color: var(--primary); }
.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 40px;
}
.map-container iframe { width: 100%; height: 400px; border: 0; }

/* Footer */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,.8);
    padding: 60px 0 30px;
}
.site-footer h5 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1rem;
}
.site-footer ul {
    list-style: none;
    padding: 0;
}
.site-footer ul li { padding: 6px 0; }
.site-footer ul li a {
    color: rgba(255,255,255,.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}
.site-footer ul li a:hover { color: var(--primary); }
.site-footer .footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}
.site-footer .footer-brand span { color: var(--primary); }
.site-footer .social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,.1);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-right: 10px;
    transition: var(--transition);
    text-decoration: none;
}
.site-footer .social-links a:hover {
    background: var(--primary);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    font-size: 14px;
}

/* WhatsApp float - desktop only */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    box-shadow: 0 5px 20px rgba(37,211,102,.5);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
}

/* Mobile bottom bar */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,.1);
    z-index: 998;
    padding: 6px 0 calc(6px + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 20px rgba(0,0,0,.25);
}
@media (max-width: 767px) {
    .mobile-bottom-bar {
        display: flex;
        justify-content: space-around;
        align-items: stretch;
    }
    body {
        padding-bottom: 70px;
    }
    .whatsapp-float {
        display: none;
    }
}
.mbb-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 8px 4px;
    color: rgba(255,255,255,.65);
    text-decoration: none;
    font-size: 10px;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    background: none;
}
.mbb-item i {
    font-size: 20px;
}
.mbb-item.active,
.mbb-item:hover {
    color: var(--primary);
}
.mbb-item.mbb-whatsapp {
    color: #25d366;
}
.mbb-item.mbb-whatsapp i {
    font-size: 22px;
}
.mbb-item.mbb-call {
    color: var(--primary);
}
.mbb-item.mbb-call i {
    font-size: 22px;
}

/* Trust badges */
.trust-badges {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px 0;
    background: var(--light);
}
.trust-badge {
    text-align: center;
    padding: 15px;
}
.trust-badge .icon {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 10px;
}
.trust-badges.dark-stats .stat span { color: rgba(255,255,255,.7); }
.trust-badge strong {
    display: block;
    color: var(--dark);
    font-size: 14px;
}

/* SEO text block */
.seo-text {
    background: var(--light);
    padding: 60px 0;
}
.seo-text .content {
    max-width: 900px;
    margin: 0 auto;
}
.seo-text h2 { font-size: 1.5rem; margin-bottom: 20px; color: var(--dark); }
.seo-text p { color: #555; line-height: 1.8; margin-bottom: 15px; }

.section-padding.bg-light {
    background: var(--light) !important;
}

/* Instagram embed */
.instagram-section {
    background: var(--dark);
    padding: 70px 0;
}
.instagram-section .section-title {
    color: var(--white);
    font-size: clamp(1.8rem, 3vw, 2.3rem);
}
.instagram-section .section-subtitle {
    color: rgba(255,255,255,.75);
}
.instagram-embed-wrap {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
}
.instagram-embed-wrap iframe {
    width: 100%;
    height: 750px;
    min-height: 650px;
    border: 0;
    display: block;
}

/* Bilgi Al modal */
.bilgi-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.75);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.bilgi-modal.active { display: flex; }
.bilgi-modal-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px 30px 30px;
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
    max-height: 90vh;
    overflow-y: auto;
}
.bilgi-modal-box h3 {
    color: var(--dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    padding-right: 30px;
}
.bilgi-modal-box h4 {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    margin: 18px 0 10px;
}
.bilgi-desc {
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}
.bilgi-modal-box ul {
    margin: 0 0 15px;
    padding-left: 20px;
}
.bilgi-modal-box ul li {
    color: #444;
    padding: 4px 0;
    line-height: 1.6;
}
.bilgi-note {
    font-size: 14px;
    color: var(--gray);
    background: var(--light);
    padding: 12px 15px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    margin-bottom: 20px;
}
.bilgi-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.bilgi-actions .btn {
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.bilgi-actions .btn-outline-dark {
    border: 2px solid #25d366;
    color: #25d366;
    background: transparent;
}
.bilgi-actions .btn-outline-dark:hover {
    background: #25d366;
    color: var(--white);
}
.bilgi-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 32px;
    line-height: 1;
    color: var(--gray);
    cursor: pointer;
}
.bilgi-close:hover { color: var(--primary); }
@media (max-width: 991px) {
    .hero-slider { min-height: 45vh; }
    .hero-slides { height: 45vh; min-height: 320px; max-height: 420px; }
    .hero-slide .hero-content { padding: 40px 0 50px; }
    .hero-section { min-height: 70vh; text-align: center; }
    .hero-section .lead { margin: 0 auto 30px; }
    .hero-stats { justify-content: center; }
    .section-padding { padding: 50px 0; }
    .instagram-embed-wrap iframe { height: 600px; min-height: 500px; }
}
@media (max-width: 767px) {
    .hero-slider { min-height: 40vh; }
    .hero-slides { height: 40vh; min-height: 280px; max-height: 380px; }
    .hero-slide h1 { font-size: 1.35rem; }
    .hero-slide .lead { font-size: 0.9rem; }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
    .instagram-embed-wrap iframe { height: 520px; min-height: 450px; }
}

/* Bootstrap navbar mobile fix */
.site-header .navbar-toggler {
    border-color: rgba(255,255,255,.4);
    padding: 6px 10px;
}
.site-header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
@media (max-width: 991px) {
    .site-header .navbar-collapse {
        background: var(--dark-alt);
        padding: 15px;
        border-radius: var(--radius);
        margin-top: 10px;
    }
    .site-header .btn-call { display: inline-block; margin-top: 10px; }
}
@media (min-width: 992px) {
    .site-header .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }
}
