/* ================================================================
   GSM MEDYA AMBULANS - Ana Stil Dosyası
   GSM Medya Sosyal Sağlık Organizasyon Ltd Şti
   ================================================================ */

/* ===== CSS VARIABLES (GSM Medya Logo Brand Palette) ===== */
:root {
    --primary: #0062cc;
    --primary-dark: #004494;
    --primary-light: #00a2e8;
    --secondary: #00285a;
    --secondary-light: #0d3b75;
    --dark-bg: #001838;
    --accent: #f59e0b;
    --brand-cyan: #00b4f0;
    --white: #ffffff;
    --off-white: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --black: #0a0a0a;
    --card-border: #cbd5e1;
    --card-border-strong: #94a3b8;
    --section-border: #e2e8f0;
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
    --shadow: 0 6px 20px rgba(15, 23, 42, 0.07);
    --shadow-lg: 0 14px 36px rgba(15, 23, 42, 0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 14px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --container: 1240px;
    --navbar-height: 92px;
}

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--navbar-height);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.highlight {
    color: var(--primary);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}

.btn i { font-size: 14px; }

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 98, 204,0.3);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 98, 204,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-call {
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    font-size: 14px;
    gap: 6px;
}
.btn-call:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-emergency {
    background: var(--white);
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    padding: 14px 32px;
    box-shadow: var(--shadow-lg);
}
.btn-emergency:hover {
    background: var(--gray-100);
    transform: scale(1.03);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}
.btn-whatsapp:hover {
    background: #0b6b4b;
    transform: translateY(-2px);
}

.btn-lg {
    font-size: 18px;
    padding: 16px 36px;
}

.pulse {
    position: relative;
}
.pulse::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    border: 2px solid rgba(0, 98, 204, 0.7);
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    pointer-events: none;
    z-index: 0;
}
@keyframes pulse-ring {
    0% { transform: scale(0.96); opacity: 0.9; }
    80%, 100% { transform: scale(1.15); opacity: 0; }
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--secondary);
    color: var(--gray-400);
    font-size: 13px;
    padding: 8px 0;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.top-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.top-contact a {
    color: var(--gray-300);
    transition: var(--transition);
}
.top-contact a:hover { color: var(--white); }
.top-contact i { color: var(--primary); margin-right: 4px; }
.top-social {
    display: flex;
    gap: 12px;
}
.top-social a {
    color: var(--gray-400);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    transition: var(--transition);
    font-size: 13px;
}
.top-social a:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
    height: var(--navbar-height);
    transition: var(--transition);
}
.navbar.scrolled {
    box-shadow: var(--shadow);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.site-logo {
    height: 72px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    transition: transform 0.25s ease;
}
.logo:hover .site-logo {
    transform: scale(1.03);
}
.footer-brand .site-logo {
    height: 90px;
    max-width: 360px;
    margin-bottom: 20px;
    background: #ffffff;
    padding: 8px 18px;
    border-radius: var(--radius-sm, 8px);
    display: inline-block;
}
.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 4px;
    gap: 3px;
    flex-wrap: nowrap;
}
.nav-menu ul li a {
    padding: 8px 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-700);
    transition: var(--transition);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}
.nav-menu ul li a:hover,
.nav-menu ul li a.active {
    color: var(--primary);
    background: rgba(0, 98, 204,0.06);
}
.dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 250px;
    border-radius: 10px;
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15), 0 8px 10px -6px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--transition);
    display: flex !important;
    flex-direction: column;
    gap: 2px !important;
    padding: 8px;
    z-index: 999;
    border: 1px solid #e2e8f0;
}
.dropdown-menu.grid-dropdown {
    min-width: 520px;
    left: -140px;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 4px 10px !important;
    padding: 14px 16px;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(4px);
}
.dropdown-menu li {
    width: 100%;
}
.dropdown-menu li a {
    display: flex !important;
    align-items: center;
    border-radius: 6px !important;
    padding: 8px 12px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--gray-800) !important;
    transition: 0.15s;
    text-decoration: none;
    white-space: nowrap;
}
.dropdown-menu li a:hover,
.dropdown-menu li a.active {
    background: rgba(0, 98, 204, 0.06) !important;
    color: var(--primary) !important;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.hamburger span {
    width: 26px;
    height: 2.5px;
    background: var(--secondary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO SLIDER ===== */
/* ================================================================
   HERO SECTION (PREMIUM VIDEO GRID HERO)
   ================================================================ */

/* ================================================================
   HERO SECTION (FULLSCREEN VIDEO SLIDER)
   ================================================================ */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
    background: #050505;
}
/* ==========================================================================
   HERO SLIDER (ANA SAYFA) - ambulans_site
   ========================================================================== */
.hero-slider-section {
    height: calc(100vh - 110px);
    min-height: 620px;
    position: relative;
    overflow: hidden;
    background-color: var(--dark-bg, #0f172a);
    color: var(--white);
}
@media (max-width: 768px) {
    .hero-slider-section {
        height: calc(100svh - 70px);
        min-height: 540px;
    }
}

.hero-slides-wrapper {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.78) contrast(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 24, 56, 0.52) 0%, rgba(0, 12, 30, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: none;
}

.hero-title {
    font-family: var(--font-title, 'Plus Jakarta Sans', sans-serif);
    font-size: clamp(34px, 4.8vw, 60px);
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: -1.2px;
    margin: 0 auto 18px auto;
    color: #ffffff;
    text-align: center;
}

.hero-title span {
    color: var(--primary-light, #00a2e8);
}

.hero-desc {
    font-size: 16.5px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.75;
    max-width: 720px;
    margin: 0 auto 32px auto;
    text-align: center;
}

.hero-btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 0 auto;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary);
    color: var(--white);
    font-family: var(--font-title, 'Plus Jakarta Sans', sans-serif);
    font-size: 15px;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 98, 204, 0.4);
}

.btn-hero-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-hero-glass {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-family: var(--font-title, 'Plus Jakarta Sans', sans-serif);
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
    backdrop-filter: blur(8px);
}

.btn-hero-glass:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #ffffff;
    color: var(--white);
    transform: translateY(-2px);
}


/* ===== HERO SIDE ARROWS (PERFECT VERTICAL CENTER) ===== */
.hero-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 25;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(0, 24, 56, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.hero-nav-prev {
    left: 28px;
}
.hero-nav-next {
    right: 28px;
}
.hero-nav-arrow:hover {
    background: #0062cc;
    border-color: #00a2e8;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 22px rgba(0, 162, 232, 0.6);
}
@media (max-width: 768px) {
    .hero-nav-arrow {
        width: 42px;
        height: 42px;
        font-size: 15px;
    }
    .hero-nav-prev { left: 12px; }
    .hero-nav-next { right: 12px; }
}

/* ===== HERO SLIDER PAGINATION & ACTIVE COUNTER ===== */
.hero-slider-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 25;
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(0, 24, 56, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px 22px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}
.slider-counter {
    font-family: var(--font-title, 'Plus Jakarta Sans', sans-serif);
    color: #00a2e8;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.counter-sep {
    color: rgba(255, 255, 255, 0.35);
}
.counter-total {
    color: rgba(255, 255, 255, 0.6);
}
.slider-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.slider-dot.active {
    width: 30px;
    border-radius: 20px;
    background: #00a2e8;
    box-shadow: 0 0 12px rgba(0, 162, 232, 0.8);
}


/* ===== EMERGENCY STRIP (MODERN SLEEK BAR) ===== */
.emergency-strip {
    background: linear-gradient(135deg, #001838 0%, #00285a 50%, #004494 100%);
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 162, 232, 0.2);
    position: relative;
    overflow: hidden;
}
.emergency-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 162, 232, 0.08), transparent);
    animation: shimmer 8s infinite linear;
    pointer-events: none;
}
@keyframes shimmer {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}
.emergency-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}
.emergency-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 162, 232, 0.15);
    border: 1px solid rgba(0, 162, 232, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #00a2e8;
    box-shadow: 0 0 16px rgba(0, 162, 232, 0.25);
}
.emergency-text {
    flex: 1;
    min-width: 240px;
}
.emergency-text strong {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}
.emergency-text strong::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #00a2e8;
    border-radius: 50%;
    box-shadow: 0 0 8px #00a2e8;
}
.emergency-text span {
    color: #cbd5e1;
    font-size: 13.5px;
    display: block;
    margin-top: 2px;
}
.emergency-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}
.btn-emergency {
    background: linear-gradient(135deg, #0062cc, #004494);
    color: #ffffff;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 14px rgba(0, 98, 204, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}
.btn-emergency:hover {
    background: linear-gradient(135deg, #0077ee, #0055b3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 98, 204, 0.45);
    color: #ffffff;
}

/* ===== SECTIONS COMMON ===== */
section {
    padding: 85px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 98, 204, 0.08);
    border: 1px solid rgba(0, 98, 204, 0.18);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
}
.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--secondary);
    line-height: 1.25;
}
@media (max-width: 768px) {
    .section-header h2 { font-size: 26px; }
}
.section-header p {
    color: var(--gray-600);
    font-size: 15.5px;
    line-height: 1.7;
    margin: 0;
}

