/* ==========================================================================
   ÖZGÜN A.Ş. - KURUMSAL DİZAYN SİSTEMİ & STİL DOSYASI (css.css)
   SEO, GEO & Modern Web Standartlarına Uygun Modüler Mimari
   ========================================================================== */

/* 1. TEMA DEĞİŞKENLERİ (CSS CUSTOM PROPERTIES) */
:root {
    --primary-red: #d20e15;
    --primary-red-hover: #b00b11;
    --primary-red-light: rgba(210, 14, 21, 0.08);
    --secondary-dark: #121318;
    --secondary-dark-card: #1a1c23;
    --text-main: #18181b;
    --text-muted: #71717a;
    --text-light: #a1a1aa;
    --bg-body: #f8f9fa;
    --bg-card: #ffffff;
    --border-color: #e4e4e7;
    --border-dark: #27272a;
    --whatsapp-green: #25d366;
    --whatsapp-green-hover: #1ebd56;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Urbanist', sans-serif;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. TEMEL TEMİZLİK VE RESET */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.div_980,
.container-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 3. TOP UTILITY BAR */
.top-utility-bar {
    background: #414042;
    color: var(--text-light);
    font-size: 0.85rem;
    padding: 0px 0;
    border-bottom: 1px solid var(--border-dark);
}

.top-utility-bar .utility-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.utility-contact-info {
    display: flex;
    align-items: center;
    gap: 24px;
}

.utility-contact-info a {
    color: #e4e4e7;
    display: flex;
    align-items: center;
    gap: 8px;
}

.utility-contact-info a:hover {
    color: var(--primary-red);
}

.utility-contact-info i {
    color: var(--primary-red);
}

.social-icons-top {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-icons-top a {
    color: var(--text-light);
    font-size: 1.3rem;
}

.social-icons-top a:hover {
    color: var(--primary-red);
    transform: translateY(-2px);
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);

    padding: 16px 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

/* Sticky Shrunk Header (Kaydırıldığında Yarı Oranında Küçülen Header) */
.main-header.is-scrolled {
    padding: 6px 0;
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.96);
}

.main-header .header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo-img {
    content: url("images/logo.svg");
    height: 67px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.brand-logo-img:hover {
    opacity: 0.8;
}

.main-header.is-scrolled .brand-logo-img {
    height: 32px;
}

.main-nav {
    display: flex;
    gap: 32px;
    align-items: center;
    list-style: none;
}

.main-nav>li {
    position: relative;
}

.main-nav a {
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav a:hover,
.main-nav li:hover>a {
    color: var(--primary-red);
}

.fa-chevron-down:before {
    content: "\f078";
    font-size: 8px;
    padding-bottom: 4px;
    display: inline-block;
}

/* Dropdown Menü (Açılır Menü) */
.main-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    list-style: none;
    z-index: 1050;
}

.main-nav li:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav .dropdown-menu a {
    padding: 10px 18px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #3f3f46;
    text-align: left;
}

.main-nav .dropdown-menu a:hover {
    background: var(--primary-red-light);
    color: var(--primary-red);
}

/* Buton Stilleri */
.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn-primary {
    background: var(--primary-red);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(210, 14, 21, 0.2);
}

.btn-primary:hover {
    background: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(210, 14, 21, 0.3);
}

.btn-whatsapp-header {
    background: var(--whatsapp-green);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
}

.btn-whatsapp-header:hover {
    background: var(--whatsapp-green-hover);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
    transform: translateY(-2px);
}

/* 5. HERO BANNER & SLIDER (PRESTİJ VE KURUMSAL ETKİ) */
.hero-banner,
.hero-slider-section {
    position: relative;
    background-color: var(--secondary-dark);
    color: #ffffff;
}

.hero-slide-item {
    width: 100%;
    min-height: 520px;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 110px 0 130px;
    box-sizing: border-box;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(270deg, rgba(18, 19, 24, 0.80) 0%, rgba(18, 19, 24, 0.97) 100%);
    z-index: 1;
}

.hero-banner .hero-content,
.hero-slide-item .hero-content {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 60px;
    padding-right: 60px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

/* Flickity Navigation Styling */
.hero-slider-section .flickity-page-dots {
    bottom: 30px;
}

.hero-slider-section .flickity-page-dots .dot {
    width: 12px !important;
    height: 12px !important;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    margin: 0 6px;
    transition: var(--transition);
}

.hero-slider-section .flickity-page-dots .dot.is-selected {
    background: var(--primary-red);
    width: 36px;
    border-radius: 6px;
}

.hero-slider-section .flickity-prev-next-button {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: var(--transition);
}

.hero-slider-section .flickity-prev-next-button:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

.hero-slider-section .flickity-prev-next-button .flickity-button-icon {
    fill: #ffffff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-red-light);
    border: 1px solid rgba(210, 14, 21, 0.4);
    color: #ff6b6b;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-title span {
    color: #ff4d4d;
}

.hero-description {
    font-size: 1.15rem;
    color: #d4d4d8;
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 26px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* 6. İSTATİSTİK VE CANLI SAYAÇ BANDI */
.stats-banner {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 60px 0;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-item:hover {
    border-color: var(--primary-red);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.stat-icon {
    font-size: 1.8rem;
    color: var(--primary-red);
    margin-bottom: 12px;
    display: inline-block;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--secondary-dark);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
}

.stat-subtext {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* 7. MARKA GRID SEKSİYONU (P&G, Shell, Duracell vb.) */
.brands-section {
    padding: 80px 0;
    background: var(--bg-body);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-subtitle {
    color: var(--primary-red);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.25;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.brand-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.brand-card:hover {
    border-color: var(--primary-red);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.brand-logo-wrapper {
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.brand-logo-wrapper img {
    max-height: 64px;
    width: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: var(--transition);
}

.brand-card:hover .brand-logo-wrapper img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.brand-category {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* 8. BÖLGELER VE LOJİSTİK SEKSİYONU */
.distribution-section {
    padding: 90px 0 110px;
    background: var(--secondary-dark);
    color: #ffffff;
}

.distribution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-bottom: 80px;
}

.distribution-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.25;
}

.distribution-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.region-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.region-tag {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-dark);
    color: #e4e4e7;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.region-tag i {
    color: var(--primary-red);
}

.distribution-card-img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

/* 9. FOOTER DİZAYNI */
.main-footer {
    background: #0d0e12;
    color: var(--text-light);
    padding: 70px 0 0;
    border-top: 1px solid var(--border-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-dark);
}

.footer-col-brand img {
    height: 48px;
    margin-bottom: 20px;
}

.footer-col-brand p {
    font-size: 0.9rem;
    color: #a1a1aa;
    line-height: 1.65;
    margin-bottom: 20px;
}

.footer-col h3 {
    font-family: var(--font-heading);
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--primary-red);
    margin-top: 8px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #a1a1aa;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
    color: #a1a1aa;
}

.footer-contact-item i {
    color: #ddd;
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #71717a;
}

.footer-bottom a {
    color: #a1a1aa;
}

.footer-bottom a:hover {
    color: var(--primary-red);
}

/* 10. ÇEREZ POLİTİKASI POPUP */
.cookie_popup {
    display: none;
}

.cookie_popup_goster {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 900px;
    margin: 0 auto;
    background: var(--secondary-dark);
    border: 1px solid var(--border-dark);
    color: #ffffff;
    z-index: 9999;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    font-size: 0.9rem;
}

.cookie_popup_goster a {
    color: #ff6b6b;
    text-decoration: underline;
}

.tamam_buton {
    background: var(--primary-red);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    width: 200px;
    text-align: center;
}

.tamam_buton:hover {
    background: var(--primary-red-hover);
}

/* Subpage compatibility */
.sertifikalar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sertifikalar>div {
    background-color: #fff;
    min-height: 250px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 20px;
}

/* 11. STICKY FLOATING WHATSAPP BUTTON */
.whatsapp-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp-green);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 990;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float-btn:hover {
    background: var(--whatsapp-green-hover);
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    color: #ffffff;
}

/* 12. ÖNERİ 1: KURUMSAL AVANTAJLAR SEKSİYONU (BEYAZ ARKA PLAN) */
.features-section {
    background: #ffffff;
    padding: 90px 0;
    border-top: 1px solid var(--border-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: #f8f9fa;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary-red);
    background: #ffffff;
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    background: var(--primary-red-light);
    color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--primary-red);
    color: #ffffff;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* 13. ÖNERİ 2: TEDARİK VE LOJİSTİK SÜRECİ (4 ADIM BEYAZ ARKA PLAN) */
.process-section {
    background: #ffffff;
    padding: 90px 0;
    border-top: 1px solid var(--border-color);
}

.process-intro-box {
    text-align: center;
    max-width: 920px;
    margin: 0 auto 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border-color);
}

.process-intro-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-top: 18px;
}

.process-intro-text strong {
    color: var(--text-main);
    font-weight: 700;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.process-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 36px 24px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.process-card:hover {
    border-color: var(--primary-red);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.process-icon {
    font-size: 2rem;
    color: var(--primary-red);
    margin: 12px 0 16px;
}

.process-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}

.process-desc {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   İÇ SAYFA ŞABLONU & OTOMATİK TİPOGRAFİ STİLLERİ
   ========================================================================== */

/* Hero Banner (Dinamik Başlık & Breadcrumb) */
.page-hero {
    background: linear-gradient(135deg, rgba(18, 19, 24, 0.95) 0%, rgba(26, 28, 36, 0.9) 100%),
        url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    color: #ffffff;
    padding: 50px 0;
    position: relative;
    box-shadow: inset 0 -10px 20px rgba(0, 0, 0, 0.3);
}

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

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 14px;
}

.breadcrumb a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb i {
    font-size: 0.7rem;
    color: var(--primary-red);
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #ffffff;
}

/* 2 Kolonlu Layout */
.main-content-layout {
    max-width: 1200px;
    margin: -25px auto 60px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    position: relative;
    z-index: 10;
}

@media (max-width: 991px) {
    .main-content-layout {
        grid-template-columns: 1fr;
        margin-top: 20px;
    }
}

/* Sol Sidebar Widget'ları */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-widget {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 36px;
    height: 2px;
    background: var(--primary-red);
}

.sidebar-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 14px;
    border-radius: 8px;
    color: #334155;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.2s ease;
    background: #f8fafc;

}

.sidebar-menu a i {
    font-size: 0.75rem;
    color: #94a3b8;
    transition: transform 0.2s ease;
}

.sidebar-menu a:hover,
.sidebar-menu a.selected {
    background: #ffffff;
    color: var(--primary-red);
    border-left-color: var(--primary-red);
    box-shadow: 0 4px 12px rgba(210, 14, 21, 0.08);
    padding-left: 18px;
}

.sidebar-menu a:hover i,
.sidebar-menu a.selected i {
    color: var(--primary-red);
    transform: translateX(4px);
}

.sidebar-contact-card {
    background: #fff;
    color: #000;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    border: 1px solid #e4e4e7;
}

.contact-card-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.contact-card-desc {
    font-size: 0.82rem;
    color: #647081;
    margin-bottom: 16px;
    line-height: 1.5;
}

.btn-contact-quick {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary-red);
    color: #ffffff;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    width: 100%;
    transition: var(--transition);
}

.btn-contact-quick:hover {
    background: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(210, 14, 21, 0.4);
}

/* Sağ Ana İçerik Kapsayıcısı & Yönetici Paneli Otomatik CSS Biçimlendirme */
.admin-content-box {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}



.admin-content-box p {
    font-size: 0.96rem;
    color: #334155;
    margin-bottom: 16px;
    line-height: 1.7;
}

.admin-content-box h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 28px 0 16px;
    position: relative;
    padding-bottom: 8px;
    border-bottom: 2px solid #f1f5f9;
}

.admin-content-box h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-red);
}

.admin-content-box h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 22px 0 12px;
}

