/* ================================================================
   GSM MEDYA AMBULANS - Ana Stil Dosyası
   GSM Medya Sosyal Sağlık Organizasyon Ltd Şti
   ================================================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #dc2626;
    --primary-dark: #991b1b;
    --primary-light: #ef4444;
    --secondary: #0f172a;
    --secondary-light: #1e293b;
    --dark-bg: #090a0f;
    --accent: #e8b830;
    --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);
}

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;
    -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(204,0,0,0.3);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(204,0,0,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: #1da851;
    transform: translateY(-2px);
}

.btn-lg {
    font-size: 18px;
    padding: 16px 36px;
}

.pulse {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(204,0,0,0.4); }
    70% { box-shadow: 0 0 0 15px rgba(204,0,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(204,0,0,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: 74px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    transition: transform 0.25s ease;
}
.logo:hover .site-logo {
    transform: scale(1.03);
}
.footer-brand .site-logo {
    height: 82px;
    max-width: 350px;
    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;
}
.nav-menu ul li a {
    padding: 10px 16px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 15px;
    color: var(--gray-700);
    transition: var(--transition);
}
.nav-menu ul li a:hover,
.nav-menu ul li a.active {
    color: var(--primary);
    background: rgba(204,0,0,0.06);
}
.dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 240px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--transition);
    display: flex !important;
    flex-direction: column;
    gap: 0 !important;
    padding: 8px;
    z-index: 100;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(4px);
}
.dropdown-menu li a {
    display: block;
    border-radius: 6px !important;
    padding: 10px 16px !important;
    font-size: 14px !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: 85vh;
    min-height: 560px;
    position: relative;
    overflow: hidden;
    background-color: var(--dark-bg, #0f172a);
    color: var(--white);
}

.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.65) contrast(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(9, 13, 22, 0.9) 0%, rgba(9, 13, 22, 0.6) 60%, rgba(9, 13, 22, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 780px;
    padding: 40px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    background: rgba(220, 38, 38, 0.2);
    border-left: 3px solid var(--primary);
    font-family: var(--font-title, 'Plus Jakarta Sans', sans-serif);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-title {
    font-family: var(--font-title, 'Plus Jakarta Sans', sans-serif);
    font-size: clamp(34px, 4.8vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    color: #ffffff;
}

.hero-title span {
    color: var(--primary-light, #ef4444);
}

.hero-desc {
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.65;
    max-width: 620px;
    margin-bottom: 28px;
}

.hero-btn-group {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background-color: var(--primary);
    color: var(--white);
    font-family: var(--font-title, 'Plus Jakarta Sans', sans-serif);
    font-size: 14px;
    font-weight: 700;
    padding: 12px 26px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-decoration: none;
}

.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: 9px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    font-family: var(--font-title, 'Plus Jakarta Sans', sans-serif);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-decoration: none;
}

.btn-hero-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    transform: translateY(-2px);
}

.slider-controls {
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 100%;
    z-index: 10;
}

.slider-controls-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slider-arrow-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.slider-arrow {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-xs, 4px);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.slider-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}

.slider-dot {
    width: 10px;
    height: 6px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}



/* ===== EMERGENCY STRIP ===== */
.emergency-strip {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 20px 0;
}
.emergency-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.emergency-icon {
    font-size: 40px;
    color: var(--white);
}
.emergency-text {
    flex: 1;
    min-width: 200px;
}
.emergency-text strong {
    display: block;
    color: var(--white);
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
}
.emergency-text span {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}
.emergency-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ===== SECTIONS COMMON ===== */
section {
    padding: 90px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-badge {
    display: inline-block;
    background: rgba(204,0,0,0.08);
    color: var(--primary);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 12px;
}
.section-header p {
    color: var(--gray-600);
    font-size: 16px;
    max-width: 550px;
    margin: 0 auto;
}

/* ===== SERVICES ===== */
.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(350px, 1fr));
    gap: 28px;
}
.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 36px 30px;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1.5px solid #cbd5e1;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    opacity: 1;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(220, 38, 38, 0.14);
    border-color: var(--primary);
}
.service-card:hover::before {
    height: 5px;
}
.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--white);
    margin-bottom: 20px;
    box-shadow: 0 6px 18px rgba(220, 38, 38, 0.28);
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--primary-dark);
    transform: scale(1.08);
    box-shadow: 0 8px 22px rgba(220, 38, 38, 0.38);
}
.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #0f172a;
}
.service-card p {
    color: #475569;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.7;
}
.service-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.service-link:hover { gap: 10px; }