/* ===== SERVICES (SLEEK MODERN CARDS) ===== */
.services {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 85px 0;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}
.service-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 32px 28px;
    box-shadow: 0 4px 16px rgba(0, 40, 90, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0, 98, 204, 0.1);
    border-color: rgba(0, 98, 204, 0.35);
}
.service-icon {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #0062cc 0%, #00a2e8 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 6px 16px rgba(0, 98, 204, 0.25);
    transition: transform 0.3s ease;
}
.service-card:hover .service-icon {
    transform: scale(1.08) rotate(3deg);
}
.service-card h3 {
    font-size: 19px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #00285a;
    line-height: 1.35;
}
.service-card p {
    color: #475569;
    font-size: 14px;
    margin-bottom: 22px;
    line-height: 1.7;
    flex: 1;
}
.service-link {
    color: #0062cc;
    background: #f1f5f9;
    font-weight: 700;
    font-size: 13.5px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 18px;
    border-radius: 10px;
    transition: all 0.25s ease;
    border: 1px solid transparent;
    text-decoration: none;
    width: 100%;
}
.service-link i {
    transition: transform 0.2s ease;
}
.service-card:hover .service-link {
    background: #0062cc;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 98, 204, 0.25);
}
.service-card:hover .service-link i {
    transform: translateX(4px);
}

/* ===== ABOUT (CLEAN MODERN LAYOUT) ===== */
.about {
    background: #ffffff;
    padding: 90px 0;
}
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}
@media (max-width: 991px) {
    .about-inner { grid-template-columns: 1fr; gap: 40px; }
}
.about-image {
    position: relative;
}
.about-img-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 32px rgba(0, 40, 90, 0.08);
}
.about-img-wrapper img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}
.about-experience {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: linear-gradient(135deg, #00285a 0%, #004494 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 14px 22px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 40, 90, 0.35);
    backdrop-filter: blur(8px);
}
.exp-years {
    display: block;
    font-size: 32px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    color: #00a2e8;
    line-height: 1;
    margin-bottom: 4px;
}
.exp-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #cbd5e1;
    font-weight: 600;
}
.about-img-accent {
    position: absolute;
    top: 15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(0, 98, 204, 0.2);
    border-radius: 24px;
    z-index: 1;
}
.about-content h2 {
    font-size: 34px;
    margin-bottom: 16px;
    color: #00285a;
    line-height: 1.3;
}
.about-slogan {
    font-size: 16px;
    color: #0062cc;
    font-weight: 600;
    margin-bottom: 16px;
}
.about-content > p {
    color: #475569;
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 15px;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 26px;
}
@media (max-width: 576px) {
    .about-features { grid-template-columns: 1fr; }
}
.about-feature {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 10px 14px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 600;
    color: #1e293b;
}
.about-feature i {
    color: #10b981;
    font-size: 15px;
}

/* ===== FEATURES (DARK NAVY MODERN GLASS) ===== */
.features {
    background: linear-gradient(135deg, #001838 0%, #00285a 100%);
    padding: 80px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}
.feature-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}
.feature-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 162, 232, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}
.feature-icon-wrap {
    width: 62px;
    height: 62px;
    background: rgba(0, 162, 232, 0.12);
    border: 1px solid rgba(0, 162, 232, 0.25);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 26px;
    color: #00a2e8;
    transition: all 0.3s ease;
}
.feature-box:hover .feature-icon-wrap {
    background: #0062cc;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 98, 204, 0.35);
    transform: scale(1.08);
}
.feature-box h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.feature-box p {
    color: #cbd5e1;
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0;
}

/* ===== DISTRICTS & POPULAR SOLUTIONS ===== */
.districts {
    background: var(--off-white);
}
.districts-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.districts-grid span {
    background: var(--white);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}
.districts-grid span:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* ===== CTA ===== */
.cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 60px 0;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.cta-content { color: var(--white); }
.cta-content h2 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 8px;
}
.cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
}
.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: #001838;
    color: var(--gray-400);
}
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding: 64px 0 40px;
}
.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition);
    font-size: 14px;
}
.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}
.footer-col h3,
.footer-col h4 {
    color: var(--white);
    font-size: 17px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}
.footer-col h3::after,
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    color: var(--gray-400);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 4px;
}
.footer-col ul li a i {
    font-size: 10px;
    color: var(--primary);
}
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 12px;
}
.footer-contact li i {
    color: var(--primary);
    width: 16px;
    text-align: center;
}
.footer-contact li a {
    color: var(--gray-300);
}
.footer-contact li a:hover { color: var(--white); }

/* ===== FOOTER SEO KEYWORD HUB ===== */
.footer-seo-hub {
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: none;
    padding: 34px 0 28px;
}
.footer-seo-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.footer-seo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 162, 232, 0.15);
    color: #00a2e8;
    border: 1px solid rgba(0, 162, 232, 0.3);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.footer-seo-header h5 {
    color: #ffffff;
    font-size: 14.5px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.2px;
}
.footer-tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
}
.footer-tag-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    color: #cbd5e1;
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}
.footer-tag-chip i {
    color: #00a2e8;
    font-size: 11px;
    transition: color 0.25s ease;
}
.footer-tag-chip:hover {
    background: #0062cc;
    color: #ffffff;
    border-color: #0062cc;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 98, 204, 0.35);
}
.footer-tag-chip:hover i {
    color: #ffffff;
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    background: transparent;
    padding: 22px 0;
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}
.footer-copy-text p {
    color: #94a3b8;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.footer-copy-text strong {
    color: #ffffff;
}
.footer-badge-mini {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 600;
}
.footer-quick-call a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}
.footer-quick-call a i {
    color: #00a2e8;
}
.footer-quick-call a:hover {
    background: #0062cc;
    border-color: #0062cc;
    color: #ffffff;
}
.footer-quick-call a:hover i {
    color: #ffffff;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    animation: float-pulse 2s infinite;
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
@keyframes float-pulse {
    0% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 8px 30px rgba(37,211,102,0.7); }
    100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* ===== PAGE HEADER (for sub pages) ===== */
.page-header {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    padding: 60px 0;
    text-align: center;
    color: var(--white);
    position: relative;
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
}
.page-header h1 {
    color: var(--white);
    font-size: 42px;
    margin-bottom: 8px;
}
.page-header .breadcrumb {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}
.page-header .breadcrumb a {
    color: var(--gray-300);
}
.page-header .breadcrumb a:hover {
    color: var(--white);
}
.page-header .breadcrumb span {
    margin: 0 8px;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 80px 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: start;
}
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.contact-info-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--primary);
}
.contact-info-card .card-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(0, 98, 204,0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
}
.contact-info-card h4 {
    font-size: 16px;
    margin-bottom: 4px;
}
.contact-info-card p, .contact-info-card a {
    font-size: 14px;
    color: var(--gray-600);
}
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}
.contact-form-wrap h3 {
    font-size: 24px;
    margin-bottom: 24px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    color: var(--gray-700);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: var(--transition);
    background: var(--off-white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 98, 204,0.1);
    background: var(--white);
}
.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

/* ===== SERVICES PAGE ===== */
.service-detail {
    padding: 80px 0;
}
.service-detail:nth-child(even) {
    background: var(--off-white);
}
.service-detail-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.service-detail:nth-child(even) .service-detail-inner {
    direction: ltr;
}
.service-detail-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.service-detail-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}
.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 8px;
}
.service-detail-content .section-badge {
    margin-bottom: 12px;
}
.service-detail-content p {
    color: var(--gray-600);
    margin-bottom: 16px;
}
.service-detail-content ul {
    list-style: none;
    margin-bottom: 24px;
}
.service-detail-content ul li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
}
.service-detail-content ul li i {
    color: var(--primary);
    margin-top: 4px;
}

/* ===== GALLERY PAGE ===== */
.gallery-section {
    padding: 60px 0 90px;
    background: var(--off-white);
}
.gallery-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    color: var(--gray-700);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 98, 204, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all 0.35s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.gallery-media-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #000;
}
.gallery-media-wrap img,
.gallery-media-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-card:hover .gallery-media-wrap img {
    transform: scale(1.08);
}

.gallery-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
}

.gallery-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 0 25px rgba(0, 98, 204, 0.6);
    transition: all 0.3s ease;
    z-index: 2;
}
.gallery-card:hover .gallery-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
    background: #e11d48;
}

.gallery-card-info {
    padding: 18px 20px;
    background: var(--white);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.gallery-card-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}
.gallery-card-info p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.5;
}

/* Lightbox Modal */
.gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.gallery-modal.active {
    opacity: 1;
    pointer-events: auto;
}
.gallery-modal-content {
    position: relative;
    max-width: 960px;
    width: 100%;
    background: #0f172a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.gallery-modal-body {
    width: 100%;
    max-height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}
.gallery-modal-body img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
}
.gallery-modal-body video {
    width: 100%;
    max-height: 70vh;
}
.gallery-modal-footer {
    padding: 18px 24px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0f172a;
}
.gallery-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s;
}
.gallery-modal-close:hover {
    background: var(--primary);
}

/* ===== ABOUT PAGE ===== */
.about-page-content {
    max-width: 850px;
    margin: 0 auto;
    padding: 60px 0;
}
.about-page-content h2 {
    font-size: 32px;
    margin: 40px 0 16px;
}
.about-page-content h2:first-child { margin-top: 0; }
.about-page-content p {
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.8;
}
.about-page-content .mission-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 36px;
    border-radius: var(--radius);
    margin: 32px 0;
}
.about-page-content .mission-box h3 {
    color: var(--white);
    margin-bottom: 8px;
}
.about-page-content .mission-box p {
    color: rgba(255,255,255,0.9);
}
.company-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: var(--white);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}
.company-table th,
.company-table td {
    padding: 14px 20px;
    text-align: left;
    font-size: 14px;
}
.company-table th {
    background: var(--secondary);
    color: var(--white);
    font-weight: 600;
}
.company-table tr:nth-child(even) {
    background: var(--gray-100);
}

