/*
Theme Name: Tekniksan Yetkili Servis
Theme URI: https://tekniksanyetkiliservis.com
Author: Tekniksan Elektrik & Elektronik
Author URI: https://tekniksanyetkiliservis.com
Description: Tekniksan Elektrik & Elektronik Yetkili Servis - Gelişmiş WordPress Teması. DeWalt, Stanley, Black&Decker, Milwaukee, AEG, Ryobi, Alfra ve Flora resmi yetkili servisi; Bosch ve Makita yetkili servis harici özel teknik servisi. Yüksek dönüşümlü (High CTA), SEO uyumlu, hızlı, mobil öncelikli ve kurumsal güven veren teknik servis teması.
Version: 1.0.0
Tested up to: 6.8
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: tekniksan
Tags: corporate, technical-service, high-cta, seo-ready, mobile-first, woocommerce
*/

/* ==========================================================================
   CSS Custom Properties & Design Tokens
   ========================================================================== */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --surface-card: #ffffff;
  --surface-card-hover: #ffffff;
  
  --color-cta: #FABB00;
  --color-cta-hover: #e5ab00;
  --color-accent: #FF6A00;
  --color-accent-hover: #e55e00;
  
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --text-inverse: #ffffff;
  
  --border-light: #e2e8f0;
  --border-medium: #cbd5e1;
  --border-focus: #FABB00;
  
  --success: #16a34a;
  --success-bg: #dcfce7;
  --warning: #eab308;
  --danger: #ef4444;
  --info: #0284c7;
  
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 12px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -1px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 28px -4px rgba(15, 23, 42, 0.1), 0 4px 8px -2px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 20px 40px -8px rgba(15, 23, 42, 0.12), 0 8px 16px -4px rgba(15, 23, 42, 0.06);
  --shadow-cta: 0 6px 20px -2px rgba(250, 187, 0, 0.45);
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  --container-max: 1280px;
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   CSS Reset & Base
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-bottom: 72px; /* Space for mobile bottom bar */
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 4vw + 1rem, 3.25rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 2.5vw + 0.8rem, 2.4rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.25rem, 1.5vw + 0.6rem, 1.6rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1.05rem; }
h6 { font-size: 0.95rem; }

/* ==========================================================================
   Layout Containers & Utilities
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.container-narrow {
  max-width: 960px;
}

.section {
  padding-top: 70px;
  padding-bottom: 70px;
  position: relative;
}

@media (min-width: 992px) {
  .section {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}

.section-bg-alt {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background-color: rgba(250, 187, 0, 0.15);
  color: #925f00;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  border: 1px solid rgba(250, 187, 0, 0.3);
}

.section-title {
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==========================================================================
   Buttons & CTA System
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  white-space: nowrap;
  text-align: center;
  position: relative;
}

.btn-primary, .btn-cta {
  background-color: var(--color-cta);
  color: #0f172a !important; /* CRITICAL: Maksimum kontrast koyu metin */
  box-shadow: var(--shadow-cta);
  border: 2px solid var(--color-cta);
}

.btn-primary:hover, .btn-cta:hover {
  background-color: var(--color-cta-hover);
  border-color: var(--color-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -2px rgba(250, 187, 0, 0.55);
}

.btn-secondary {
  background-color: #0f172a;
  color: #ffffff !important;
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  background-color: #1e293b;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-medium);
}

.btn-outline:hover {
  border-color: var(--color-cta);
  background-color: rgba(250, 187, 0, 0.08);
  color: var(--text-primary);
}

.btn-accent {
  background-color: var(--color-accent);
  color: #ffffff !important;
  box-shadow: 0 6px 20px -2px rgba(255, 106, 0, 0.4);
}

.btn-accent:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #ffffff !important;
  box-shadow: 0 6px 20px -2px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  background-color: #20ba59;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
}

.btn-pulse {
  animation: pulse-cta 2.2s infinite;
}

