/* =============================================
   ECUworks Adana – Main Stylesheet
   ============================================= */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --red:      #e8000d;
    --red-dark: #b5000a;
    --orange:   #ff6a00;
    --dark:     #0d0d0d;
    --dark2:    #141414;
    --dark3:    #1c1c1c;
    --dark4:    #252525;
    --text:     #e8e8e8;
    --text-muted: #9a9a9a;
    --white:    #ffffff;
    --green-wa: #25d366;
    --border:   rgba(255,255,255,0.08);
    --radius:   8px;
    --shadow:   0 4px 24px rgba(0,0,0,0.5);
    --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Typography ---- */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.section-label {
    display: inline-block;
    color: var(--red);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    margin-bottom: 14px;
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 580px;
    margin-bottom: 48px;
    font-size: 1rem;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-red {
    background: var(--red);
    color: var(--white);
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,0,13,0.4); }

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

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

.btn-whatsapp {
    background: var(--green-wa);
    color: var(--white);
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }

/* ---- WhatsApp Float ---- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    background: var(--green-wa);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    transition: all var(--transition);
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(37,211,102,0.6); }

/* ---- Header Top ---- */
.header-top {
    background: var(--dark2);
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
}
.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.header-info { display: flex; gap: 20px; flex-wrap: wrap; }
.header-info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.header-info-item svg { color: var(--red); flex-shrink: 0; }

.header-phone-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: var(--white);
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all var(--transition);
}
.header-phone-cta:hover { background: var(--red-dark); }

/* ---- Header Main ---- */
.header-main {
    background: var(--dark2);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 900;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(8px);
}
.header-main-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo */
.site-logo, .footer-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}
.site-logo img, .footer-logo img {
    height: 44px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
/* Sadece birinci seviye li'ler yatay */
.main-nav > ul { display: flex; gap: 2px; }
.main-nav > ul > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    transition: all var(--transition);
    white-space: nowrap;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active { color: var(--white); background: rgba(255,255,255,0.07); }

/* ---- Dropdown ---- */
.nav-item-dropdown { position: relative; }

.dropdown-toggle .caret {
    width: 10px; height: 10px;
    transition: transform var(--transition);
    flex-shrink: 0;
}
.nav-item-dropdown:hover .caret,
.nav-item-dropdown.open   .caret { transform: rotate(180deg); }

.dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    display: flex;
    flex-direction: column;
    background: var(--dark3);
    border: 1px solid var(--border);
    border-top: 2px solid var(--red);
    border-radius: var(--radius);
    min-width: 230px;
    padding: 6px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.7);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 200;
    gap: 2px;
}
.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown.open  .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li { display: block; width: 100%; }
.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: all var(--transition);
    white-space: nowrap;
    background: transparent;
}
.dropdown-menu li a:hover { color: var(--white); background: rgba(232,0,13,0.1); }
.dropdown-menu li a .d-icon {
    width: 30px; height: 30px;
    background: rgba(232,0,13,0.12);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Mobile dropdown */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        display: flex;
        flex-direction: column;
        opacity: 1;
        visibility: hidden;
        transform: none;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        border: none;
        border-top: none;
        box-shadow: none;
        background: var(--dark4);
        border-radius: 0;
        transition: max-height 0.3s ease, visibility 0.3s ease, padding 0.3s ease;
    }
    .nav-item-dropdown.open .dropdown-menu {
        visibility: visible;
        max-height: 400px;
        padding: 4px 0 4px 8px;
    }
    .dropdown-menu li a { white-space: normal; padding: 10px 12px; }
}

.nav-whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--green-wa);
    color: var(--white);
    padding: 9px 18px;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    margin-left: 12px;
    transition: all var(--transition);
}
.nav-whatsapp-btn:hover { background: #1da851; }

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ---- Hero ---- */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('/ecuworks/assets/img/slider.jpg') center/cover no-repeat;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(5,5,5,0.92) 0%,
        rgba(5,5,5,0.80) 45%,
        rgba(5,5,5,0.45) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    padding: 80px 0;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,0,13,0.15);
    border: 1px solid rgba(232,0,13,0.3);
    color: #ff4d57;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 24px;
}
.hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--red);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--red); }