/* ===== 3-VISIBLE, 1-BY-1 ADVANCING CAROUSEL ===== */
.references {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 85px 0;
}
.ref-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 40px auto 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
}
.ref-carousel-viewport {
    flex: 1;
    overflow: hidden;
    padding: 10px 4px 15px 4px;
}
.ref-carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.ref-card {
    flex: 0 0 calc((100% - 48px) / 3); /* 3 cards visible on desktop */
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 0 25px rgba(0, 98, 204, 0.6);
    transition: all 0.3s ease;
    z-index: 2;
}
.gallery-card:hover .gallery-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
    background: #e11d48;
}

.gallery-card-info {
    padding: 18px 20px;
    background: var(--white);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.gallery-card-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}
.gallery-card-info p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.5;
}

/* Lightbox Modal */
.gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.gallery-modal.active {
    opacity: 1;
    pointer-events: auto;
}
.gallery-modal-content {
    position: relative;
    max-width: 960px;
    width: 100%;
    background: #0f172a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.gallery-modal-body {
    width: 100%;
    max-height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}
.gallery-modal-body img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
}
.gallery-modal-body video {
    width: 100%;
    max-height: 70vh;
}
.gallery-modal-footer {
    padding: 18px 24px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0f172a;
}
.gallery-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s;
}
.gallery-modal-close:hover {
    background: var(--primary);
}

/* ===== ABOUT PAGE ===== */
.about-page-content {
    max-width: 850px;
    margin: 0 auto;
    padding: 60px 0;
}
.about-page-content h2 {
    font-size: 32px;
    margin: 40px 0 16px;
}
.about-page-content h2:first-child { margin-top: 0; }
.about-page-content p {
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.8;
}
.about-page-content .mission-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 36px;
    border-radius: var(--radius);
    margin: 32px 0;
}
.about-page-content .mission-box h3 {
    color: var(--white);
    margin-bottom: 8px;
}
.about-page-content .mission-box p {
    color: rgba(255,255,255,0.9);
}
.company-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: var(--white);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}
.company-table th,
.company-table td {
    padding: 14px 20px;
    text-align: left;
    font-size: 14px;
}
.company-table th {
    background: var(--secondary);
    color: var(--white);
    font-weight: 600;
}
.company-table tr:nth-child(even) {
    background: var(--gray-100);
}

/* ===== 3-VISIBLE, 1-BY-1 ADVANCING CAROUSEL ===== */
.references {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 85px 0;
}
.ref-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 40px auto 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
}
.ref-carousel-viewport {
    flex: 1;
    overflow: hidden;
    padding: 10px 4px 15px 4px;
}
.ref-carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.ref-card {
    flex: 0 0 calc((100% - 48px) / 3); /* 3 cards visible on desktop */
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.ref-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.ref-card-logo {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: var(--radius-md, 12px);
    padding: 14px;
    margin-bottom: 14px;
}
.ref-card-logo img {
    max-width: 220px;
    max-height: 105px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
    transition: transform 0.3s ease;
}
.ref-card:hover .ref-card-logo img {
    transform: scale(1.06);
}
.ref-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    margin: 4px 0 0 0;
    line-height: 1.3;
}
.ref-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}
.ref-carousel-viewport {
    overflow: hidden;
    width: 100%;
    border-radius: 16px;
}
.ref-carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
}
.ref-carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    color: #00285a;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    flex-shrink: 0;
}
.ref-carousel-btn:hover {
    background: #0062cc;
    color: #ffffff;
    border-color: #0062cc;
}

/* ===== COMPREHENSIVE RESPONSIVE MEDIA QUERIES (DESKTOP / TABLET / MOBILE) ===== */

/* 1. Large Laptops / Tablets Landscape (max-width: 1200px) */
@media (max-width: 1200px) {
    .container { max-width: 1140px; }
    .hero-title { font-size: 48px; }
    .services-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .footer-top { grid-template-columns: 1.2fr 1fr 1fr 1.1fr; gap: 30px; }
}

/* 2. Tablets Portrait / Smaller Laptops (max-width: 991px) */
@media (max-width: 991px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    .container { max-width: 100%; padding: 0 16px; }

    /* Header & Navigation */
    .top-bar { display: none !important; }
    .navbar { height: 70px !important; }
    .hamburger { display: flex !important; }
    .nav-actions .btn-call span { display: none !important; }
    .nav-actions .btn-call { padding: 8px 12px !important; font-size: 13px !important; }
    
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: min(320px, 85vw) !important;
        height: 100vh !important;
        background: #ffffff !important;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2) !important;
        padding: 80px 20px 40px !important;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: 1050 !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        display: block !important;
    }
    .nav-menu.active {
        right: 0 !important;
    }
    .nav-menu ul {
        flex-direction: column !important;
        align-items: flex-start !important;
        width: 100% !important;
        gap: 6px !important;
    }
    .nav-menu ul li {
        width: 100% !important;
    }
    .nav-menu ul li a {
        width: 100% !important;
        padding: 10px 14px !important;
        font-size: 15px !important;
        border-radius: 8px !important;
        display: flex !important;
        justify-content: space-between !important;
    }
    .dropdown-menu, .dropdown-menu.grid-dropdown {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        min-width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        box-shadow: none !important;
        border: none !important;
        background: #f8fafc !important;
        border-radius: 8px !important;
        padding: 6px 8px !important;
        display: none !important;
        grid-template-columns: 1fr !important;
        margin-top: 4px !important;
    }
    .dropdown.active > .dropdown-menu,
    .dropdown-menu.active {
        display: flex !important;
        flex-direction: column !important;
    }
    .dropdown-menu li a {
        white-space: normal !important;
        font-size: 13.5px !important;
        padding: 8px 10px !important;
    }

    /* Hero Section */
    .hero-slider-section { min-height: 520px; }
    .hero-content { padding: 40px 16px; max-width: 720px; }
    .hero-title { font-size: 38px; }
    .hero-desc { font-size: 15px; max-width: 600px; }
    .hero-nav-arrow { width: 44px; height: 44px; font-size: 15px; }
    .hero-nav-prev { left: 16px; }
    .hero-nav-next { right: 16px; }

    /* Services & References */
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .ref-card { flex: 0 0 calc((100% - 20px) / 2); }
    .districts-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }

    /* SEO Hub & Kurumsal */
    .seo-pillars-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .seo-guide-grid { grid-template-columns: 1fr; gap: 30px; }
    .kurumsal-intro-grid { grid-template-columns: 1fr; gap: 36px; }
    .kurumsal-values-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .kurumsal-fleet-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    /* Footer */
    .footer-top { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}

/* 3. Mobile Devices - Portrait & Landscape (max-width: 768px) */
@media (max-width: 768px) {
    .container { max-width: 100%; padding: 0 16px; }
    
    /* Header & Logos */
    .site-logo { height: 54px; max-width: 220px; }
    .footer-brand .site-logo { height: 68px; max-width: 240px; }
    
    /* Hero Section */
    .hero-slider-section { min-height: 480px; }
    .hero-content { padding: 30px 10px; }
    .hero-title { font-size: 28px; line-height: 1.25; margin-bottom: 14px; }
    .hero-desc { font-size: 14px; line-height: 1.6; margin-bottom: 24px; }
    .hero-btn-group { flex-direction: column; width: 100%; max-width: 320px; gap: 10px; }
    .btn-hero-primary, .btn-hero-glass { width: 100%; justify-content: center; padding: 13px 20px; font-size: 14.5px; }
    
    .hero-nav-arrow { width: 38px; height: 38px; font-size: 13px; }
    .hero-nav-prev { left: 8px; }
    .hero-nav-next { right: 8px; }
    .hero-slider-pagination { bottom: 18px; padding: 6px 16px; }

    /* Emergency Strip */
    .emergency-strip { padding: 16px 0; }
    .emergency-inner { flex-direction: column; text-align: center; gap: 14px; }
    .emergency-actions { width: 100%; flex-direction: column; gap: 8px; }
    .btn-emergency, .emergency-actions .btn-whatsapp { width: 100%; justify-content: center; }

    /* Coverage Explorer */
    .coverage-tabs { width: 100%; justify-content: center; gap: 4px; }
    .coverage-tab-btn { padding: 8px 14px; font-size: 12.5px; flex: 1 1 auto; text-align: center; }
    .districts-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .district-pill { padding: 10px 12px; font-size: 12.5px; }

    /* Services & References */
    .services-grid { grid-template-columns: 1fr; gap: 16px; }
    .service-card { padding: 22px 18px; }
    .ref-card { flex: 0 0 100%; padding: 22px 16px; }
    .ref-card-logo { height: 110px; }

    /* SEO Guide Hub */
    .seo-pillars-grid { grid-template-columns: 1fr; gap: 14px; }
    .seo-pillar-card { padding: 20px 16px; }
    .seo-guide-box { padding: 22px 16px; }
    .seo-guide-text h3 { font-size: 19px; }

    /* FAQ Section */
    .faq-home-section { padding: 60px 0; }
    .faq-header { padding: 16px 18px; gap: 10px; }
    .faq-header h3 { font-size: 15px; }
    .faq-body-inner { padding: 14px 18px 18px; }

    /* Kurumsal */
    .kurumsal-section, .kurumsal-values-section, .kurumsal-fleet-section, .kurumsal-info-section { padding: 50px 0; }
    .kurumsal-values-grid, .kurumsal-fleet-grid { grid-template-columns: 1fr; gap: 14px; }
    .official-info-wrapper { padding: 22px 16px; }
    .official-info-header { flex-direction: column; align-items: flex-start; gap: 12px; }
    .table-label { width: 130px; font-size: 13px; }
    .official-company-table td { padding: 12px 10px; font-size: 13px; }

    /* Routes Tab */
    .routes-intro-card { flex-direction: column !important; align-items: flex-start !important; gap: 16px !important; padding: 22px 18px !important; }
    .routes-intro-card .btn { width: 100% !important; justify-content: center !important; }
    .routes-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
    .routes-cta-banner { flex-direction: column !important; align-items: flex-start !important; gap: 16px !important; padding: 20px 16px !important; }
    .routes-cta-banner .btn { width: 100% !important; justify-content: center !important; }

    /* Tables */
    .table-responsive, .official-company-table { width: 100% !important; max-width: 100% !important; overflow-x: auto !important; display: block !important; }

    /* CTA Section */
    .cta { padding: 60px 0; text-align: center; }
    .cta-inner { flex-direction: column; gap: 24px; }
    .cta-buttons { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; gap: 10px; }
    .cta-buttons .btn { width: 100%; justify-content: center; }

    /* Footer */
    .footer-main { grid-template-columns: 1fr !important; gap: 28px !important; padding-bottom: 30px !important; }
    .footer-bottom-inner { flex-direction: column !important; text-align: center !important; gap: 10px !important; }
    .footer-legal { justify-content: center !important; flex-wrap: wrap !important; }
}

