:root {

    --primary: #1e40af;

    --primary-dark: #1e3a8a;

    --primary-light: #3b82f6;

    --secondary: #64748b;

    --accent: #f59e0b;

    --success: #10b981;

    --danger: #ef4444;

    --dark: #0f172a;

    --light: #f8fafc;

    --white: #ffffff;

    --gray-50: #f9fafb;

    --gray-100: #f3f4f6;

    --gray-200: #e5e7eb;

    --gray-300: #d1d5db;

    --gray-400: #9ca3af;

    --gray-500: #6b7280;

    --gray-600: #4b5563;

    --gray-700: #374151;

    --gray-800: #1f2937;

    --gray-900: #111827;

    

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);

    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);

    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    

    --border-radius: 12px;

    --border-radius-sm: 8px;

    --border-radius-lg: 16px;

    --border-radius-xl: 24px;

    

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

}



* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



html {

    scroll-behavior: smooth;

    font-size: 16px;

    overflow-x: hidden;

    width: 100%;

}



body {

    font-family: var(--font-primary);

    color: var(--gray-800);

    background-color: var(--gray-50);

    line-height: 1.6;

    -webkit-font-smoothing: antialiased;

    -moz-osx-font-smoothing: grayscale;

    overflow-x: hidden !important;

    width: 100%;

    max-width: 100vw;

    position: relative;

}



.container {

    max-width: 1280px;

    margin: 0 auto;

    padding: 0 20px;

    width: 100%;

    box-sizing: border-box;

}



img {

    max-width: 100%;

    height: auto;

    display: block;

}



a {

    text-decoration: none;

    color: inherit;

    transition: var(--transition);

}



button {

    font-family: inherit;

    border: none;

    background: none;

    cursor: pointer;

    transition: var(--transition);

}



ul {

    list-style: none;

}



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

.main-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.main-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.99);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    height: 70px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.header-search {
    display: flex;
    align-items: stretch;
    flex: 0 1 200px;
    max-width: 220px;
    min-width: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background: var(--gray-50, #f9fafb);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search:focus-within {
    border-color: rgba(30, 64, 175, 0.35);
    box-shadow: 0 0 0 2px rgba(30, 64, 175, 0.12);
}

.header-search-input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    padding: 8px 10px;
    font-size: 13px;
    color: var(--dark);
    outline: none;
}

.header-search-input::placeholder {
    color: var(--gray-500);
}

.header-search-submit {
    flex-shrink: 0;
    width: 40px;
    border: none;
    background: rgba(30, 64, 175, 0.08);
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.header-search-submit:hover {
    background: var(--primary);
    color: #fff;
}

.mobile-menu-search {
    display: none;
    gap: 8px;
    margin: 0 0 12px 0;
    padding: 0 4px;
}

.mobile-menu-search-input {
    flex: 1;
    min-width: 0;
    padding: 10px 12px;
    font-size: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background: var(--gray-50, #f9fafb);
}

.mobile-menu-search-submit {
    flex-shrink: 0;
    width: 44px;
    border: none;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-search-page .site-search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin: 20px 0 28px;
}

.site-search-page .site-search-form--hero input[type="search"],
.site-search-page .site-search-form input[type="search"] {
    flex: 1;
    min-width: 200px;
    padding: 12px 14px;
    font-size: 16px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
}

.site-search-page .site-search-hint {
    margin-top: 8px;
    font-size: 14px;
    color: var(--gray-600);
}

.site-search-results .section-subtitle {
    margin-top: 24px;
}

.site-search-list {
    list-style: disc;
    padding-left: 1.25rem;
    margin: 0 0 8px 0;
}

.site-search-list li {
    margin-bottom: 8px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 22px;
    color: var(--dark);
    z-index: 10;
}
/* Site logos (header, mobil menü, 404) */
.logo .site-logo,
.mobile-menu-logo-link .site-logo {
    display: block;
    height: 40px;
    width: auto;
    max-width: min(220px, 52vw);
    max-height: 44px;
    object-fit: contain;
    object-position: left center;
}

.mobile-menu-logo-link {
    display: flex;
    align-items: center;
    line-height: 0;
}

.mobile-menu-logo-link:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
    border-radius: 4px;
}



.logo-icon {

    width: 44px;

    height: 44px;

    background: var(--primary);

    border-radius: var(--border-radius);

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    font-size: 20px;

    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);

    transition: var(--transition);

}



.logo:hover .logo-icon {

    transform: rotate(12deg) scale(1.05);

}



.logo-text .text-primary {

    color: var(--primary);

}



/* Desktop Navigation */

.desktop-nav {

    display: flex;

    align-items: center;

    gap: 32px;

}



.nav-link {
    font-weight: 500;
    font-size: 14px;
    color: var(--gray-700);
    position: relative;
    padding: 8px 2px;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.25s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}
.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary);
}



.nav-dropdown {

    position: relative;

}



.dropdown-trigger {

    display: flex;

    align-items: center;

    gap: 6px;

}



.dropdown-trigger i {

    font-size: 10px;

    opacity: 0.6;

    transition: var(--transition);

}



.nav-dropdown:hover .dropdown-trigger i {

    transform: rotate(180deg);

}



.dropdown-menu {

    position: absolute;

    top: calc(100% + 10px);

    left: 50%;

    transform: translateX(-50%);

    background: white;

    border-radius: var(--border-radius-lg);

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);

    padding: 20px;

    opacity: 0;

    visibility: hidden;

    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    pointer-events: none;

    z-index: 1000;

    margin-top: 0;

}



/* Dropdown'a girerken kapanmasını önle */

.nav-dropdown:hover .dropdown-menu,

.dropdown-menu:hover {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    top: calc(100% + 5px);

}



/* Geçiş için hover alanını genişlet */

.nav-dropdown::after {

    content: '';

    position: absolute;

    bottom: -10px;

    left: 0;

    right: 0;

    height: 10px;

}



.nav-dropdown:hover .dropdown-menu {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    top: calc(100% + 5px);

}



.services-dropdown {

    min-width: 700px;

}



.brands-dropdown {

    min-width: 650px;

}



.dropdown-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;

}



.dropdown-item {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 14px;

    background: var(--gray-50);

    border-radius: var(--border-radius);

    transition: var(--transition);

    border-left: 3px solid transparent;

}



.dropdown-item:hover {

    background: var(--primary);

    color: white;

    border-left-color: var(--primary);

    transform: translateX(4px);

    box-shadow: var(--shadow-md);

}



.item-thumb {

    width: 60px;

    height: 60px;

    border-radius: var(--border-radius);

    object-fit: contain; /* cover yerine contain */

    flex-shrink: 0;

    background: white; /* Arka plan beyaz */

    padding: 4px; /* İçten boşluk */

}



.item-content {

    display: flex;

    align-items: center;

    gap: 12px;

    flex: 1;

}



.item-icon {

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: white;

    border-radius: var(--border-radius);

    font-size: 18px;

    color: var(--primary);

    flex-shrink: 0;

    transition: var(--transition);

}



.dropdown-item:hover .item-icon {

    background: white;

    color: var(--primary);

    transform: scale(1.1);

}



.item-text {

    flex: 1;

}



.item-text strong {

    display: block;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 2px;

    color: inherit;

}



.item-text span {

    display: block;

    font-size: 12px;

    opacity: 0.8;

}



/* Brands Grid */

.brands-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 12px;

}



.brand-item {

    display: flex;

    align-items: center;

    justify-content: flex-start;

    gap: 12px;

    padding: 12px 16px;

    background: var(--gray-50);

    border-radius: var(--border-radius);

    transition: var(--transition);

    text-align: left;

}



