/* ==========================================================================
   Ghayath Al Fursan (شركة غاية الفرسان) - Design System & Styling
   ========================================================================== */

:root {
  /* Clean Light & Professional Automotive Spare Parts Theme */
  --bg-dark: #F8FAFC;
  --bg-surface: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F1F5F9;
  
  --primary-red: #DC2626;
  --primary-red-glow: rgba(220, 38, 38, 0.25);
  --primary-red-hover: #B91C1C;
  
  --navy-dark: #0F172A;
  --navy-surface: #1E293B;
  
  --accent-gold: #D97706;
  --accent-blue: #2563EB;
  --accent-green: #16A34A;
  
  --text-light: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --text-dim: #94A3B8;
  
  --border-subtle: #E2E8F0;
  --border-accent: rgba(220, 38, 38, 0.35);
  
  --font-en: 'Inter', system-ui, -apple-system, sans-serif;
  --font-ar: 'Tajawal', 'Cairo', system-ui, sans-serif;

  --shadow-lg: 0 10px 30px -5px rgba(15, 23, 42, 0.08), 0 4px 15px rgba(220, 38, 38, 0.08);
  --shadow-card: 0 4px 20px rgba(15, 23, 42, 0.06);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-en);
  background-color: var(--bg-dark);
  color: var(--text-body);
  line-height: 1.6;
}

html[dir="rtl"] {
  font-family: var(--font-ar);
}

body {
  overflow-x: hidden;
  background: var(--bg-dark);
  color: var(--text-body);
  min-height: 100vh;
}

/* Utility Containers */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-light);
  font-weight: 800;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0F172A;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.15);
  transition: var(--transition-normal);
}

.top-bar {
  background: #0B1120;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(220, 38, 38, 0.3);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #94A3B8;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-info-item i {
  color: var(--primary-red);
}

.lang-switch {
  background: var(--bg-surface);
  border: 1px solid var(--border-accent);
  color: var(--text-light);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-fast);
}

.lang-switch:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  box-shadow: 0 0 10px var(--primary-red-glow);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-badge {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #111827 0%, #1F2937 100%);
  border: 2px solid var(--primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px var(--primary-red-glow);
  position: relative;
  overflow: hidden;
}

.brand-badge svg {
  width: 32px;
  height: 32px;
  fill: #FFFFFF;
}

.brand-names {
  display: flex;
  flex-direction: column;
}

.brand-title-en {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--text-light);
}

.brand-title-ar {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-red);
}

.brand-logo-img {
  height: 56px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  background: #FFFFFF;
  padding: 4px 12px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  border: 1.5px solid rgba(230, 30, 37, 0.4);
  transition: var(--transition-fast);
}

.brand-logo-img:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(230, 30, 37, 0.5);
}

.footer-logo-img {
  height: 64px;
  margin-bottom: 0.5rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  color: #E2E8F0;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition-fast);
}

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

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

html[dir="rtl"] .nav-link::after {
  left: auto;
  right: 0;
}

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

.nav-cta {
  background: linear-gradient(135deg, var(--primary-red) 0%, #B91C1C 100%);
  color: #FFF;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px var(--primary-red-glow);
  transition: var(--transition-fast);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

/* Brand Ticker Bar */
.brand-ticker {
  background: #FFFFFF;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.brand-ticker-inner {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.brand-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: #F1F5F9;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 800;
  color: #1E293B;
  cursor: pointer;
  transition: var(--transition-fast);
}

.brand-pill:hover, .brand-pill.active {
  background: #FFFFFF;
  border-color: var(--primary-red);
  color: var(--primary-red);
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.15);
  transform: scale(1.05);
}

.brand-pill svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.brand-pill-icon {
  height: 20px;
  width: auto;
  max-width: 28px;
  object-fit: contain;
  filter: none;
  transition: var(--transition-fast);
}

/* Supported Car Brands Showcase Section */
.supported-brands-section {
  padding: 4.5rem 0;
  background: #F1F5F9;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1.25rem;
}

.brand-showcase-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: var(--transition-normal);
  text-align: center;
}

.brand-showcase-card:hover {
  background: #FFFFFF;
  border-color: var(--primary-red);
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.15);
}

.brand-logo-container {
  width: 62px;
  height: 62px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  transition: var(--transition-fast);
}

.brand-showcase-card:hover .brand-logo-container {
  transform: scale(1.08);
  border-color: var(--primary-red);
  box-shadow: 0 6px 18px rgba(220, 38, 38, 0.2);
}

.brand-logo-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand-name {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--navy-dark);
  letter-spacing: 0.5px;
}

.brand-parts-count {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 700;
  background: #F1F5F9;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.25);
  border-radius: var(--radius-full);
  color: var(--primary-red);
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--navy-dark);
}

.hero-title span {
  color: var(--primary-red);
  background: none;
  -webkit-text-fill-color: initial;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-body);
  margin-bottom: 2rem;
  max-width: 92%;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-red) 0%, #B91C1C 100%);
  color: #FFF;
  box-shadow: 0 4px 18px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-red-hover) 0%, var(--primary-red) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.btn-outline {
  background: #FFFFFF;
  border: 1.5px solid var(--border-subtle);
  color: var(--navy-dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.btn-outline:hover {
  background: #F1F5F9;
  border-color: var(--navy-dark);
  transform: translateY(-2px);
}

.hero-image-wrapper {
  position: relative;
}

.hero-img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border-subtle);
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.1);
  background: #FFFFFF;
}

