:root {
    --primary: #000000;
    --gray: #4b5563;
    --light-gray: #f3f4f6;
    --bg: #ffffff;
    --text: #1f2937;
    --muted: #6b7280;
    --border: #e5e7eb;
    --radius: 20px;
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
    --transition: all 0.3s ease;
}

html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden !important;
    width: 100%;
    position: relative;
}
body { font-family: 'Outfit', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; -webkit-overflow-scrolling: touch; }

/* LAYOUT */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; box-sizing: border-box; }
.section-padding { padding: 80px 0; }

/* RESPONSIVE GRID UTILITIES */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 991px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 20px; }
    .section-padding { padding: 50px 0; }
}

/* HEADER & NAV (PREMIUM GLASS) */
/* HEADER & NAV (CLASSIC) */
header { background: #fff; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--light-gray); }
.header-inner { height: 90px; display: flex; align-items: center; justify-content: space-between; position: relative; }
.logo img { display: block; }

nav ul { list-style: none; display: flex; align-items: center; gap: 30px; }
nav ul li a { text-decoration: none; color: var(--text); font-weight: 600; font-size: 0.9rem; transition: var(--transition); text-transform: uppercase; letter-spacing: 0.5px; }
nav ul li a:hover { color: var(--gray); }

/* MOBILE MENU BUTTON (HAMBURGER) */

/* COMPONENTS: HERO */
.hero { padding: 100px 0; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.hero-content { flex: 1.2; }
.hero-content h1 { font-size: 4rem; font-weight: 800; line-height: 1; letter-spacing: -3px; margin-bottom: 25px; }
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.2rem; letter-spacing: -1px; }
    .hero-content p { font-size: 1rem; margin-bottom: 25px; }
}
.hero-content p { font-size: 1.2rem; color: var(--gray); margin-bottom: 40px; max-width: 550px; }
.hero-img { flex: 1; text-align: center; }
.hero-img img { max-width: 100%; filter: drop-shadow(0 20px 50px rgba(0,0,0,0.1)); transition: var(--transition); }

/* COMPONENTS: CARDS */
/* COMPONENTS: CARDS */
.card { background: #fff; padding: 25px; border-radius: var(--radius); text-decoration: none; border: 1px solid var(--light-gray); transition: var(--transition); box-shadow: var(--shadow); }
.card:hover { border-color: var(--primary); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 35px; border-radius: 12px; font-weight: 700; text-decoration: none; transition: var(--transition); font-size: 0.9rem; cursor: pointer; border: none; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { opacity: 0.85; }

/* BUTTONS */
/* BUTTONS REFINEMENT */
.btn-primary:active { transform: scale(0.96); }

/* SLIDER & HERO (STABLE) */
.slider-wrapper { position: relative; overflow: hidden; height: 550px; background: #000; }
.s-slide { background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; color: white; text-align: center; height: 100%; }
.s-overlay { background: rgba(0,0,0,0.5); width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.s-content { max-width: 800px; padding: 0 20px; }
.s-content h1 { font-size: 3.5rem; font-weight: 800; margin-bottom: 20px; text-shadow: 0 4px 20px rgba(0,0,0,0.5); line-height: 1.1; }
@media (max-width: 768px) { .s-content h1 { font-size: 1.8rem; } .s-content p { font-size: 0.95rem; } }
.s-content p { font-size: 1.2rem; opacity: 0.9; margin-bottom: 35px; }

/* CALC SECTION (MODERNIZED) */
.calc-section { padding: 40px 0; background: #fff; margin-top: -60px; position: relative; z-index: 100; }
.calc-card { 
    background: white; padding: 50px; border-radius: 32px; 
    box-shadow: 0 30px 90px rgba(0,0,0,0.08); 
    border: 1px solid var(--light-gray); 
}
.calc-header { text-align: center; margin-bottom: 45px; }
.calc-header h2 { color: var(--primary); font-weight: 800; font-size: 1.8rem; letter-spacing: -1.5px; text-transform: uppercase; margin-bottom: 10px; }
.calc-header p { color: var(--gray); font-weight: 500; font-size: 1rem; }

.calc-form { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) auto; gap: 25px; align-items: flex-end; }
@media (max-width: 991px) { .calc-form { grid-template-columns: 1fr; } .calc-form .btn { width: 100%; } }

.form-group { display: flex; flex-direction: column; gap: 12px; }
.form-label { font-weight: 800; font-size: 0.875rem; text-transform: uppercase; color: var(--primary); letter-spacing: 1.5px; opacity: 0.8; }

.form-select {
    width: 100%; padding: 18px 24px; border-radius: 16px; border: 2px solid var(--light-gray);
    background: #fff; font-size: 0.95rem; font-weight: 600; color: var(--text);
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' 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 24px center; transition: var(--transition);
}
.form-select:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 5px rgba(0,0,0,0.03); }
.form-select:disabled { background: #f9fafb; cursor: not-allowed; opacity: 0.6; }

.calc-result { margin-top: 45px; text-align: center; padding-top: 40px; border-top: 1px dashed var(--light-gray); animation: slideUp 0.5s ease; }
@keyframes slideUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.calc-result p { font-weight: 700; color: var(--muted); margin-bottom: 10px; }
.calc-result h3 { font-size: 2.2rem; color: var(--primary); font-weight: 800; margin-bottom: 30px; letter-spacing: -1px; }


/* FEATURES & ADVANTAGES */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.feature-card { background: white; padding: 50px 40px; border-radius: 40px; border: 1px solid var(--light-gray); text-align: center; transition: var(--transition); }
.feature-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); border-color: var(--primary); }
.feature-icon { width: 85px; height: 85px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 30px; }

/* KARGO PROCESS */
.kargo-banner { background: var(--primary); color: white; padding: 80px 60px; border-radius: 50px; position: relative; overflow: hidden; }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 50px; }
.process-step { text-align: center; }
.step-num { font-size: 1.8rem; font-weight: 800; margin-bottom: 20px; opacity: 0.3; }

/* POPULAR MODELS */
.popular-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 25px; }