.brand-item:hover {

    background: var(--primary);

    color: white;

    transform: translateX(4px);

    box-shadow: var(--shadow-md);

}



/* İkon ekle (opsiyonel) */

.brand-item::before {

    content: '◆';

    color: var(--primary);

    font-size: 10px;

    transition: var(--transition);

}



.brand-item:hover::before {

    color: white;

}



.brand-item span {

    font-size: 14px;

    font-weight: 500;

    flex: 1;

}



/* CTA Button */

.cta-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 11px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}
.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #152e6b 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.45);
}
.cta-button i {
    animation: phonePulse 2s infinite;
}



/* Mobile Actions */

.mobile-actions {

    display: none;

    align-items: center;

    gap: 16px;

}



.mobile-call-btn {

    width: 44px;

    height: 44px;

    background: var(--primary);

    color: white;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 18px;

    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);

}



.mobile-call-btn:hover {

    background: var(--primary-dark);

}



.mobile-menu-btn {

    width: 44px;

    height: 44px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 6px;

}



.mobile-menu-btn span {

    width: 24px;

    height: 2px;

    background: var(--dark);

    border-radius: 2px;

    transition: var(--transition);

}



.mobile-menu-btn.active span:nth-child(1) {

    transform: rotate(45deg) translate(6px, 6px);

}



.mobile-menu-btn.active span:nth-child(2) {

    opacity: 0;

}



.mobile-menu-btn.active span:nth-child(3) {

    transform: rotate(-45deg) translate(7px, -7px);

}



/* Mobile Menu */

.mobile-menu {

    position: fixed;

    top: 0;

    right: -100%;

    width: 100%;

    max-width: 400px;

    height: 100vh;

    background: white;

    box-shadow: var(--shadow-xl);

    z-index: 9999;

    overflow-y: auto;

    transition: right 0.3s ease;

}



.mobile-menu.active {

    right: 0;

}



.mobile-menu-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 24px;

    border-bottom: 1px solid var(--gray-200);

}



.mobile-menu-header .logo-text {

    font-weight: 800;

    font-size: 20px;

    color: var(--dark);

}



.mobile-menu-header .logo-text .text-primary {

    color: var(--primary);

}



.mobile-menu-close {

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--gray-100);

    color: var(--gray-700);

    font-size: 20px;

}



.mobile-nav {

    padding: 20px;

}



.mobile-nav-link {

    display: block;

    padding: 16px;

    font-weight: 500;

    color: var(--gray-700);

    border-bottom: 1px solid var(--gray-100);

}



.mobile-nav-link:hover {

    color: var(--primary);

    background: var(--gray-50);

}



.mobile-accordion {

    border-bottom: 1px solid var(--gray-100);

}



.mobile-accordion-trigger {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 16px;

    font-weight: 500;

    color: var(--gray-700);

    text-align: left;

}



.mobile-accordion-trigger i {

    font-size: 12px;

    transition: var(--transition);

}



.mobile-accordion.active .mobile-accordion-trigger i {

    transform: rotate(180deg);

}



.mobile-accordion-content {

    max-height: 0;

    overflow: hidden;

    transition: max-height 0.3s ease;

}



.mobile-accordion.active .mobile-accordion-content {

    max-height: 1000px;

}



.mobile-accordion-content a {

    display: block;

    padding: 12px 16px 12px 32px;

    color: var(--gray-600);

    font-size: 14px;

    border-bottom: 1px solid var(--gray-50);

}



.mobile-accordion-content a:hover {

    background: var(--gray-50);

    color: var(--primary);

}



.mobile-accordion-content.brands-mobile {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 8px;

    padding: 12px;

}



.mobile-accordion-content.brands-mobile a {

    padding: 12px;

    border: 1px solid var(--gray-200);

    border-radius: var(--border-radius-sm);

    text-align: center;

}



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

.hero-section {

    position: relative;

    padding: 100px 0 100px;

    overflow: hidden;

}



.hero-background {

    position: absolute;

    inset: 0;

    z-index: 0;

}



.hero-background img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}



.hero-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 64, 175, 0.85) 100%);

}



.hero-content {

    position: relative;

    z-index: 10;

    max-width: 800px;

    margin: 0 auto;

    text-align: center;

}



.breadcrumb {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    background: rgba(255, 255, 255, 0.1);

    backdrop-filter: blur(10px);

    -webkit-backdrop-filter: blur(10px);

    padding: 10px 20px;

    border-radius: 50px;

    border: 1px solid rgba(255, 255, 255, 0.2);

    margin-bottom: 32px;

    font-size: 14px;

}



.breadcrumb a {

    color: rgba(255, 255, 255, 0.8);

}



.breadcrumb a:hover {

    color: white;

}



.breadcrumb span {

    color: rgba(255, 255, 255, 0.6);

}



.breadcrumb i {

    font-size: 12px;

}



.hero-title {

    font-size: clamp(32px, 5vw, 56px);

    font-weight: 900;

    line-height: 1.2;

    color: white;

    margin-bottom: 24px;

    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

}

/* Marka kök: tek H1 makalede; üst kahramanda yine aynı görsel ağırlık */
p.hero-title.hero-title--brand-root {

    margin-top: 0;

}



.hero-title .highlight {

    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

}



.hero-subtitle {

    font-size: clamp(16px, 2vw, 20px);

    color: rgba(255, 255, 255, 0.9);

    margin-bottom: 40px;

    line-height: 1.6;

}



.hero-actions {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 16px;

    flex-wrap: wrap;

}



.btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 16px 32px;

    border-radius: 50px;

    font-weight: 600;

    font-size: 16px;

    transition: var(--transition);

    border: none;

    cursor: pointer;

}



.btn-primary {

    background: var(--primary);

    color: white;

    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.4);

}



.btn-primary:hover {

    background: var(--primary-dark);

    transform: translateY(-2px);

    box-shadow: 0 6px 16px rgba(30, 64, 175, 0.5);

}



.btn-secondary {

    background: rgba(255, 255, 255, 0.15);

    backdrop-filter: blur(10px);

    -webkit-backdrop-filter: blur(10px);

    color: white;

    border: 1px solid rgba(255, 255, 255, 0.3);

}



.btn-secondary:hover {

    background: rgba(255, 255, 255, 0.25);

}



.btn-block {

    width: 100%;

    justify-content: center;

}



/* Stats Bar */

.stats-bar {

    background: white;

    padding: 32px 0;

    margin-top: -40px;

    position: relative;

    z-index: 100;

    box-shadow: var(--shadow-lg);

    border-radius: var(--border-radius-xl);

}



.stats-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

    gap: 32px;

}



.stat-item {

    display: flex;

    align-items: center;

    gap: 16px;

    padding: 16px;

    border-radius: var(--border-radius);

    transition: var(--transition);

}



.stat-item:hover {

    background: var(--gray-50);

}



.stat-item i {

    width: 56px;

    height: 56px;

    background: var(--gray-100);

    border-radius: var(--border-radius);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 24px;

    color: var(--primary);

    flex-shrink: 0;

}



.stat-item strong {

    display: block;

    font-size: 18px;

    font-weight: 700;

    color: var(--dark);

    margin-bottom: 4px;

}



.stat-item span {

    font-size: 14px;

    color: var(--gray-600);

}

.footer-disclaimer {

    font-weight: 600;

}

.footer-disclaimer strong {

    font-weight: 800;

}



/* Güven / foto galerisi (iç sayfa altı — kompakt) */

.site-trust-strip--inner {

    margin-top: 2.5rem;

    padding: 1.5rem 0 0;

    border-top: 1px solid var(--gray-200);

    background: transparent;

}