.hero-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 36px;
    max-width: 500px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 56px;
    flex-wrap: wrap;
}
.hero-stat { border-left: 3px solid var(--red); padding-left: 16px; }
.hero-stat strong { display: block; font-size: 2rem; font-weight: 900; color: var(--white); line-height: 1; }
.hero-stat span { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; display: block; }

/* ---- Services ---- */
.services { padding: 90px 0; background: var(--dark2); }

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

.service-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: var(--red);
    transform: scaleY(0);
    transition: transform var(--transition);
    transform-origin: bottom;
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(232,0,13,0.25); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleY(1); }

.service-icon {
    width: 52px; height: 52px;
    background: rgba(232,0,13,0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--red);
    font-size: 1.5rem;
}

.service-card h3 { margin-bottom: 10px; color: var(--white); font-size: 1.05rem; }
.service-card p  { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; margin-bottom: 18px; }

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--red);
    font-size: 0.85rem;
    font-weight: 600;
    transition: gap var(--transition);
}
.service-link:hover { gap: 10px; }

.service-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 18px;
}

/* ---- About ---- */
.about { padding: 90px 0; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}
.about-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 12px;
}
.about-img-badge {
    position: absolute;
    bottom: 24px;
    right: -10px;
    background: var(--red);
    color: var(--white);
    padding: 16px 22px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
}
.about-img-badge strong { display: block; font-size: 2rem; line-height: 1; }

.about-content .section-subtitle { margin-bottom: 28px; }

.about-features { margin: 28px 0; display: flex; flex-direction: column; gap: 14px; }
.about-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.about-feature-icon {
    width: 36px; height: 36px;
    background: rgba(232,0,13,0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    flex-shrink: 0;
    margin-top: 2px;
}
.about-feature-text strong { display: block; font-size: 0.95rem; color: var(--white); margin-bottom: 3px; }
.about-feature-text span  { font-size: 0.85rem; color: var(--text-muted); }

/* ---- Why Us ---- */
.why-us { padding: 90px 0; background: var(--dark2); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 48px;
}
.why-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    transition: all var(--transition);
}
.why-card:hover { transform: translateY(-4px); border-color: rgba(232,0,13,0.25); }
.why-card .icon {
    width: 60px; height: 60px;
    background: rgba(232,0,13,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: var(--red);
    font-size: 1.6rem;
}
.why-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--white); }
.why-card p  { font-size: 0.85rem; color: var(--text-muted); }

/* ---- Testimonials ---- */
.testimonials { padding: 90px 0; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 48px;
}
.testimonial-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
}
.testimonial-stars { color: #f5a623; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testimonial-author strong { display: block; font-size: 0.92rem; color: var(--white); }
.testimonial-author span  { font-size: 0.8rem; color: var(--text-muted); }

/* ---- CTA Banner ---- */
.cta-banner {
    background: linear-gradient(135deg, var(--red-dark), var(--red) 50%, var(--orange));
    padding: 64px 0;
}
.cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.cta-banner-text h2 { color: var(--white); font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 8px; }
.cta-banner-text p  { color: rgba(255,255,255,0.8); font-size: 1rem; }
.cta-banner-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-white { color: var(--dark); }

/* ---- Footer ---- */
.site-footer {
    background: var(--dark2);
    border-top: 1px solid var(--border);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1fr 1.4fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; margin-top: 16px; line-height: 1.7; max-width: 280px; }
.footer-contact-items { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: color var(--transition);
}
.footer-contact-link:hover { color: var(--red); }
.footer-contact-link svg { color: var(--red); flex-shrink: 0; }

.footer-heading { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 18px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a  { color: var(--text-muted); font-size: 0.88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }

.footer-address { font-style: normal; color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; margin-bottom: 14px; }
.footer-hours { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; margin-bottom: 16px; }
.footer-hours strong { color: var(--text); }

.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--red);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(232,0,13,0.3);
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: all var(--transition);
}
.btn-map:hover { background: rgba(232,0,13,0.1); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 0.82rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 8px;
}