.admin-content-box ul {
    list-style: none;
    margin: 18px 0 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (max-width: 768px) {
    .admin-content-box ul {
        grid-template-columns: 1fr;
    }
}

.admin-content-box ul li {
    position: relative;
    padding-left: 28px;
    font-size: 0.92rem;
    font-weight: 600;
    color: #334155;
}

.admin-content-box ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background: rgba(210, 14, 21, 0.1);
    color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
}

.admin-content-box img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;

    box-shadow: var(--shadow-sm);
}

.admin-content-box blockquote {
    background: #f8fafc;
    border-left: 4px solid var(--primary-red);
    padding: 18px 24px;
    border-radius: 0 12px 12px 0;
    margin: 24px 0;
    font-style: italic;
    color: #475569;
}

.admin-content-box table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.admin-content-box table th {
    background: var(--secondary-dark);
    color: #ffffff;
    padding: 12px 16px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-align: left;
}

.admin-content-box table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    color: #334155;
    font-size: 0.9rem;
}

.admin-content-box table tr:nth-child(even) {
    background: #f8fafc;
}

/* ==========================================================================
   İLETİŞİM SAYFASI STİLLERİ
   ========================================================================== */

/* İletişim Hero Banner */
.contact-hero {
    background: linear-gradient(135deg, rgba(18, 19, 24, 0.95) 0%, rgba(26, 28, 36, 0.9) 100%),
        url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    color: #ffffff;
    padding: 50px 0;
    position: relative;
    box-shadow: inset 0 -10px 20px rgba(0, 0, 0, 0.3);
}

