/* ====================================================================
   PREMIUM AUTOMOTIVE STYLING SHEET FOR EREN OTO CAM
   PURE CSS3 - AWARD-WINNING WEB DESIGN SYSTEM
   ==================================================================== */

:root {
    --bg-deep-black: #0B0B0B;
    --bg-graphite: #1F2937;
    --accent-cyan: #06B6D4;
    --accent-cyan-hover: #0891B2;
    --text-white: #FFFFFF;
    --text-muted: #9CA3AF;
    --bg-silver: #F8FAFC;
    --glass-bg: rgba(31, 41, 55, 0.65);
    --glass-border: rgba(255, 255, 255, 0.08);
    --radius-lg: 16px;
    --radius-xl: 24px;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Global */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    background-color: var(--bg-deep-black);
    color: var(--text-white);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    display: block;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}
.small-container {
    max-width: 800px;
    margin: 0 auto;
}
.section-padding {
    padding: 100px 0;
}
.text-center { text-align: center; }
.text-cyan { color: var(--accent-cyan); }
.mt-10 { margin-top: 10px; }
.mt-15 { margin-top: 15px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }
.mt-60 { margin-top: 60px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.pt-40 { padding-top: 40px; }
.p-20 { padding: 20px; }
.p-40 { padding: 40px; }
.align-center { align-items: center; }
.relative-z { position: relative; z-index: 5; }
.border-top-gray { border-top: 1px solid rgba(255,255,255,0.1); }
.italic { font-style: italic; }

/* Grid Scaffolding */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-sidebar { display: grid; grid-template-columns: 1fr 320px; gap: 50px; }

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: -0.02em;
}
.font-13 { font-size: 13px; }
.font-16 { font-size: 16px; }
.font-18 { font-size: 18px; }
.font-22 { font-size: 22px; }
.font-24 { font-size: 24px; }
.font-28 { font-size: 28px; }

.section-tag {
    color: var(--accent-cyan);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: inline-block;
    margin-bottom: 12px;
    font-weight: 600;
}
.section-title {
    font-size: 38px;
    color: var(--text-white);
    line-height: 1.2;
}
.section-desc {
    color: var(--text-muted);
    font-size: 17px;
    margin-top: 15px;
}
.split-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

/* Premium Button Framework */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}
.btn-primary {
    background-color: var(--accent-cyan);
    color: var(--bg-deep-black);
}
.btn-primary:hover {
    background-color: var(--accent-cyan-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(6, 182, 212, 0.3);
}
.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--text-white);
}
.btn-full { width: 100%; }
.btn-large { padding: 18px 36px; font-size: 16px; }
.btn-whatsapp-large {
    background-color: #25D366;
    color: white;
    padding: 18px 36px;
    font-size: 16px;
}
.btn-whatsapp-large:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* Background Gradients */
.bg-dark-gradient {
    background: linear-gradient(180deg, var(--bg-deep-black) 0%, var(--bg-graphite) 100%);
}
.bg-graphite {
    background-color: var(--bg-graphite);
}
.bg-deep-black {
    background-color: var(--bg-deep-black);
}

/* Header Component */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}
.main-header.scrolled {
    background-color: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 0;
}
.header-container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}
.main-header.scrolled .header-container {
    padding: 10px 24px;
}

/* Brand Logo Layout */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon {
    width: 50px;
    height: 25px;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.brand-name {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--text-white);
}
.brand-sub {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--accent-cyan);
}

/* Navigation Links */
.nav-menu {
    display: flex;
    gap: 32px;
}
.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 6px 0;
}
.nav-link:hover, .nav-link.active {
    color: var(--text-white);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-cyan);
    transition: var(--transition-smooth);
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Header CTA Buttons */
.header-ctas {
    display: flex;
    gap: 12px;
}
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
}
.cta-phone {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.cta-phone:hover {
    background-color: rgba(255, 255, 255, 0.15);
}
.cta-whatsapp {
    background-color: rgba(6, 182, 212, 0.15);
    color: var(--accent-cyan);
    border: 1px solid rgba(6, 182, 212, 0.3);
}
.cta-whatsapp:hover {
    background-color: var(--accent-cyan);
    color: var(--bg-deep-black);
}

/* Responsive Burger Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-toggle .bar {
    width: 24px;
    height: 2px;
    background-color: var(--text-white);
    transition: var(--transition-smooth);
}

/* Mobile Drawer Component */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--bg-deep-black);
    border-left: 1px solid var(--glass-border);
    z-index: 99;
    padding: 100px 30px 40px;
    transition: var(--transition-smooth);
}
.mobile-drawer.open {
    right: 0;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.mobile-link {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-muted);
}
.mobile-link:hover { color: var(--text-white); }
.drawer-ctas {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Cinematic Hero Presentation Layout */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-color: #111827;
    /* Simulated architectural vector styling for high end presentation */
    background-image: radial-gradient(circle at 80% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
}
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 11, 11, 0.4) 0%, #0B0B0B 100%);
    z-index: 1;
}
.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}
.hero-badge {
    background-color: rgba(6, 182, 212, 0.12);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: var(--accent-cyan);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.hero-headline {
    font-size: 56px;
    line-height: 1.15;
    color: var(--text-white);
    margin-bottom: 24px;
}
.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 640px;
    margin-bottom: 40px;
}
.hero-actions {
    display: flex;
    gap: 16px;
}