.model-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 30px 20px;
    border: 1px solid var(--light-gray);
    border-radius: 24px;
    text-decoration: none;
    color: var(--text);
    transition: var(--transition);
    text-align: center;
    min-height: 180px;
}
.model-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.07);
    border-color: var(--primary);
}

/* Logo container — sabit yükseklik */
.model-card > div:first-child {
    width: 100%;
    height: 70px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden;
}

.model-card img {
    max-height: 55px !important;
    max-width: 90%;
    object-fit: contain;
    filter: grayscale(50%);
    opacity: 0.8;
    transition: var(--transition);
}
.model-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Swiper slide içindeki model-card tam genişlik almalı */
.swiper-slide .model-card {
    width: 100%;
    box-sizing: border-box;
}

/* BRANDS LIST & DETAIL GRID */
.brand-models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    padding: 50px 0 80px;
}

.brand-model-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 35px 25px;
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.brand-model-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    border-color: var(--primary);
}

.brand-model-card .model-img-w {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.brand-model-card .model-img-w img {
    max-height: 70px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(60%);
    opacity: 0.8;
    transition: var(--transition);
}

.brand-model-card:hover .model-img-w img {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-model-card h2 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .brand-models-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
        padding: 30px 0 60px;
    }

    .brand-model-card {
        padding: 25px 15px;
        border-radius: 18px;
    }
}

/* BREADCRUMBS */
.breadcrumbs {
    background: #f8fafc;
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--muted);
}
.breadcrumbs a {
    color: var(--muted);
    text-decoration: none;
    transition: var(--transition);
}
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs i { margin: 0 8px; font-size: 0.7rem; opacity: 0.5; }
.breadcrumbs span { color: var(--primary); }

/* MODEL DETAIL — SERVICE GRID */
.service-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 60px;
}

.service-item-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    text-decoration: none;
    color: var(--text);
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.service-item-card:hover {
    border-color: var(--primary);
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
}
.service-item-card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

/* MODEL DETAIL — INFO + STEPS GRID */
.info-block-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 35px;
    margin-top: 60px;
    align-items: start;
}

.model-info-text {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
}

.process-steps-card {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 35px;
    position: sticky;
    top: 110px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px dashed var(--border);
}
.step-item:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.step-badge {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .info-block-grid { grid-template-columns: 1fr; }
    .process-steps-card { position: static; }
}

/* FAQ */
.faq-row { background: white; border: 1px solid var(--light-gray); border-radius: 20px; margin-bottom: 15px; overflow: hidden; transition: var(--transition); }
.faq-q { padding: 25px 30px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 800; color: var(--primary); text-transform: uppercase; font-size: 0.9rem; }
.faq-a { max-height: 0; padding: 0 30px; color: var(--text); font-size: 1rem; transition: 0.4s ease; line-height: 1.8; opacity: 0; pointer-events: none; }
.faq-row.active .faq-a { max-height: 500px; opacity: 1; padding-bottom: 30px; pointer-events: auto; }
.faq-row.active .faq-q i { transform: rotate(45deg); color: var(--primary); }