.site-trust-strip--inner .site-trust-strip__heading {

    margin-bottom: 1rem;

    font-size: 1.15rem;

}

.site-trust-strip--inner .site-trust-strip-inner {

    gap: 16px;

}

.site-trust-strip--inner .site-trust-figure {

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

}

/* Homepage: güven / foto şeridi (kullanımda değil — iç sayfaya taşındı) */

.site-trust-strip {

    background: var(--gray-50);

    padding: 48px 0 56px;

    margin-top: -24px;

    position: relative;

    z-index: 50;

}



.site-trust-strip-inner {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 24px;

}



.site-trust-figure {

    margin: 0;

    background: white;

    border-radius: var(--border-radius-xl);

    overflow: hidden;

    box-shadow: var(--shadow-md);

}



.site-trust-figure img {

    width: 100%;

    height: auto;

    display: block;

    aspect-ratio: 16 / 10;

    object-fit: cover;

}



.site-trust-figure figcaption {

    padding: 14px 16px 18px;

    font-size: 14px;

    color: var(--gray-600);

    line-height: 1.45;

    border-top: 1px solid var(--gray-100);

}



.btn-randevu-with-icon {

    gap: 10px;

}



.btn-randevu-ikon {

    flex-shrink: 0;

    display: block;

    filter: brightness(0) invert(1);

    opacity: 0.95;

}



/* İnsan Kaynakları — iş ilanları */

.hr-job-card {

    background: var(--gray-50);

    border: 1px solid var(--gray-200);

    border-radius: var(--border-radius-xl);

    padding: 24px 24px 20px;

    margin: 24px 0;

}

.hr-job-card__head {

    margin-bottom: 12px;

}

.hr-job-card__title {

    font-size: 1.25rem;

    font-weight: 700;

    color: var(--dark);

    margin: 0 0 8px;

    line-height: 1.35;

}

.hr-job-card__meta {

    font-size: 14px;

    color: var(--gray-600);

    margin: 0;

    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 8px;

}

.hr-job-badge {

    display: inline-block;

    background: var(--primary);

    color: #fff;

    font-size: 12px;

    font-weight: 600;

    padding: 4px 10px;

    border-radius: 6px;

    letter-spacing: 0.02em;

}

.hr-job-card__h4 {

    font-size: 15px;

    font-weight: 700;

    color: var(--dark);

    margin: 18px 0 8px;

}

.hr-job-list {

    margin: 0 0 8px;

    padding-left: 22px;

    line-height: 1.65;

    color: var(--gray-700);

    font-size: 15px;

}

.hr-job-list li {

    margin-bottom: 6px;

}

.hr-job-card__foot {

    margin: 20px 0 0;

    padding-top: 16px;

    border-top: 1px solid var(--gray-200);

}



/* ===== MAIN CONTENT ===== */

.main-content {

    padding: 60px 0;

    width: 100%;

    max-width: 100%;

    overflow-x: hidden;

}



.content-grid {

    display: grid;

    grid-template-columns: 1fr 380px;

    gap: 40px;

    width: 100%;

    max-width: 100%;

}



/* LEFT COLUMN */

.left-column {

    min-width: 0;

    width: 100%;

    max-width: 100%;

    overflow: hidden;

}



/* Service Article */

.service-article {

    background: white;

    border-radius: var(--border-radius-xl);

    overflow: hidden;

    box-shadow: var(--shadow);

    width: 100%;

    max-width: 100%;

}

/* Blog archive (/blog/) */
.blog-archive .section-content {
    max-width: 1100px;
    margin: 0 auto;
}

.blog-archive-lead {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.blog-archive-breadcrumb {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.blog-archive-breadcrumb a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.blog-archive-breadcrumb a:hover {
    text-decoration: underline;
}

.blog-archive-breadcrumb-sep {
    margin: 0 8px;
    color: var(--gray-400);
}

.blog-tag-cloud {
    margin: 28px 0 8px;
    padding: 22px 22px 18px;
    background: linear-gradient(135deg, var(--gray-50) 0%, #fff 100%);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
}

.blog-tag-cloud-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 14px;
}

.blog-tag-cloud-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-tag-cloud-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.blog-tag-cloud-link:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
    color: var(--primary);
}

.blog-tag-cloud-count {
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-500);
    background: var(--gray-100);
    padding: 2px 8px;
    border-radius: 999px;
}

.blog-archive-back-wrap {
    margin-top: 24px;
}

.blog-archive-back-link {
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

.blog-archive-back-link:hover {
    text-decoration: underline;
}

.blog-archive-empty {
    padding: 24px;
    background: var(--gray-50);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary);
}

.blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
    margin-bottom: 16px;
}

.blog-meta-back {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

.blog-meta-back:hover {
    text-decoration: underline;
}

.blog-category-pill {
    background: var(--primary);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.blog-article-date {
    font-size: 14px;
    color: var(--gray-600);
}

.blog-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 20px;
}

.blog-tag-pill {
    display: inline-block;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.blog-tag-pill:hover {
    background: #fff;
    border-color: var(--primary);
}

.blog-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.blog-card-tag {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--gray-600);
    background: var(--gray-100);
    padding: 3px 8px;
    border-radius: 4px;
}

.blog-category-block {
    margin-top: 40px;
}

.blog-category-block:first-of-type {
    margin-top: 28px;
}

.blog-category-title {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-100);
}

.blog-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.blog-card-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 22px 20px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.blog-card-link:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.blog-card-date {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 10px;
}

.blog-card-date i {
    margin-right: 6px;
    opacity: 0.85;
}

.blog-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.35;
    margin: 0 0 10px;
}

.blog-card-excerpt {
    font-size: 14px;
    line-height: 1.65;
    color: var(--gray-600);
    margin: 0 0 16px;
    flex: 1;
}

.blog-card-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-top: auto;
}

.blog-card-more i {
    margin-left: 6px;
    font-size: 11px;
    transition: transform 0.2s ease;
}

.blog-card-link:hover .blog-card-more i {
    transform: translateX(4px);
}

.blog-archive-disclaimer {
    margin-top: 40px;
    padding: 20px 22px;
    background: var(--gray-50);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.blog-archive-disclaimer a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.blog-archive-disclaimer a:hover {
    text-decoration: underline;
}

.blog-hero-figure {
    margin: 0 0 28px;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--gray-100);
}

.blog-hero-img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;
}

.blog-hero-caption {
    padding: 10px 14px;
    font-size: 13px;
    color: var(--gray-600);
    background: var(--gray-50);
}

.blog-internal-nav {
    margin: 0 0 28px;
    padding: 20px 22px;
    background: var(--gray-50);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

.blog-internal-nav-title {
    font-size: 16px;
    margin: 0 0 12px;
    color: var(--dark);
}

.blog-internal-nav-list {
    margin: 0 0 18px;
    padding-left: 1.25rem;
    line-height: 1.7;
}

.blog-internal-nav-list:last-child {
    margin-bottom: 0;
}

.blog-internal-nav-list a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.blog-internal-nav-list a:hover {
    text-decoration: underline;
}

/* Dinamik sayfada section-1 ile blog şeridi arasında çift 48px padding birikimini keser */
.article-section--before-related-blog {
    padding-bottom: 20px;
}

.related-blog-strip {
    margin-top: 0;
    padding-top: 14px;
    padding-bottom: 18px;
    padding-left: 40px;
    padding-right: 40px;
    background: var(--gray-50);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--gray-200);
}

.related-blog-strip .section-title.related-blog-strip-heading {
    font-size: 22px;
    margin-bottom: 8px;
    margin-top: 0;
}

.related-blog-strip-lead {
    margin-bottom: 10px !important;
    margin-top: 0 !important;
}