/* ===== ABOUT ===== */
.about {
    background: #ffffff;
    padding: 85px 0;
}
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image {
    position: relative;
}
.about-img-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 18px;
    overflow: hidden;
    border: 1.5px solid #cbd5e1;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
}
.about-img-wrapper img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}
.about-experience {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--primary);
    color: var(--white);
    padding: 16px 24px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.35);
}
.exp-years {
    display: block;
    font-size: 36px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}
.exp-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.about-img-accent {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    border-radius: 18px;
    z-index: 1;
}
.about-content .section-badge { margin-bottom: 12px; }
.about-content h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #0f172a;
}
.about-slogan {
    font-size: 16px;
    color: #334155;
    margin-bottom: 16px;
}
.about-content > p {
    color: #475569;
    margin-bottom: 24px;
    line-height: 1.8;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 22px;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
}
.about-feature i {
    color: var(--primary);
    font-size: 16px;
}
.about-company-info {
    background: #f8fafc;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 13.5px;
    margin-bottom: 24px;
    border: 1px solid #cbd5e1;
    border-left: 4px solid var(--primary);
    color: #334155;
}
.about-company-info p { margin: 0; }

/* ===== FEATURES ===== */
.features {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 85px 0;
    border-top: 1px solid #334155;
    border-bottom: 1px solid #334155;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
}
.feature-box {
    text-align: center;
    color: var(--white);
    padding: 20px;
}
.feature-icon-wrap {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary-light);
    transition: var(--transition);
}
.feature-box:hover .feature-icon-wrap {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}
.feature-box h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 8px;
}
.feature-box p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

/* ===== DISTRICTS ===== */
.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: var(--secondary);
    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 h4 {
    color: var(--white);
    font-size: 17px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}
.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-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-credit {
    color: var(--primary);
    font-weight: 600;
}

/* ===== 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(204,0,0,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(204,0,0,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(220, 38, 38, 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(220, 38, 38, 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: 125px;
    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: 185px;
    max-height: 95px;
    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-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #334155;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.25s ease;
    flex-shrink: 0;
    z-index: 2;
}
.ref-carousel-btn:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
    transform: scale(1.08);
}
.ref-carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
}
.ref-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}
.ref-carousel-dot.active {
    width: 28px;
    border-radius: 10px;
    background: #0f172a;
}

@media (max-width: 992px) {
    .ref-card {
        flex: 0 0 calc((100% - 24px) / 2); /* 2 cards on tablet */
    }
}