.contact-hero-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    color: #ffffff;
}

.contact-hero-desc {
    color: #94a3b8;
    font-size: 1rem;
    max-width: 650px;
}

/* 3'lü Hızlı İletişim Kartları Grid */
.contact-cards-container {
    max-width: 1200px;
    margin: -30px auto 40px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 10;
}

@media (max-width: 991px) {
    .contact-cards-container {
        grid-template-columns: 1fr;
        margin-top: 20px;
    }
}

.contact-info-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--border-color);
    transition: background 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-red);
}

.contact-info-card:hover::before {
    background: var(--primary-red);
}

.card-icon-box {
    width: 52px;
    height: 52px;
    background: rgba(210, 14, 21, 0.08);
    color: var(--primary-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.card-info-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 10px;
}

.card-info-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.card-info-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary-red);
    text-decoration: none;
    transition: gap 0.2s ease;
}

.card-info-link:hover {
    gap: 10px;
    color: var(--primary-red-hover);
}

/* 2 Kolonlu İletişim Alanı (Form + Harita Grid) */
.contact-main-grid {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

@media (max-width: 991px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
    }
}

.form-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
    font-family: var(--font-heading);
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.95rem;
}

.input-wrapper textarea+i {
    top: 18px;
    transform: none;
}

.form-input {
    width: 100%;
    padding: 12px 14px 12px 40px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 0.92rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: #f8fafc;
    color: var(--text-main);
    transition: var(--transition);
    outline: none;
}