/* 4. Extra Small Mobile Phones (max-width: 480px) */
@media (max-width: 480px) {
    .site-logo { height: 46px; max-width: 180px; }
    .hero-title { font-size: 24px; }
    .hero-desc { font-size: 13.5px; }
    .hero-nav-arrow { display: none; } /* On tiny screens, rely on touch swipe and center dots */
    .districts-grid { grid-template-columns: 1fr; }
    .district-pill { justify-content: center; text-align: center; }
    .section-header h2 { font-size: 24px; }
    .page-header h1 { font-size: 28px; }
}
/* ===== FAQ / SSS ACCORDION SECTION ===== */
.faq-home-section {
    padding: 85px 0;
    background: #ffffff;
}
.faq-section-wrapper {
    max-width: 920px;
    margin: 0 auto;
}
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-item {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 40, 90, 0.02);
}
.faq-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 6px 18px rgba(0, 40, 90, 0.06);
    transform: translateY(-2px);
}
.faq-item.active {
    border-color: #0062cc;
    box-shadow: 0 10px 28px rgba(0, 98, 204, 0.1);
}
.faq-header {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    user-select: none;
    transition: background 0.2s ease;
}
.faq-header:hover {
    background: #f8fafc;
}
.faq-item.active .faq-header {
    background: #f0f7ff;
    border-bottom: 1px solid #e0effe;
}
.faq-q-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}
.faq-q-badge {
    background: #e0f2fe;
    color: #0062cc;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 8px;
    white-space: nowrap;
    letter-spacing: 0.3px;
}
.faq-item.active .faq-q-badge {
    background: #0062cc;
    color: #ffffff;
}
.faq-header h3 {
    font-size: 16.5px;
    font-weight: 700;
    color: #00285a;
    margin: 0;
    line-height: 1.4;
    transition: color 0.2s ease;
}
.faq-item.active .faq-header h3 {
    color: #0062cc;
}
.faq-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #0f805a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    z-index: 999;
    transition: transform 0.2s ease, background 0.2s ease;
    will-change: transform;
}
.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #0f805a;
    animation: float-pulse-scale 2s ease-out infinite;
    z-index: -1;
}
.whatsapp-float:hover {
    transform: scale(1.08);
    background: #0b6b4b;
}
@keyframes float-pulse-scale {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.35); opacity: 0; }
}

.faq-item:hover .faq-icon-box {
    background: #e2e8f0;
    color: #00285a;
}
.faq-item.active .faq-icon-box {
    background: #0062cc;
    color: #ffffff;
    transform: rotate(180deg);
}
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: #ffffff;
}
.faq-item.active .faq-body {
    max-height: 600px;
}
.faq-body-inner {
    padding: 20px 24px 22px 24px;
    background: #ffffff;
}
.faq-body-inner p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.8;
    color: #475569;
}
.faq-body-inner strong {
    color: #00285a;
}
.faq-body-inner a {
    color: #0062cc;
    text-decoration: none;
    font-weight: 700;
}
.faq-body-inner a:hover {
    text-decoration: underline;
}

/* ===== SEO GUIDE & AUTHORITY HUB ===== */
.seo-guide-section {
    padding: 85px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}
.seo-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 35px;
}
.seo-pillar-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 40, 90, 0.03);
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.seo-pillar-card:hover {
    transform: translateY(-4px);
    border-color: #0062cc;
    box-shadow: 0 10px 25px rgba(0, 98, 204, 0.1);
}
.seo-pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 98, 204, 0.1), rgba(0, 162, 232, 0.15));
    color: #0062cc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.25s ease;
}
.seo-pillar-card:hover .seo-pillar-icon {
    background: #0062cc;
    color: #ffffff;
}
.seo-pillar-info h4 {
    font-size: 16.5px;
    font-weight: 800;
    color: #00285a;
    margin: 0 0 8px 0;
    line-height: 1.35;
}
.seo-pillar-info p {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* 2-Column Deep Guide Box */
.seo-guide-box {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 40, 90, 0.04);
}
.seo-guide-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 40px;
    align-items: start;
}
@media (max-width: 991px) {
    .seo-guide-grid { grid-template-columns: 1fr; gap: 30px; }
    .seo-guide-box { padding: 26px 20px; }
}
.seo-guide-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e0f2fe;
    color: #0062cc;
    font-size: 12px;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.seo-guide-text h3 {
    font-size: 22px;
    font-weight: 800;
    color: #00285a;
    line-height: 1.4;
    margin: 0 0 16px 0;
}
.seo-guide-text p {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 14px;
}
.seo-guide-text strong {
    color: #00285a;
}
.seo-guide-contact-mini {
    margin-top: 22px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.contact-mini-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0f2fe;
    color: #0062cc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.seo-guide-contact-mini strong {
    font-size: 13.5px;
    color: #00285a;
    display: block;
}
.seo-guide-contact-mini a {
    font-size: 16px;
    font-weight: 800;
    color: #0062cc;
    text-decoration: none;
}
.seo-guide-contact-mini a:hover {
    text-decoration: underline;
}
.seo-guide-contact-mini span {
    font-size: 12px;
    color: #64748b;
    margin-left: 6px;
}

/* Feature Checklist Pills */
.seo-guide-features h4 {
    font-size: 17px;
    font-weight: 800;
    color: #00285a;
    margin: 0 0 18px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.feature-item-pill {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.2s ease;
}
.feature-item-pill:hover {
    background: #ffffff;
    border-color: #0062cc;
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(0, 98, 204, 0.08);
}
.feature-pill-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #dcfce7;
    color: #16a34a;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.feature-item-pill strong {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: #00285a;
    margin-bottom: 2px;
}
.feature-item-pill span {
    display: block;
    font-size: 12.5px;
    color: #64748b;
    line-height: 1.45;
}

/* ===== COVERAGE & DISTRICTS EXPLORER (MODERN REDESIGN) ===== */
.coverage-tabs-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 35px;
}
.coverage-tabs {
    display: inline-flex;
    background: #f1f5f9;
    padding: 6px;
    border-radius: 60px;
    border: 1px solid #e2e8f0;
    gap: 6px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.03);
    flex-wrap: wrap;
    justify-content: center;
}
.coverage-tab-btn {
    border: none;
    background: transparent;
    padding: 12px 26px;
    border-radius: 50px;
    font-size: 14.5px;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.coverage-tab-btn i {
    font-size: 15px;
    color: #64748b;
    transition: color 0.25s;
}
.coverage-tab-btn:hover {
    color: #00285a;
}
.coverage-tab-btn.active {
    background: #0062cc;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 98, 204, 0.3);
}
.coverage-tab-btn.active i {
    color: #ffffff;
}
.coverage-tab-content {
    display: none;
    animation: fadeInTab 0.35s ease forwards;
}
.coverage-tab-content.active {
    display: block;
}

/* İstanbul 2 Sides (Avrupa & Anadolu) */
.istanbul-sides-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}
@media (max-width: 991px) {
    .istanbul-sides-grid { grid-template-columns: 1fr; }
}
.side-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 28px 26px;
    box-shadow: 0 4px 20px rgba(0, 40, 90, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.side-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0062cc, #00a2e8);
}
.side-card.anadolu-card::before {
    background: linear-gradient(90deg, #059669, #10b981);
}
.side-card:hover {
    box-shadow: 0 12px 32px rgba(0, 40, 90, 0.09);
    border-color: #93c5fd;
    transform: translateY(-3px);
}
.side-header {
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 16px;
}
.side-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.side-title {
    display: flex;
    align-items: center;
    gap: 12px;
}
.side-title-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #eff6ff;
    color: #0062cc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 1px solid #dbeafe;
}
.side-card.anadolu-card .side-title-icon {
    background: #ecfdf5;
    color: #059669;
    border-color: #a7f3d0;
}
.side-title h3 {
    font-size: 19px;
    font-weight: 800;
    color: #00285a;
    margin: 0;
}
.side-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 800;
    color: #047857;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    padding: 4px 12px;
    border-radius: 50px;
}
.side-live-dot {
    width: 7px;
    height: 7px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.8);
}
.side-desc-text {
    font-size: 13.5px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}