/* TAG CLOUD */
.areas-section { padding: 80px 0; background: white; border-top: 1px solid var(--light-gray); text-align: center; }
.tag-cloud { font-size: 0.95rem; color: var(--gray); line-height: 2.2; max-width: 900px; margin: 0 auto; opacity: 0.8; }

/* MOBILE RESPONSIVE TWEAKS */
@media (max-width: 768px) {
    .slider-wrapper { height: 450px; }
    .s-content h1 { font-size: 2.4rem; }
    .calc-card { padding: 30px 20px; }
    .calc-form { flex-direction: column; align-items: stretch; }
    .kargo-banner { padding: 60px 30px; border-radius: 30px; }
    .feature-card { padding: 40px 25px; }
}

/* BRAND DETAIL PAGE (PREMIUM HERO) */
/* BRAND & MODEL HERO (STABLE) */
.brand-hero, .model-hero, .service-hero { background: #f8fafc; padding: 60px 0; border-bottom: 1px solid var(--light-gray); color: var(--text); }
.brand-hero-inner, .model-hero-inner, .service-hero-inner { display: flex; align-items: center; gap: 40px; }
.brand-logo-w, .model-img-card, .service-hero-img { background: white; padding: 25px; border-radius: 20px; box-shadow: var(--shadow); flex-shrink: 0; border: 1px solid var(--light-gray); }
.brand-logo-w img, .model-img-card img, .service-hero-img img { max-height: 70px; display: block; }
.brand-hero-content h1, .model-hero-content h1, .service-hero-content h1 { font-size: 2.2rem; font-weight: 800; color: var(--primary); letter-spacing: -1.5px; }
.brand-hero-content p, .model-hero-content p, .service-hero-content p { margin-top: 10px; font-size: 1.1rem; color: var(--gray); max-width: 600px; }

.main-with-sidebar { display: grid; grid-template-columns: 2.2fr 1fr; gap: 40px; margin-top: 40px; }
.service-content-card { background: white; padding: 40px; border-radius: 24px; border: 1px solid var(--light-gray); }
.sidebar-card { background: #fff; padding: 30px; border-radius: 24px; border: 1px solid var(--light-gray); }

@media (max-width: 991px) {
    .service-hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .service-hero-content h1 { font-size: 2.2rem; }
    .main-with-sidebar { grid-template-columns: 1fr; margin-top: 30px; gap: 30px; }
}

/* PREMIUM SWIPER TWEAKS */
.swiper-button-next, .swiper-button-prev {
    width: 45px !important;
    height: 45px !important;
    background: #fff !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    border: 1px solid var(--border) !important;
    transition: var(--transition) !important;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.1rem !important;
    font-weight: 800 !important;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--primary) !important;
    color: #fff !important;
    transform: scale(1.1);
}

@media (max-width: 1100px) {
    .swiper-button-next, .swiper-button-prev { display: none !important; }
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
    width: 24px !important;
    border-radius: 5px !important;
}

/* MARQUEE & FOOTER */
.brands-marquee { background: #fff; padding: 60px 0; border-top: 1px solid var(--light-gray); border-bottom: 1px solid var(--light-gray); overflow: hidden; }
.marquee-w { display: flex; width: max-content; animation: marquee-m 40s linear infinite; gap: 80px; align-items: center; }
@keyframes marquee-m { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-w a { display: block; opacity: 0.4; transition: var(--transition); filter: grayscale(100%); }
.marquee-w a:hover { opacity: 1; filter: grayscale(0); }
.marquee-w img { max-height: 40px; }

footer.m-footer { background: var(--primary); color: #cbd5e1; padding: 100px 0 40px; border-top: 1px solid var(--light-gray); }
footer.m-footer h3, footer.m-footer h4 { color: #fff; font-weight: 800; margin-bottom: 30px; letter-spacing: -1px; text-transform: uppercase; font-size: 1.25rem; }
footer.m-footer a { color: #fff; text-decoration: none; font-weight: 600; opacity: 0.7; transition: 0.3s; }
footer.m-footer a:hover { opacity: 1; color: var(--secondary); }
footer.m-footer p { margin-bottom: 15px; line-height: 1.8; font-size: 0.95rem; }
footer.m-footer .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 60px; }
footer.m-footer ul { list-style: none; padding: 0; line-height: 2.6; }

.f-bottom { border-top: 1px solid rgba(255,255,255,0.05); margin-top: 60px; padding-top: 30px; font-size: 0.875rem; text-align: center; color: #64748b; font-weight: 700; letter-spacing: 1px; }

@media (max-width: 768px) {
    footer.m-footer { text-align: center; }
    footer.m-footer .footer-grid { gap: 40px; }
}

/* =============================================
   HAMBURGER MENU & MOBILE NAV — FULL REWRITE
   ============================================= */

/* Mobile toggle — visible on small screens */
.mobile-toggle {
    display: none; /* Desktop default */
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #000;
    cursor: pointer;
    padding: 10px;
    margin-right: 15px; /* Fixed: too far right issue */
    z-index: 1100;
    position: relative;
    transition: var(--transition);
}

/* Nav overlay (dark curtain behind menu) */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1050;
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.nav-overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 991px) {

    /* Show hamburger button */
    .mobile-toggle { 
        display: flex !important; 
        margin-right: 40px; /* Moved even further to prevent 'corner' feeling */
    }

    /* Hide the desktop call/contact button */
    /* Fix: İletişim butonunu mobil menüde göster */
    .nav-call { display: flex !important; margin-top: 20px; width: 100%; justify-content: center; }

    /* Target the nav specifically when active */
    #main-nav {
        display: block !important;
    }
    .mobile-nav-info { display: block !important; }

    /* Slide-in nav panel using transforms to prevent overflow scrolling issues */
    #main-nav {
        position: fixed;
        top: 0;
        right: 0; /* Align to right but hide with transform */
        width: 300px;
        height: 100vh;
        background: #fff;
        z-index: 1100;
        padding: 80px 30px 40px;
        box-shadow: -10px 0 40px rgba(0,0,0,0.12);
        transform: translateX(100%); /* Hides it off-screen reliably */
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }

    #main-nav.active { transform: translateX(0); }

    #main-nav ul {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }

    #main-nav ul li {
        width: 100%;
        border-bottom: 1px solid var(--light-gray);
    }
    #main-nav ul li:last-child { border-bottom: none; }

    #main-nav ul li a {
        display: block;
        padding: 18px 0;
        font-size: 1rem;
        font-weight: 700;
        color: var(--text);
        letter-spacing: 0.5px;
        transition: var(--transition);
    }
    #main-nav ul li a:hover { color: var(--primary); padding-left: 8px; }

    /* WhatsApp & Arama shortcuts inside mobile nav */
    #main-nav::after {
        content: "";
    }

    .header-inner { height: 70px; }
    .logo img { max-height: 48px !important; }
}