.related-blog-strip-list {
    margin: 0 0 10px;
    padding-left: 1.25rem;
    line-height: 1.6;
}

.related-blog-strip-footer {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

/* Blog şeridinden sonraki bölüm (ör. section-2) üst boşluğu */
.related-blog-strip + .article-section {
    padding-top: 24px;
}

.related-blog-strip-list a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.related-blog-strip-list a:hover {
    text-decoration: underline;
}



.article-hero {

    position: relative;

    height: 400px;

    overflow: hidden;

    width: 100%;

}



.hero-image-wrap {

    position: relative;

    width: 100%;

    height: 100%;

}



.hero-img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}



.article-hero .hero-overlay {

    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, transparent 100%);

}



.article-hero .hero-content {

    position: absolute;

    bottom: 0;

    left: 0;

    right: 0;

    padding: 40px;

    z-index: 10;

    text-align: left;

    max-width: 100%;

}



.article-title {

    font-size: 36px;

    font-weight: 800;

    color: white;

    margin-bottom: 12px;

    line-height: 1.2;

    word-wrap: break-word;

}



.article-subtitle {

    font-size: 18px;

    color: rgba(255, 255, 255, 0.8);

    word-wrap: break-word;

}



.article-private-service-notice {

    font-size: 15px;

    font-weight: 600;

    line-height: 1.45;

    color: #fff;

    margin: 0 0 12px 0;

    max-width: 52rem;

    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);

    word-wrap: break-word;

}



.article-section {

    padding: 48px 40px;

    width: 100%;

    max-width: 100%;

    overflow: hidden;

}



.article-section.hidden {

    display: none;

}



.section-content {

    max-width: 720px;

    width: 100%;

}



.section-title {

    font-size: 28px;

    font-weight: 700;

    color: var(--dark);

    margin-bottom: 24px;

    line-height: 1.3;

    word-wrap: break-word;

}



.section-subtitle {

    font-size: 22px;

    font-weight: 600;

    color: var(--dark);

    margin: 32px 0 16px;

    word-wrap: break-word;

}



.text-paragraph {

    font-size: 16px;

    line-height: 1.8;

    color: var(--gray-700);

    margin-bottom: 20px;

    word-wrap: break-word;

}



.brand-showcase {

    display: flex;

    align-items: center;

    gap: 24px;

    background: var(--gray-50);

    padding: 24px;

    border-radius: var(--border-radius-lg);

    margin: 24px 0 0;

    width: 100%;

    max-width: 100%;

    overflow: hidden; /* Taşmayı önle */

}



.brand-name-plate {

    display: flex;

    align-items: center;

    justify-content: center;

    min-width: 120px;

    width: 120px;

    height: 120px;

    flex-shrink: 0;

    padding: 12px;

    border-radius: var(--border-radius);

    background: white;

    border: 1px solid var(--gray-200);

    font-size: 17px;

    font-weight: 700;

    color: var(--gray-900);

    text-align: center;

    line-height: 1.25;

    word-wrap: break-word;

    overflow-wrap: break-word;

}



.brand-info {

    flex: 1;

    min-width: 0; /* Flex item taşmayı önle */

}



.brand-info h3,

.brand-info p {

    word-wrap: break-word;

    overflow-wrap: break-word;

}



.feature-list {

    list-style: none;

    display: flex;

    flex-direction: column;

    gap: 16px;

    margin: 24px 0;

    width: 100%;

}



.feature-list li {

    display: flex;

    align-items: flex-start;

    gap: 16px;

    padding: 16px;

    background: var(--gray-50);

    border-radius: var(--border-radius);

    width: 100%;

}



.feature-list i {

    color: var(--primary);

    font-size: 20px;

    margin-top: 2px;

    flex-shrink: 0;

}



.feature-list strong {

    display: block;

    font-weight: 600;

    color: var(--dark);

    margin-bottom: 4px;

    word-wrap: break-word;

}



.feature-list span {

    font-size: 14px;

    color: var(--gray-600);

    word-wrap: break-word;

}



.fault-list-card {

    background: var(--dark);

    color: white;

    padding: 32px;

    border-radius: var(--border-radius-lg);

    margin: 32px 0;

    width: 100%;

    max-width: 100%;

    overflow: hidden;

}



.fault-list-card h3 {

    font-size: 24px;

    font-weight: 700;

    margin-bottom: 24px;

    word-wrap: break-word;

}



.fault-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));

    gap: 16px;

    width: 100%;

}



.fault-item {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 12px;

    background: rgba(255, 255, 255, 0.1);

    border-radius: var(--border-radius-sm);

    font-size: 14px;

    word-wrap: break-word;

}



.fault-item i {

    color: var(--accent);

    font-size: 18px;

    flex-shrink: 0;

}



.process-steps {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));

    gap: 24px;

    margin: 32px 0;

    width: 100%;

}



.process-step {

    text-align: center;

    padding: 24px;

    background: var(--gray-50);

    border-radius: var(--border-radius-lg);

    transition: var(--transition);

}



.process-step:hover {

    background: white;

    box-shadow: var(--shadow-md);

    transform: translateY(-4px);

}



.step-number {

    width: 56px;

    height: 56px;

    background: var(--primary);

    color: white;

    font-size: 24px;

    font-weight: 700;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 16px;

}



.process-step h4 {

    font-size: 18px;

    font-weight: 600;

    color: var(--dark);

    margin-bottom: 8px;

    word-wrap: break-word;

}



.process-step p {

    font-size: 14px;

    color: var(--gray-600);

    word-wrap: break-word;

}



.final-cta {

    font-weight: 500;

    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

}



/* Read More Button */

.read-more-btn {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 20px;

    background: var(--gray-50);

    border: none;

    border-top: 1px solid var(--gray-200);

    font-weight: 600;

    font-size: 16px;

    color: var(--primary);

    cursor: pointer;

    transition: var(--transition);

}



.read-more-btn:hover {

    background: var(--gray-100);

}



.read-more-btn i {

    transition: var(--transition);

}



.read-more-btn:hover i {

    transform: translateY(4px);

}



/* Services Showcase (Homepage) */

.services-showcase {

    background: white;

    border-radius: var(--border-radius-xl);

    padding: 48px;

    box-shadow: var(--shadow);

    width: 100%;

    max-width: 100%;

    overflow: hidden;

}



.section-header {

    text-align: center;

    margin-bottom: 48px;

}



.section-header h2 {

    font-size: 36px;

    font-weight: 800;

    color: var(--dark);

    margin-bottom: 16px;

}



.section-header p {

    font-size: 18px;

    color: var(--gray-600);

}



.services-grid {

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));

    gap: 24px;

    width: 100%;

}



.service-card {

    background: white;

    border: 1px solid var(--gray-200);

    border-radius: var(--border-radius-lg);

    overflow: hidden;

    transition: var(--transition);

    width: 100%;

    max-width: 100%;

}



.service-card:hover {

    box-shadow: var(--shadow-lg);

    transform: translateY(-4px);

}



.service-image {

    position: relative;

    height: 200px;

    overflow: hidden;

    width: 100%;

}



.service-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: var(--transition);

}



.service-card:hover .service-image img {

    transform: scale(1.1);

}



.service-icon {

    position: absolute;

    bottom: 16px;

    left: 16px;

    width: 56px;

    height: 56px;

    background: white;

    border-radius: var(--border-radius);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 24px;

    color: var(--primary);

    box-shadow: var(--shadow-md);

}



.service-content {

    padding: 24px;

    width: 100%;

}



.service-content h3 {

    font-size: 20px;

    font-weight: 700;

    color: var(--dark);

    margin-bottom: 12px;

    word-wrap: break-word;

}