.form-input:focus {
    background: #ffffff;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(210, 14, 21, 0.1);
}

textarea.form-input {
    padding-top: 14px;
    resize: vertical;
    min-height: 120px;
}

.btn-submit-form {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: var(--primary-red);
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 18px rgba(210, 14, 21, 0.35);
}

.btn-submit-form:hover {
    background: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(210, 14, 21, 0.5);
}

.btn-submit-form:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
    width: 300px;
}

.map-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.map-wrapper {
    width: 100%;
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-quick-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.quick-link-box {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition);
}

.quick-link-box i {
    color: var(--primary-red);
    font-size: 1.1rem;
}

.quick-link-box:hover {
    background: #ffffff;
    border-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.quick-link-title {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
}

.quick-link-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==========================================================================
   FOOTER STİLLERİ (HER SAYFADA %100 SOLA YASLI HİZALAMA)
   ========================================================================== */
.main-footer {
    background: var(--secondary-dark);
    color: #e4e4e7;
    padding: 60px 0 0;
    font-family: var(--font-body);
    text-align: left !important;
}

.main-footer .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left !important;
}

@media (max-width: 991px) {
    .main-footer .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .main-footer .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-col {
    text-align: left !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
}

.footer-col-brand .brand-logo-img {
    height: 48px;
    margin-bottom: 18px;
    filter: brightness(222);
}

.footer-col-brand p {
    color: #a1a1aa;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left !important;
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
    text-align: left !important;
    width: 100%;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--primary-red);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    text-align: left !important;
}

.footer-links li {
    text-align: left !important;
}

.footer-links a {
    color: #a1a1aa;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    text-align: left !important;
}

.footer-links a i {
    font-size: 0.75rem;
    color: var(--primary-red);
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: #a1a1aa;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: left !important;
    width: 100%;
}

.footer-contact-item i {
    color: #666;
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-item span {
    text-align: left !important;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 0.85rem;
    color: #71717a;
    text-align: left !important;
}

.footer-bottom a {
    color: #a1a1aa;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--primary-red);
}

/* ==========================================================================
   ŞİKAYET VE ÖNERİ SAYFASI STİLLERİ
   ========================================================================== */

.feedback-hero {
    background: linear-gradient(135deg, rgba(18, 19, 24, 0.95) 0%, rgba(26, 28, 36, 0.9) 100%),
        url('https://images.unsplash.com/photo-1556742049-0a670f4a4591?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    color: #ffffff;
    padding: 50px 0;
    position: relative;
    box-shadow: inset 0 -10px 20px rgba(0, 0, 0, 0.3);
}

.feedback-main-grid {
    max-width: 1200px;
    margin: 40px auto 60px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
}

@media (max-width: 991px) {
    .feedback-main-grid {
        grid-template-columns: 1fr;
    }
}

.side-info-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-policy-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    text-align: left !important;
}

.policy-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-card-title i {
    color: var(--primary-red);
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.policy-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    color: #334155;
    line-height: 1.5;
    text-align: left !important;
}

.policy-list li i {
    color: var(--primary-red);
    font-size: 0.95rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.direct-call-card {
    background: #fff;
    color: #000000;
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    border: 1px solid #e4e4e7;
    box-shadow: var(--shadow-sm);
}

.direct-call-icon {
    width: 50px;
    height: 50px;
    background: rgba(210, 14, 21, 0.15);
    color: #ff5258;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 14px;
}

.direct-call-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: #000;
}

.direct-call-number {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 16px;
    display: block;
    text-decoration: none;
}

.btn-call-quick {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary-red);
    color: #ffffff;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    width: 100%;
    transition: var(--transition);
}

