/* ===================================
   SERVIS AĞI - VIBRANT THEME 2025
   =================================== */

:root {
    --primary: #ff5c39;
    --primary-2: #ff4f70;
    --accent: #7c3aed;
    --teal: #14b8a6;
    --ink: #0b1221;
    --ink-soft: #0f172a;
    --card: #111827;
    --card-2: #0d1729;
    --muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.08);
    --shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
    --radius: 16px;
    --radius-lg: 22px;
    --transition: all 0.28s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.08) 0, transparent 30%), radial-gradient(circle at 80% 0%, rgba(255, 92, 57, 0.12) 0, transparent 32%), #0b1221;
    color: #e2e8f0;
    line-height: 1.65;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 18px;
}

.text-muted { color: var(--muted); }
.text-primary { color: var(--primary); }
.fw-bold { font-weight: 800; }
.rounded { border-radius: var(--radius); }
.rounded-pill { border-radius: 999px; }
.shadow-lg { box-shadow: var(--shadow); }
.d-flex { display: flex; }
.d-block { display: block; }
.text-center { text-align: center; }
.justify-content-center { justify-content: center; }
.align-items-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-3 { gap: 0.75rem; }
.d-none { display: none; }
.w-100 { width: 100%; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2.5rem; }
.px-5 { padding-left: 2.75rem; padding-right: 2.75rem; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.8rem;
    font-weight: 700;
    border-radius: var(--radius);
    border: 0;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.9rem; }

.btn-danger {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
    color: #fff;
}

.btn-danger::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0));
    opacity: 0;
    transition: var(--transition);
}

.btn-danger:hover::after { opacity: 1; }
.btn-danger:hover { transform: translateY(-2px) scale(1.01); }

.btn-light {
    background: rgba(255,255,255,0.14);
    color: #f8fafc;
    border: 1px solid rgba(255,255,255,0.18);
}

.btn-light:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }

.btn-outline-danger {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.2);
    color: #fff;
}

.btn-outline-danger:hover { border-color: var(--primary); color: #fff; transform: translateY(-2px); }

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.6);
}

.btn-outline-light:hover {
    background: #fff;
    color: #0b1221;
}

.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    color: #f8fafc;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.1);
    font-weight: 700;
    letter-spacing: 0.2px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: #e2e8f0;
    font-weight: 600;
}