/* Structural Image Placeholders for Luxury Look sans broken URLs */
.service-img-wrapper {
    height: 220px;
    background-color: #1F2937;
    position: relative;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
}
.placeholder-oncam { background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); }
.placeholder-catlak { background: linear-gradient(135deg, #111827 0%, #374151 100%); }
.placeholder-yancam { background: linear-gradient(135deg, #1f2937 0%, #111827 100%); }
.placeholder-mobil { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); }
.placeholder-arkacam { background: linear-gradient(135deg, #374151 0%, #0f172a 100%); }
.placeholder-sigorta { background: linear-gradient(135deg, #1c1917 0%, #44403c 100%); }
.placeholder-oncam-large { height: 400px; border-radius: var(--radius-xl); background: linear-gradient(135deg, #0f172a 0%, #374151 100%); }
.placeholder-about-visual { height: 450px; border-radius: var(--radius-xl); background: linear-gradient(135deg, #1e293b 0%, #111827 100%); }

/* Glassmorphism Elements (Structured Rule Formulation) */
.trust-section {
    position: relative;
    margin-top: -60px;
    z-index: 10;
}
.trust-card-glass {
    background-color: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}
.trust-card-glass:hover {
    transform: translateY(-4px);
    border-color: rgba(6, 182, 212, 0.3);
}
.trust-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: rgba(6, 182, 212, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.trust-card-glass h3 {
    font-size: 18px;
    color: var(--text-white);
    margin-bottom: 8px;
}
.trust-card-glass p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Premium Component Cards Layout */
.service-card-premium {
    background-color: var(--bg-graphite);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
}
.service-card-premium:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.1);
}
.glass-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(11, 11, 11, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 12px;
    color: var(--accent-cyan);
}
.service-info {
    padding: 24px;
}
.service-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-white);
}
.service-info p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    height: 66px;
    overflow: hidden;
}
.service-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-cyan);
    display: inline-block;
}
.service-link:hover {
    color: var(--text-white);
}

/* Why Choose Us Grid Structures */
.why-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.why-item {
    display: flex;
    gap: 16px;
}
.why-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(6, 182, 212, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-item h4 {
    font-size: 18px;
    color: var(--text-white);
    margin-bottom: 4px;
}
.why-item p {
    color: var(--text-muted);
    font-size: 14px;
}
.why-visual-wrapper {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    height: 400px;
    border-radius: var(--radius-xl);
    position: relative;
    padding: 40px;
    display: flex;
    align-items: flex-end;
}
.glass-card-showcase {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 30px;
    border-radius: var(--radius-lg);
    width: 100%;
}
.premium-badge-absolute {
    position: absolute;
    top: 30px;
    right: 30px;
    background-color: var(--accent-cyan);
    color: var(--bg-deep-black);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
}
.showcase-content h3 {
    font-size: 22px;
    color: var(--text-white);
    margin-bottom: 10px;
}
.showcase-content p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Gallery Layout Structures */
.gallery-item-premium {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}
.gallery-img {
    width: 100%;
    height: 100%;
    transition: var(--transition-smooth);
}
.placeholder-gal1 { background: linear-gradient(45deg, #334155, #0f172a); }
.placeholder-gal2 { background: linear-gradient(45deg, #1e293b, #475569); }
.placeholder-gal3 { background: linear-gradient(45deg, #0f172a, #1e293b); }

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(11,11,11,0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition-smooth);
}
.gallery-item-premium:hover .gallery-overlay { opacity: 1; }
.gallery-item-premium:hover .gallery-img { transform: scale(1.05); }
.gallery-overlay span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
}

/* Testimonial Elements Mapping */
.testimonial-card-glass {
    background-color: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 36px;
    border-radius: var(--radius-lg);
}
.stars {
    color: var(--accent-cyan);
    margin-bottom: 16px;
    font-size: 14px;
}
.testimonial-text {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}
.client-info {
    display: flex;
    align-items: center;
    gap: 14px;
}
.client-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--accent-cyan);
    color: var(--bg-deep-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}
.client-info h4 {
    font-size: 15px;
    color: var(--text-white);
}
.client-info span {
    font-size: 12px;
    color: var(--text-muted);
}

/* Blog Component Configurations */
.blog-card-premium {
    background-color: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.blog-img {
    height: 200px;
}
.placeholder-blog1 { background: linear-gradient(135deg, #111827, #1f2937); }
.placeholder-blog2 { background: linear-gradient(135deg, #1f2937, #111827); }
.placeholder-blog3 { background: linear-gradient(135deg, #0f172a, #1e293b); }

.blog-content {
    padding: 24px;
}
.blog-meta {
    font-size: 12px;
    color: var(--accent-cyan);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.blog-content h3 {
    font-size: 19px;
    margin-bottom: 12px;
}
.blog-content p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 16px;
    height: 66px;
    overflow: hidden;
}
.blog-readmore {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
}
.blog-readmore:hover { color: var(--accent-cyan); }

/* Emergency Response Segment */
.emergency-cta-section {
    position: relative;
    padding: 120px 0;
    background-color: #0f172a;
    background-image: radial-gradient(circle at 50% 50%, rgba(6,182,212,0.2) 0%, transparent 60%);
}
.emergency-overlay {
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: rgba(11,11,11,0.6);
}
.emergency-badge {
    background-color: #EF4444;
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.emergency-cta-section h2 {
    font-size: 42px;
    margin-bottom: 16px;
}
.emergency-cta-section p {
    max-width: 700px;
    margin: 0 auto 36px;
    color: var(--text-muted);
    font-size: 17px;
}
.emergency-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Premium Form Structures */
.form-wrapper-glass {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 40px;
    border-radius: var(--radius-xl);
}
.premium-form .form-group {
    margin-bottom: 20px;
}
.premium-form label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 8px;
}
.premium-form input, .premium-form select, .premium-form textarea {
    width: 100%;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: white;
    font-family: var(--font-sans);
    font-size: 14px;
    transition: var(--transition-smooth);
}
.premium-form input:focus, .premium-form select:focus, .premium-form textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    background-color: rgba(255,255,255,0.08);
}
.contact-quick-info .quick-info-item {
    margin-bottom: 16px;
    color: var(--text-muted);
}
.contact-quick-info .quick-info-item strong {
    color: white;
    display: block;
}

/* Inner Page Structural Variations */
.inner-hero {
    position: relative;
    padding: 160px 0 100px;
    background-color: #111827;
    background-image: linear-gradient(180deg, rgba(11,11,11,0.5) 0%, #0B0B0B 100%);
}
.inner-hero-tag {
    color: var(--accent-cyan);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
}
.inner-hero-title {
    font-size: 42px;
    margin-top: 10px;
}

/* Detail View Scaffolding rules */
.sidebar-box-glass {
    background-color: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 24px;
    border-radius: var(--radius-lg);
}
.sidebar-box-glass h4 { font-size: 18px; margin-bottom: 15px; }
.sidebar-link {
    display: block;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 8px;
    background-color: rgba(255,255,255,0.02);
}
.sidebar-link:hover, .sidebar-link.active {
    background-color: var(--accent-cyan);
    color: var(--bg-deep-black);
    font-weight: 600;
}
.sidebar-box-cyan {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    padding: 30px;
    border-radius: var(--radius-lg);
    color: var(--bg-deep-black);
}
.sidebar-box-cyan h3 { font-size: 22px; margin-bottom: 12px; }
.sidebar-box-cyan p { font-size: 14px; opacity: 0.9; }

.detail-benefits-list {
    margin-left: 20px;
}
.detail-benefits-list li {
    margin-bottom: 12px;
    color: var(--text-muted);
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.step-card {
    background-color: rgba(255,255,255,0.01);
    border: 1px solid rgba(255,255,255,0.03);
    padding: 24px;
    border-radius: var(--radius-lg);
}
.step-num {
    font-size: 32px;
    font-weight: 800;
    color: rgba(6, 182, 212, 0.3);
    line-height: 1;
    margin-bottom: 10px;
}
.step-card h4 { font-size: 16px; margin-bottom: 6px; }
.step-card p { font-size: 13px; color: var(--text-muted); }

/* Gallery Filter Layout rules */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
}
.filter-btn {
    background-color: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 10px 24px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-smooth);
}
.filter-btn.active, .filter-btn:hover {
    background-color: var(--accent-cyan);
    color: var(--bg-deep-black);
    border-color: var(--accent-cyan);
}
.pagination-wrapper {
    display: flex;
    justify-content: center;
    gap: 8px;
}
.page-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
}
.page-num.active, .page-num:hover {
    background-color: var(--accent-cyan);
    color: var(--bg-deep-black);
    border-color: var(--accent-cyan);
}

/* Lightbox Modal Structure */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 500;
    padding-top: 100px;
    left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(11,11,11,0.95);
}
.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 800px;
    border-radius: 12px;
}
.lightbox-close {
    position: absolute;
    top: 40px; right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 800px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Blog Sidebar structural configurations */
.sidebar-categories li {
    margin-bottom: 12px;
    font-size: 14px;
}
.sidebar-categories a {
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
}
.sidebar-categories a:hover { color: var(--accent-cyan); }
.pop-posts .pop-post-item {
    display: block;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pop-posts .pop-post-item strong { display: block; font-size: 14px; color: white; }
.pop-posts .pop-post-item span { font-size: 12px; color: var(--text-muted); }

/* Post Detail layout rules */
.post-featured-large {
    height: 450px;
    border-radius: var(--radius-xl);
}
.post-meta-strip {
    font-size: 13px;
    color: var(--accent-cyan);
}
.post-rich-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}
.quote-block-glass {
    background-color: rgba(6,182,212,0.03);
    border-left: 4px solid var(--accent-cyan);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

/* Contact Page Structure Rules */
.map-container-premium {
    width: 100%;
    height: 400px;
    background-color: #111827;
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}
.map-placeholder-graphics {
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 0);
    background-size: 24px 24px;
}

/* Global Corporate Footer */
.main-footer {
    background-color: #050505;
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 0;
}
.footer-top-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px 60px;
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 50px;
}
.brand-description {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 20px;
    max-width: 320px;
}
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}
.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.08);
}
.social-links a:hover {
    background-color: var(--accent-cyan);
    color: var(--bg-deep-black);
    border-color: var(--accent-cyan);
}
.footer-title {
    font-size: 16px;
    color: var(--text-white);
    margin-bottom: 24px;
    position: relative;
}
.footer-list li {
    margin-bottom: 12px;
    font-size: 14px;
}
.footer-list a {
    color: var(--text-muted);
}
.footer-list a:hover { color: var(--accent-cyan); }
.footer-contact-info li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--text-muted);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 24px 0;
}
.footer-bottom-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
}
.footer-legal a {
    margin-left: 20px;
}
.footer-legal a:hover { color: var(--accent-cyan); }

/* ====================================================================
   COMPREHENSIVE RESPONSIVE DESIGN PATTERNS (MEDIA QUERIES)
   ==================================================================== */
@media (max-width: 1024px) {
    .grid-sidebar { grid-template-columns: 1fr; gap: 40px; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .footer-top-container { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .hero-headline { font-size: 44px; }
}

@media (max-width: 768px) {
    .nav-menu, .header-ctas { display: none; }
    .mobile-toggle { display: flex; }
    .section-title { font-size: 30px; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .hero-headline { font-size: 36px; }
    .hero-section { height: auto; padding: 140px 0 80px; }
    .split-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .emergency-actions { flex-direction: column; gap: 12px; }
    .footer-top-container { grid-template-columns: 1fr; }
    .footer-bottom-container { flex-direction: column; gap: 12px; text-align: center; }
    .footer-legal a { margin: 0 10px; }
}

/* ====================================================================
   CMS DYNAMIC PAGES - ADDITIONAL STYLES
   ==================================================================== */

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}
.lightbox-modal img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 12px;
    object-fit: contain;
}
.lightbox-close {
    position: absolute;
    top: 20px; right: 30px;
    color: #fff;
    font-size: 36px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    background: transparent;
    border: none;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-caption {
    color: #ccc;
    font-size: 14px;
    margin-top: 12px;
    text-align: center;
}

/* Blog Page Layout */
.blog-page-section .blog-grid-main { min-width: 0; }
.blog-sidebar { position: sticky; top: 100px; }
.sidebar-widget {
    background: var(--bg-graphite);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 24px;
}
.sidebar-widget-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sidebar-cat-list li { margin-bottom: 8px; }
.sidebar-cat-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 14px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: color 0.2s;
}
.sidebar-cat-list a:hover, .sidebar-cat-list a.active { color: var(--accent-cyan); }
.sidebar-cat-list a span { font-size: 12px; opacity: 0.7; }
.sidebar-service-list li { margin-bottom: 8px; }
.sidebar-service-list a {
    color: var(--text-muted);
    font-size: 14px;
    padding: 6px 0;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: color 0.2s;
}
.sidebar-service-list a:hover { color: var(--accent-cyan); padding-left: 6px; }
.sidebar-cta-box {
    background: linear-gradient(135deg, rgba(6,182,212,0.12), rgba(6,182,212,0.04));
    border: 1px solid rgba(6,182,212,0.2);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
}
.sidebar-cta-box h4 { font-size: 16px; color: var(--text-white); margin-bottom: 8px; }
.sidebar-cta-box p { font-size: 13px; color: var(--text-muted); }

/* Post Detail */
.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-cyan);
    font-size: 14px;
    margin-bottom: 24px;
    transition: gap 0.2s;
}
.back-to-blog:hover { gap: 10px; }
.post-meta-bar {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 32px;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.post-rich-text {
    color: var(--text-muted);
    line-height: 1.9;
    font-size: 16px;
}
.post-rich-text h2, .post-rich-text h3 { color: var(--text-white); margin: 32px 0 16px; }
.post-rich-text p { margin-bottom: 20px; }
.post-rich-text ul, .post-rich-text ol { padding-left: 24px; margin-bottom: 20px; }
.post-rich-text li { margin-bottom: 8px; }
.post-rich-text strong { color: var(--text-white); }
.post-rich-text a { color: var(--accent-cyan); }

/* Contact Page */
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: border-color 0.3s;
}
.contact-info-card:hover { border-color: rgba(6,182,212,0.3); }
.contact-icon {
    width: 44px; height: 44px;
    background: rgba(6,182,212,0.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-info-card h4 { font-size: 14px; color: var(--text-white); margin-bottom: 4px; }
.contact-info-card a { color: var(--accent-cyan); font-size: 15px; font-weight: 600; display: block; }
.contact-info-card p { color: var(--text-muted); font-size: 12px; margin-top: 2px; }

/* Service Detail Sidebar */
.grid-sidebar { display: grid; grid-template-columns: 1fr 320px; gap: 50px; }
.service-detail-body .grid-sidebar { align-items: start; }

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 32px 0;
}
.process-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.step-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-cyan);
    opacity: 0.6;
    line-height: 1;
    flex-shrink: 0;
    min-width: 40px;
}
.step-content h4 { font-size: 15px; color: var(--text-white); margin-bottom: 6px; }
.step-content p { font-size: 13px; color: var(--text-muted); }

/* Gallery Page Filters */
.gallery-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.filter-btn {
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    border: 1px solid var(--glass-border);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--accent-cyan);
    color: var(--bg-deep-black);
    border-color: var(--accent-cyan);
}

/* Pagination */
.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 48px;
    flex-wrap: wrap;
}
.page-btn {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-muted);
    border: 1px solid var(--glass-border);
    background: rgba(255,255,255,0.03);
    transition: all 0.2s;
}
.page-btn:hover, .page-btn.active {
    background: var(--accent-cyan);
    color: var(--bg-deep-black);
    border-color: var(--accent-cyan);
}

/* Quick Contact Info */
.contact-quick-info { display: flex; flex-direction: column; gap: 10px; }
.quick-info-item { font-size: 14px; color: var(--text-muted); }
.quick-info-item strong { color: var(--text-white); }

/* Related Posts Section */
.related-posts-section .section-title { font-size: 28px; }

/* Responsive additions */
@media (max-width: 768px) {
    .blog-page-section .grid-sidebar { grid-template-columns: 1fr; }
    .blog-sidebar { position: static; }
    .process-steps { grid-template-columns: 1fr; }
    .contact-info-cards { gap: 12px; }
    .gallery-filters { gap: 8px; }
    .filter-btn { padding: 6px 14px; font-size: 12px; }
    .service-detail-body .grid-sidebar { grid-template-columns: 1fr; }
}

/* Contact form dropdown fix: dark semi-transparent menu */
.premium-form select {
    color: #ffffff;
    background-color: rgba(31, 41, 55, 0.72);
    border-color: rgba(255,255,255,0.18);
    color-scheme: dark;
}

.premium-form select:focus,
.premium-form select:hover {
    background-color: rgba(31, 41, 55, 0.86);
}

.premium-form select option,
.premium-form select optgroup {
    background-color: rgba(31, 41, 55, 0.94);
    color: #ffffff;
}

.premium-form select option:checked,
.premium-form select option:hover {
    background-color: rgba(6, 182, 212, 0.35);
    color: #ffffff;
}


/* Uploaded image logo: only image appears, no text brand duplication */
.logo.image-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    min-width: 150px;
}
.site-logo-img {
    width: 150px;
    max-width: 150px;
    height: auto;
    max-height: 64px;
    object-fit: contain;
    display: block;
}
.footer-logo-img {
    max-height: 72px;
}
@media (max-width: 768px) {
    .logo.image-logo { min-width: 130px; }
    .site-logo-img { width: 130px; max-width: 130px; max-height: 58px; }
}