.btn-call-quick:hover {
    background: var(--primary-red-hover);
    box-shadow: 0 4px 12px rgba(210, 14, 21, 0.4);
}

/* ==========================================================================
   TÜRKİYE İNTERAKTİF BÖLGE HARİTASI STİLLERİ (harita_inc.php)
   ========================================================================== */
.distribution-section .section-title {
    color: #ffffff !important;
}

.map-component-container {
    margin-top: 30px;
}

.main-map-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    align-items: start;
    width: 100%;
}

.map-card-wrapper {
    background: linear-gradient(145deg, #161a24, #11141c);
    border: 1px solid #262a36;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    position: relative;
}

.region-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    color: #f8fafc;
}

.legend-item:hover,
.legend-item.active {
    background: rgba(210, 14, 21, 0.2);
    border-color: #d20e15;
    transform: translateY(-2px);
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.svg-map-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
}

.svg-map-container.zoomed-in {
    cursor: grab;
}

.svg-map-container.zoomed-in:active {
    cursor: grabbing;
}

.map-zoom-controls {
    position: absolute;
    top: 15px;
    right: 0px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 20;
}

.zoom-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(22, 26, 36, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.zoom-btn:hover {
    background: #d20e15;
    border-color: #d20e15;
    transform: scale(1.08);
}

.svg-map-container svg {
    width: 100%;
    height: auto;
    display: block;
    transform-origin: center center;
    will-change: transform;
}

.svg-map-container svg g[data-plakakodu] path {
    fill: #1e232d;
    stroke: #0e1117;
    stroke-width: 1.2;
    stroke-linejoin: round;
    stroke-linecap: round;
    cursor: pointer;
    transition: fill 0.25s ease, stroke 0.25s ease, filter 0.25s ease;
}

.svg-map-container svg g[data-plakakodu]:hover path,
.svg-map-container svg g[data-plakakodu].highlighted path {
    stroke: #ffffff !important;
    stroke-width: 2.2 !important;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.65)) !important;
}

.city-label-text {
    font-family: var(--font-heading);
    font-size: 9px;
    font-weight: 700;
    fill: #ffffff;
    text-anchor: middle;
    dominant-baseline: central;
    pointer-events: none;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
    opacity: 0.9;
}

.hq-pin-group,
.sub-city-pin-group {
    cursor: pointer;
    pointer-events: none;
}

.hq-pin-pulse {
    transform-box: fill-box;
    transform-origin: center;
    animation: pulse-ring 6.5s cubic-bezier(0.1, 0.7, 0.3, 1) infinite;
    opacity: 0;
}

.hq-pin-pulse-2 {
    animation-delay: 3.25s;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    12% {
        opacity: 0.95;
    }

    80% {
        transform: scale(6.0);
        opacity: 0;
    }

    100% {
        transform: scale(6.0);
        opacity: 0;
    }
}

.cursor-tooltip {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -130%);
    transition: opacity 0.15s ease, transform 0.15s ease;
    z-index: 1000;
    background: rgba(14, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(210, 14, 21, 0.5);
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
    white-space: nowrap;
}

.cursor-tooltip.active {
    opacity: 1;
    transform: translate(-50%, -120%);
}

.region-side-card {
    background: linear-gradient(145deg, #161922, #11141c);
    border: 1px solid #262a36;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 20px;
}

.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #f59e0b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.side-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.side-card-hq {
    font-size: 0.9rem;
    color: #38bdf8;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cities-list-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 20px;
}

.cities-list-header {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.cities-tags-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.city-tag {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f1f5f9;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 500;
}

.city-tag.merkez-tag {
    background: rgba(210, 14, 21, 0.2);
    border-color: rgba(210, 14, 21, 0.5);
    color: #ff6b70;
    font-weight: 700;
}

.side-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, #d20e15 0%, #b91c1c 100%);
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(210, 14, 21, 0.4);
}