.side-districts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
    margin: 20px 0;
    flex: 1;
}
.district-chip {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}
.district-chip i.fa-location-dot {
    font-size: 12px;
    color: #0062cc;
    margin-right: 8px;
    transition: color 0.2s ease;
}
.side-card.anadolu-card .district-chip i.fa-location-dot {
    color: #059669;
}
.district-chip i.fa-arrow-right {
    font-size: 11px;
    color: #94a3b8;
    transition: all 0.2s ease;
    margin-left: auto;
}
.district-chip:hover {
    background: #0062cc;
    color: #ffffff;
    border-color: #0062cc;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 98, 204, 0.22);
}
.district-chip:hover i.fa-location-dot,
.district-chip:hover i.fa-arrow-right {
    color: #ffffff;
}
.district-chip:hover i.fa-arrow-right {
    transform: translateX(3px);
}
.side-card.anadolu-card .district-chip:hover {
    background: #059669;
    border-color: #059669;
    box-shadow: 0 6px 16px rgba(5, 150, 105, 0.22);
}
.side-card-footer {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 10px;
}
.side-card-footer .footer-tag {
    font-size: 12.5px;
    font-weight: 700;
    color: #00285a;
    display: flex;
    align-items: center;
    gap: 6px;
}
.side-card-footer .btn-side-call {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #0062cc;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    padding: 7px 14px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.2s ease;
}
.side-card-footer .btn-side-call:hover {
    background: #004fb0;
    color: #ffffff;
    transform: scale(1.02);
}
.side-card.anadolu-card .side-card-footer .btn-side-call {
    background: #059669;
}
.side-card.anadolu-card .side-card-footer .btn-side-call:hover {
    background: #047857;
}

/* Tab 2: Routes Intro & Grid */
.routes-intro-card {
    background: linear-gradient(135deg, #001838, #00285a);
    border-radius: 18px;
    padding: 30px 34px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0, 40, 90, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.route-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 4px 14px rgba(0, 40, 90, 0.03);
    transition: all 0.25s ease;
}
.route-card:hover {
    transform: translateY(-3px);
    border-color: #0062cc;
    box-shadow: 0 10px 24px rgba(0, 98, 204, 0.1);
}
.routes-cta-banner {
    margin-top: 24px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

/* ==========================================================================
   KURUMSAL / ABOUT PAGE (PREMIUM REDESIGN)
   ========================================================================== */
.kurumsal-section {
    padding: 80px 0;
    background: #ffffff;
}
.kurumsal-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}
@media (max-width: 991px) {
    .kurumsal-intro-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}
.kurumsal-story-col h2 {
    font-size: 30px;
    font-weight: 800;
    color: #00285a;
    line-height: 1.35;
    margin: 16px 0 20px 0;
}
.kurumsal-story-col .lead-text {
    font-size: 16px;
    font-weight: 600;
    color: #00285a;
    line-height: 1.8;
    margin-bottom: 16px;
}
.kurumsal-story-col p {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
}
.kurumsal-trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}
.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0f7ff;
    border: 1px solid #bae6fd;
    color: #0062cc;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

/* Mission, Vision, Quality Cards */
.kurumsal-cards-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.motto-card {
    border-radius: 18px;
    padding: 26px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
}
.motto-card:hover {
    transform: translateY(-3px);
}
.motto-mission {
    background: linear-gradient(135deg, #00285a 0%, #004494 100%);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 40, 90, 0.15);
}
.motto-vision {
    background: linear-gradient(135deg, #0062cc 0%, #00a2e8 100%);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 98, 204, 0.2);
}
.motto-quality {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    color: #00285a;
    box-shadow: 0 6px 20px rgba(0, 40, 90, 0.04);
}
.motto-quality:hover {
    border-color: #0062cc;
}
.motto-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.motto-quality .motto-icon {
    background: #f0f7ff;
    color: #0062cc;
}
.motto-content h3 {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 8px 0;
}
.motto-mission h3, .motto-vision h3 {
    color: #ffffff;
}
.motto-content p {
    font-size: 13.5px;
    line-height: 1.7;
    margin: 0;
    opacity: 0.9;
}
.motto-quality .motto-content p {
    color: #475569;
}

/* Values Grid */
.kurumsal-values-section {
    padding: 80px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}
.kurumsal-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}
.value-box {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 18px;
    padding: 30px 24px;
    box-shadow: 0 4px 18px rgba(0, 40, 90, 0.03);
    transition: all 0.3s ease;
}
.value-box:hover {
    border-color: #0062cc;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 98, 204, 0.1);
}
.value-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 98, 204, 0.1), rgba(0, 162, 232, 0.15));
    color: #0062cc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}
.value-box:hover .value-icon {
    background: #0062cc;
    color: #ffffff;
}
.value-box h4 {
    font-size: 17px;
    font-weight: 800;
    color: #00285a;
    margin: 0 0 10px 0;
}
.value-box p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

/* Fleet Medical Tech Grid */
.kurumsal-fleet-section {
    padding: 80px 0;
    background: #ffffff;
}
.kurumsal-fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}
.fleet-tech-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.25s ease;
}
.fleet-tech-card:hover {
    background: #ffffff;
    border-color: #0062cc;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 98, 204, 0.08);
}
.fleet-tech-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #e0f2fe;
    color: #0062cc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.fleet-tech-card h5 {
    font-size: 16px;
    font-weight: 800;
    color: #00285a;
    margin: 0;
}
.fleet-tech-card p {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Official Info Section */
.kurumsal-info-section {
    padding: 80px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}
.official-info-wrapper {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 36px 40px;
    box-shadow: 0 8px 30px rgba(0, 40, 90, 0.04);
}
@media (max-width: 768px) {
    .official-info-wrapper { padding: 24px 18px; }
}
.official-info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 22px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}
.official-info-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: #00285a;
    margin: 8px 0 0 0;
}
.official-badge-right {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #dcfce7;
    color: #16a34a;
    border: 1px solid #bbf7d0;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}
.official-table-responsive {
    overflow-x: auto;
}
.official-company-table {
    width: 100%;
    border-collapse: collapse;
}
.official-company-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14.5px;
}
.official-company-table tr:last-child td {
    border-bottom: none;
}
.table-label {
    width: 260px;
    font-weight: 700;
    color: #00285a;
    background: #f8fafc;
}
.table-label i {
    color: #0062cc;
    margin-right: 8px;
    width: 18px;
}
.table-val {
    color: #475569;
}
.table-phone-link {
    color: #0062cc;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
}
.table-phone-link:hover {
    text-decoration: underline;
}

/* ==== POPULAR SOLUTIONS CARD (GLOBAL) ==== */
.popular-solutions-card {
    margin-top: 45px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(0, 40, 90, 0.04);
}
.popular-solutions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 22px;
}
.popular-solutions-title {
    font-size: 19px;
    font-weight: 800;
    color: #00285a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.popular-solutions-subtitle {
    font-size: 13.5px;
    color: #64748b;
    margin: 4px 0 0 0;
}
.popular-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
}
.popular-solutions-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    color: #1e293b;
    font-weight: 700;
    font-size: 13.5px;
    transition: all 0.2s ease;
}
.popular-solutions-item:hover {
    background: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 98, 204, 0.08);
}
.popular-solutions-item i {
    color: var(--primary);
    font-size: 15px;
}