/* Utilities */
.text-white { color: #fff; }
.text-white-50 { color: rgba(255,255,255,0.6); }
.text-dark { color: #0b1221; }
.text-danger { color: var(--primary); }
.text-warning { color: #fbbf24; }
.bg-dark { background: #0f172a; }
.bg-light { background: #e2e8f0; color: #0b1221; }
.h4 { font-size: 1.35rem; }
.h5 { font-size: 1.2rem; }
.display-6 { font-size: 2.4rem; font-weight: 800; letter-spacing: -0.02em; color: #fff; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.ps-3 { padding-left: 1rem; }
.pb-3 { padding-bottom: 1rem; }
.px-4 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.me-2 { margin-right: 0.5rem; }
.me-1 { margin-right: 0.25rem; }
.ms-1 { margin-left: 0.25rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1.5rem; }
.border-bottom { border-bottom: 1px solid rgba(255,255,255,0.08); }
.border-0 { border: 0; }
.rounded-circle { border-radius: 999px; }

.row { display: flex; flex-wrap: wrap; margin-left: -14px; margin-right: -14px; }
.row > [class^="col-"], .row > [class*=" col-"] { padding-left: 14px; padding-right: 14px; }
.row.g-4 { margin-left: -18px; margin-right: -18px; }
.row.g-4 > [class^="col-"], .row.g-4 > [class*=" col-"] { padding-left: 18px; padding-right: 18px; }
.row.g-5 { margin-left: -20px; margin-right: -20px; gap: 20px; }
.row.g-5 > [class^="col-"], .row.g-5 > [class*=" col-"] { padding-left: 20px; padding-right: 20px; }
.col-12 { width: 100%; }
.col-6 { width: 50%; }
.col-lg-4, .col-lg-2, .col-lg-8 { width: 100%; }
.col-lg-2 { flex: 0 0 100%; }
.col-lg-4 { flex: 0 0 100%; }
.col-lg-8 { flex: 0 0 100%; }
.d-lg-none { display: block; }
.d-lg-flex { display: none; }

@media (min-width: 576px) {
    .d-sm-block { display: block !important; }
}

@media (min-width: 768px) {
    .col-md-6 { flex: 0 0 50%; width: 50%; }
}

@media (min-width: 992px) {
    .col-lg-2 { flex: 0 0 16.666%; width: 16.666%; }
    .col-lg-4 { flex: 0 0 33.333%; width: 33.333%; }
    .col-lg-8 { flex: 0 0 66.666%; width: 66.666%; }
    .d-lg-none { display: none !important; }
    .d-lg-flex { display: flex !important; }
}

.btn-close {
    background: transparent;
    border: 0;
    width: 28px;
    height: 28px;
    position: relative;
    cursor: pointer;
}
.btn-close::before,
.btn-close::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 2px;
    background: #fff;
    top: 50%;
    left: 50%;
    transform-origin: center;
}
.btn-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.btn-close::after { transform: translate(-50%, -50%) rotate(-45deg); }

/* ===================================
   HEADER
   =================================== */

.header-top {
    background: linear-gradient(135deg, rgba(255,92,57,0.12), rgba(124,58,237,0.18));
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: #f8fafc;
    padding: 10px 0;
}

.ribbon {
    position: relative;
    overflow: hidden;
}

.ribbon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.08), rgba(255,255,255,0), rgba(255,255,255,0.08));
    pointer-events: none;
}

.header-top-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    align-items: center;
}

.top-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
}
.top-item.active { color: #fff; }
.top-item-right { justify-self: end; text-align: right; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(12, 18, 32, 0.78);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 14px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo-area {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 800;
}

.logo-mark {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: grid;
    place-items: center;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(255, 92, 57, 0.35);
}

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-title { font-size: 1.1rem; }
.logo-sub { color: var(--muted); font-size: 0.8rem; }

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 6px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 999px;
}

.nav-link {
    color: #e2e8f0;
    font-weight: 700;
    position: relative;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
}

.nav-link:hover, .nav-link:focus {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.has-dropdown { position: relative; }

.mega-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    background: linear-gradient(135deg, rgba(15,23,42,0.95), rgba(15,23,42,0.88));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
    border-radius: var(--radius-lg);
    padding: 0.8rem;
    min-width: 480px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.has-dropdown:hover .mega-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

.menu-grid { display: grid; grid-template-columns: repeat(2, minmax(180px, 1fr)); gap: 0.55rem; }
.menu-grid-compact { grid-template-columns: repeat(3, minmax(140px, 1fr)); gap: 0.45rem; }

.menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
    transition: var(--transition);
}

.menu-item:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-3px); background: rgba(255,255,255,0.08); }

.menu-item-compact { padding: 8px 10px; }
.menu-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    display: grid;
    place-items: center;
    color: var(--primary-2);
    font-size: 0.95rem;
}
.menu-icon.alt { color: var(--accent); }

.menu-item-content strong { color: #f8fafc; display: block; font-size: 0.92rem; }
.menu-item-content span { color: var(--muted); font-size: 0.8rem; }

.header-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.55rem 0.9rem;
    background: rgba(255,255,255,0.1);
    border-radius: 999px;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.14);
}

.header-btn:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }

.mobile-toggle {
    display: none;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 1.35rem;
}

/* ===================================
   MOBILE MENU
   =================================== */

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

.mobile-menu-overlay.active { opacity: 1; visibility: visible; }