.side-card-btn:hover {
    background: linear-gradient(135deg, #ff2a31 0%, #d20e15 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(210, 14, 21, 0.6);
}

/* 6 Bölge Bilgi Kartları Grid (Haritanın Altında) */
.region-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 22px;
    margin-top: 35px;
}

.region-info-card {
    background: #16181e;
    border: 1px solid #242424;
    border-radius: 18px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.region-info-card:hover {
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.region-info-card .card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    margin-top: 4px;
}

.region-info-card .card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
}

.region-info-card .card-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    color: #94a3b8;
}

.region-info-card .card-merkez {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.region-info-card .cities-tags-box {
    margin-bottom: 22px;
    flex: 1;
}

.region-info-card .cities-tags-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
    margin-bottom: 0;
    transition: all 0.2s ease;
}

.region-info-card .cities-tags-label:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.cities-toggle-icon {
    font-size: 0.8rem;
    color: #b84a4e;
    transition: transform 0.3s ease;
}

.cities-toggle-icon.is-active {
    transform: rotate(180deg);
}

.region-info-card .cities-flex.cities-collapsible {
    display: none;
    margin-top: 10px;
    grid-template-columns: 1fr;
    gap: 8px;
}

.region-info-card .cities-flex.cities-collapsible.is-open {
    display: grid !important;
}

@media (max-width: 480px) {
    .region-info-card .cities-flex {
        grid-template-columns: 1fr;
    }
}

.region-info-card .city-tag {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e2e8f0;
    transition: all 0.2s ease;
}

.region-info-card .city-tag:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.2);
}

.region-info-card .city-icon {
    color: #666;
    font-size: 0.82rem;
}

.region-info-card .city-tag.merkez {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-weight: 700;
}

.region-info-card .city-tag.merkez .city-icon {
    color: #666;
}

.region-info-card .card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: auto;
}

.region-info-card .focus-map-hint {
    color: #94a3b8;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.region-info-card .card-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.region-info-card .card-link-btn:hover {
    background: #d20e15;
    border-color: #d20e15;
    transform: translateX(3px);
}

/* Harita Sağ Alt Köşe Başlığı (map-card-wrapper İçinde) */
.map-bottom-watermark {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(17, 22, 34, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 10px 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    pointer-events: none;
    z-index: 15;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-bottom-watermark i {
    color: #d20e15;
    font-size: 1.4rem;
}

/* Transfer Akış Çizgileri ve Kayan Işık Parçacığı Stilleri (Ultra Parlak Beyaz Neon) */
.transfer-flow-line {
    animation: dashFlowAnim 1.4s linear infinite;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.9));
}

@keyframes dashFlowAnim {
    from {
        stroke-dashoffset: 28;
    }

    to {
        stroke-dashoffset: 0;
    }
}

/* DINAMIK DB SAYFA ARKA PLAN GÖRSELİ (BG_FOTO) STİLLERİ (1920x650 PANORAMİK BANNER) */
.page-hero.has-custom-bg {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 260px;
    padding: 140px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: background 0.3s ease;
}

/* MODERN ELEGANT BREADCRUMBS STYLES */
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 18, 25, 0.65);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 14px;
    font-size: 0.84rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb a i {
    font-size: 0.8rem;
    color: #e2e8f0;
}

.breadcrumb a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.breadcrumb .divider-icon,
.breadcrumb i.fa-chevron-right {
    font-size: 0.68rem;
    color: #64748b;
}

.breadcrumb .current-crumb,
.breadcrumb>span {
    color: #ffffff;
    font-weight: 700;
}

.sidebar-toggle-icon {
    display: none;
}

/* BÖLGE DETAY ADRES VE İLLER BÖLÜMÜ STİLLERİ */
.region-detail-summary-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 22px 26px;
    margin-bottom: 28px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.summary-block {
    margin-bottom: 20px;
}

.summary-block:last-child {
    margin-bottom: 0;
    padding-top: 18px;
    border-top: 1px dashed #e2e8f0;
}

.summary-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.02rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.summary-title i {
    color: #b84a4e;
    font-size: 1.1rem;
}

.cities-pill-wrapper {
    display: grid;
    flex-wrap: wrap;
    gap: 8px;
    grid-template-columns: repeat(2, 1fr);
}

.region-city-pill {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #334155;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.region-city-pill i {
    font-size: 0.8rem;
    color: #94a3b8;
}