@keyframes pulse-cta {
  0% {
    box-shadow: 0 0 0 0 rgba(250, 187, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(250, 187, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(250, 187, 0, 0);
  }
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

/* WordPress Admin Bar Compatibility */
body.admin-bar .site-header {
  top: 32px !important;
}
@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px !important;
  }
}

/* Top Announcement Bar */
.top-bar {
  background-color: #0f172a;
  color: #f8fafc;
  font-size: 0.84rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--color-cta);
}

.top-bar-contacts {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #cbd5e1;
  transition: color var(--transition-fast);
}

.top-bar-link:hover {
  color: var(--color-cta);
}

/* Main Navigation Bar */
.main-header {
  padding: 14px 0;
}

.main-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-logo-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #FABB00, #FF6A00);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  font-weight: 900;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(250, 187, 0, 0.35);
  flex-shrink: 0;
}

.site-brand-text {
  display: flex;
  flex-direction: column;
}

.site-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.site-subtitle {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c2410c;
}

/* Search in Header */
.header-search-wrap {
  flex: 1;
  max-width: 380px;
  position: relative;
  display: none;
}

@media (min-width: 1024px) {
  .header-search-wrap {
    display: block;
  }
}

.live-search-form {
  position: relative;
  width: 100%;
}

.live-search-input {
  width: 100%;
  height: 44px;
  padding: 0 44px 0 16px;
  font-size: 0.9rem;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-full);
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  outline: none;
  transition: all var(--transition-normal);
}

.live-search-input:focus {
  border-color: var(--color-cta);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(250, 187, 0, 0.15);
}

.live-search-btn {
  position: absolute;
  right: 4px;
  top: 4px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: var(--color-cta);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast);
}

.live-search-btn:hover {
  background-color: var(--color-cta-hover);
}

/* Search Dropdown Results */
.search-results-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  max-height: 420px;
  overflow-y: auto;
  z-index: 1100;
  display: none;
  padding: 12px;
}

.search-results-dropdown.is-visible {
  display: block;
}

.search-result-group-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  padding: 6px 10px;
  margin-top: 6px;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: var(--radius-md);
  transition: background-color var(--transition-fast);
}

.search-result-item:hover, .search-result-item.is-selected {
  background-color: var(--bg-secondary);
}

.search-result-icon {
  width: 34px;
  height: 34px;
  background: rgba(250, 187, 0, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b45309;
  flex-shrink: 0;
}

.search-result-title {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-primary);
}

.search-result-meta {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

/* Nav Menu */
.primary-nav {
  display: none;
}

@media (min-width: 992px) {
  .primary-nav {
    display: flex;
    align-items: center;
    gap: 24px;
  }
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 6px 0;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: #b45309;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-cta);
  transition: width var(--transition-normal);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-call-sticky {
  display: none;
}

@media (min-width: 640px) {
  .btn-call-sticky {
    display: inline-flex;
  }
}

.mobile-nav-toggle {
  width: 42px;
  height: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background-color: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

@media (min-width: 992px) {
  .mobile-nav-toggle {
    display: none;
  }
}

.mobile-nav-toggle span {
  width: 22px;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 360px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 2000;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  transition: right var(--transition-smooth);
  overflow-y: auto;
  padding: 24px;
}

.mobile-drawer.is-open {
  right: 0;
}

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.mobile-drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.mobile-drawer-close {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-secondary);
  border-radius: var(--radius-full);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.mobile-nav-item a {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 580px;
  padding: 60px 0 80px;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  overflow: hidden;
}

@media (min-width: 992px) {
  .hero-section {
    min-height: 640px;
    padding: 90px 0 100px;
  }
}

/* Background image overlay using the real shop photo */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  filter: brightness(1.05) saturate(1.1);
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* Light overlay as per design instructions */
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.94) 0%, 
    rgba(255, 255, 255, 0.88) 45%, 
    rgba(255, 255, 255, 0.78) 100%);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 780px;
}