/* === Eren Oto Cam logo final size fix ===
   The original uploaded logo had a huge empty canvas. The project now uses a cropped transparent logo.
   Change --site-logo-width only if you want bigger/smaller logo. */
:root {
  --site-logo-width: 150px;
  --site-logo-mobile-width: 132px;
  --site-logo-max-height: 58px;
}

.brand,
.logo,
.site-logo,
.footer-logo {
  display: inline-flex !important;
  align-items: center !important;
  line-height: 0 !important;
}

.brand__logo,
.brand img,
.logo img,
.site-logo img,
.footer-logo img,
.mobile-panel__head img {
  width: var(--site-logo-width) !important;
  max-width: var(--site-logo-width) !important;
  height: auto !important;
  max-height: var(--site-logo-max-height) !important;
  object-fit: contain !important;
  display: block !important;
}

.mainnav,
.mainnav__inner {
  min-height: 82px !important;
  height: auto !important;
  display: flex !important;
  align-items: center !important;
}

@media (max-width: 768px) {
  .brand__logo,
  .brand img,
  .logo img,
  .site-logo img,
  .footer-logo img,
  .mobile-panel__head img {
    width: var(--site-logo-mobile-width) !important;
    max-width: var(--site-logo-mobile-width) !important;
    max-height: 52px !important;
  }

  .mainnav,
  .mainnav__inner {
    min-height: 74px !important;
  }
}