.service-content p {

    font-size: 14px;

    line-height: 1.6;

    color: var(--gray-600);

    margin-bottom: 16px;

    word-wrap: break-word;

}



.service-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    font-size: 14px;

    font-weight: 600;

    color: var(--primary);

}



.service-link i {

    transition: var(--transition);

}



.service-card:hover .service-link i {

    transform: translateX(4px);

}



/* ===== RIGHT SIDEBAR ===== */

.right-sidebar {

    display: flex;

    flex-direction: column;

    gap: 24px;

    width: 100%;

    max-width: 100%;

}



.sidebar-card {

    background: white;

    border-radius: var(--border-radius-lg);

    padding: 32px;

    box-shadow: var(--shadow);

    width: 100%;

    max-width: 100%;

    overflow: hidden;

}



.sidebar-card h3 {

    font-size: 20px;

    font-weight: 700;

    color: var(--dark);

    margin-bottom: 24px;

    word-wrap: break-word;

}



/* Services List */

.services-list {

    display: flex;

    flex-direction: column;

    gap: 8px;

}



.service-item {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 12px;

    background: var(--gray-50);

    border-radius: var(--border-radius);

    font-size: 14px;

    font-weight: 500;

    transition: var(--transition);

    word-wrap: break-word;

}



.service-item:hover,

.service-item.active {

    background: var(--primary);

    color: white;

}



.service-item i {

    font-size: 18px;

    flex-shrink: 0;

}



/* Brands List */

.brands-list {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

}



.brand-badge {

    padding: 8px 16px;

    background: var(--gray-100);

    border-radius: 50px;

    font-size: 13px;

    font-weight: 500;

    color: var(--gray-700);

    transition: var(--transition);

    white-space: nowrap;

}



.brand-badge:hover {

    background: var(--primary);

    color: white;

}



/* Reviews List */

.reviews-list {

    display: flex;

    flex-direction: column;

    gap: 20px;

}



.review-item {

    padding-bottom: 20px;

    border-bottom: 1px solid var(--gray-100);

}



.review-item:last-child {

    padding-bottom: 0;

    border-bottom: none;

}



.review-rating {

    display: flex;

    gap: 4px;

    color: #fbbf24;

    margin-bottom: 12px;

}



.review-item p {

    font-size: 14px;

    font-style: italic;

    color: var(--gray-700);

    margin-bottom: 12px;

    word-wrap: break-word;

}



.review-meta {

    display: flex;

    align-items: center;

    justify-content: space-between;

    font-size: 13px;

}



.review-meta strong {

    color: var(--dark);

}



.review-meta span {

    color: var(--gray-500);

}



/* Location Selector */

.location-card h3 {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 16px;

    font-size: 16px;

    font-weight: 700;

    color: var(--gray-900);

}



.location-card h3 i {

    color: var(--primary);

    flex-shrink: 0;

}



.location-selector label {

    display: block;

    font-size: 13px;

    font-weight: 600;

    color: var(--gray-700);

    margin-bottom: 8px;

    text-transform: uppercase;

    letter-spacing: 0.5px;

}



.location-selector label.mt-3 {

    margin-top: 20px;

}



.location-list {

    display: flex;

    flex-direction: column;

    gap: 2px;

    max-height: 400px;

    overflow-y: auto;

    padding-right: 4px;

}



/* Custom Scrollbar */

.location-list::-webkit-scrollbar {

    width: 6px;

}



.location-list::-webkit-scrollbar-track {

    background: var(--gray-100);

    border-radius: 10px;

}



.location-list::-webkit-scrollbar-thumb {

    background: var(--gray-400);

    border-radius: 10px;

}



.location-list::-webkit-scrollbar-thumb:hover {

    background: var(--primary);

}



.location-item {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 10px 12px;

    background: var(--gray-50);

    border-radius: var(--border-radius);

    font-size: 14px;

    font-weight: 500;

    color: var(--gray-700);

    transition: var(--transition);

    border-left: 3px solid transparent;

    word-wrap: break-word;

}



.location-item:hover {

    background: var(--gray-100);

    color: var(--primary);

    border-left-color: var(--primary);

    transform: translateX(2px);

}



.location-item.active {

    background: var(--primary);

    color: white;

    border-left-color: var(--primary);

    font-weight: 600;

}



.location-item.active i {

    color: white;

}



.location-item i {

    font-size: 12px;

    color: var(--gray-500);

    transition: var(--transition);

    flex-shrink: 0;

}



.location-item:hover i {

    color: var(--primary);

}



.location-item.active:hover {

    background: var(--primary);

    color: white;

}



/* ===== BRANDS SHOWCASE SECTION ===== */

.brands-showcase-section {

    padding: 80px 0;

    background: white;

    width: 100%;

    max-width: 100%;

    overflow: hidden;

}



.brands-showcase-grid {

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));

    gap: 24px;

    margin-top: 48px;

    width: 100%;

}



.brand-showcase-item {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 16px;

    padding: 32px 24px;

    background: var(--gray-50);

    border-radius: var(--border-radius-lg);

    transition: var(--transition);

    text-align: center;

}



.brand-showcase-item:hover {

    background: white;

    box-shadow: var(--shadow-lg);

    transform: translateY(-4px);

}







.brand-showcase-name {

    font-size: 17px;

    font-weight: 700;

    color: var(--gray-900);

    word-wrap: break-word;

}

.brand-showcase-suffix {

    font-size: 13px;

    font-weight: 600;

    color: var(--gray-600);

    word-wrap: break-word;

}



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

.main-footer {

    background: var(--dark);

    color: var(--gray-400);

    padding: 80px 0 32px;

    width: 100%;

    max-width: 100%;

    overflow: hidden;

}



.footer-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 48px;

    margin-bottom: 48px;

}

@media (min-width: 1200px) {

    .footer-grid {

        grid-template-columns: minmax(220px, 1.15fr) repeat(4, minmax(0, 1fr));

        gap: 36px;

        align-items: start;

    }

}

.footer-col-brand .footer-desc {

    max-width: 320px;

}

.footer-blog-intro {

    font-size: 13px;

    line-height: 1.6;

    color: var(--gray-500);

    margin: -8px 0 16px;

}

.footer-blog-intro a {

    color: var(--primary);

    font-weight: 600;

    text-decoration: none;

}

.footer-blog-intro a:hover {

    text-decoration: underline;

}

.footer-col-blog .footer-blog-list {

    gap: 10px;

}

.footer-col-blog .footer-blog-list li a {

    font-size: 13px;

    line-height: 1.45;

    display: inline-block;

}

.footer-col h4 {

    font-size: 18px;

    font-weight: 700;

    color: white;

    margin-bottom: 24px;

}



.footer-logo {

    display: flex;

    align-items: center;

    margin-bottom: 20px;

}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    text-decoration: none;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.footer-logo-link:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
    border-radius: 12px;
}

.footer-logo-img.site-logo {
    display: block;
    height: auto;
    width: auto;
    max-width: 200px;
    max-height: 42px;
    object-fit: contain;
    object-position: left center;
}



.footer-desc {

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 24px;

}



.social-links {

    display: flex;

    gap: 12px;

}



.social-links a {

    width: 40px;

    height: 40px;

    background: var(--gray-800);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--gray-400);

    transition: var(--transition);

}



.social-links a:hover {

    background: var(--primary);

    color: white;

}



.footer-col ul {

    list-style: none;

    display: flex;

    flex-direction: column;

    gap: 12px;

}



.footer-col ul li a {

    font-size: 14px;

    transition: var(--transition);

}



.footer-col ul li a:hover {

    color: white;

}