.region-city-pill.merkez-pill {
    background: #fef2f2;
    border-color: #fecaca;
    color: #b84a4e;
    font-weight: 700;
}

.region-city-pill.merkez-pill i {
    color: #b84a4e;
}

.region-city-pill.merkez-pill small {
    font-size: 0.78rem;
    opacity: 0.85;
}

.region-city-pill:hover {
    border-color: #cbd5e1;
    background: #ffffff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.address-content-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.address-text-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #334155;
    font-size: 0.95rem;
    font-weight: 500;
    max-width: 580px;
    line-height: 1.5;
}

.address-text-box i {
    color: #b84a4e;
    font-size: 1.1rem;
    margin-top: 2px;
}

.address-contacts-flex {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-inline-btn {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    color: #1e293b;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 7px 15px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all 0.2s ease;
}

.contact-inline-btn i {
    color: #b84a4e;
}

.contact-inline-btn:hover {
    background: #b84a4e;
    color: #ffffff;
    border-color: #b84a4e;
}

.contact-inline-btn:hover i {
    color: #ffffff;
}

.hero-meta-badge.merkez-badge {
    border-left: 3px solid #b84a4e;
    background: rgba(184, 74, 78, 0.2);
}

.hero-meta-badge strong {
    color: #ffffff;
    font-weight: 700;
}

/* DEMO SWİTCHER BAR & BÖLGE DETAY HARİTA MODLARI */
.demo-switcher-bar {
    background: #11141c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 18px;
    margin: 20px 0 25px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.demo-bar-title {
    color: #e2e8f0;
    font-size: 0.88rem;
    font-weight: 700;
    margin-right: 6px;
}

.demo-mode-btn {
    background: #1e2330;
    color: #94a3b8;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.84rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.demo-mode-btn:hover {
    background: #2b3346;
    color: #ffffff;
}

.demo-mode-btn.active {
    background: #b84a4e;
    color: #ffffff;
    border-color: #d65b60;
    box-shadow: 0 4px 15px rgba(184, 74, 78, 0.4);
}

/* Mod Stilleri */
.focused-region-wrapper {
    margin-bottom: 30px;
}

.focused-region-wrapper.demo-style-mode-1 {
    width: 100%;
}

.focused-region-wrapper.demo-style-mode-2 {
    margin-top: 35px;
    padding: 20px;
    background: #151922;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.focused-region-wrapper.demo-style-mode-3 {
    max-width: 100%;
}

.focused-map-container {
    position: relative;
    background: #0f1219;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.focused-region-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(15, 18, 25, 0.92);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid #b84a4e;
    padding: 10px 16px;
    border-radius: 8px;
    pointer-events: none;
    z-index: 10;
}

.f-badge-title {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 800;
}

.f-badge-sub {
    color: #94a3b8;
    font-size: 0.8rem;
    margin-top: 2px;
}

/* ==========================================================================
   MOBILE OFF-CANVAS DRAWER MENU & RESPONSIVE DESIGN SYSTEM
   ========================================================================== */

/* 1. Mobile Menu Toggle Button (Hamburger) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1050;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: #0f172a;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: #b84a4e;
}

.mobile-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: #b84a4e;
}

/* 2. Mobile Drawer Overlay */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(8px);
    z-index: 1090;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.mobile-drawer-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* 3. Mobile Off-Canvas Drawer Panel */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #121318;
    color: #f8fafc;
    z-index: 1100;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;

    overflow: hidden;
}

.mobile-drawer.is-open {
    transform: translateX(0);
}

body.mobile-menu-open {
    overflow: hidden !important;
}

/* Drawer Header */
.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(184, 74, 78, 0.25);
    background: #16181e;
}

.mobile-drawer-logo img {
    height: 36px;
    width: auto;
    filter: brightness(200);
}

.mobile-drawer-close {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-drawer-close:hover {
    background: #b84a4e;
    border-color: #b84a4e;
}

/* Drawer Body */
.mobile-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Mobile Nav List */
.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 4px;
    cursor: pointer;
    user-select: none;
}