/* === Admin controlled full-width hero cover === */
.hero-section {
    position: relative !important;
    width: 100% !important;
    min-height: clamp(520px, 72vh, 760px) !important;
    height: auto !important;
    max-height: 820px !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
    background-color: #0b111b !important;
    background-image:
        radial-gradient(circle at 82% 45%, rgba(6, 182, 212, 0.17) 0%, transparent 46%) !important;
    background-size: cover !important;
    background-position: center right !important;
    background-repeat: no-repeat !important;
}

.hero-section.has-cover {
    background-image:
        linear-gradient(90deg, rgba(8, 13, 22, 0.94) 0%, rgba(8, 13, 22, 0.82) 38%, rgba(8, 13, 22, 0.36) 72%, rgba(8, 13, 22, 0.18) 100%),
        var(--hero-cover-image) !important;
    background-size: cover !important;
    background-position: center right !important;
    background-repeat: no-repeat !important;
}

.hero-bg-overlay {
    position: absolute !important;
    inset: 0 !important;
    width: auto !important;
    height: auto !important;
    background:
        radial-gradient(circle at 18% 42%, rgba(6, 182, 212, 0.20), transparent 34%),
        linear-gradient(180deg, rgba(3, 7, 18, 0.08) 0%, rgba(3, 7, 18, 0.58) 100%) !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

.hero-container {
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
    max-width: 1240px !important;
    margin: 0 auto !important;
    padding: 110px 24px 90px !important;
}

.hero-headline {
    max-width: 900px !important;
}

.hero-subtitle {
    max-width: 660px !important;
}

@media (max-width: 992px) {
    .hero-section,
    .hero-section.has-cover {
        min-height: 640px !important;
        background-position: center center !important;
        background-image:
            linear-gradient(180deg, rgba(8, 13, 22, 0.38) 0%, rgba(8, 13, 22, 0.76) 45%, rgba(8, 13, 22, 0.97) 100%),
            var(--hero-cover-image) !important;
    }

    .hero-container {
        padding: 110px 22px 70px !important;
    }
}

@media (max-width: 768px) {
    .hero-section,
    .hero-section.has-cover {
        min-height: 600px !important;
        max-height: none !important;
        align-items: flex-end !important;
    }

    .hero-container {
        padding: 120px 18px 58px !important;
    }

    .hero-headline {
        font-size: clamp(38px, 11vw, 52px) !important;
        line-height: 1.05 !important;
    }

    .hero-subtitle {
        font-size: 16px !important;
        line-height: 1.7 !important;
    }

    .hero-actions {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .hero-actions .btn {
        width: 100% !important;
        justify-content: center !important;
    }
}

/* Admin hero cover upload card */
.hero-cover-upload-row {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.hero-cover-preview-box {
    width: 260px;
    min-height: 120px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-cover-preview-box.is-empty::after {
    content: "Henüz kapak fotoğrafı yok";
    opacity: .7;
    font-size: 13px;
}
.admin-hero-cover-preview {
    width: 100%;
    height: 112px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}
.hero-cover-upload-controls {
    flex: 1;
    min-width: 240px;
}
.hero-cover-upload-btn {
    margin-top: 12px;
}
@media (max-width: 768px) {
    .hero-cover-preview-box {
        width: 100%;
    }
}


/* Managed about page visual */
.about-managed-visual {
    min-height: 450px;
    border-radius: var(--radius-xl);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 24px 60px rgba(0,0,0,.18);
}
@media (max-width: 768px) {
    .about-managed-visual {
        min-height: 300px;
    }
}


/* Blog post CTA managed from admin - premium turquoise banner */
.blog-post-cta{
    position: relative;
    isolation: isolate;
    margin-top: 48px;
    padding: 34px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 16%, rgba(103, 232, 249, 0.42), transparent 34%),
        radial-gradient(circle at 88% 82%, rgba(6, 182, 212, 0.34), transparent 36%),
        linear-gradient(135deg, rgba(8, 145, 178, 0.96) 0%, rgba(6, 95, 125, 0.96) 42%, rgba(7, 17, 28, 0.98) 100%);
    border: 1px solid rgba(103, 232, 249, 0.34);
    box-shadow:
        0 28px 80px rgba(6, 182, 212, 0.24),
        inset 0 1px 0 rgba(255,255,255,0.22);
}

.blog-post-cta::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.15), transparent 32%, rgba(255,255,255,0.08)),
        repeating-linear-gradient(135deg, rgba(255,255,255,0.055) 0 1px, transparent 1px 14px);
    opacity: .72;
    z-index: -1;
}