/* ---- Toast Bildirimler ---- */
#toast-container {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast-item {
    pointer-events: auto;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--dark3);
    border: 1px solid var(--border);
    border-left: 3px solid var(--red);
    border-radius: var(--radius);
    padding: 14px 16px;
    max-width: 320px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);

    /* giriş animasyonu */
    opacity: 0;
    transform: translateX(-24px);
    animation: toastIn 0.4s cubic-bezier(0.34,1.3,0.64,1) forwards;
}
.toast-item.toast-out {
    animation: toastOut 0.35s ease forwards;
}

@keyframes toastIn {
    to { opacity: 1; transform: translateX(0); }
}
@keyframes toastOut {
    to { opacity: 0; transform: translateX(-20px); }
}

.toast-icon {
    width: 36px; height: 36px;
    background: rgba(232,0,13,0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.toast-body { flex: 1; min-width: 0; }

.toast-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.toast-name span { color: var(--red); }

.toast-detail {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.45;
}
.toast-detail strong { color: var(--text); font-weight: 600; }

.toast-time {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 5px;
    display: block;
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 2px;
    line-height: 1;
    flex-shrink: 0;
    transition: color var(--transition);
    margin-top: -2px;
}
.toast-close:hover { color: var(--white); }

@media (max-width: 480px) {
    #toast-container { left: 12px; right: 12px; bottom: 16px; }
    .toast-item { max-width: 100%; }
}

/* ---- 404 ---- */
.page-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.page-404-inner { max-width: 480px; }
.error-code { font-size: 8rem; font-weight: 900; color: var(--red); line-height: 1; opacity: 0.7; }
.page-404-inner h1 { margin: 16px 0 12px; color: var(--white); }
.page-404-inner p  { color: var(--text-muted); margin-bottom: 32px; }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
    background: linear-gradient(135deg, var(--dark2), var(--dark3));
    padding: 56px 0;
    border-bottom: 1px solid var(--border);
}
.page-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.page-hero .breadcrumb a { color: var(--red); }
.page-hero .breadcrumb a:hover { text-decoration: underline; }
.page-hero .breadcrumb span { color: var(--text-muted); }
.page-hero h1 { color: var(--white); }
.page-hero p  { color: var(--text-muted); margin-top: 12px; max-width: 600px; font-size: 1.05rem; }

/* ---- Content + Sidebar layout ---- */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding: 64px 0;
    align-items: start;
}
.content-main { min-width: 0; }

/* Sidebar */
.services-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 90px; }
.sidebar-box {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px;
}
.sidebar-heading {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 14px;
}
.sidebar-links { display: flex; flex-direction: column; gap: 4px; }
.sidebar-links a {
    display: block;
    padding: 9px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: all var(--transition);
}
.sidebar-links a:hover, .sidebar-links a.active {
    background: rgba(232,0,13,0.1);
    color: var(--white);
}
.sidebar-links a.active { font-weight: 600; border-left: 2px solid var(--red); }
.sidebar-cta { background: linear-gradient(135deg, rgba(232,0,13,0.15), rgba(232,0,13,0.05)); border-color: rgba(232,0,13,0.25); }
.sidebar-cta-text { font-size: 0.85rem; color: var(--text); font-weight: 600; margin-bottom: 14px; }
.sidebar-hours-line { font-size: 0.85rem; color: var(--text-muted); }
.sidebar-hours-line strong { color: var(--text); }