.mobile-nav-header a {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.mobile-accordion-toggle,
.mobile-sub-toggle {
    color: #94a3b8;
    font-size: 0.9rem;
    padding: 6px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.mobile-accordion-toggle.is-rotated,
.mobile-sub-toggle.is-rotated {
    transform: rotate(180deg);
    color: #b84a4e;
}

/* Mobile Submenu (Accordion) */
.mobile-sub-menu {
    list-style: none;
    padding: 0 0 10px 14px;
    margin: 0;
    display: none;
}

.mobile-sub-menu.is-visible {
    display: block !important;
}

.mobile-sub-menu li {
    padding: 8px 0;
    font-size: 0.88rem;
}

.mobile-sub-menu a {
    color: #cbd5e1;
    transition: color 0.2s ease;
}

.mobile-sub-menu a:hover {
    color: #b84a4e;
}

.mobile-item-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Quick Action Strip */
.mobile-quick-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.mobile-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.btn-call {
    background: #b84a4e;
    color: #ffffff;
}

.btn-email {
    background: #414042;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Mobile Social Strip */
.mobile-social-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-social-strip a {
    color: #94a3b8;
    font-size: 1.1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.mobile-social-strip a:hover {
    background: #b84a4e;
    color: #ffffff;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (BREAKPOINTS)
   ========================================================================== */

/* Tablet & Mobile Screens (<= 1024px) */
@media (max-width: 1024px) {
    .main-nav-container {
        display: none;
    }

    .main-header .header-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 1;
    }

    .brand-logo {
        order: 2;
        margin: 0 auto;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .mobile-header-spacer {
        display: block;
        width: 44px;
        height: 44px;
        order: 3;
    }

    .top-utility-bar {
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sidebar-menu {
        margin-bottom: 25px;
    }
}

/* Mobile Screens (<= 768px) */
@media (max-width: 768px) {

    .div_980,
    .container-main {
        padding: 0 16px;
    }

    .top-utility-bar {
        display: none;
    }

    .main-header {
        padding: 10px 0;
    }

    .brand-logo-img {
        height: 42px;
    }

    /* Hero Slider Responsive */
    .hero-slider-section {
        min-height: 420px;
    }

    .hero-content {
        padding: 80px 16px 40px 16px;
        text-align: center;
    }

    .hero-badge {
        display: inline-flex;
        font-size: 0.78rem;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 0.92rem;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        max-width: 250px;
        margin: auto;
    }

    .btn-primary,
    .btn-hero-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 12px 20px;
    }

    /* Stats Grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 24px 0;
    }

    .stat-item {
        padding: 16px 12px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    /* Brands Grid */
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .brand-card {
        padding: 16px;
    }

    /* Process Grid */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    /* Map Component Mobile Optimizations */
    .map-card-wrapper {
        min-height: 240px;
        margin-bottom: 0;
    }

    .map-bottom-watermark {
        font-size: 0.72rem;
        padding: 6px 12px;
        bottom: 12px !important;
        right: 12px !important;
        gap: 6px;
        border-radius: 8px;
        z-index: 15;
    }

    .map-bottom-watermark i {
        font-size: 0.85rem;
    }

    .region-info-grid {
        margin-top: 14px;
        gap: 14px;
    }

    /* Page Hero */
    .page-hero.has-custom-bg {
        padding: 80px 0 40px 0;
        min-height: 180px;
    }

    .hero-page-title {
        font-size: 1.7rem;
    }

    /* Detail Page Layout Stacking & Collapsible Sidebar */
    .page-content-wrapper,
    .page-detail-grid,
    .main-content-layout {
        display: flex;
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        order: 1;
        margin-bottom: 20px;
    }

    .admin-content-box {
        width: 100%;
        order: 2;
    }

    .widget-title-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #16181e;
        color: #ffffff;
        padding: 12px 18px;
        border-radius: 10px;
        cursor: pointer;
        user-select: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }

    .widget-title-wrapper .widget-title {
        color: #ffffff;
        margin-bottom: 0;
        font-size: 0.95rem;
    }

    .sidebar-toggle-icon {
        display: block;
        color: #b84a4e;
        font-size: 0.9rem;
        transition: transform 0.3s ease;
    }

    .sidebar-toggle-icon.is-active {
        transform: rotate(180deg);
    }

    .sidebar-menu {
        display: none;
        margin-top: 10px;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 10px;
        padding: 8px 0;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    .sidebar-menu.mobile-open {
        display: block !important;
    }

    .region-detail-summary-box {
        padding: 16px;
    }

    .contact-inline-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Footer Responsive */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Small Smartphone Screens (<= 480px) */
@media (max-width: 480px) {
    .brand-logo-img {
        height: 36px;
    }

    .hero-title {
        font-size: 1.55rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .map-bottom-watermark {
        bottom: 8px !important;
        right: 8px !important;
        font-size: 0.65rem;
        padding: 5px 10px;
    }
}