.contact-list li {

    display: flex;

    align-items: flex-start;

    gap: 12px;

}



.contact-list i {

    color: var(--primary);

    margin-top: 2px;

    flex-shrink: 0;

}



.footer-bottom {

    padding-top: 32px;

    border-top: 1px solid var(--gray-800);

    text-align: center;

}



.footer-bottom p {

    font-size: 14px;

}

.footer-bottom .footer-disclaimer {

    font-size: 12px;

    color: var(--gray-500);

    line-height: 1.55;

    max-width: 40rem;

    margin: 0 auto 12px;

}

.footer-bottom .footer-copyright {

    font-size: 12px;

    color: var(--gray-500);

    margin: 0;

}



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

@media (max-width: 1024px) {

    .desktop-nav,

    .desktop-only,

    .header-search {

        display: none !important;

    }

    

    .mobile-actions {

        display: flex;

    }

    

    .mobile-menu-search {

        display: flex;

        align-items: stretch;

    }

    

    .content-grid {

        grid-template-columns: 1fr !important;

        gap: 20px;

    }

    

    .brands-grid {

        grid-template-columns: repeat(3, 1fr);

    }

    

    .services-grid {

        grid-template-columns: 1fr !important;

        gap: 16px;

    }

    

    .fault-grid {

        grid-template-columns: 1fr !important;

    }

    

    .process-steps {

        grid-template-columns: 1fr !important;

    }

    

    .brands-showcase-grid {

        grid-template-columns: repeat(2, 1fr) !important;

    }

}



@media (max-width: 768px) {

    html, body {

        overflow-x: hidden !important;

        width: 100% !important;

        max-width: 100vw !important;

    }

    

    * {

        max-width: 100% !important;

    }

    

    .container {

        padding: 0 16px !important;

        width: 100% !important;

        max-width: 100% !important;

        overflow-x: hidden !important;

    }

    

    .header-content {

        height: 70px;

        padding: 0 16px;

    }

    

    .logo {

        font-size: 18px;

    }

    

    .logo-icon {

        width: 40px;

        height: 40px;

        font-size: 18px;

    }

    

    .mobile-call-btn,

    .mobile-menu-btn {

        width: 40px;

        height: 40px;

    }

    

    .mobile-call-btn {

        font-size: 16px;

    }

    

    .hero-section {

        padding: 80px 0 60px;

    }

    

    .breadcrumb {

        padding: 8px 16px;

        font-size: 12px;

        margin-bottom: 20px;

    }

    

    .hero-title {

        font-size: 28px !important;

        margin-bottom: 16px;

    }

    

    .hero-subtitle {

        font-size: 16px !important;

        margin-bottom: 24px;

    }

    

    .btn {

        padding: 14px 24px;

        font-size: 14px;

    }

    

    .stats-bar {

        margin: -30px 16px 0 16px !important;

        padding: 20px 16px !important;

        border-radius: 16px;

        width: calc(100% - 32px) !important;

    }

    

    .stats-grid {

        grid-template-columns: repeat(2, 1fr) !important;

        gap: 12px;

    }

    

    .stat-item {

        padding: 12px !important;

        gap: 10px;

        flex-direction: column;

        text-align: center;

    }

    

    .stat-item i {

        width: 48px !important;

        height: 48px !important;

        font-size: 20px !important;

    }

    

    .stat-item strong {

        font-size: 16px !important;

    }

    

    .stat-item span {

        font-size: 12px !important;

    }

    

    .main-content {

        padding: 40px 0;

    }

    

    .content-grid {

        grid-template-columns: 1fr !important;

        gap: 20px;

        padding: 0;

    }

    

    .left-column,

    .right-sidebar {

        width: 100% !important;

        max-width: 100% !important;

        overflow: hidden !important;

    }

    

    .service-article {

        border-radius: 16px;

        margin: 0 !important;

    }

    

    .article-hero {

        height: 250px !important;

        border-radius: 16px 16px 0 0 !important;

    }

    

    .article-hero .hero-content {

        padding: 20px !important;

    }

    

    .article-title {

        font-size: 20px !important;

        margin-bottom: 8px;

    }

    

    .article-subtitle {

        font-size: 14px !important;

    }

    

    .article-private-service-notice {

        font-size: 13px !important;

        margin-bottom: 10px !important;

    }

    

    .article-section {

        padding: 24px 20px !important;

    }

    .article-section--before-related-blog {

        padding-bottom: 14px !important;

    }

    .article-section.related-blog-strip {

        padding-top: 12px !important;

        padding-bottom: 14px !important;

        padding-left: 20px !important;

        padding-right: 20px !important;

    }

    .related-blog-strip + .article-section {

        padding-top: 18px !important;

    }

    .related-blog-strip .section-title.related-blog-strip-heading {

        font-size: 18px !important;

        margin-bottom: 6px !important;

    }

    

    .section-title {

        font-size: 20px !important;

        margin-bottom: 16px;

    }

    

    .section-subtitle {

        font-size: 18px !important;

        margin: 20px 0 12px;

    }

    

    .text-paragraph {

        font-size: 14px !important;

        line-height: 1.6;

        margin-bottom: 16px;

    }

    

    .brand-showcase {

        flex-direction: column;

        padding: 20px !important;

        margin: 20px 0 !important;

        gap: 16px;

    }

    

    .brand-name-plate {

        width: 100% !important;

        min-width: 0 !important;

        max-width: 320px;

        height: auto !important;

        min-height: 72px;

        margin: 0 auto;

    }

    

    .brand-info h3 {

        font-size: 16px !important;

        text-align: center;

    }

    

    .brand-info p {

        font-size: 13px !important;

        text-align: center;

    }

    

    .feature-list {

        gap: 12px;

        margin: 20px 0 !important;

    }

    

    .feature-list li {

        padding: 14px !important;

        gap: 12px;

    }

    

    .feature-list i {

        font-size: 18px !important;

    }

    

    .feature-list strong {

        font-size: 14px !important;

    }

    

    .feature-list span {

        font-size: 13px !important;

    }

    

    .fault-list-card {

        padding: 20px !important;

        margin: 20px 0 !important;

    }

    

    .fault-list-card h3 {

        font-size: 18px !important;

        margin-bottom: 16px;

    }

    

    .fault-grid {

        grid-template-columns: 1fr !important;

        gap: 10px;

    }

    

    .fault-item {

        padding: 12px !important;

        font-size: 13px !important;

        gap: 10px;

    }

    

    .fault-item i {

        font-size: 16px !important;

    }

    

    .process-steps {

        grid-template-columns: 1fr !important;

        gap: 16px;

        margin: 20px 0 !important;

    }

    

    .process-step {

        padding: 20px !important;

    }

    

    .step-number {

        width: 48px !important;

        height: 48px !important;

        font-size: 20px !important;

        margin-bottom: 12px;

    }

    

    .process-step h4 {

        font-size: 16px !important;

        margin-bottom: 8px;

    }

    

    .process-step p {

        font-size: 13px !important;

    }

    

    .read-more-btn {

        padding: 16px !important;

        font-size: 14px !important;

        gap: 8px;

    }

    

    .services-showcase {

        padding: 24px 20px !important;

        border-radius: 16px;

        margin: 0 !important;

    }

    

    .section-header {

        margin-bottom: 24px;

    }

    

    .section-header h2 {

        font-size: 24px !important;

        margin-bottom: 12px;

    }

    

    .section-header p {

        font-size: 14px !important;

    }

    

    .services-grid {

        grid-template-columns: 1fr !important;

        gap: 16px;

    }

    

    .service-card {

        margin: 0 !important;

    }

    

    .service-image {

        height: 160px !important;

    }

    

    .service-icon {

        width: 48px !important;

        height: 48px !important;

        font-size: 20px !important;

        bottom: 12px;

        left: 12px;

    }

    

    .service-content {

        padding: 20px !important;

    }

    

    .service-content h3 {

        font-size: 16px !important;

        margin-bottom: 10px;

    }

    

    .service-content p {

        font-size: 13px !important;

        margin-bottom: 12px;

    }

    

    .service-link {

        font-size: 13px !important;

    }

    

    .sidebar-card {

        padding: 20px !important;

        margin: 0 !important;

        border-radius: 16px;

    }

    

    .sidebar-card h3 {

        font-size: 16px !important;

        margin-bottom: 16px;

    }

    

    .service-item,

    .location-item {

        padding: 12px !important;

        font-size: 13px !important;

        gap: 10px;

    }

    

    .service-item i,

    .location-item i {

        font-size: 16px !important;

    }

    

    .brands-list {

        gap: 8px;

    }

    

    .brand-badge {

        padding: 8px 12px !important;

        font-size: 12px !important;

    }

    

    .review-item {

        padding-bottom: 16px;

    }

    

    .review-rating {

        margin-bottom: 10px;

    }

    

    .review-item p {

        font-size: 13px !important;

        margin-bottom: 10px;

    }

    

    .review-meta {

        font-size: 12px !important;

        flex-direction: column;

        align-items: flex-start;

        gap: 4px;

    }

    

    .location-card h3 {

        font-size: 14px !important;

        margin-bottom: 12px;

    }

    

    .location-selector label {

        font-size: 11px !important;

        margin-bottom: 8px;

    }

    

    .location-selector label.mt-3 {

        margin-top: 16px;

    }

    

    .location-list {

        max-height: 300px;

    }

    

    .brands-showcase-section {

        padding: 40px 0;

    }

    

    .brands-showcase-grid {

        grid-template-columns: repeat(2, 1fr) !important;

        gap: 12px;

        margin-top: 24px;

    }

    

    .brand-showcase-item {

        padding: 20px 16px !important;

        gap: 12px;

    }

    



    

    .brand-showcase-name {

        font-size: 15px !important;

    }

    .brand-showcase-suffix {

        font-size: 12px !important;

    }

    

    .blog-card-grid {

        grid-template-columns: 1fr;

        gap: 16px;

    }

    .blog-card-link {

        padding: 18px 18px 16px;

    }

    .blog-category-block {

        margin-top: 32px;

    }

    .blog-archive-disclaimer {

        margin-top: 28px;

        padding: 16px 18px;

    }

    .blog-tag-cloud {
        padding: 18px 16px 14px;
    }

    .blog-tag-cloud-link {
        font-size: 12px;
        padding: 7px 12px;
    }

    .blog-article-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    

    .footer-grid {

        grid-template-columns: 1fr;

        gap: 32px;

        margin-bottom: 32px;

    }

    

    .footer-col h4 {

        font-size: 16px;

        margin-bottom: 16px;

    }

    

    .footer-logo {

        margin-bottom: 16px;

    }

    .footer-logo-img.site-logo {

        max-height: 36px;

        max-width: 180px;

    }

    .footer-logo-link {

        padding: 8px 12px;

    }

    

    .footer-desc {

        font-size: 13px;

        margin-bottom: 20px;

    }

    

    .social-links {

        gap: 10px;

    }

    

    .social-links a {

        width: 36px;

        height: 36px;

        font-size: 14px;

    }

    

    .footer-col ul {

        gap: 10px;

    }

    

    .footer-col ul li a {

        font-size: 13px;

    }

    

    .contact-list li {

        gap: 10px;

    }

    

    .contact-list i {

        font-size: 14px;

    }

    

    .main-footer {

        padding: 40px 0 24px;

    }

    

    .footer-bottom {

        padding-top: 24px;

    }

    

    .footer-bottom p {

        font-size: 12px;

    }

}