.hero-badge-strip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  border: 1px solid rgba(250, 187, 0, 0.4);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
}

.hero-badge-strip .verified-dot {
  width: 10px;
  height: 10px;
  background-color: #16a34a;
  border-radius: var(--radius-full);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.25);
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(22, 163, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

.hero-badge-strip span {
  font-size: 0.84rem;
  font-weight: 700;
  color: #0f172a;
}

.hero-title {
  margin-bottom: 20px;
  color: #0f172a;
}

.hero-title .highlight {
  position: relative;
  display: inline-block;
  color: #0f172a;
  z-index: 1;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 8%;
  left: -2px;
  right: -2px;
  height: 38%;
  background-color: rgba(250, 187, 0, 0.45);
  z-index: -1;
  border-radius: 4px;
  transform: rotate(-0.5deg);
}

.hero-lead {
  font-size: clamp(1.05rem, 1.2vw + 0.5rem, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 44px;
}

/* Hero Stats Row */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-medium);
}

@media (min-width: 640px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
}

.stat-number span {
  color: var(--color-accent);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-top: 4px;
}

/* ==========================================================================
   Trust Badges Strip
   ========================================================================== */
.trust-strip {
  background-color: #0f172a;
  color: #ffffff;
  padding: 24px 0;
  position: relative;
  z-index: 10;
  border-bottom: 3px solid var(--color-cta);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon-box {
  width: 48px;
  height: 48px;
  background: rgba(250, 187, 0, 0.15);
  border: 1px solid rgba(250, 187, 0, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cta);
  font-size: 1.35rem;
  flex-shrink: 0;
}

.trust-text-title {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
}

.trust-text-desc {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 2px;
}

/* ==========================================================================
   Authorized Brands Section (Orijinal Logolar)
   ========================================================================== */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-items: stretch;
}

@media (min-width: 640px) {
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.brand-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.brand-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-cta);
  box-shadow: var(--shadow-lg);
}

.brand-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: var(--color-cta);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.brand-card:hover::before {
  opacity: 1;
}

.brand-logo-wrap {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background-color: #ffffff; /* Beyaz zemin üzerinde orijinal renkleriyle */
  padding: 8px;
}

.brand-logo-img {
  max-width: 150px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform var(--transition-normal);
}

.brand-card:hover .brand-logo-img {
  transform: scale(1.06);
}

.brand-card-badge {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 3px 10px;
  background-color: var(--bg-secondary);
  color: var(--text-secondary);
  border-radius: var(--radius-full);
  margin-bottom: 10px;
  border: 1px solid var(--border-light);
  white-space: nowrap;
}

.brand-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.brand-card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1 1 auto;
  min-height: 3.8em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.brand-card-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin-top: auto;
}

.brand-card-actions .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.brand-card-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: #b45309;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.brand-card-link:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Services Section & 38 Categories Tabs
   ========================================================================== */
.services-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.filter-pill {
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  background-color: #ffffff;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.filter-pill:hover {
  border-color: var(--color-cta);
  color: var(--text-primary);
  background-color: var(--bg-secondary);
}

.filter-pill.is-active {
  background-color: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
  box-shadow: var(--shadow-sm);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.service-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(250, 187, 0, 0.6);
}

.service-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.service-icon-wrap {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, rgba(250, 187, 0, 0.2), rgba(255, 106, 0, 0.15));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b45309;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.service-badge {
  font-size: 0.74rem;
  font-weight: 700;
  padding: 3px 10px;
  background-color: var(--success-bg);
  color: var(--success);
  border-radius: var(--radius-full);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--text-secondary);
}

.service-feature-item svg {
  color: var(--success);
  flex-shrink: 0;
}

.service-card-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

/* ==========================================================================
   Before / After Interactive Slider Component
   ========================================================================== */
.before-after-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-secondary) 100%);
  overflow: hidden;
}

.before-after-container {
  max-width: 900px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  overflow: hidden;
  padding: 16px;
}

