:root {
    --bizim-red: #e30613;
    --bizim-red-hover: #bd050f;
    --dark-blue: #0b1a30;
    --light-bg: #f8fafc;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--light-bg);
    color: #333;
}


header.site-header {
    background-color: #ffffff;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%; 
    box-sizing: border-box; 
    z-index: 9999; 
}





body {
    padding-top: 75px; 
}


.logo h1, .logo .site-logo-text {
    margin: 0;
    font-size: 24px;
    color: var(--dark-blue);
    font-weight: 800;
}
.logo h1 span, .logo .site-logo-text span { color: var(--bizim-red); }

.nav-links a {
    color: var(--dark-blue);
    text-decoration: none;
    margin-left: 25px;
    font-weight: 600;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--bizim-red); }

.hero-section {
    
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.8) 0%, rgba(21, 46, 82, 0.8) 100%), url('../../assets/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 60px 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
    margin-top: 0;
}
.hero-text h1 { font-size: 38px; margin-bottom: 20px; line-height: 1.2; }
.hero-text p { font-size: 16px; color: #cbd5e0; line-height: 1.6; }

.form-wrapper {
    flex: 1;
    min-width: 320px;
    max-width: 450px;
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    color: #333;
}
.form-wrapper h3 { margin-top: 0; color: var(--dark-blue); font-size: 22px; margin-bottom: 20px; }


.section-container { padding: 50px 5%; }
.section-title { text-align: center; color: var(--dark-blue); font-size: 28px; margin-bottom: 40px; }

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card, .blog-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    border: 1px solid #edf2f7;
    transition: transform 0.3s;
}
.product-card:hover, .blog-card:hover { transform: translateY(-5px); }
.product-card h4, .blog-card h4 { color: var(--dark-blue); margin: 0 0 10px 0; font-size: 18px; }
.card-link { color: var(--bizim-red); text-decoration: none; font-weight: 600; font-size: 14px; }