/* ==== BLOG GRID (GLOBAL) ==== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

/* ==== BODY BACKDROP (MENU OPEN) ==== */
body.menu-open {
    overflow: hidden;
}
body.menu-open::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 24, 56, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 998;
    animation: fadeInOverlay 0.25s ease-out;
}
@keyframes fadeInOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ==== Mobile Nav and Footer Overrides ==== */
@media (max-width: 991px) {
    /* Hide topbar completely on mobile to save vertical space and keep header clean */
    .top-bar {
        display: none !important;
    }

    /* Navbar Cohesive Theme */
    .navbar {
        background: var(--secondary) !important;
        height: 76px !important;
        display: flex;
        align-items: center;
        box-shadow: 0 4px 20px rgba(0, 24, 56, 0.15);
    }
    
    .nav-inner {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Logo Badge for legibility on dark blue header */
    .navbar .logo {
        background: #ffffff !important;
        padding: 6px 14px !important;
        border-radius: var(--radius-sm, 10px) !important;
        display: inline-flex !important;
        align-items: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
        margin-right: auto;
    }
    
    .navbar .site-logo {
        height: 40px !important;
        max-width: 190px !important;
        width: auto !important;
        object-fit: contain;
    }

    /* Footer Brand Logo */
    .footer-brand .site-logo {
        height: 75px !important;
        max-width: 260px !important;
        width: auto !important;
        background: #ffffff !important;
        padding: 8px 18px !important;
        border-radius: var(--radius-sm, 10px) !important;
        display: inline-block !important;
        object-fit: contain;
        margin-bottom: 16px !important;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2) !important;
    }

    /* Ensure actions are visible and clean */
    .nav-actions {
        display: flex !important;
        align-items: center;
        gap: 10px;
        z-index: 1002;
    }

    /* Compact Call Button on mobile header */
    .nav-actions .btn-call {
        padding: 8px !important;
        border-radius: 50% !important;
        width: 38px !important;
        height: 38px !important;
        display: inline-flex !important;
        justify-content: center !important;
        align-items: center !important;
        background: var(--primary) !important;
        color: var(--white) !important;
        box-shadow: 0 4px 12px rgba(0, 98, 204, 0.3) !important;
    }
    
    .nav-actions .btn-call span {
        display: none !important; /* Hide number on header, just show icon */
    }
    
    .nav-actions .btn-call i {
        font-size: 14px !important;
        margin: 0 !important;
    }

    /* Hamburger styling */
    .hamburger {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 5px !important;
        width: 40px !important;
        height: 40px !important;
        background: rgba(255, 255, 255, 0.12) !important;
        border: 1px solid rgba(255, 255, 255, 0.25) !important;
        border-radius: 8px !important;
        cursor: pointer !important;
        padding: 0 !important;
        z-index: 1002 !important;
        transition: all 0.25s ease !important;
    }
    .hamburger:hover {
        background: rgba(255, 255, 255, 0.2) !important;
    }
    .hamburger span {
        display: block !important;
        width: 22px !important;
        height: 2.5px !important;
        background: #ffffff !important;
        border-radius: 2px !important;
        transition: all 0.3s ease !important;
    }
    .hamburger.active span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg) !important;
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0 !important;
        transform: scale(0) !important;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg) !important;
    }

    /* Side menu drawer matches header */
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 280px !important;
        height: 100vh !important;
        background: var(--secondary) !important;
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.3) !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 85px 16px 30px 16px !important;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: 1000 !important;
        overflow-y: auto !important;
        gap: 6px !important;
    }
    
    .nav-menu.active {
        right: 0 !important;
    }

    .nav-menu ul {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 4px !important;
        width: 100% !important;
    }

    .nav-menu ul li {
        width: 100% !important;
    }

    /* Menu Link styling */
    .nav-menu ul li a {
        color: rgba(255, 255, 255, 0.9) !important;
        background: transparent !important;
        padding: 10px 14px !important;
        border-radius: 8px !important;
        font-size: 14px !important;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        transition: all 0.2s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-menu ul li a:hover,
    .nav-menu ul li a.active {
        background: rgba(255, 255, 255, 0.08) !important;
        color: var(--primary-light) !important;
        padding-left: 16px !important;
    }

    /* Mobile Accordion Dropdowns */
    .nav-menu .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        display: none !important; /* hidden by default */
        width: 100% !important;
        padding: 4px 0 4px 10px !important;
        background: rgba(0, 0, 0, 0.15) !important;
        border-radius: 8px !important;
        margin-top: 4px !important;
    }
    
    .nav-menu .dropdown.active > .dropdown-menu {
        display: flex !important; /* show inline */
        flex-direction: column !important;
    }
    
    .nav-menu .dropdown.active > .dropdown-menu.grid-dropdown {
        display: flex !important; /* show inline list instead of grid on mobile */
        flex-direction: column !important;
        min-width: unset !important;
        padding: 4px 0 4px 10px !important;
    }
    
    .nav-menu .dropdown-menu li a {
        padding: 8px 12px !important;
        font-size: 13px !important;
        color: rgba(255, 255, 255, 0.75) !important;
        border-bottom: none !important;
    }
    
    .nav-menu .dropdown-menu li a i {
        color: var(--primary-light) !important;
        margin-right: 6px !important;
    }
    
    .nav-menu .dropdown-menu li a:hover {
        color: var(--white) !important;
        background: rgba(255, 255, 255, 0.06) !important;
    }

    /* --- PAGE SHIFT & GRID FIXES --- */
    
    /* Popular Solutions Mobile Overrides */
    .popular-solutions-card {
        padding: 20px 16px !important;
        margin-top: 30px !important;
        border-radius: 16px !important;
    }
    .popular-solutions-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }
    .popular-solutions-title {
        font-size: 16px !important;
    }
    .popular-solutions-grid {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }
    .popular-solutions-btn {
        width: 100% !important;
        justify-content: center !important;
    }

    /* Coverage Header Banner Grid Fix (Prevents Horizontal Overflow/Shift) */
    .coverage-header-banner {
        grid-template-columns: 1fr !important;
        padding: 24px 16px !important;
        gap: 20px !important;
        border-radius: 16px !important;
    }
    .coverage-header-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .coverage-header-image img {
        height: 200px !important;
        width: 100% !important;
    }
    .coverage-quick-stats {
        flex-wrap: wrap !important;
        gap: 14px !important;
    }

    /* Side card districts grid columns spacing */
    .side-districts-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)) !important;
        gap: 6px !important;
    }
    .district-chip {
        padding: 8px 10px !important;
        font-size: 12px !important;
    }

    /* Akordeon rotaları (Tab 2: Routes Intro Card) */
    .routes-intro-card {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 22px 18px !important;
        gap: 16px !important;
    }
    .routes-intro-card .btn {
        width: 100% !important;
        justify-content: center !important;
    }
    .routes-cta-banner {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 16px !important;
        padding: 16px !important;
    }
    .routes-cta-banner .btn {
        width: 100% !important;
        justify-content: center !important;
    }

    /* Grid stack fixes for service details, contacts, and blog pages */
    .contact-grid,
    .service-detail-inner {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    .service-detail-img img {
        height: 220px !important;
    }
    .blog-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Page Header */
    .page-header {
        padding: 40px 0 !important;
    }
    .page-header h1 {
        font-size: 26px !important;
    }

    /* References Carousel */
    .ref-carousel-container {
        gap: 8px !important;
        margin-top: 20px !important;
    }
    .ref-carousel-btn {
        width: 36px !important;
        height: 36px !important;
        font-size: 13px !important;
    }
    .ref-card {
        padding: 18px 12px !important;
    }

    /* ==== STREAMLINED MOBILE FOOTER (ZERO CLUTTER) ==== */
    .footer {
        background: #001838 !important;
        color: #94a3b8 !important;
        padding: 30px 0 0 0 !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .footer-top {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
        padding: 10px 0 20px !important;
    }
    
    .footer-col {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
        padding-bottom: 18px !important;
        margin-bottom: 0 !important;
    }
    
    .footer-col:last-child {
        border-bottom: none !important;
        padding-bottom: 0 !important;
    }
    
    .footer-col h3,
    .footer-col h4 {
        color: var(--white) !important;
        margin-bottom: 12px !important;
        padding-bottom: 8px !important;
        font-size: 15px !important;
    }
    
    .footer-col ul li {
        margin-bottom: 8px !important;
    }

    .footer-col ul li a {
        color: #cbd5e1 !important;
        font-size: 13px !important;
    }
    
    .footer-col ul li a:hover {
        color: var(--white) !important;
    }

    .footer-contact li {
        font-size: 13px !important;
        margin-bottom: 8px !important;
        color: #cbd5e1 !important;
    }

    /* Footer SEO Hub Compact & Clean */
    .footer-seo-hub {
        padding: 20px 0 16px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    }
    .footer-seo-header {
        margin-bottom: 12px !important;
        gap: 8px !important;
    }
    .footer-seo-badge {
        font-size: 10px !important;
        padding: 3px 10px !important;
    }
    .footer-seo-header h3 {
        font-size: 14px !important;
        margin-top: 4px !important;
        color: #ffffff !important;
    }
    .footer-tags-grid {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 6px !important;
        justify-content: flex-start !important;
    }
    .footer-tag-chip {
        padding: 6px 11px !important;
        font-size: 11.5px !important;
        border-radius: 6px !important;
        gap: 6px !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        color: #cbd5e1 !important;
        box-shadow: none !important;
    }
    .footer-tag-chip i {
        font-size: 10px !important;
        color: #00a2e8 !important;
    }

    /* Footer Bottom Clean & Organized */
    .footer-bottom {
        background: #001229 !important;
        padding: 20px 16px 75px 16px !important; /* Bottom padding so floating WhatsApp button never covers text */
        border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    }
    .footer-bottom-inner {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 10px !important;
    }
    .footer-copy-text {
        width: 100% !important;
        text-align: center !important;
    }
    .footer-copy-text p {
        flex-direction: column !important;
        align-items: center !important;
        gap: 6px !important;
        font-size: 12px !important;
        line-height: 1.6 !important;
        color: #64748b !important;
    }
    .footer-copy-text strong {
        color: #cbd5e1 !important;
    }
    .footer-badge-mini {
        display: inline-block !important;
        margin-top: 4px !important;
        font-size: 11px !important;
        padding: 3px 10px !important;
    }
    .footer-quick-call {
        display: none !important; /* Hidden on mobile to avoid button overlap */
    }

    /* Mobile Floating Elements */
    .back-to-top {
        display: none !important; /* Hidden on mobile to keep screen uncluttered */
    }
    .whatsapp-float {
        bottom: 18px !important;
        right: 16px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 26px !important;
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4) !important;
        z-index: 990 !important;
    }
}

/* ==========================================================================
   CLEAN AUTHENTIC FOOTER
   ========================================================================== */
.footer-clean {
    background: #08162b;
    color: #94a3b8;
    padding-top: 55px;
    border-top: 1px solid #1e293b;
    font-size: 14px;
}
.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 45px;
}
@media (max-width: 991px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}
@media (max-width: 600px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 35px;
    }
}