.mobile-menu-container {
    position: fixed;
    top: 0; right: -100%;
    width: 86%;
    max-width: 380px;
    height: 100%;
    background: #0f172a;
    border-left: 1px solid rgba(255,255,255,0.08);
    padding: 18px;
    transition: var(--transition);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu-container.active { right: 0; }
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; color: #fff; }
.mobile-menu-link, .mobile-dropdown-trigger { display: flex; align-items: center; justify-content: space-between; padding: 12px 6px; color: #e2e8f0; font-weight: 700; font-size: 0.95rem; }
.mobile-dropdown { border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-dropdown-content { display: none; padding: 0 8px 14px; }
.mobile-dropdown-content.active { display: block; }
.mobile-grid-2col { display: grid; grid-template-columns: repeat(2, minmax(140px,1fr)); gap: 10px; }
.mobile-menu-item-grid, .mobile-brand-item { padding: 10px; border-radius: 12px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.05); color: #cbd5e1; font-size: 0.9rem; }
.mobile-menu-item-grid:hover, .mobile-brand-item:hover { border-color: rgba(255,255,255,0.16); }
.mobile-brand-item img { width: 44px; height: 26px; object-fit: contain; }

/* ===================================
   HERO
   =================================== */

.hero-wrapper {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 20% 20%, rgba(20,184,166,0.18), transparent 40%), linear-gradient(135deg, #0b1221 0%, #0c1a32 55%, #0b1221 100%);
    color: #fff;
    padding: 64px 0 54px;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.26;
    filter: saturate(1.05) contrast(1.05) blur(1px);
}

.hero-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,92,57,0.28), rgba(124,58,237,0.24));
    mix-blend-mode: screen;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.breadcrumb-area {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    margin-bottom: 14px;
    color: #e5e7eb;
}

.hero-title {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.hero-title span { color: #fff; text-shadow: 0 12px 60px rgba(255,92,57,0.35); }
.hero-subtitle { color: #e5e7eb; font-size: 1.05rem; margin-bottom: 16px; }
.hero-highlights { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 18px; }

.hero-stats { margin-top: 24px; }
.stat-box {
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    min-height: 120px;
}

.stat-icon { font-size: 1.6rem; color: var(--primary-2); margin-bottom: 10px; }

.hero-meta-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 12px;
}

.meta-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.meta-card i { color: var(--teal); font-size: 1.3rem; }
.meta-label { color: var(--muted); margin-bottom: 4px; font-size: 0.95rem; }

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.trust-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: #e5e7eb;
}
.trust-card i { color: var(--primary-2); font-size: 1.2rem; }
.trust-label { color: var(--muted); margin-bottom: 4px; font-size: 0.95rem; }

/* ===================================
   LAYOUT / CARDS
   =================================== */

.main-layout { background: #0c1426; padding: 44px 0; }

.service-grid-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.04));
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
    height: 100%;
    box-shadow: 0 16px 50px rgba(0,0,0,0.28);
}

.service-grid-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.16); }

.card-img-wrap { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.02); }
.card-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.55) 100%);
}

.card-overlay {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 10px 12px;
    display: flex;
    gap: 8px;
    align-items: center;
    background: linear-gradient(180deg, rgba(5,8,16,0.08) 0%, rgba(5,8,16,0.72) 100%);
}
.card-text h3 { color: #fff; letter-spacing: -0.01em; font-size: 1.02rem; margin: 0 0 4px 0; }
.card-text p { color: #cbd5e1; font-size: 0.9rem; margin: 0; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.service-icon-bubble { width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center; background: rgba(255,255,255,0.12); color: var(--primary-2); font-size: 1.05rem; flex-shrink: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08); }
.service-card-link { height: 100%; }
.home-services-grid { --bs-gutter-x: 0rem; --bs-gutter-y: 1.1rem; margin-left: -8px; margin-right: -8px; }
.brand-logos-row { display: flex; align-items: center; gap: 6px; }
.mini-brand-logo { width: 30px; height: 18px; object-fit: contain; filter: grayscale(0); opacity: 0.85; }

.cta-section .cta-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(255,92,57,0.16), rgba(124,58,237,0.2));
    border: 1px solid rgba(255,255,255,0.14);
    color: #fff;
    box-shadow: var(--shadow);
}