.hero-img-card img {
  width: 100%;
  height: 390px;
  display: block;
  object-fit: cover;
  transition: var(--transition-normal);
}

.hero-stat-badge {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: #FFFFFF;
  border: 1.5px solid var(--border-subtle);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
  display: flex;
  align-items: center;
  gap: 1rem;
}

html[dir="rtl"] .hero-stat-badge {
  right: auto;
  left: -15px;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary-red);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.2;
}

/* Section Common */
.section {
  padding: 5rem 0;
  position: relative;
}

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

.section-subtitle {
  color: var(--primary-red);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Branch Quick Grid Section */
.branches-overview {
  background: #F8FAFC;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.75rem;
}

.branch-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.branch-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-red);
  opacity: 0.7;
  transition: var(--transition-fast);
}

html[dir="rtl"] .branch-card::before {
  left: auto;
  right: 0;
}

.branch-card:hover, .branch-card.highlighted {
  transform: translateY(-5px);
  background: #FFFFFF;
  border-color: var(--primary-red);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.branch-card:hover::before, .branch-card.highlighted::before {
  opacity: 1;
  box-shadow: 0 0 10px var(--primary-red);
}

.branch-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.branch-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy-dark);
}

.branch-location-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.branch-badge {
  background: rgba(37, 99, 235, 0.1);
  color: #2563EB;
  border: 1px solid rgba(37, 99, 235, 0.25);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 800;
}

.branch-badge.ksa {
  background: rgba(22, 163, 74, 0.1);
  color: #16A34A;
  border-color: rgba(22, 163, 74, 0.25);
}

.branch-badge.autocare {
  background: rgba(217, 119, 6, 0.1);
  color: #D97706;
  border-color: rgba(217, 119, 6, 0.25);
}

.autocare-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.85rem;
  background: rgba(217, 119, 6, 0.1);
  border: 1px solid rgba(217, 119, 6, 0.3);
  border-radius: var(--radius-full);
  color: #D97706;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

/* Prominent Branch Brand Logos & Badges */
.branch-brands-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0 1.35rem;
}

.branch-brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #F1F5F9;
  border: 1px solid var(--border-subtle);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--navy-dark);
  transition: var(--transition-fast);
}

.branch-brand-chip:hover {
  background: #FFFFFF;
  border-color: var(--primary-red);
  color: var(--primary-red);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.15);
}

.branch-brand-logo-container {
  width: 36px;
  height: 36px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.08);
  flex-shrink: 0;
}

.branch-brand-logo-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.branch-brand-chip.service-chip {
  background: rgba(217, 119, 6, 0.08);
  border-color: rgba(217, 119, 6, 0.25);
  color: #D97706;
}

.branch-brand-chip.service-chip .branch-brand-logo-container {
  background: rgba(217, 119, 6, 0.15);
  color: #D97706;
  border: 1px solid rgba(217, 119, 6, 0.3);
}

.branch-brands-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 1rem 0 1.5rem;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #F1F5F9;
  border: 1px solid var(--border-subtle);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy-dark);
  transition: var(--transition-fast);
}

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

.tag-pill-logo {
  height: 16px;
  width: auto;
  max-width: 22px;
  object-fit: contain;
  filter: none;
}

.branch-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.btn-call {
  background: #16A34A;
  color: #FFF;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: var(--transition-fast);
}

.btn-call:hover {
  background: #15803D;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25);
}

.btn-map {
  background: #2563EB;
  color: #FFF;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: var(--transition-fast);
}

.btn-map:hover {
  background: #1D4ED8;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

/* Detailed Branch Showcase */
.detailed-branch-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  transition: var(--transition-normal);
}

.detailed-branch-card:hover {
  border-color: var(--primary-red);
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.1);
}

.branch-gallery {
  position: relative;
  min-height: 340px;
  background: #F1F5F9;
}

.branch-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.branch-details-content {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #FFFFFF;
}

.branch-detail-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}

.branch-detail-address {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.branch-info-list {
  list-style: none;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.branch-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-body);
}

.branch-info-item i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.1);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

/* Spare Parts Inquiry Form */
.inquiry-section {
  background: #F1F5F9;
  border-top: 1px solid var(--border-subtle);
}

.inquiry-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--navy-dark);
}

.form-input, .form-select, .form-textarea {
  background: #F8FAFC;
  border: 1.5px solid #CBD5E1;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--navy-dark);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  transition: var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  background: #FFFFFF;
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

/* Footer */
.footer {
  background: #0F172A;
  color: #E2E8F0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-about p {
  color: #94A3B8;
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: #FFFFFF;
}

.copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  color: #64748B;
  font-size: 0.85rem;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid, .detailed-branch-card, .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .nav-links {
    display: none;
  }

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

  .hero-stat-badge {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 1rem;
  }
}