@media (min-width: 768px) {
  .before-after-container {
    padding: 24px;
  }
}

.ba-slider-wrap {
  --ba-pos: 50%;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
  cursor: ew-resize;
  background-color: #0f172a;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
}

.ba-image-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ba-image-layer picture {
  display: block;
  width: 100%;
  height: 100%;
}

.ba-image-layer img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

/* Base Layer: Öncesi (Arızalı Parçalar - Solda) */
.ba-layer-before {
  z-index: 1;
}

/* Overlay Layer: Sonrası (Orijinal Parçalarla Sıfırlanmış - Sağda) */
.ba-layer-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  clip-path: inset(0 0 0 var(--ba-pos, 50%));
  -webkit-clip-path: inset(0 0 0 var(--ba-pos, 50%));
  will-change: clip-path;
}

/* The Handle: Tam boy dikey beyaz çizgi ve merkez buton */
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-pos, 50%);
  width: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.ba-handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  pointer-events: none;
}

.ba-handle-button {
  position: relative;
  width: 46px;
  height: 46px;
  background-color: var(--color-cta);
  color: #0f172a;
  border: 3px solid #ffffff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
  font-size: 1.15rem;
  font-weight: 700;
  cursor: ew-resize;
  pointer-events: auto;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ba-slider-wrap:hover .ba-handle-button,
.ba-slider-wrap:active .ba-handle-button {
  transform: scale(1.1);
  box-shadow: 0 6px 22px rgba(250, 187, 0, 0.6);
}

/* Floating labels */
.ba-label {
  position: absolute;
  top: 18px;
  padding: 8px 16px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  z-index: 5;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.ba-label-before {
  left: 18px;
  background-color: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.ba-label-after {
  right: 18px;
  background-color: rgba(22, 163, 74, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.ba-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
  padding: 12px 6px 4px;
}

.ba-caption-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.ba-caption-text strong {
  color: var(--text-primary);
}

/* ==========================================================================
   Real Shop Gallery Section (Dükkan Fotoğrafları)
   ========================================================================== */
.shop-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .shop-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.shop-gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  background-color: var(--bg-secondary);
}

.shop-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.shop-gallery-item:hover .shop-gallery-img {
  transform: scale(1.08);
}

.shop-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, transparent 60%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  transition: opacity var(--transition-normal);
}

.shop-gallery-item:hover .shop-gallery-overlay {
  opacity: 1;
}

.shop-gallery-title {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
}

/* ==========================================================================
   Servis Takip (Repair Tracker) UI
   ========================================================================== */
.repair-tracker-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 32px 24px;
  max-width: 840px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .repair-tracker-card {
    padding: 44px 40px;
  }
}

.tracker-form-wrap {
  margin-bottom: 36px;
}

.tracker-input-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 640px) {
  .tracker-input-group {
    flex-direction: row;
  }
}

.tracker-input {
  flex: 1;
  height: 54px;
  padding: 0 20px;
  font-size: 1.05rem;
  border: 2px solid var(--border-medium);
  border-radius: var(--radius-md);
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  outline: none;
  transition: all var(--transition-normal);
}

.tracker-input:focus {
  border-color: var(--color-cta);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(250, 187, 0, 0.2);
}

.tracker-quick-examples {
  margin-top: 12px;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.tracker-quick-examples span {
  font-weight: 600;
  color: var(--text-secondary);
}

.tracker-example-btn {
  color: #b45309;
  text-decoration: underline;
  cursor: pointer;
  margin: 0 4px;
  font-weight: 600;
}

/* Tracker Result Box */
.tracker-result-box {
  display: none;
  padding-top: 28px;
  border-top: 1px solid var(--border-light);
  animation: fadeIn 0.4s ease;
}

.tracker-result-box.is-active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.tracker-summary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
  background-color: var(--bg-secondary);
  padding: 16px 20px;
  border-radius: var(--radius-md);
}