@media (max-width: 600px) {
    .ref-card {
        flex: 0 0 100%; /* 1 card on mobile */
    }
    .ref-carousel-container {
        gap: 8px;
    }
    .ref-carousel-btn {
        width: 38px;
        height: 38px;
        font-size: 13px;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 42px; }
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    .about-inner,
    .service-detail-inner {
        grid-template-columns: 1fr;
    }
    .about-image { max-width: 500px; margin: 0 auto; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .site-logo {
        height: 56px;
        max-width: 250px;
    }
    /* Mobile Nav */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 80px 24px 24px;
        flex-direction: column;
        transition: 0.4s ease;
        z-index: 1001;
    }
    .nav-menu.active { right: 0; }
    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    .nav-menu ul li { width: 100%; }
    .nav-menu ul li a {
        display: block;
        padding: 14px 16px;
        border-radius: 8px;
    }
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0 0 0 16px;
        background: var(--gray-100);
        border-radius: 8px;
        margin-top: 4px;
    }
    .hamburger { display: flex; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .video-box:nth-child(2),
    .video-box:nth-child(3) {
        display: none;
    }

    .hero h1 {
        letter-spacing: -2px;
        font-size: clamp(36px, 10vw, 55px);
    }

    .hero .description {
        font-size: 15px;
    }

    .hero .buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero .buttons .btn {
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }

    .hero .bottom {
        left: 25px;
        right: 25px;
    }

    .section-header h2 { font-size: 30px; }
    .services-grid { grid-template-columns: 1fr; }
    .districts-grid span { font-size: 12px; padding: 8px 14px; }

    .footer-top { grid-template-columns: 1fr; }
    .cta-inner { text-align: center; flex-direction: column; }
    .cta-content h2 { font-size: 26px; }

    .whatsapp-float { width: 50px; height: 50px; font-size: 24px; bottom: 20px; right: 20px; }
    .back-to-top { bottom: 80px; right: 22px; }
    .slider-arrow { width: 40px; height: 40px; font-size: 14px; }
    .slider-prev { left: 12px; }
    .slider-next { right: 12px; }
}

@media (max-width: 480px) {
    .top-bar { display: none; }
    .hero-content h1 { font-size: 26px; }
    .btn-call span { display: none; }
    .emergency-strip { text-align: center; }
    .emergency-inner { flex-direction: column; }
    .emergency-actions { flex-direction: column; width: 100%; }
    .emergency-actions .btn { width: 100%; justify-content: center; }
    .page-header h1 { font-size: 28px; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== SEO CONTENT & GUIDE ARTICLE STYLES ===== */
.seo-article-wrapper {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 50px 45px;
    margin-top: 50px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    color: #334155;
    line-height: 1.85;
}
.seo-article-wrapper h2 {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-light, #e0f2fe);
}
.seo-article-wrapper h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-top: 32px;
    margin-bottom: 14px;
}
.seo-article-wrapper h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 20px;
    margin-bottom: 8px;
}
.seo-article-wrapper p {
    font-size: 15px;
    color: #475569;
    margin-bottom: 18px;
    line-height: 1.8;
}
.seo-article-wrapper ul, .seo-article-wrapper ol {
    padding-left: 24px;
    margin-bottom: 22px;
}
.seo-article-wrapper li {
    font-size: 15px;
    color: #475569;
    margin-bottom: 10px;
    line-height: 1.7;
}
.seo-article-wrapper strong {
    color: #0f172a;
    font-weight: 600;
}
.seo-article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 25px 0;
}
.seo-article-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 22px;
}
.seo-article-card h4 {
    margin-top: 0;
    color: var(--primary);
}
.seo-article-card p {
    font-size: 14px;
    margin-bottom: 0;
}
.seo-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 14px;
}
.seo-table th, .seo-table td {
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    text-align: left;
}
.seo-table th {
    background: #f1f5f9;
    color: #0f172a;
    font-weight: 700;
}
.seo-table tr:nth-child(even) {
    background: #f8fafc;
}
@media (max-width: 768px) {
    .seo-article-wrapper {
        padding: 30px 20px;
    }
    .seo-article-wrapper h2 {
        font-size: 22px;
    }
    .seo-article-wrapper h3 {
        font-size: 18px;
    }
    .seo-article-grid {
        grid-template-columns: 1fr;
    }
    .seo-table {
        display: block;
        overflow-x: auto;
    }
}