.cta-content h2 { font-size: 2rem; margin: 8px 0 10px; letter-spacing: -0.02em; }
.cta-content p { color: #f8fafc; max-width: 540px; }
.cta-image img { border-radius: var(--radius); box-shadow: 0 18px 50px rgba(0,0,0,0.32); }

.cta-card-compact {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: stretch;
    padding: 16px;
    gap: 12px;
}

.cta-simple {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 18px 20px;
    gap: 12px;
    justify-items: center;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 12px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    font-weight: 800;
    letter-spacing: 0.1px;
}

.cta-body {
    display: grid;
    gap: 10px;
    align-content: center;
}

.cta-body h2 { margin: 0; font-size: 1.8rem; }
.cta-body p { margin: 0; color: #e5e7eb; }

.cta-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.cta-brand-icon {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}

.cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    color: #f1f5f9;
    font-weight: 700;
    font-size: 0.95rem;
}

.cta-card-icons .cta-title-row { display: flex; gap: 12px; align-items: flex-start; }
.cta-card-icons .cta-title-row.center { justify-content: center; text-align: left; }
.cta-card-icons .cta-title-row i { font-size: 1.4rem; color: var(--primary-2); margin-top: 4px; }
.cta-card-icons .cta-pills { display: flex; flex-wrap: wrap; gap: 8px; }

.cta-simple .cta-title-row { gap: 10px; }
.cta-simple .cta-title-row i { font-size: 1.3rem; color: var(--primary-2); }
.cta-simple .cta-title-row.center { justify-content: center; text-align: center; }
.cta-simple .cta-title-row.center div { text-align: center; }

.cta-visual { position: relative; display: grid; place-items: center; }
.cta-visual img { border-radius: 14px; width: 100%; max-height: 200px; object-fit: cover; }
.cta-blob {
    position: absolute;
    inset: 8px;
    border-radius: 16px;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08), transparent 45%), linear-gradient(135deg, rgba(124,58,237,0.3), rgba(255,92,57,0.2));
    filter: blur(12px);
    z-index: 0;
}
.cta-visual img { position: relative; z-index: 1; }

@media (max-width: 768px) {
    .cta-card-compact { grid-template-columns: 1fr; }
}

.cities-section { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); padding: 18px; border-radius: var(--radius-lg); }
.cities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px; }
.city-card {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    color: #e5e7eb;
    font-weight: 700;
}
.city-card:hover { border-color: rgba(255,255,255,0.18); transform: translateY(-2px); }

.reviews-section { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.04); border-radius: var(--radius-lg); padding: 20px; }
.reviews-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 12px; }
.rating-badge { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 12px 14px; border-radius: 14px; text-align: center; }
.rating-score { font-size: 1.8rem; font-weight: 800; color: #fff; line-height: 1; }
.rating-meta { color: #e5e7eb; font-size: 0.95rem; display: flex; align-items: center; gap: 6px; justify-content: center; }
.stars-inline i { margin-right: 2px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; }
.reviews-row { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px; scroll-snap-type: x mandatory; }
.review-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.08));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 16px;
    color: #e2e8f0;
    min-height: 200px;
}
.review-card.inline { min-width: 320px; scroll-snap-align: start; }
.review-card.compact { min-height: auto; padding: 12px; }
.review-card.compact .review-text { font-size: 0.95rem; }
.review-list { display: grid; gap: 10px; }
.reviewSwiperSidebar { padding: 8px 6px 16px; }
.reviewSwiperSidebar .swiper-wrapper { align-items: stretch; }
.reviewSwiperSidebar .swiper-slide { width: 100% !important; max-width: none; height: auto; }
.reviewSwiperSidebar .review-card { width: 100%; min-width: 0; height: 100%; box-sizing: border-box; }
.reviewSwiperSidebar .swiper-pagination { position: static; margin-top: 8px; }
.review-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent)); display: grid; place-items: center; font-weight: 800; color: #fff; }
.review-author { font-weight: 700; color: #fff; }
.review-date { color: var(--muted); font-size: 0.9rem; }
.review-card .stars { color: #fbbf24; margin-left: auto; }
.review-text { font-size: 1rem; color: #e5e7eb; }

/* ===================================
   ARTICLE / SIDEBAR
   =================================== */

.content-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    color: #e5e7eb;
}

.article-header { position: relative; overflow: hidden; }
.article-header img { width: 100%; height: 260px; object-fit: cover; filter: saturate(1.05); }
.article-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.65));
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 18px;
    color: #fff;
}