.blog-post-cta::after{
    content:"";
    position:absolute;
    width: 180px;
    height: 180px;
    right: -52px;
    top: -64px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    filter: blur(1px);
    z-index: -1;
}

.blog-post-cta__content{
    flex: 1;
    min-width: 280px;
}

.blog-post-cta h4{
    color: #ffffff;
    margin: 0 0 10px;
    font-size: clamp(22px, 2.2vw, 30px);
    line-height: 1.16;
    font-weight: 900;
    letter-spacing: -0.035em;
    text-shadow: 0 8px 28px rgba(0,0,0,0.22);
}

.blog-post-cta p{
    color: rgba(236, 254, 255, 0.92);
    font-size: 15.5px;
    line-height: 1.75;
    max-width: 760px;
    margin: 0;
}

.blog-post-cta .btn{
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    background: #ffffff !important;
    color: #07313d !important;
    border: 1px solid rgba(255,255,255,0.55) !important;
    box-shadow: 0 18px 42px rgba(0,0,0,0.22);
    font-weight: 900;
    white-space: nowrap;
}

.blog-post-cta .btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 22px 52px rgba(0,0,0,0.28);
}

@media(max-width:768px){
    .blog-post-cta{
        padding: 26px;
        border-radius: 20px;
        align-items: flex-start;
    }
    .blog-post-cta__content{
        min-width: 100%;
    }
    .blog-post-cta .btn{
        width: 100%;
        justify-content: center;
    }
}