.tracker-ticket-id {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
}

.tracker-status-pill {
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-in-progress { background-color: #fef08a; color: #854d0e; }
.status-ready { background-color: #bbf7d0; color: #166534; }
.status-waiting-part { background-color: #fed7aa; color: #9a3412; }

/* Stepper Component */
.tracker-stepper {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 40px 0 32px;
}

.tracker-stepper::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 24px;
  right: 24px;
  height: 4px;
  background-color: var(--border-light);
  z-index: 1;
}

.tracker-progress-bar {
  position: absolute;
  top: 20px;
  left: 24px;
  height: 4px;
  background-color: var(--color-cta);
  z-index: 2;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.tracker-step {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.tracker-step-circle {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: #ffffff;
  border: 3px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: all var(--transition-normal);
}

.tracker-step.is-done .tracker-step-circle {
  background-color: #16a34a;
  border-color: #16a34a;
  color: #ffffff;
}

.tracker-step.is-current .tracker-step-circle {
  background-color: var(--color-cta);
  border-color: #0f172a;
  color: #0f172a;
  box-shadow: 0 0 0 6px rgba(250, 187, 0, 0.25);
}

.tracker-step-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-top: 10px;
}

.tracker-step.is-current .tracker-step-title {
  color: #0f172a;
  font-weight: 800;
}

.tracker-details-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
}

.tracker-details-table tr {
  border-bottom: 1px solid var(--border-light);
}

.tracker-details-table th, .tracker-details-table td {
  padding: 12px 14px;
  font-size: 0.92rem;
  text-align: left;
}

.tracker-details-table th {
  color: var(--text-secondary);
  font-weight: 600;
  width: 35%;
}

.tracker-details-table td {
  color: var(--text-primary);
  font-weight: 700;
}

/* ==========================================================================
   Google Reviews 5-Star Slider
   ========================================================================== */
.reviews-section {
  background-color: var(--bg-secondary);
}

.reviews-carousel-wrap {
  position: relative;
  overflow: hidden;
  padding: 12px 0 40px;
}

.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease-out;
  cursor: grab;
}

.reviews-track:active {
  cursor: grabbing;
}

.review-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  min-width: 320px;
  max-width: 380px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.review-author-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #cbd5e1, #94a3b8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  font-weight: 700;
  font-size: 1.1rem;
}

.review-author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.review-verified-badge {
  font-size: 0.74rem;
  color: var(--success);
  display: flex;
  align-items: center;
  gap: 4px;
}

.google-logo-icon {
  width: 24px;
  height: 24px;
}

.review-stars {
  color: #f59e0b;
  display: flex;
  gap: 3px;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.review-content {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

.review-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.reviews-nav-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.reviews-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: #ffffff;
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.reviews-nav-btn:hover {
  background-color: var(--color-cta);
  border-color: var(--color-cta);
  color: #0f172a;
}

/* ==========================================================================
   FAQ Accordion Section
   ========================================================================== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast);
}

.faq-item.is-open {
  border-color: var(--color-cta);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: left;
  background-color: #ffffff;
  transition: background-color var(--transition-fast);
}

.faq-question:hover {
  background-color: var(--bg-secondary);
}

.faq-toggle-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background-color: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-normal);
}

.faq-item.is-open .faq-toggle-icon {
  transform: rotate(180deg);
  background-color: var(--color-cta);
  color: #0f172a;
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* ==========================================================================
   Footer & Contact Information
   ========================================================================== */
.site-footer {
  background-color: #0b1120;
  color: #cbd5e1;
  padding-top: 72px;
  border-top: 4px solid var(--color-cta);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background-color: var(--color-cta);
  border-radius: 2px;
}

.footer-about-text {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #94a3b8;
}

.footer-contacts-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
}

.footer-contact-icon {
  color: var(--color-cta);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  color: #94a3b8;
  font-size: 0.92rem;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-link:hover {
  color: var(--color-cta);
  transform: translateX(4px);
}

.footer-map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 180px;
  margin-top: 14px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  font-size: 0.84rem;
  color: #64748b;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

/* ==========================================================================
   Floating Smart WhatsApp Button & Mobile Bottom Sticky Bar
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 86px;
  right: 20px;
  z-index: 1500;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #25D366;
  color: #ffffff !important;
  padding: 12px 20px 12px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  font-weight: 700;
  font-size: 0.92rem;
  transition: all var(--transition-normal);
}

@media (min-width: 992px) {
  .floating-whatsapp {
    bottom: 28px;
    right: 28px;
  }
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon-circle {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

/* Mobile Sticky Bottom CTA Bar */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background-color: #ffffff;
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 16px rgba(15, 23, 42, 0.08);
  z-index: 1800;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

@media (min-width: 992px) {
  .mobile-bottom-bar {
    display: none;
  }
}

.mobile-bottom-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-secondary);
  font-size: 0.72rem;
  font-weight: 700;
  gap: 4px;
  padding: 4px 2px;
  transition: color var(--transition-fast);
}

.mobile-bottom-item.highlight-call {
  background-color: var(--color-cta);
  color: #0f172a;
}

.mobile-bottom-item.highlight-whatsapp {
  color: #15803d;
}

.mobile-bottom-item svg {
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   Single & Archive Pages
   ========================================================================== */
.page-hero {
  background-color: var(--bg-secondary);
  padding: 48px 0;
  border-bottom: 1px solid var(--border-light);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: var(--text-secondary);
}

.breadcrumbs a:hover {
  color: #b45309;
}

.content-sidebar-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 60px 0;
}

@media (min-width: 992px) {
  .content-sidebar-wrap {
    grid-template-columns: 2.2fr 1fr;
  }
}

.entry-content {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.entry-content h2, .entry-content h3 {
  color: var(--text-primary);
  margin-top: 36px;
  margin-bottom: 16px;
}

.entry-content p {
  margin-bottom: 20px;
}

.entry-content ul, .entry-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.entry-content li {
  list-style: disc;
  margin-bottom: 8px;
}

.sidebar-widget {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 30px;
}

.widget-title {
  font-size: 1.15rem;
  margin-bottom: 18px;
  color: var(--text-primary);
}

/* ==========================================================================
   Form Styling
   ========================================================================== */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  font-size: 0.95rem;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-md);
  background-color: #ffffff;
  color: var(--text-primary);
  outline: none;
  transition: all var(--transition-fast);
}