/* =============================================
   SABİT FLOATING ACTION BUTTONS (WhatsApp + Tel)
   ============================================= */

.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9000;
}

.fab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px 0 0;
    height: 54px;
    border-radius: 27px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    white-space: nowrap;
    max-width: 54px; /* collapsed — icon only */
}

.fab-btn i {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    border-radius: 27px;
}

.fab-btn span {
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.fab-btn:hover {
    max-width: 200px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    transform: translateY(-2px);
}

.fab-btn:hover span {
    opacity: 1;
    max-width: 130px;
}

/* WhatsApp — Green */
.fab-wa { background: #25D366; }
.fab-wa i { background: #1ea952; }
.fab-wa:hover { background: #20b857; }

/* Telephone — Black */
.fab-call { background: #000; }
.fab-call i { background: #222; }
.fab-call:hover { background: #1a1a1a; }

/* Pulse animation on WhatsApp */
@keyframes wa-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.fab-wa { animation: wa-pulse 2.5s ease-out infinite; }
.fab-wa:hover { animation: none; }

/* =============================================
   COMPREHENSIVE MOBILE RESPONSIVE — ALL PAGES
   ============================================= */

/* Slider */
@media (max-width: 768px) {
    .slider-wrapper { height: 380px; }
    .s-content h1 { font-size: 1.9rem; letter-spacing: -1px; }
    .s-content p { font-size: 0.95rem; }
    .s-content .btn { padding: 12px 25px; font-size: 0.85rem; }
}

/* Calc / valuation */
@media (max-width: 768px) {
    .calc-section { padding: 0 0 30px; margin-top: -30px; }
    .calc-card { padding: 28px 18px; border-radius: 20px; }
    .calc-header h2 { font-size: 1.3rem; letter-spacing: -0.5px; }
    .calc-form { display: flex; flex-direction: column; gap: 16px; }
    .calc-form .btn { width: 100%; justify-content: center; height: 55px; }
    .form-select { padding: 15px 18px; }
}

/* Features grid */
@media (max-width: 768px) {
    .features-grid { grid-template-columns: 1fr; gap: 20px; }
    .feature-card { padding: 35px 20px; border-radius: 24px; }
    .feature-icon { width: 70px; height: 70px; font-size: 1.7rem; }
}

/* Kargo banner */
@media (max-width: 768px) {
    .kargo-banner { padding: 40px 20px; border-radius: 24px; }
    .kargo-banner h2 { font-size: 1.4rem; margin-bottom: 35px; }
    .process-grid { grid-template-columns: 1fr 1fr; gap: 25px; }
    .step-num { font-size: 1.3rem; }
}

/* Brand / Model hero */
@media (max-width: 768px) {
    .brand-hero, .model-hero, .service-hero { padding: 35px 0; }
    .brand-hero-inner, .model-hero-inner, .service-hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .brand-hero-content h1, .model-hero-content h1, .service-hero-content h1 {
        font-size: 1.6rem;
        letter-spacing: -1px;
    }
    .brand-logo-w img, .model-img-card img, .service-hero-img img { max-height: 55px; }
}

/* Model grid cards */
@media (max-width: 768px) {
    .brand-models-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        padding: 25px 0 50px;
    }
    .brand-model-card { padding: 22px 14px; border-radius: 18px; gap: 12px; }
    .brand-model-card h2 { font-size: 0.9rem; }
    .brand-model-card .btn { padding: 8px 14px; font-size: 0.70rem; }
}

/* Main with sidebar */
@media (max-width: 768px) {
    .main-with-sidebar { grid-template-columns: 1fr; gap: 25px; margin-top: 25px; }
    .service-content-card { padding: 24px 18px; border-radius: 18px; }
    .sidebar-card { padding: 24px 18px; border-radius: 18px; }
}

/* Info block grid */
@media (max-width: 768px) {
    .info-block-grid { grid-template-columns: 1fr; gap: 25px; margin-top: 35px; }
    .model-info-text { padding: 24px 18px; border-radius: 18px; }
    .process-steps-card { padding: 24px 18px; border-radius: 18px; position: static; }
}

/* Service detail district SEO grid & General grids */
@media (max-width: 991px) {
    div[style*="grid-template-columns: 1fr 1fr"],
    .grid-2, .grid-3 {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .container[style*="margin-top: -50px"] > div {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .seo-article-content div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
}

/* Breadcrumbs */
@media (max-width: 768px) {
    .breadcrumbs { font-size: 0.75rem; padding: 10px 0; overflow-x: auto; white-space: nowrap; }
    .breadcrumbs .container { display: flex; align-items: center; }
}

/* FAQ */
@media (max-width: 768px) {
    .faq-q { font-size: 0.8rem; padding: 20px; }
    .faq-a { padding: 0 20px; font-size: 0.9rem; }
    .faq-row.active .faq-a { padding-bottom: 20px; }
}

/* Tag cloud */
@media (max-width: 768px) {
    .areas-section { padding: 50px 0; }
    .tag-cloud { font-size: 0.9rem; line-height: 2.4; }
    .tag-cloud a { display: inline-block; }
}

/* Section padding */
@media (max-width: 768px) {
    .section-padding { padding: 50px 0; }
}

/* Footer */
@media (max-width: 768px) {
    footer.m-footer { padding: 60px 0 120px; } /* extra bottom space for FABs */
    footer.m-footer .footer-grid { gap: 35px; }
}

/* Floating buttons — bottom spacing on very small screens */
@media (max-width: 480px) {
    .floating-actions { bottom: 20px; right: 16px; gap: 10px; }
    .fab-btn { height: 50px; max-width: 50px; border-radius: 25px; padding: 0; }
    .fab-btn i { width: 50px; height: 50px; border-radius: 25px; font-size: 1.25rem; }
    .fab-btn span { display: none !important; }
    .fab-btn:hover { max-width: 50px; transform: scale(1.08); }
    .floating-actions {
        bottom: 100px; /* Rise it up above potentially blocking bars */
        right: 15px;
    }
}

/* Swiper mobile */
@media (max-width: 768px) {
    .swiper-button-next, .swiper-button-prev { display: none !important; }
}

/* Marquee speed on mobile */
@media (max-width: 768px) {
    .marquee-w { gap: 40px; }
    .marquee-w img { max-height: 32px; }
}