@media (max-width: 480px) {

    .container {

        padding: 0 12px !important;

    }

    

    .stats-bar {

        margin: -30px 12px 0 12px !important;

        width: calc(100% - 24px) !important;

    }

    

    .stats-grid {

        grid-template-columns: 1fr 1fr !important;

        gap: 8px;

    }

    

    .hero-title {

        font-size: 24px !important;

    }

    

    .hero-subtitle {

        font-size: 14px !important;

    }

    

    .brands-showcase-grid {

        grid-template-columns: repeat(2, 1fr) !important;

        gap: 10px;

    }

}



/* ===== UTILITY CLASSES ===== */

.hidden {

    display: none !important;

}



.text-center {

    text-align: center;

}



.text-primary {

    color: var(--primary);

}



/* ===== SCROLLBAR ===== */

::-webkit-scrollbar {

    width: 6px;

}



::-webkit-scrollbar-track {

    background: var(--gray-100);

}



::-webkit-scrollbar-thumb {

    background: var(--gray-400);

    border-radius: 3px;

}



::-webkit-scrollbar-thumb:hover {

    background: var(--gray-500);

}



/* ===== LOADING STATE ===== */

body:not(.loaded) {

    opacity: 0;

}



body.loaded {

    opacity: 1;

    transition: opacity 0.3s ease;

}







/* Reviews Swiper */

.reviews-swiper {

    width: 100%;

    padding-bottom: 32px;

}



.reviews-swiper .swiper-slide {

    height: auto;

}



.reviews-swiper .review-item {

    padding-bottom: 0;

    border-bottom: none;

    height: 100%;

}



.reviews-swiper .swiper-pagination {

    bottom: 0;

}



.reviews-swiper .swiper-pagination-bullet {

    width: 6px;

    height: 6px;

    background: var(--gray-300);

    opacity: 1;

}



.reviews-swiper .swiper-pagination-bullet-active {

    background: var(--primary);

    width: 20px;

    border-radius: 3px;

}

/* ===== MOBİL STİCKY TELEFON ARAMA BUTONU ===== */

.mobile-call-button {

    position: fixed;

    bottom: 20px;

    left: 20px;

    width: 60px;

    height: 60px;

    background: linear-gradient(135deg, #10b981 0%, #059669 100%);

    color: white;

    border: none;

    border-radius: 50%;

    display: none; /* Desktop'ta gizli */

    align-items: center;

    justify-content: center;

    font-size: 26px;

    cursor: pointer;

    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.5);

    z-index: 998;

    text-decoration: none;

    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    animation: phoneRing 2s infinite;

}



.mobile-call-button:hover {

    transform: scale(1.1);

    box-shadow: 0 6px 24px rgba(16, 185, 129, 0.6);

}



.mobile-call-button:active {

    transform: scale(0.95);

}



/* Telefon zil animasyonu */

@keyframes phoneRing {

    0%, 100% {

        transform: rotate(0deg);

        box-shadow: 0 4px 20px rgba(16, 185, 129, 0.5);

    }

    10%, 30% {

        transform: rotate(-10deg);

    }

    20%, 40% {

        transform: rotate(10deg);

        box-shadow: 0 4px 20px rgba(16, 185, 129, 0.7), 0 0 0 10px rgba(16, 185, 129, 0.1);

    }

}



/* Pulse efekti */

.mobile-call-button::before {

    content: '';

    position: absolute;

    inset: -5px;

    border-radius: 50%;

    border: 2px solid #10b981;

    opacity: 0;

    animation: phonePulse 2s infinite;

}



@keyframes phonePulse {

    0% {

        transform: scale(0.8);

        opacity: 0;

    }

    50% {

        transform: scale(1.2);

        opacity: 0.4;

    }

    100% {

        transform: scale(1.4);

        opacity: 0;

    }

}



/* Mobilde göster */