.product-carousel { position: relative; padding: 0 28px; }
.product-carousel__viewport {
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 8px 4px 20px;
}
.product-carousel__viewport::-webkit-scrollbar { display: none; }
.product-carousel__track { display: flex; gap: 24px; }
.product-carousel__item {
    flex: 0 0 calc((100% - 72px) / 4);
    min-width: 0;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
}
.product-carousel__item p { flex-grow: 1; line-height: 1.65; color: #64748b; }
.product-carousel__arrow {
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    width: 43px;
    height: 43px;
    padding: 0 0 4px;
    border: 0;
    border-radius: 50%;
    background: var(--bizim-red);
    color: #fff;
    box-shadow: 0 7px 18px rgba(11,26,48,.2);
    font: 300 34px/1 Arial,sans-serif;
    cursor: pointer;
}
.product-carousel__arrow--prev { left: 5px; }
.product-carousel__arrow--next { right: 5px; }
.product-carousel__arrow:disabled { opacity: .3; cursor: default; }
@media (max-width: 1050px) {
    .product-carousel__item { flex-basis: calc((100% - 48px) / 3); }
}
@media (max-width: 760px) {
    .product-carousel { padding: 0 16px; }
    .product-carousel__track { gap: 16px; }
    .product-carousel__item { flex-basis: calc((100% - 16px) / 2); }
    .product-carousel__arrow { width: 38px; height: 38px; font-size: 29px; }
    .product-carousel__arrow--prev { left: -3px; }
    .product-carousel__arrow--next { right: -3px; }
}
@media (max-width: 480px) {
    .product-carousel__item { flex-basis: 84%; }
}

footer.site-footer {
    position: relative;
    overflow: hidden;
    background: #000000;
    color: #aebbd0;
    font-size: 14px;
    border: 0;
    text-align: left;
}
.footer-accent { height: 5px; background: linear-gradient(90deg,#e30613 0 32%,#ff4b57 32% 42%,#e30613 42% 100%); }
.footer-main { max-width: 1320px; margin: 0 auto; padding: 70px 5% 55px; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.15fr; gap: clamp(32px,4vw,64px); }
.footer-logo { display: inline-block; margin-bottom: 20px; color: #fff; text-decoration: none; font-size: 28px; font-weight: 850; letter-spacing: -.04em; }
.footer-logo span { color: #f41022; }
.footer-logo img { display: block; width: auto; max-width: 240px; height: 72px; object-fit: contain; object-position: left center; }
.footer-brand-column > p { max-width: 390px; margin: 0; color: #aebbd0; line-height: 1.8; }
.footer-trust { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 24px; color: #dce5f2; font-size: 13px; }
.footer-trust span::first-letter { color: #f41022; }
.footer-column h2 { position: relative; margin: 4px 0 24px; padding-bottom: 13px; color: #fff; font-size: 16px; font-weight: 750; }
.footer-column h2::after { content: ''; position: absolute; left: 0; bottom: 0; width: 34px; height: 3px; border-radius: 5px; background: #e30613; }
.footer-column nav { display: grid; gap: 13px; }
.footer-column nav a { color: #aebbd0; text-decoration: none; line-height: 1.4; transition: color .2s ease, transform .2s ease; }
.footer-column nav a::before { content: '›'; margin-right: 8px; color: #e30613; font-size: 18px; vertical-align: -1px; }
.footer-column nav a:hover { color: #fff; transform: translateX(3px); }
.footer-contact { display: flex; flex-direction: column; }
.footer-contact-card { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.1); border-radius: 10px; background: rgba(255,255,255,.04); color: #fff; text-decoration: none; transition: background .2s ease, border-color .2s ease; }
.footer-contact-card:hover { background: rgba(255,255,255,.08); border-color: rgba(244,16,34,.6); }
.footer-contact-card > span:first-child { display: grid; place-items: center; width: 34px; height: 34px; flex: 0 0 34px; border-radius: 9px; background: #e30613; color: #fff; font-size: 16px; }
.footer-contact-card small,.footer-contact-card strong { display: block; }
.footer-contact-card small { margin-bottom: 3px; color: #8fa0b9; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }
.footer-contact-card strong { font-size: 14px; }
.footer-contact-link { margin-top: 6px; color: #fff; text-decoration: none; font-weight: 650; }
.footer-contact-link span { color: #f41022; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 19px max(5%,calc((100% - 1188px)/2)); display: flex; justify-content: space-between; gap: 25px; background: rgba(0,0,0,.13); }
.footer-bottom p { margin: 0; color: #8291a8; font-size: 12px; line-height: 1.5; }
@media (max-width: 1000px) {
    .footer-main { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 620px) {
    .footer-main { grid-template-columns: 1fr; padding: 48px 7% 38px; gap: 34px; }
    .footer-bottom { padding: 20px 7%; flex-direction: column; gap: 8px; }
    .footer-logo img { max-width: 220px; height: 64px; }
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 14px 30px rgba(18, 140, 126, 0.28);
    z-index: 10001;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(18, 140, 126, 0.35);
}

.whatsapp-float__icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-float__icon svg {
    width: 100%;
    height: 100%;
}

.whatsapp-float__text {
    line-height: 1;
}


.hero-bottom-cards {
    display: grid;
    gap: 14px;
    margin-top: 170px;
    position: relative;
    width: 100%;
}

.insurance-card-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
    width: 100%;
}


.insurance-card-row--primary {
    position: absolute;
    right: 0;
    bottom: calc(100% + 16px);
    left: 0;
}

.quick-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 15px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    border: 2px solid transparent;
    font: inherit;
    cursor: pointer;
    text-decoration: none;
    color: #0b1a30;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.quick-card:hover {
    transform: translateY(-8px);
    background-color: #f8fafc;
}

.quick-card:focus-visible,
.quick-card.is-selected {
    outline: none;
    border-color: #ff101f;
    box-shadow: 0 10px 26px rgba(255, 16, 31, 0.3);
}

.quick-card.is-selected {
    transform: translateY(-4px);
}

.quick-card .card-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.quick-card .card-title {
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}


.more-products-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-self: start;
    margin-left: 0;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.more-products-text:hover {
    opacity: 1;
}


.hasar-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1140px;
    margin: 40px auto 80px auto;
    padding: 0 20px;
    align-items: center;
}


.hasar-form-container {
    flex: 1;
    min-width: 320px;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f4f8;
}

.hasar-form-container h1, .hasar-form-container h3 {
    text-align: center;
    color: #0b1a30;
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: 700;
}

.or-divider {
    text-align: center;
    position: relative;
    margin: 20px 0;
    color: #a0aec0;
    font-size: 13px;
}

.or-divider::before, .or-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 42%;
    height: 1px;
    background: #e2e8f0;
}
.or-divider::before { left: 0; }
.or-divider::after { right: 0; }


.hasar-info-container {
    flex: 1;
    min-width: 320px;
}

.hasar-icon-group {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.hasar-mini-icon {
    width: 45px;
    height: 45px;
    background: #edf2f7;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #2b6cb0;
}

.hasar-info-container h2 {
    color: #0b1a30;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.hasar-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.hasar-bullet-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: #4a5568;
    line-height: 1.6;
    font-size: 15px;
}

.hasar-bullet-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: -2px;
    color: #3182ce;
    font-size: 24px;
}

.hasar-bullet-list li a {
    color: #3182ce;
    text-decoration: none;
    font-weight: 600;
}

.btn-hasar-center {
    display: inline-block;
    border: 2px solid #3182ce;
    color: #3182ce;
    padding: 12px 35px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 15px;
}

.btn-hasar-center:hover {
    background: #3182ce;
    color: #ffffff;
}


.product-card-img-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    height: 80px; 
}

.product-card-img-wrapper img {
    max-width: 80px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain; 
    display: block;
}

.product-card-img-wrapper .no-img-box {
    width: 80px;
    height: 80px;
    background-color: #f7fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    border: 1px dashed #cbd5e0;
}


.btn-bizim-teklif {
    width: 100%;
    background: linear-gradient(135deg, #e30613 0%, #ff2a36 100%);
    color: #ffffff;
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(227, 6, 19, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: block;
    text-align: center;
}


.btn-bizim-teklif:hover {
    background: linear-gradient(135deg, #bd050f 0%, #e30613 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(227, 6, 19, 0.45);
}


.btn-bizim-teklif:active {
    transform: translateY(1px);
    box-shadow: 0 3px 10px rgba(227, 6, 19, 0.2);
}


.dropdown-menu-item {
    position: relative;
    display: inline-block;
}


.dropdown-trigger::after {
    content: " ▾";
    font-size: 12px;
    vertical-align: middle;
}


.dropdown-menu-item {
    position: relative;
    display: inline-block;
}

.dropdown-trigger::after {
    content: " ▾";
    font-size: 12px;
    vertical-align: middle;
}

.dropdown-content-box {
    display: none;
    position: absolute;
    top: 100%; 
    left: 25px;
    background-color: #ffffff;
    width: max-content;
    min-width: 260px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 100;
    border: 1px solid #edf2f7;
    
    
    margin-top: 0px; 
    padding-top: 15px; 
}



.dropdown-content-box a {
    color: #0b1a30 !important;
    padding: 12px 24px !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important; 
    gap: 12px; 
    margin: 0 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    transition: all 0.2s ease !important;
    text-align: left;
    white-space: nowrap; 
}

.dropdown-content-box a:hover {
    background-color: #f8fafc !important;
    color: #e30613 !important;
    padding-left: 28px !important; 
}


.dropdown-item-img {
    width: 24px;
    height: 24px;
    object-fit: contain; 
    display: inline-block;
    flex-shrink: 0; 
}

.dropdown-menu-item:hover .dropdown-content-box {
    display: block;
}

 
        .contact-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            max-width: 1200px;
            margin: 40px auto 80px auto;
            padding: 0 20px;
        }
        
        .contact-left {
            flex: 1.2;
            min-width: 320px;
        }
        
        .contact-right {
            flex: 1;
            min-width: 320px;
            align-self: stretch;
        }
        
        
        .contact-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .contact-card-box {
            background: #ffffff;
            padding: 20px;
            border-radius: 12px;
            border: 1px solid #edf2f7;
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .contact-card-icon {
            width: 45px;
            height: 45px;
            background: #fff5f5;
            color: #e30613;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }
        
        .contact-card-content h4 { margin: 0 0 4px 0; color: #0b1a30; font-size: 15px; font-weight: 700; }
        .contact-card-content p { margin: 0; color: #718096; font-size: 13px; font-weight: 500; }
        
    
.map-container {
    width: 100%;
    height: 100%;
    min-height: 300px; 
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #edf2f7;
    position: relative;
}


.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
    display: block;
}


.dropdown-content-box::before {
    content: "";
    position: absolute;
    top: -20px; 
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent; 
}

.page-banner {
            background: linear-gradient(135deg, #0b1a30 0%, #152e52 100%);
            color: #ffffff;
            padding: 50px 5%;
            text-align: center;
        }
        .page-banner h1, .page-banner h2 { margin: 0 0 10px 0; font-size: 32px; }
        .page-banner p { margin: 0; color: #a0aec0; font-size: 14px; }
        .page-banner p a { color: #ffffff; text-decoration: none; }

        .filter-box {
            background: #ffffff;
            padding: 25px;
            border-radius: 16px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            border: 1px solid #edf2f7;
            margin-top: -30px;
            margin-left: 5%;
            margin-right: 5%;
            position: relative;
            z-index: 5;
        }
        .filter-form {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: flex-end;
        }
        .filter-group { flex: 1; min-width: 200px; }
        .filter-group label { display: block; font-weight: 600; margin-bottom: 8px; color: #4a5568; font-size: 14px; }
        
        .network-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 25px;
            padding: 50px 5%;
        }
        .network-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
            border: 1px solid #edf2f7;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .network-info h4 { margin: 0 0 5px 0; color: #0b1a30; font-size: 18px; }
        .network-info span { color: #718096; font-size: 14px; display: inline-block; background: #edf2f7; padding: 2px 10px; border-radius: 20px; }
        .network-badge { font-size: 24px; background: #fff5f5; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 10px; }

.dropdown-content-box {
    



    z-index: 10000 !important; 
}
@media (max-width: 768px) {
    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 58px;
        height: 58px;
        padding: 0;
        justify-content: center;
    }

    .whatsapp-float__text {
        display: none;
    }
}


.logo-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.site-logo-image { display: block; width: auto; max-width: 220px; height: 54px; object-fit: contain; object-position: left center; }

.site-header {
    gap: 24px;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 18px;
    margin-left: auto;
}

.nav-links a,
.dropdown-trigger {
    margin-left: 0;
    font: inherit;
}

.nav-phone-link {
    color: var(--bizim-red) !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-toggle-button {
    display: none !important;
    width: 0;
    height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    margin: 0;
}

.nav-toggle-button span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--dark-blue);
    display: block;
}

.dropdown-trigger {
    border: 0;
    background: transparent;
    color: var(--dark-blue);
    cursor: pointer;
    font-weight: 600;
    padding: 0;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
}

.dropdown-item-fallback {
    border-radius: 999px;
    background: #edf2f7;
    color: var(--bizim-red);
    font-size: 18px;
}

.dropdown-empty {
    display: block;
    color: #718096;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
}

header.site-header {
    background-color: #000000;
}

.logo h1,
.logo .site-logo-text {
    color: #ffffff;
}

.nav-links > a,
.nav-links > .dropdown-menu-item > .dropdown-trigger {
    color: #ffffff;
    font-weight: 800;
}

.nav-links > a:hover,
.nav-links > .dropdown-menu-item > .dropdown-trigger:hover {
    color: var(--bizim-red);
}

.nav-links > .nav-phone-link {
    color: var(--bizim-red) !important;
    font-weight: 800;
}

.nav-toggle-button {
    border-color: rgba(255, 255, 255, 0.35);
    background: #000000;
}

.nav-toggle-button span {
    background: #ffffff;
}

.hero-section {
    gap: 32px;
}

.hero-bottom-cards {
    margin-top: 320px;
}

.contact-form-box {
    box-sizing: border-box;
}

@media (min-width: 993px) {
    .dropdown-menu-item:hover .dropdown-content-box,
    .dropdown-menu-item:focus-within .dropdown-content-box {
        display: block;
    }
}

@media (max-width: 992px) {
    body {
        padding-top: 88px;
    }

    header.site-header {
        padding: 16px 20px;
        gap: 16px;
        align-items: center;
        flex-wrap: nowrap;
    }

    .site-header {
        align-items: center;
    }

    .logo {
        flex: 1;
        min-width: 0;
    }

    .logo h1, .logo .site-logo-text {
        font-size: 22px;
    }
    .site-logo-image { max-width: 180px; height: 46px; }

    .nav-toggle-button {
        display: inline-flex !important;
        width: 48px;
        height: 48px;
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 12px;
        background: transparent;
        opacity: 1;
        pointer-events: auto;
        margin-left: auto;
        flex-shrink: 0;
        position: relative;
        z-index: 2;
    }

    .nav-toggle-button span {
        width: 24px;
        height: 3px;
        background: #ffffff;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 12px);
        left: 16px;
        right: 16px;
        width: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        margin-left: 0;
        padding: 20px 22px;
        border-top: 0;
        border-radius: 24px;
        background: rgba(0, 0, 0, 0.98);
        box-shadow: 0 20px 40px rgba(11, 26, 48, 0.14);
        backdrop-filter: blur(10px);
        z-index: 1;
    }

    .site-header.is-nav-open .nav-links {
        display: flex;
    }

    .nav-links a,
    .dropdown-trigger {
        width: 100%;
        text-align: left;
        padding: 12px 0;
        font-size: 18px;
        line-height: 1.35;
    }

    .nav-phone-link {
        justify-content: flex-start;
        margin-top: 6px;
    }

    .dropdown-menu-item {
        width: 100%;
    }

    .dropdown-content-box {
        position: static;
        display: none;
        width: 100%;
        min-width: 0;
        margin-top: 6px;
        padding: 8px 0;
        box-shadow: none;
        border: 1px solid #edf2f7;
        border-radius: 18px;
        background: #f8fafc;
    }

    .dropdown-menu-item.is-open .dropdown-content-box {
        display: block;
    }

    .dropdown-content-box::before {
        display: none;
    }

    .dropdown-content-box a,
    .dropdown-empty {
        padding: 12px 16px !important;
        white-space: normal;
    }

    .hero-section {
        padding: 24px 16px 32px;
        align-items: stretch;
        flex-direction: column;
        gap: 20px;
    }

    .hero-text,
    .form-wrapper {
        min-width: 0;
        max-width: none;
        width: 100%;
        padding-right: 0;
    }

    .form-wrapper {
        order: 1;
        padding: 28px 22px;
        border-radius: 24px;
        box-shadow: 0 18px 40px rgba(11, 26, 48, 0.24);
    }

    .hero-text {
        order: 2;
    }

    .hero-text h1 {
        font-size: 34px;
        margin-bottom: 14px;
    }

    .hero-text p {
        max-width: 30ch;
        margin-bottom: 0;
    }

    .hero-bottom-cards {
        margin-top: 20px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        align-items: stretch;
    }

    .insurance-card-row {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 14px;
    }

    .quick-card {
        min-width: 0;
        width: 100%;
        padding: 18px 14px;
    }

    .more-products-text {
        grid-column: 1 / -1;
        width: 100%;
        justify-content: center;
        margin-left: 0;
        padding-top: 6px;
    }

    .hasar-wrapper,
    .contact-wrapper {
        gap: 24px;
        margin: 24px auto 56px;
        padding: 0 16px;
    }

    .hasar-form-container,
    .hasar-info-container,
    .contact-left,
    .contact-right {
        min-width: 0;
    }

    .hasar-form-container {
        padding: 28px 22px;
    }

    .hasar-info-container h2 {
        font-size: 28px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-right {
        min-height: 360px;
    }
}

@media (max-width: 768px) {
    .insurance-card-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .insurance-card-row--primary {
        position: static;
    }

    .hero-text h1 {
        font-size: 30px;
    }

    .hero-text p {
        font-size: 15px;
    }

    .quick-card {
        min-height: 112px;
    }

    .page-banner {
        padding: 36px 20px;
    }

    .page-banner h1, .page-banner h2 {
        font-size: 28px;
    }

    .hasar-icon-group {
        margin-bottom: 18px;
    }

    .hasar-info-container h2 {
        font-size: 24px;
    }

    .contact-card-box,
    .contact-form-box {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .map-container {
        min-height: 320px;
    }
}

@media (max-width: 420px) {
    .hero-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .form-wrapper {
        padding: 24px 18px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-bottom-cards {
        grid-template-columns: 1fr;
    }
}

.home-slider {
    position: relative;
    width: 100%;
    height: clamp(430px, 48vw, 690px);
    overflow: hidden;
    isolation: isolate;
    background: #0b1a30;
}

.dedicated-quote-page { background: #f3f6fa; min-height: 75vh; padding: 55px 5%; }
.dedicated-quote-hero { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: minmax(0,.9fr) minmax(520px,1.1fr); border-radius: 24px; overflow: hidden; box-shadow: 0 22px 55px rgba(11,26,48,.12); background: #fff; }
.dedicated-quote-intro { padding: clamp(42px,6vw,78px); background: linear-gradient(145deg,#0b1a30,#18375d); color: #fff; display: flex; flex-direction: column; justify-content: center; }
.dedicated-quote-icon { display: grid; place-items: center; width: 72px; height: 72px; margin-bottom: 25px; border-radius: 18px; background: rgba(255,255,255,.12); font-size: 34px; }
.dedicated-quote-kicker { margin: 0 0 12px!important; color: #ff6570!important; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; font-size: 13px!important; }
.dedicated-quote-intro h1 { margin: 0; font-size: clamp(34px,4vw,54px); line-height: 1.08; color: #fff; }
.dedicated-quote-intro > p { color: #d9e4f2; line-height: 1.75; font-size: 17px; }
.dedicated-quote-intro ul { padding: 0; margin: 25px 0 0; list-style: none; display: grid; gap: 13px; }
.dedicated-quote-intro li::before { content: '✓'; display: inline-grid; place-items: center; width: 23px; height: 23px; margin-right: 10px; border-radius: 50%; background: #e30613; color: #fff; font-weight: 800; }
.dedicated-quote-form-card { padding: clamp(32px,5vw,62px); }
.dedicated-quote-form-card h2 { margin: 0 0 28px; color: #0b1a30; font-size: 28px; }
.dedicated-quote-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0 20px; }
.dedicated-quote-wide { grid-column: 1/-1; }
.dedicated-quote-message { padding: 15px 17px; margin-bottom: 22px; border-radius: 9px; font-weight: 600; line-height: 1.5; }
.dedicated-quote-message.is-success { background: #d8f5e4; color: #19653b; }
.dedicated-quote-message.is-error { background: #fff0f1; color: #9f1723; }
.dedicated-quote-consent { display: flex; gap: 10px; align-items: flex-start; margin: 5px 0 22px; color: #526176; font-size: 13px; line-height: 1.55; }
.dedicated-quote-consent input { appearance: auto!important; -webkit-appearance: checkbox!important; width: 19px!important; height: 19px!important; min-width: 19px; margin: 2px 0 0!important; opacity: 1!important; accent-color: #e30613; cursor: pointer; }
.quote-honeypot { position: absolute!important; left: -9999px!important; width: 1px!important; height: 1px!important; overflow: hidden!important; }
.dedicated-quote-form-card .btn-bizim-teklif { width: 100%; }
.dedicated-quote-form-card .btn-bizim-teklif:not(.is-ready) { opacity: 1; filter: none; box-shadow: 0 7px 18px rgba(227,6,19,.28); }
.dedicated-quote-form-card .btn-bizim-teklif.is-ready { opacity: 1; filter: none; box-shadow: 0 10px 24px rgba(227,6,19,.38); transform: translateY(-1px); }
.dedicated-quote-form-card .btn-bizim-teklif.is-submitting { opacity: .75; cursor: wait; transform: none; }
@media (max-width: 900px) {
    .dedicated-quote-page { padding: 28px 4%; }
    .dedicated-quote-hero { grid-template-columns: 1fr; }
    .dedicated-quote-intro { padding: 42px 32px; }
}
@media (max-width: 580px) {
    .dedicated-quote-grid { grid-template-columns: 1fr; }
    .dedicated-quote-wide { grid-column: auto; }
    .dedicated-quote-form-card { padding: 30px 20px; }
}
.home-slider__track, .home-slide { position: absolute; inset: 0; }
.home-slide {
    visibility: hidden;
    opacity: 0;
    transition: opacity .8s ease, visibility .8s ease;
    pointer-events: none;
}
.home-slide.is-active { visibility: visible; opacity: 1; pointer-events: auto; z-index: 1; }
.home-slide > img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.home-slide__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5,18,36,.82) 0%, rgba(10,25,47,.54) 48%, rgba(10,25,47,.15) 100%);
}
.home-slide__content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    max-width: 1440px;
    width: 100%;
    margin: auto;
    padding: 48px clamp(70px, 8vw, 130px);
    color: #fff;
}
.home-slide__content--center { justify-content: center; text-align: center; }
.home-slide__content--right { justify-content: flex-end; text-align: right; }
.home-slide__copy { width: min(680px, 70vw); }
.home-slide__title { font-size: clamp(34px, 4.2vw, 64px); line-height: 1.08; font-weight: 800; letter-spacing: -.02em; text-shadow: 0 3px 18px rgba(0,0,0,.35); }
.home-slide__copy p { margin: 22px 0 0; font-size: clamp(16px, 1.45vw, 21px); line-height: 1.65; color: rgba(255,255,255,.94); text-shadow: 0 2px 12px rgba(0,0,0,.3); }
.home-slide__button { display: inline-flex; align-items: center; justify-content: center; margin-top: 30px; min-height: 52px; padding: 13px 27px; border-radius: 7px; background: #e30613; color: #fff; font-weight: 750; text-decoration: none; box-shadow: 0 10px 25px rgba(227,6,19,.28); transition: transform .2s ease, background .2s ease; }
.home-slide__button:hover { color: #fff; background: #bd0611; transform: translateY(-2px); }
.home-slider__arrow { position: absolute; z-index: 3; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; background: rgba(7,21,41,.38); color: #fff; font: 300 40px/1 Arial,sans-serif; cursor: pointer; transition: background .2s ease; }
.home-slider__arrow:hover { background: #e30613; }
.home-slider__arrow--prev { left: 22px; }
.home-slider__arrow--next { right: 22px; }
.home-slider__dots { position: absolute; z-index: 3; left: 50%; bottom: 22px; transform: translateX(-50%); display: flex; gap: 9px; }
.home-slider__dots button { width: 11px; height: 11px; padding: 0; border: 2px solid #fff; border-radius: 50%; background: transparent; cursor: pointer; box-shadow: 0 1px 5px rgba(0,0,0,.4); }
.home-slider__dots button.is-active { width: 30px; border-radius: 8px; background: #e30613; border-color: #e30613; }
@media (max-width: 768px) {
    html, body { max-width: 100%; overflow-x: hidden; }
    .site-header .logo-link { max-width: calc(100vw - 108px); overflow: hidden; }
    .site-header .site-logo-image { width: auto !important; max-width: 100%; height: 46px !important; object-fit: contain; }
    .home-slider { height: 500px; min-height: 0; }
    .home-slider__track, .home-slide { position: absolute; inset: 0; width: 100%; height: 100%; }
    .home-slide > img { width: 100% !important; height: 100% !important; max-width: none; object-fit: cover !important; }
    .home-slide__content { padding: 42px 48px; }
    .home-slide__copy { width: 100%; }
    .home-slide__title { font-size: clamp(29px, 9vw, 40px); }
    .home-slide__copy p { font-size: 16px; line-height: 1.5; }
    .home-slide__shade { background: rgba(5,18,36,.58); }
    .home-slider__arrow { width: 40px; height: 40px; font-size: 31px; }
    .home-slider__arrow--prev { left: 9px; }
    .home-slider__arrow--next { right: 9px; }
}
@media (max-width: 420px) {
    .home-slider { height: 460px; }
    .home-slide__content { padding: 38px 42px; }
    .home-slide__button { margin-top: 22px; min-height: 46px; padding: 11px 20px; }
}
@media (prefers-reduced-motion: reduce) {
    .home-slide, .home-slide__button { transition: none; }
}