/* ===== FAQ ACCORDION STYLES ===== */
.faq-section-wrapper {
    margin-bottom: 60px;
    width: 100%;
}
.faq-section-title {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    text-align: center;
    margin-bottom: 30px;
}
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}
.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}
.faq-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.08);
}
.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    background: #ffffff;
    user-select: none;
    transition: background-color 0.2s ease;
    gap: 15px;
}
.faq-item.active .faq-header {
    background: #fffafa;
}
.faq-header h3,
.faq-header h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.5;
    flex: 1;
}
.faq-item.active .faq-header h3,
.faq-item.active .faq-header h4 {
    color: var(--primary);
}
.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.faq-item.active .faq-icon {
    background: var(--primary);
    color: #ffffff;
    transform: rotate(180deg);
}
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
    background: #ffffff;
    padding: 0 24px;
}
.faq-item.active .faq-body {
    max-height: 500px;
    padding: 12px 24px 24px 24px;
    border-top: 1px solid #f1f5f9;
}
.faq-body p {
    font-size: 14.5px;
    line-height: 1.8;
    color: #475569;
    margin: 0;
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-light, #e0f2fe);
}
.seo-article-wrapper h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-top: 32px;
    margin-bottom: 14px;
}
.seo-article-wrapper h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 20px;
    margin-bottom: 8px;
}
.seo-article-wrapper p {
    font-size: 15px;
    color: #475569;
    margin-bottom: 18px;
    line-height: 1.8;
}
.seo-article-wrapper ul, .seo-article-wrapper ol {
    padding-left: 24px;
    margin-bottom: 22px;
}
.seo-article-wrapper li {
    font-size: 15px;
    color: #475569;
    margin-bottom: 10px;
    line-height: 1.7;
}
.seo-article-wrapper strong {
    color: #0f172a;
    font-weight: 600;
}
.seo-article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 25px 0;
}
.seo-article-card {
    background: #f8fafc;
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    padding: 22px;
}
.seo-article-card h4 {
    margin-top: 0;
    color: var(--primary);
}
.seo-article-card p {
    font-size: 14px;
    margin-bottom: 0;
}
.seo-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 14px;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    overflow: hidden;
}
.seo-table th, .seo-table td {
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    text-align: left;
}
.seo-table th {
    background: #f1f5f9;
    color: #0f172a;
    font-weight: 700;
}
.seo-table tr:nth-child(even) {
    background: #f8fafc;
}
@media (max-width: 768px) {
    .seo-article-wrapper {
        padding: 30px 20px;
    }
    .seo-article-wrapper h2 {
        font-size: 22px;
    }
    .seo-article-wrapper h3 {
        font-size: 18px;
    }
    .seo-article-grid {
        grid-template-columns: 1fr;
    }
    .seo-table {
        display: block;
        overflow-x: auto;
    }
}

/* ===== FAQ ACCORDION STYLES ===== */
.faq-home-section {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.faq-section-wrapper {
    margin-bottom: 30px;
    width: 100%;
}
.faq-section-title {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    text-align: center;
    margin-bottom: 30px;
}
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}
.faq-item {
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}
.faq-item:hover {
    border-color: #94a3b8;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}
.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.09);
}
.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    background: #ffffff;
    user-select: none;
    transition: background-color 0.2s ease;
    gap: 15px;
}
.faq-item.active .faq-header {
    background: #fffafa;
}
.faq-header h3,
.faq-header h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.5;
    flex: 1;
}
.faq-item.active .faq-header h3,
.faq-item.active .faq-header h4 {
    color: var(--primary);
}
.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.faq-item.active .faq-icon {
    background: var(--primary);
    color: #ffffff;
    transform: rotate(180deg);
}
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
    background: #ffffff;
    padding: 0 24px;
}
.faq-item.active .faq-body {
    max-height: 500px;
    padding: 12px 24px 24px 24px;
    border-top: 1px solid #f1f5f9;
}
.faq-body p {
    font-size: 14.5px;
    line-height: 1.8;
    color: #475569;
    margin: 0;
}
.faq-body p strong {
    color: #0f172a;
}

/* ===== COVERAGE & REGIONS SECTION (REDESIGNED) ===== */
.coverage-section {
    padding: 85px 0;
    background: #ffffff;
}

/* Coverage Header Showcase Banner with ambulance-main */
.coverage-header-banner {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 40px;
    align-items: center;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 20px;
    padding: 40px 45px;
    margin-bottom: 45px;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}