.blog-post-cta__badge{
    display:inline-flex;
    align-items:center;
    margin-bottom:12px;
    padding:7px 12px;
    border-radius:999px;
    background:rgba(255,255,255,0.16);
    color:#e0fbff;
    border:1px solid rgba(255,255,255,0.22);
    font-size:12px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
}

/* Managed inner page hero covers */
.inner-hero.page-hero-with-cover{
    position:relative;
    overflow:hidden;
    background-color:#08111f;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}
.inner-hero.page-hero-with-cover::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 22% 42%, rgba(6,182,212,.22), transparent 34%),
        linear-gradient(90deg, rgba(3,7,18,.84) 0%, rgba(3,7,18,.58) 52%, rgba(3,7,18,.30) 100%);
    z-index:1;
    pointer-events:none;
}
.inner-hero.page-hero-with-cover .container{
    position:relative;
    z-index:2;
}
.inner-hero.page-hero-with-cover .inner-hero-overlay{
    display:none;
}


/* Insurance slider */
.insurance-slider-section{
    padding:70px 0;
    background:linear-gradient(180deg, #061115 0%, #071d24 48%, #061115 100%);
    overflow:hidden;
    position:relative;
    border-top:1px solid rgba(6,182,212,.20);
    border-bottom:1px solid rgba(6,182,212,.20);
}
.insurance-slider-section::before{
    content:"";
    position:absolute;
    inset:auto 8% 20px 8%;
    height:160px;
    background:radial-gradient(circle, rgba(6,182,212,.32), transparent 68%);
    filter:blur(35px);
    pointer-events:none;
}
.insurance-slider-section .container{
    position:relative;
    z-index:2;
}
.insurance-slider-section .section-title{
    margin-bottom:10px;
    color:#ffffff;
    text-shadow:0 0 18px rgba(6,182,212,.18);
}
.insurance-slider-wrap{
    margin-top:28px;
    overflow:hidden;
    border:1px solid rgba(6,182,212,.50);
    border-radius:24px;
    background:linear-gradient(135deg, rgba(6,182,212,.18), rgba(8,145,178,.10));
    box-shadow:0 0 38px rgba(6,182,212,.22), inset 0 0 28px rgba(6,182,212,.10);
    padding:22px;
}
.insurance-slide{
    display:none;
    grid-template-columns:repeat(6,1fr);
    gap:18px;
    align-items:stretch;
    animation:insuranceFade .45s ease both;
}
.insurance-slide.active{
    display:grid;
}
.insurance-logo-card{
    height:118px;
    min-height:118px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:18px;
    border-radius:18px;
    background:#ffffff;
    border:1px solid rgba(6,182,212,.24);
    box-shadow:0 14px 30px rgba(0,0,0,.16);
}
.insurance-logo-card img{
    width:100%;
    height:72px;
    max-width:160px;
    max-height:72px;
    object-fit:contain;
    object-position:center center;
    margin:auto;
    display:block;
    filter:drop-shadow(0 8px 12px rgba(15,23,42,.10));
}
.insurance-slider-dots{
    margin-top:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:9px;
}
.insurance-slider-dots button{
    width:10px;
    height:10px;
    border:0;
    border-radius:999px;
    background:rgba(255,255,255,.28);
    cursor:pointer;
    transition:.25s ease;
}
.insurance-slider-dots button.active{
    width:30px;
    background:#06b6d4;
    box-shadow:0 0 14px rgba(6,182,212,.8);
}
@keyframes insuranceFade{
    from{opacity:0;transform:translateY(10px)}
    to{opacity:1;transform:translateY(0)}
}
@media(max-width:980px){
    .insurance-slide{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:640px){
    .insurance-slide{grid-template-columns:repeat(2,1fr);gap:12px}
    .insurance-slider-wrap{padding:16px}
    .insurance-logo-card{height:96px;min-height:96px;padding:12px}
    .insurance-logo-card img{height:56px;max-height:56px}
}

.powered-atlasya{
    color:#ff4fd8!important;
    font-weight:800;
    text-decoration:none;
    text-shadow:0 0 5px rgba(255,79,216,.95),0 0 14px rgba(255,79,216,.75),0 0 28px rgba(255,79,216,.45);
}
.powered-atlasya:hover{
    color:#fff!important;
    text-shadow:0 0 8px rgba(255,255,255,.9),0 0 18px rgba(255,79,216,.9);
}

/* === FINAL FIX: Insurance slider must be 6 logos side-by-side === */
.insurance-slider-wrap{
    overflow:hidden!important;
}
.insurance-slide{
    display:none!important;
    width:100%!important;
    flex-wrap:nowrap!important;
    gap:18px!important;
    align-items:center!important;
    justify-content:center!important;
}
.insurance-slide.active{
    display:flex!important;
}
.insurance-logo-card{
    flex:0 0 calc((100% - 90px) / 6)!important;
    width:calc((100% - 90px) / 6)!important;
    height:118px!important;
    min-height:118px!important;
    background:#fff!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    padding:18px!important;
}
.insurance-logo-card img{
    width:100%!important;
    height:72px!important;
    max-width:155px!important;
    max-height:72px!important;
    object-fit:contain!important;
    object-position:center center!important;
    display:block!important;
    margin:auto!important;
}
@media(max-width:980px){
    .insurance-slide{flex-wrap:wrap!important;}
    .insurance-logo-card{flex:0 0 calc((100% - 36px)/3)!important;width:calc((100% - 36px)/3)!important;}
}
@media(max-width:640px){
    .insurance-slide{flex-wrap:wrap!important;gap:12px!important;}
    .insurance-logo-card{flex:0 0 calc((100% - 12px)/2)!important;width:calc((100% - 12px)/2)!important;height:96px!important;min-height:96px!important;}
}