@media (max-width: 1024px) {

    .mobile-call-button {

        display: flex;

    }

}



/* Çok küçük ekranlarda konumu ayarla */

@media (max-width: 480px) {

    .mobile-call-button {

        bottom: 16px;

        left: 16px;

        width: 56px;

        height: 56px;

        font-size: 24px;

    }

}



/* Telefon ikonu içinde animasyon */

.mobile-call-button i {

    animation: phoneShake 0.5s infinite;

}



@keyframes phoneShake {

    0%, 100% { transform: rotate(0deg); }

    25% { transform: rotate(-5deg); }

    75% { transform: rotate(5deg); }

}

/* Masaüstünde tüm section'lar görünsün, butonlar gizli */

@media (min-width: 769px) {

    .article-section {

        display: block !important;

        opacity: 1 !important;

        max-height: none !important;

    }

    

    .read-more-btn.mobile-only {

        display: none !important;

    }

}



/* Mobilde hidden class'ı çalışsın, butonlar görünsün */

@media (max-width: 768px) {

    .article-section.hidden {

        display: none;

    }

    

    .read-more-btn.mobile-only {

        display: flex !important;

    }

}/* Top Bar Disclaimer */
.top-bar-disclaimer {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: rgba(255,255,255,0.9);
    font-size: 12.5px;
    font-weight: 400;
    line-height: 1.4;
    z-index: 1001;
    position: relative;
    letter-spacing: 0.2px;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.topbar-text {
    display: flex;
    align-items: center;
    gap: 6px;
}
.topbar-text i {
    color: var(--accent);
    font-size: 13px;
}
.topbar-text strong {
    color: var(--accent);
}
.topbar-contact {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 13px;
}
.topbar-contact i {
    color: #4ade80;
    animation: phonePulse 2s infinite;
}
.topbar-contact a {
    color: white;
    text-decoration: none;
}
.topbar-contact a:hover {
    text-decoration: underline;
}
@keyframes phonePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.15); }
}
@media (max-width: 768px) {
    .top-bar-disclaimer {
        font-size: 10.5px;
    }
    .topbar-inner {
        padding: 5px 12px;
        flex-direction: column;
        gap: 2px;
    }
    .topbar-contact {
        font-size: 11px;
    }
}
/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 9999;
    flex-direction: column;
    gap: 15px;
    border: 1px solid var(--gray-200);
    max-width: 600px;
}
.cookie-banner .cookie-content p {
    margin: 0;
    font-size: 13px;
    color: var(--gray-700);
    line-height: 1.5;
}
.cookie-banner .cookie-content a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 500;
}
.cookie-banner .cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
}
.cookie-btn-necessary {
    border: 1px solid var(--gray-300);
    background: var(--white);
    color: var(--gray-800);
}
@media (min-width: 768px) {
    .cookie-banner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* İletişim formu (kurumsal) */
.hp-field {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.contact-page-form {
    margin: 24px 0 32px;
    padding: 24px;
    background: var(--gray-50);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}
.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 640px) {
    .contact-form-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.contact-page-form .form-field {
    margin-bottom: 16px;
}
.contact-page-form .form-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--gray-800);
}
.contact-page-form .form-field .req {
    color: var(--primary);
}
.contact-page-form input[type="text"],
.contact-page-form input[type="tel"],
.contact-page-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    box-sizing: border-box;
}
.contact-page-form textarea {
    resize: vertical;
    min-height: 120px;
}
.contact-page-form .form-field--checkbox {
    margin-bottom: 20px;
}
.contact-page-form .kvkk-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 400;
    cursor: pointer;
}
.contact-page-form .kvkk-label input {
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}
.contact-form-submit {
    min-height: 44px;
    padding-left: 24px;
    padding-right: 24px;
}
.form-notice {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}
.form-notice--success {
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    color: #065f46;
}
.form-notice--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}
.form-notice p {
    margin: 0;
}

/* İletişim sayfası — düzen ve kartlar */
.contact-page-inner {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}
.contact-page-lead {
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 28px;
}
.contact-channels {
    list-style: none;
    margin: 0 0 36px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 768px) {
    .contact-channels {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}
.contact-channels li {
    margin: 0;
    padding: 0;
    min-width: 0;
}
.contact-channel-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    min-height: 100%;
    padding: 22px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}
.contact-channel-card--interactive:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}
.contact-channel-card--interactive:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: 3px;
}
.contact-channel-card__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-sm);
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.08), rgba(59, 130, 246, 0.12));
    color: var(--primary);
    font-size: 1.15rem;
    margin-bottom: 14px;
}
.contact-channel-card__label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--gray-500);
    margin-bottom: 6px;
}
.contact-channel-card__value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.35;
    word-break: break-word;
}
.contact-channel-card__value--multiline {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray-800);
}
.contact-channel-card__hint {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.45;
    color: var(--gray-600);
}
.contact-page-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
    margin-bottom: 8px;
}
@media (min-width: 992px) {
    .contact-page-split {
        grid-template-columns: minmax(260px, 1fr) minmax(0, 1.2fr);
        gap: 36px;
    }
}
.contact-page-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-sidebar-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 22px 22px 20px;
    box-shadow: var(--shadow-sm);
}
.contact-sidebar-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-sidebar-card__title i {
    color: var(--primary);
    font-size: 1rem;
}
.contact-sidebar-card__text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-700);
    margin: 0 0 10px;
}
.contact-sidebar-card__text:last-child {
    margin-bottom: 0;
}
.contact-sidebar-card__text--compact {
    margin-top: 12px;
    font-size: 13px;
    color: var(--gray-600);
}
.contact-sidebar-card__text a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}
.contact-sidebar-card__text a:hover {
    text-decoration: underline;
}
.contact-form-panel {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    padding: 26px 24px 28px;
    box-shadow: var(--shadow-md);
}
.contact-form-panel__title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}
.contact-form-panel__intro {
    font-size: 14px;
    line-height: 1.55;
    color: var(--gray-600);
    margin: 0 0 20px;
}
.contact-form-panel .contact-page-form {
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
}
.contact-form-panel .form-notice {
    margin-bottom: 16px;
}
.contact-page-form input:focus-visible,
.contact-page-form textarea:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: 1px;
    border-color: var(--primary);
}

/* Content Accordion */
.content-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 0;
}
.content-accordion-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}
.content-accordion-item:hover {
    border-color: var(--gray-300);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.content-accordion-item.active {
    border-color: var(--primary-light);
    box-shadow: 0 6px 16px rgba(30, 64, 175, 0.08);
}
.content-accordion-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}
.content-accordion-trigger .trigger-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    transition: color 0.3s ease;
}
.content-accordion-item.active .trigger-title {
    color: var(--primary);
}
.content-accordion-trigger i {
    color: var(--gray-400);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--gray-50);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 13px;
}
.content-accordion-item.active .content-accordion-trigger i {
    transform: rotate(180deg);
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 8px rgba(30, 64, 175, 0.3);
}
.content-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.content-accordion-inner {
    padding: 0 24px 24px 24px;
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 15px;
}
.content-accordion-inner p:last-child {
    margin-bottom: 0;
}
.content-accordion-item.active .content-accordion-trigger {
    border-bottom: 1px solid transparent;
}

/* Corporate Dropdown */
.corporate-dropdown {
    width: 250px;
    padding: 15px;
}
.corporate-grid {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.corporate-item {
    display: block;
    padding: 10px 15px;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
}
.corporate-item:hover {
    background: var(--brand-50, #f0f9ff);
    color: var(--primary);
    padding-left: 20px;
}
/* Emergency Widget Hover Effect */
.emergency-card a:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6) !important;
}