.coverage-header-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
}
.coverage-header-content .section-badge {
    background: rgba(220, 38, 38, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(220, 38, 38, 0.4);
    margin-bottom: 12px;
}
.coverage-header-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.25;
}
.coverage-header-content h2 .highlight {
    color: #f87171;
}
.coverage-header-content p {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 22px;
}
.coverage-quick-stats {
    display: flex;
    gap: 25px;
}
.coverage-quick-stats .stat-item {
    display: flex;
    flex-direction: column;
}
.coverage-quick-stats .stat-num {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
}
.coverage-quick-stats .stat-label {
    font-size: 12.5px;
    color: #94a3b8;
    font-weight: 600;
}
.coverage-header-image {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.coverage-header-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.coverage-header-image:hover img {
    transform: scale(1.04);
}
.coverage-img-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 12.5px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.coverage-img-badge i {
    color: var(--primary);
}

.coverage-tabs {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.coverage-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #f1f5f9;
    color: #334155;
    border: 1.5px solid #cbd5e1;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}
.coverage-tab-btn i {
    font-size: 16px;
    color: #64748b;
    transition: color 0.3s;
}
.coverage-tab-btn:hover {
    background: #e2e8f0;
    border-color: #94a3b8;
    color: #0f172a;
}
.coverage-tab-btn.active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.25);
}
.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: 1.35fr 1fr;
    gap: 24px;
}
.side-card {
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 6px 22px rgba(15, 23, 42, 0.06);
}
.side-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid #f1f5f9;
}
.side-title {
    display: flex;
    align-items: center;
    gap: 10px;
}
.side-title h3 {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}
.side-count {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}
.side-districts-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
}
.side-districts-list span {
    background: #f8fafc;
    border: 1.5px solid #cbd5e1;
    border-radius: 9px;
    padding: 10px 14px;
    font-size: 13.5px;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    user-select: none;
}
.side-districts-list span i {
    font-size: 11px;
    color: #94a3b8;
    transition: color 0.2s ease;
}
.side-districts-list span:hover {
    background: #ffffff;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
}
.side-districts-list span:hover i {
    color: var(--primary);
}

/* Tab 2: Routes Intro & Grid */
.routes-intro-card {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 18px;
    padding: 34px 38px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
}
.badge-route {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(220, 38, 38, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(220, 38, 38, 0.4);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}
.routes-intro-text h3 {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 8px 0;
}
.routes-intro-text p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
    max-width: 650px;
}
.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
    gap: 18px;
    margin-bottom: 30px;
}
.route-card {
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 14px;
    padding: 22px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
    position: relative;
    overflow: hidden;
}
.route-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.route-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(220, 38, 38, 0.1);
    border-color: var(--primary);
}
.route-card:hover::before {
    opacity: 1;
}
.route-card h3 {
    font-size: 16.5px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.route-card:hover h3 {
    color: var(--primary);
}
.route-card p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin: 0 0 15px 0;
}
.route-arrow {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--primary);
    gap: 5px;
    transition: transform 0.2s ease;
}
.route-card:hover .route-arrow {
    transform: translateX(4px);
}

/* 81 İl Çağrı Bandı */
.routes-cta-banner {
    background: #f8fafc;
    border: 1.5px solid #cbd5e1;
    border-radius: 16px;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}
.cta-banner-content {
    display: flex;
    align-items: center;
    gap: 16px;
}
.cta-icon {
    font-size: 24px;
    color: var(--primary);
    background: #fee2e2;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cta-banner-content h4 {
    font-size: 16.5px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 4px 0;
}
.cta-banner-content p {
    font-size: 13.5px;
    color: #64748b;
    margin: 0;
}

@media (max-width: 992px) {
    .istanbul-features-grid {
        grid-template-columns: 1fr;
    }
    .istanbul-sides-grid {
        grid-template-columns: 1fr;
    }
    .routes-intro-card {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (max-width: 600px) {
    .coverage-tab-btn {
        width: 100%;
        justify-content: center;
    }
    .side-card {
        padding: 20px;
    }
    .routes-cta-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    .routes-cta-banner .btn {
        width: 100%;
        justify-content: center;
    }
}