.article-body { padding: 16px; }
.dynamic-content-wrapper { max-height: 320px; overflow: hidden; position: relative; }
.dynamic-content-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(180deg, transparent, #0c1426);
}
.dynamic-content-wrapper.expanded { max-height: none; }
.dynamic-content-wrapper.expanded::after { display: none; }

@media (min-width: 992px) {
    #dynamicContent.dynamic-content-wrapper { max-height: none; }
    #dynamicContent.dynamic-content-wrapper::after { display: none; }
    #readMoreBtn { display: none; }
}

.read-more-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    cursor: pointer;
    color: #e5e7eb;
}
.read-more-trigger.active { background: rgba(255,255,255,0.12); }

.service-article { display: flex; flex-direction: column; gap: 24px; }
.article-section { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); padding: 20px; border-radius: var(--radius); }
.section-title { color: #fff; margin-bottom: 12px; }
.section-subtitle { color: #fff; margin: 12px 0 10px; }
.text-paragraph { color: #d1d5db; margin-bottom: 12px; }

.brand-showcase { display: grid; grid-template-columns: 180px 1fr; gap: 14px; align-items: center; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); padding: 12px; border-radius: 12px; }
.brand-img { border-radius: 12px; border: 1px solid rgba(255,255,255,0.08); }
.brand-info h3 { color: #fff; margin-bottom: 6px; }

.feature-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 10px; padding: 0; }
.feature-list li {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}
.feature-list i { color: var(--primary-2); }
.fault-list-card { margin-top: 14px; padding: 14px; border-radius: 12px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); }
.fault-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 10px; }
.fault-item { display: flex; align-items: center; gap: 8px; color: #d1d5db; }

.process-steps { display: grid; grid-template-columns: repeat(auto-fit,minmax(150px,1fr)); gap: 10px; margin: 12px 0; }
.process-step { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); padding: 12px; border-radius: 12px; color: #e5e7eb; }
.step-number { width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center; background: linear-gradient(135deg, var(--primary), var(--accent)); color: #fff; font-weight: 800; margin-bottom: 8px; }
.continue-link { text-align: center; margin: 10px 0 6px; }
.continue-anchor { color: #9dd4ff; font-weight: 800; display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.continue-anchor:hover { color: #fff; }
.show-desktop { display: none; }
.final-cta { color: #f8fafc; font-weight: 700; scroll-margin-top: 120px; }

.corporate-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.corporate-card { padding: 16px; border-radius: 14px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); color: #e5e7eb; min-height: 160px; }
.corporate-card h3 { color: #fff; }

.sidebar-widget {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 16px;
    color: #e5e7eb;
    margin-bottom: 14px;
}

.widget-title { color: #fff; display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.brand-list, .location-list { display: grid; gap: 8px; }
.brand-list { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.location-list { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.brand-link, .location-link {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    color: #e2e8f0;
}
.brand-link img { width: 40px; height: 24px; object-fit: contain; }
.brand-link:hover, .location-link:hover, .location-link.active { border-color: rgba(255,255,255,0.16); transform: translateY(-2px); }

.cta-card-inline {
    background: linear-gradient(135deg, rgba(124,58,237,0.24), rgba(20,184,166,0.28));
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-lg);
    text-align: center;
    padding: 20px;
    color: #fff;
}

/* ===================================
   MARQUEE + STICKY CTA
   =================================== */

.brand-marquee {
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 12px 0;
    overflow: hidden;
}
.brand-marquee .container { overflow: hidden; max-width: 1100px; }
.brandSwiper { padding: 4px 0 2px; }
.brandSwiper .swiper-slide { width: auto; }
.marquee-item { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 14px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); color: #e2e8f0; white-space: nowrap; font-weight: 700; box-shadow: 0 6px 18px rgba(0,0,0,0.12); }
.marquee-item img { width: 32px; height: 18px; object-fit: contain; filter: grayscale(0); opacity: 0.9; }
.brand-marquee-bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: -8px; }

.mobile-sticky-footer {
    position: fixed;
    bottom: 0; left: 0; right: 0;
        display: none;
    grid-template-columns: repeat(2, 1fr);
    background: rgba(12,18,32,0.92);
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 997;
}
.sticky-btn {
    padding: 14px;
    text-align: center;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.3px;
}
.btn-call { background: linear-gradient(135deg, var(--primary), var(--primary-2)); }
.btn-appointment { background: linear-gradient(135deg, var(--accent), var(--teal)); }

/* ===================================
   FOOTER
   =================================== */

.site-footer {
    background: radial-gradient(circle at 20% 20%, rgba(124,58,237,0.2), transparent 40%), linear-gradient(135deg, #0b1221, #0c1426 50%, #0b1221);
    color: #e2e8f0;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(124,58,237,0.25), rgba(20,184,166,0.22), rgba(255,92,57,0.2));
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    margin-bottom: 20px;
}

.footer-title { color: #fff; font-weight: 800; margin-bottom: 12px; }
.footer-link { display: block; color: #cbd5e1; margin-bottom: 8px; }
.footer-link:hover { color: #fff; }

.footer-contact { display: grid; gap: 10px; color: #e5e7eb; }
.footer-contact i { margin-right: 8px; color: var(--primary-2); }
.footer-contact a { color: #e5e7eb; }

.footer-icons {
    display: flex;
    gap: 10px;
}

.footer-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.18);
    display: grid;
    place-items: center;
    color: #fff;
    transition: var(--transition);
}

.footer-icon-btn:hover { transform: translateY(-2px) scale(1.02); border-color: rgba(255,255,255,0.36); }

.footer-bottom {
    margin-top: 22px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #94a3b8;
    text-align: center;
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 991px) {
    .desktop-nav { display: none; }
    .header-btn { display: none; }
    .mobile-toggle { display: block; }
    .hero-content { text-align: left; }
    .hero-title { font-size: 2.5rem; }
    .hero-wrapper { padding: 70px 0 60px; }
    .mobile-sticky-footer { display: grid; }
}

@media (max-width: 768px) {
    .header-top-content { grid-template-columns: 1fr; }
    .header-top .top-item.active { display: none; }
    .menu-grid { grid-template-columns: 1fr; }
    .hero-highlights { justify-content: flex-start; }
    .brand-showcase { grid-template-columns: 1fr; }
    .cities-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
    .article-header img { height: 220px; }
    .btn-lg { padding: 0.85rem 1.4rem; font-size: 1rem; }
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 0.98rem; }
    .hero-content { padding: 0 6px; }
    .main-layout { padding: 32px 0; }
    .cta-card-compact { grid-template-columns: 1fr; }
    .cta-body h2 { font-size: 1.5rem; }
    .cta-body p { font-size: 0.95rem; }
    .cta-brand { gap: 8px; }
    .cta-tag { font-size: 0.9rem; }
    .reviews-row { gap: 8px; }
    .review-card.inline { min-width: 280px; }
    .brand-list { grid-template-columns: repeat(2, minmax(150px, 1fr)); }
    .brand-marquee { padding: 10px 0; }
    .mobile-sticky-footer { font-size: 0.95rem; }
    .home-services-grid { --bs-gutter-x: 0rem; --bs-gutter-y: 0.95rem; margin-left: -8px; margin-right: -8px; }
    .card-overlay { padding: 9px 10px; gap: 7px; }
    .service-icon-bubble { width: 32px; height: 32px; font-size: 0.95rem; }
    .card-text h3 { font-size: 0.96rem; }
    .card-text p { font-size: 0.88rem; -webkit-line-clamp: 2; line-clamp: 2; }
    .card-img-wrap { aspect-ratio: 4/3; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 2.1rem; }
    .hero-subtitle { font-size: 1rem; }
    .cta-section .cta-card { grid-template-columns: 1fr; }
    .marquee-content { animation-duration: 18s; }
    .chip { width: 100%; justify-content: center; }
}

@media (min-width: 992px) {
    .show-desktop { display: block; }
}