.footer-logo-box {
    background: #ffffff;
    padding: 8px 14px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.footer-logo-box img {
    display: block;
    max-height: 40px;
    width: auto;
}
.footer-desc {
    color: #94a3b8;
    font-size: 13.5px;
    line-height: 1.7;
    margin: 0;
}

.footer-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 13.5px;
    transition: color 0.2s ease;
}
.footer-links li a:hover {
    color: #38bdf8;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: #cbd5e1;
    line-height: 1.5;
}
.footer-contact-list li i {
    color: #00a2e8;
    margin-top: 3px;
    width: 16px;
    text-align: center;
}
.footer-contact-list li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-contact-list li a:hover {
    color: #ffffff;
}

.footer-bottom {
    background: #040e1d;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 18px 0;
    font-size: 13px;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}
.footer-copyright {
    margin: 0;
    color: #64748b;
    font-size: 13px;
    font-weight: 400;
}
.footer-legal {
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer-legal a {
    color: #64748b;
    text-decoration: none;
    font-size: 12.5px;
    transition: color 0.2s ease;
}
.footer-legal a:hover {
    color: #cbd5e1;
}

/* ================= MEGA STATIONS DROPDOWN (39 DISTRICTS) ================= */

/* DESKTOP STYLES ONLY (>= 992px) */
@media (min-width: 992px) {
    .dropdown.has-mega-stations {
        position: static !important;
    }
    .dropdown.has-mega-stations .mega-stations-dropdown {
        position: absolute !important;
        top: 100% !important;
        left: 50% !important;
        transform: translateX(-50%) translateY(12px) !important;
        width: 96vw !important;
        max-width: 1140px !important;
        background: #ffffff !important;
        border-radius: 14px !important;
        box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25), 0 0 0 1px rgba(226, 232, 240, 0.8) !important;
        padding: 0 !important;
        overflow: hidden !important;
        z-index: 1000 !important;
        opacity: 0;
        visibility: hidden;
        transition: all 0.25s ease !important;
        display: block !important;
    }
    .dropdown.has-mega-stations:hover .mega-stations-dropdown {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(-50%) translateY(4px) !important;
    }

    .mega-stations-header {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 14px 24px !important;
        background: #f8fafc !important;
        border-bottom: 1px solid #e2e8f0 !important;
    }
    .mega-header-title {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        color: #0f172a !important;
        font-size: 14px !important;
    }
    .btn-all-stations {
        font-size: 12.5px !important;
        font-weight: 700 !important;
        color: var(--primary) !important;
        text-decoration: none !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 6px !important;
        transition: 0.15s !important;
    }
    .btn-all-stations:hover {
        color: var(--primary-dark) !important;
        transform: translateX(2px) !important;
    }

    .mega-stations-body {
        display: grid !important;
        grid-template-columns: 1.6fr 1fr !important;
        gap: 20px !important;
        padding: 22px 24px !important;
        background: #ffffff !important;
    }
    .mega-column {
        display: flex !important;
        flex-direction: column !important;
    }
    .anadolu-column, .anadolu-col {
        border-left: 1px solid #f1f5f9 !important;
        padding-left: 20px !important;
    }
    .column-title {
        margin-bottom: 12px !important;
    }
    .badge-side {
        display: inline-block !important;
        font-size: 11.5px !important;
        font-weight: 800 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        padding: 4px 10px !important;
        border-radius: 6px !important;
    }
    .badge-side.avrupa {
        background: rgba(37, 99, 235, 0.1) !important;
        color: #2563eb !important;
        border: 1px solid rgba(37, 99, 235, 0.2) !important;
    }
    .badge-side.anadolu {
        background: rgba(16, 185, 129, 0.1) !important;
        color: #059669 !important;
        border: 1px solid rgba(16, 185, 129, 0.2) !important;
    }

    .districts-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2px 8px !important;
    }
    .districts-grid.anadolu-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .districts-grid a {
        display: flex !important;
        align-items: center !important;
        padding: 6px 8px !important;
        font-size: 12px !important;
        font-weight: 600 !important;
        color: #334155 !important;
        border-radius: 6px !important;
        text-decoration: none !important;
        transition: all 0.12s ease !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    .districts-grid a i {
        font-size: 10px !important;
        color: #94a3b8 !important;
        margin-right: 5px !important;
        transition: 0.12s !important;
    }
    .districts-grid a:hover {
        background: #f0f7ff !important;
        color: var(--primary) !important;
        padding-left: 11px !important;
    }
    .districts-grid a:hover i {
        color: var(--primary) !important;
    }

    .mega-stations-footer {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 14px 22px !important;
        background: #001838 !important;
        color: #ffffff !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        border-top: 1px solid rgba(255,255,255,0.12) !important;
        border-bottom-left-radius: 14px !important;
        border-bottom-right-radius: 14px !important;
    }
    .mega-stations-footer span {
        color: #cbd5e1 !important;
    }
    .mega-phone-call {
        background: #0062cc !important;
        color: #ffffff !important;
        font-weight: 800 !important;
        font-size: 13.5px !important;
        text-decoration: none !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 8px !important;
        padding: 8px 18px !important;
        border-radius: 50px !important;
        box-shadow: 0 4px 12px rgba(0, 98, 204, 0.45) !important;
        transition: all 0.2s ease !important;
    }
    .mega-phone-call:hover {
        background: #004fb0 !important;
        color: #ffffff !important;
        transform: translateY(-1px) !important;
    }
}

/* MOBILE STYLES (< 992px) */
@media (max-width: 991px) {
    .dropdown.has-mega-stations {
        position: static !important;
    }
    .dropdown.has-mega-stations .mega-stations-dropdown {
        display: none !important;
        position: static !important;
        transform: none !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        background: #000c1f !important;
        border: 1px solid rgba(56, 189, 248, 0.25) !important;
        border-radius: 12px !important;
        padding: 10px 8px !important;
        margin: 6px 0 8px 0 !important;
        box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.5) !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    li.dropdown.has-mega-stations.active > .mega-stations-dropdown {
        display: block !important;
    }

    .mega-stations-header {
        display: flex !important;
        flex-direction: column !important;
        padding: 0 !important;
        margin: 0 0 10px 0 !important;
        background: transparent !important;
        border: none !important;
        width: 100% !important;
    }
    .mega-header-title {
        display: none !important;
    }
    .btn-all-stations {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;
        width: 100% !important;
        background: linear-gradient(135deg, #0062cc 0%, #0284c7 100%) !important;
        color: #ffffff !important;
        text-align: center !important;
        padding: 10px 8px !important;
        border-radius: 8px !important;
        font-size: 12px !important;
        font-weight: 800 !important;
        text-decoration: none !important;
        box-sizing: border-box !important;
        line-height: 1.3 !important;
        white-space: normal !important;
    }

    .mega-stations-body {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        padding: 0 !important;
        background: transparent !important;
        width: 100% !important;
    }
    .mega-column {
        width: 100% !important;
    }
    .anadolu-column, .anadolu-col {
        border-left: none !important;
        padding-left: 0 !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
        padding-top: 10px !important;
    }

    .column-title {
        margin-bottom: 6px !important;
    }
    .badge-side {
        display: inline-block !important;
        font-size: 11px !important;
        font-weight: 800 !important;
        padding: 3px 8px !important;
        border-radius: 4px !important;
        text-transform: uppercase !important;
    }
    .badge-side.avrupa {
        background: rgba(56, 189, 248, 0.15) !important;
        color: #38bdf8 !important;
        border: 1px solid rgba(56, 189, 248, 0.3) !important;
    }
    .badge-side.anadolu {
        background: rgba(52, 211, 153, 0.15) !important;
        color: #34d399 !important;
        border: 1px solid rgba(52, 211, 153, 0.3) !important;
    }

    /* 2 SÜTUNLU KUSURSUZ İLÇE IZGARASI */
    .districts-grid,
    .districts-grid.anadolu-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 4px !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }
    .districts-grid a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        color: #f1f5f9 !important;
        font-size: 11.5px !important;
        font-weight: 600 !important;
        padding: 7px 4px !important;
        border-radius: 6px !important;
        text-decoration: none !important;
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        transition: all 0.12s ease !important;
    }
    .districts-grid a:hover,
    .districts-grid a.active {
        background: #0062cc !important;
        color: #ffffff !important;
        border-color: #38bdf8 !important;
    }

    .mega-stations-footer {
        display: none !important;
    }
}


/* ================================================================
   CLEAN GLOBAL NAVBAR & MOBILE DRAWER STYLES
   ================================================================ */
.dropdown-arrow {
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.2s ease;
}

/* DESKTOP (>= 992px) */
@media (min-width: 992px) {
    .nav-menu ul {
        display: flex;
        align-items: center;
        gap: 6px;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .nav-menu ul li {
        position: relative;
    }
    .nav-menu ul li a {
        display: inline-flex;
        align-items: center;
        padding: 10px 14px;
        font-size: 14.5px;
        font-weight: 600;
        color: #1e293b;
        text-decoration: none;
        border-radius: 8px;
        transition: all 0.2s ease;
    }
    .nav-menu ul li a:hover,
    .nav-menu ul li a.active {
        color: #0062cc;
        background: rgba(0, 98, 204, 0.06);
    }
    
    .dropdown:hover .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    /* Standard Dropdown */
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 260px;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        box-shadow: 0 12px 30px rgba(0,0,0,0.12);
        padding: 10px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.2s ease;
        z-index: 1000;
        list-style: none;
    }
    .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .grid-dropdown {
        min-width: 480px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px;
    }
    .mobile-direct-link {
        display: none !important;
    }
}