/* Article içerik stilleri */
.article-content h2 {
    font-size: 1.45rem;
    color: var(--white);
    margin: 40px 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}
.article-content h2:first-child { margin-top: 0; }
.article-content h3 { font-size: 1.1rem; color: var(--white); margin: 24px 0 10px; }
.article-content p  { color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; font-size: 0.95rem; }
.article-content ul { margin: 12px 0 20px 0; display: flex; flex-direction: column; gap: 8px; }
.article-content ul li {
    color: var(--text-muted);
    font-size: 0.92rem;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}
.article-content ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 8px;
    width: 6px; height: 6px;
    background: var(--red);
    border-radius: 50%;
}
.article-content a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.article-content a:hover { color: #ff4d57; }

/* Info box */
.info-box {
    background: rgba(232,0,13,0.08);
    border: 1px solid rgba(232,0,13,0.2);
    border-left: 3px solid var(--red);
    border-radius: var(--radius);
    padding: 18px 20px;
    margin: 24px 0;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.65;
}

/* Benefit cards */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 24px 0;
}
.benefit-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}
.benefit-card .b-icon { font-size: 2rem; margin-bottom: 10px; display: block; }
.benefit-card strong { display: block; color: var(--white); font-size: 1.2rem; }
.benefit-card span   { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; display: block; }

/* Vehicle table */
.vehicle-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.875rem; }
.vehicle-table th {
    background: var(--dark4);
    color: var(--text);
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
    border-bottom: 1px solid var(--border);
}
.vehicle-table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
}
.vehicle-table tr:hover td { background: rgba(255,255,255,0.03); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
.faq-item {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 20px;
    text-align: left;
    color: var(--white);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-family: inherit;
    transition: color var(--transition);
}
.faq-question:hover { color: var(--red); }
.faq-icon { flex-shrink: 0; color: var(--red); font-size: 1.2rem; transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
    display: none;
    padding: 0 20px 16px;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* Related services */
.related-services { margin: 40px 0 0; }
.related-services h2 { font-size: 1.3rem; color: var(--white); margin-bottom: 16px; }
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}
.related-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 18px;
    transition: all var(--transition);
    text-decoration: none !important;
    display: block;
}
.related-card:hover { border-color: rgba(232,0,13,0.3); transform: translateY(-3px); }
.related-card .r-icon { font-size: 1.5rem; margin-bottom: 8px; display: block; }
.related-card strong { display: block; font-size: 0.875rem; color: var(--white); margin-bottom: 4px; }
.related-card span   { font-size: 0.78rem; color: var(--text-muted); }

@media (max-width: 1024px) {
    .content-layout { grid-template-columns: 1fr; }
    .services-sidebar { position: static; }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .about-grid  { grid-template-columns: 1fr; gap: 40px; }
    .about-img-wrap img { height: 320px; }
}

@media (max-width: 768px) {
    .header-top { display: none; }
    .header-main { padding: 12px 0; }

    .nav-toggle { display: flex; }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--dark2);
        border-top: 1px solid var(--border);
        flex-direction: column;
        align-items: stretch;
        padding: 16px 20px;
        gap: 0;
        box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    }
    .main-nav.open { display: flex; }
    .main-nav ul { flex-direction: column; gap: 4px; }
    .main-nav ul li a { padding: 12px 14px; font-size: 1rem; }
    .nav-whatsapp-btn { margin: 10px 0 0; justify-content: center; padding: 14px; }

    .hero { min-height: 70vh; }
    .hero-stats { gap: 24px; }
    .hero-stat strong { font-size: 1.5rem; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-brand p { max-width: 100%; }

    .cta-banner-inner { flex-direction: column; text-align: center; }
    .cta-banner-btns { justify-content: center; }

    .whatsapp-float span { display: none; }
    .whatsapp-float { padding: 14px; border-radius: 50%; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .hero-btns .btn { width: 100%; justify-content: center; }
    .services-grid { grid-template-columns: 1fr; }
}