textarea.form-control {
  height: auto;
  min-height: 120px;
  padding: 14px 16px;
}

.form-control:focus {
  border-color: var(--color-cta);
  box-shadow: 0 0 0 3px rgba(250, 187, 0, 0.2);
}

/* ==========================================================================
   Brand & Service Single Page Layout Styles
   ========================================================================== */
.content-sidebar-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

@media (min-width: 992px) {
  .content-sidebar-wrap {
    grid-template-columns: 2fr 1fr;
    gap: 44px;
  }
}

.brand-cert-box {
  background: linear-gradient(135deg, rgba(250, 187, 0, 0.08) 0%, rgba(255, 106, 0, 0.04) 100%);
  border: 2px solid rgba(250, 187, 0, 0.4);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
}

.brand-models-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 36px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  font-size: 0.9rem;
}

.brand-models-table th {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  font-weight: 700;
  text-align: left;
  padding: 12px 16px;
  border-bottom: 2px solid var(--border-medium);
}

.brand-models-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
}

.brand-models-table tr:hover {
  background-color: rgba(250, 187, 0, 0.05);
}

.brand-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 20px 0 36px;
}

.process-step-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.2s ease;
}

.process-step-item:hover {
  border-color: var(--color-cta);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.process-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-cta), #ea580c);
  color: #ffffff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.brand-faults-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin: 20px 0 36px;
}

.fault-card-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--color-cta);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}

.fault-card-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