/* MOBILE (< 992px) */
@media (max-width: 991px) {
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: min(320px, 88vw) !important;
        height: 100vh !important;
        background: #00132b !important;
        box-shadow: -10px 0 40px rgba(0,0,0,0.6) !important;
        padding: 80px 14px 40px !important;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: 99999 !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        display: block !important;
        box-sizing: border-box !important;
    }
    .nav-menu.active {
        right: 0 !important;
    }
    .nav-menu ul {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
    }
    .nav-menu ul li {
        width: 100% !important;
    }
    .nav-menu ul li a {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 13px 16px !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        color: #ffffff !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-radius: 12px !important;
        text-decoration: none !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .nav-menu ul li a.active,
    .nav-menu ul li a:hover {
        background: #0062cc !important;
        color: #ffffff !important;
    }
    
    li.dropdown.active > a {
        background: #0062cc !important;
        border-color: #38bdf8 !important;
    }
    li.dropdown.active > a .dropdown-arrow {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        display: none !important;
        position: static !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        background: #000918 !important;
        border: 1px solid rgba(56, 189, 248, 0.25) !important;
        border-radius: 12px !important;
        padding: 10px 8px !important;
        margin: 6px 0 8px 0 !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    li.dropdown.active > .dropdown-menu {
        display: block !important;
    }
    .mobile-direct-link {
        display: block !important;
        margin-bottom: 6px;
    }
    .dropdown-menu li a {
        background: transparent !important;
        border: none !important;
        color: #cbd5e1 !important;
        font-size: 13.5px !important;
        font-weight: 600 !important;
        padding: 8px 10px !important;
        border-radius: 6px !important;
        justify-content: flex-start !important;
    }
    .dropdown-menu li a:hover {
        background: rgba(0, 98, 204, 0.3) !important;
        color: #38bdf8 !important;
    }
    
    /* Mega stations mobile layout */
    .mega-stations-header {
        display: flex !important;
        flex-direction: column !important;
        padding: 0 !important;
        margin: 0 0 10px 0 !important;
        background: transparent !important;
        border: none !important;
    }
    .mega-header-title {
        display: none !important;
    }
    .btn-all-stations {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;
        width: 100% !important;
        background: linear-gradient(135deg, #0062cc 0%, #0284c7 100%) !important;
        color: #ffffff !important;
        text-align: center !important;
        padding: 10px 8px !important;
        border-radius: 8px !important;
        font-size: 12.5px !important;
        font-weight: 800 !important;
        text-decoration: none !important;
        box-sizing: border-box !important;
    }
    .mega-stations-body {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        padding: 0 !important;
        background: transparent !important;
    }
    .anadolu-column {
        border-left: none !important;
        padding-left: 0 !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
        padding-top: 10px !important;
    }
    .districts-grid,
    .districts-grid.anadolu-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 4px !important;
        width: 100% !important;
    }
    .districts-grid a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        color: #f1f5f9 !important;
        font-size: 11.5px !important;
        font-weight: 600 !important;
        padding: 7px 4px !important;
        border-radius: 6px !important;
        text-decoration: none !important;
        min-width: 0 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    .districts-grid a:hover,
    .districts-grid a.active {
        background: #0062cc !important;
        color: #ffffff !important;
        border-color: #38bdf8 !important;
    }
    .mega-stations-footer {
        display: none !important;
    }
}


/* ================================================================
   HOMEPAGE DEEP MOBILE RESPONSIVE ENGINE (< 991px & < 576px)
   ================================================================ */

/* Coverage Header Banner (Desktop Default) */
.coverage-header-banner {
    background: linear-gradient(135deg, #001838 0%, #00285a 100%);
    border-radius: 24px;
    padding: 42px 40px;
    color: white;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 20px 45px rgba(0, 24, 56, 0.25);
}
.coverage-stats-wrap {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    /* Global Section Spacing on Mobile */
    section {
        padding: 45px 0 !important;
    }
    .section-padding {
        padding: 45px 0 !important;
    }
    .section-header {
        margin-bottom: 28px !important;
    }
    .section-header h2 {
        font-size: clamp(22px, 5vw, 30px) !important;
        line-height: 1.3 !important;
        margin-bottom: 10px !important;
    }
    .section-header p {
        font-size: 14.5px !important;
        line-height: 1.6 !important;
    }

    /* 1. Hero Video Slider Mobile */
    .hero-slider-section {
        min-height: 520px !important;
        max-height: 85vh !important;
    }
    .hero-content {
        padding: 20px 0 !important;
        text-align: center !important;
    }
    .hero-title {
        font-size: clamp(23px, 6vw, 36px) !important;
        line-height: 1.25 !important;
        margin-bottom: 12px !important;
    }
    .hero-desc {
        font-size: 14.5px !important;
        line-height: 1.6 !important;
        margin-bottom: 22px !important;
        max-width: 100% !important;
    }
    .hero-btn-group {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
    }
    .btn-hero-primary, .btn-hero-glass {
        width: 100% !important;
        justify-content: center !important;
        padding: 13px 20px !important;
        font-size: 14.5px !important;
    }
    .hero-nav-arrow {
        display: none !important; /* Touch swipe or dots preferred on mobile */
    }
    .hero-slider-pagination {
        bottom: 14px !important;
    }

    /* 2. Services Grid Mobile */
    .clean-svc-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        margin-top: 20px !important;
    }
    .clean-svc-card {
        padding: 22px 18px 20px !important;
        border-radius: 14px !important;
    }
    .clean-svc-title {
        font-size: 17.5px !important;
    }
    .clean-svc-desc {
        font-size: 13.5px !important;
        margin-bottom: 16px !important;
    }

    /* 3. About Section Mobile */
    .about-inner {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    .about-content h2 {
        font-size: clamp(22px, 5vw, 30px) !important;
        line-height: 1.3 !important;
    }
    .about-features {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    /* 4. Features Grid Mobile */
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }
    .feature-box {
        padding: 20px 16px !important;
        border-radius: 14px !important;
    }

    /* 5. Coverage Banner Mobile */
    .coverage-header-banner {
        grid-template-columns: 1fr !important;
        padding: 24px 18px !important;
        border-radius: 16px !important;
        gap: 22px !important;
        margin-bottom: 24px !important;
    }
    .coverage-header-content h2 {
        font-size: clamp(22px, 5vw, 28px) !important;
    }
    .coverage-header-content p {
        font-size: 14px !important;
        margin-bottom: 18px !important;
    }
    .coverage-stats-wrap {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
        width: 100% !important;
    }
    .coverage-stats-wrap > div {
        min-width: 0 !important;
        padding: 12px 14px !important;
        border-radius: 12px !important;
    }

    /* 6. Coverage Tabs Mobile */
    .coverage-tabs {
        flex-direction: column !important;
        width: 100% !important;
        gap: 8px !important;
    }
    .coverage-tab-btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 12px 16px !important;
        font-size: 13.5px !important;
    }

    /* 7. Istanbul Sides Grid Mobile (Avrupa & Anadolu Cards) */
    .istanbul-sides-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }
    .side-card {
        border-radius: 16px !important;
    }
    .side-header {
        padding: 16px !important;
    }
    .side-districts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 6px !important;
        padding: 14px 12px !important;
    }
    .district-chip {
        padding: 8px 6px !important;
        font-size: 11.5px !important;
        border-radius: 6px !important;
        min-width: 0 !important;
    }
    .district-chip span {
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    .district-chip .fa-arrow-right {
        display: none !important;
    }
    .side-card-footer {
        flex-direction: column !important;
        gap: 10px !important;
        padding: 14px !important;
    }
    .btn-side-call {
        width: 100% !important;
        justify-content: center !important;
    }

    /* 8. Routes Tab Mobile */
    .routes-intro-card {
        padding: 20px 16px !important;
        border-radius: 14px !important;
        flex-direction: column !important;
        gap: 14px !important;
        text-align: center !important;
    }
    .routes-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .route-card {
        padding: 16px 14px !important;
    }
    .routes-cta-banner {
        flex-direction: column !important;
        text-align: center !important;
        gap: 14px !important;
        padding: 20px 16px !important;
    }
    .cta-banner-content {
        flex-direction: column !important;
        gap: 10px !important;
    }

    /* 9. SEO Guide & Pillars Mobile */
    .seo-pillars-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .seo-pillar-card {
        padding: 18px 16px !important;
        border-radius: 14px !important;
    }
    .seo-guide-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    .seo-guide-box {
        padding: 20px 16px !important;
        border-radius: 16px !important;
    }

    /* 10. FAQ & CTA Mobile */
    .faq-header {
        padding: 16px 14px !important;
    }
    .faq-header h3 {
        font-size: 14.5px !important;
    }
    .cta-inner {
        flex-direction: column !important;
        text-align: center !important;
        gap: 20px !important;
    }
    .cta-buttons {
        width: 100% !important;
        flex-direction: column !important;
        gap: 10px !important;
    }
    .cta-buttons .btn {
        width: 100% !important;
        justify-content: center !important;
    }
}

@media (max-width: 575px) {
    .coverage-stats-wrap {
        grid-template-columns: 1fr !important;
    }
}
