*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0a1628;
  --primary-light: #122240;
  --accent: #e85d04;
  --accent-hover: #d45303;
  --accent-light: rgba(232, 93, 4, 0.10);
  --accent-border: rgba(232, 93, 4, 0.25);
  --accent-glow: rgba(232, 93, 4, 0.35);
  --gold: #d4a843;
  --gold-dark: #b8912e;
  --gold-light: rgba(212, 168, 67, 0.12);
  --silver: #a8b2c1;
  --silver-light: #d0d8e4;
  --text: #f0f2f5;
  --text-dark: #1a1a1a;
  --bg-dark: #060d1a;
  --bg-card: #0d1a30;
  --bg-card-hover: #132240;
  --bg-glass: rgba(6, 13, 26, 0.75);
  --bg-glass-heavy: rgba(6, 13, 26, 0.88);
  --border: rgba(255, 255, 255, 0.07);
  --border-light: rgba(255, 255, 255, 0.12);
  --shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: color 0.3s ease, background 0.3s ease, background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease, border-color 0.3s ease;
  --transition-slow: 0.5s ease;
  --navbar-height: 72px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', 'Tahoma', 'Arial', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  direction: rtl;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

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

ul {
  list-style: none;
}

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

::selection {
  background: var(--accent);
  color: #fff;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: rgba(232, 93, 4, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: radial-gradient(ellipse at center, #0d1a30 0%, #060d1a 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.loading-screen.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.loading-logo-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: loadingLogoEntry 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

.loading-glow {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 93, 4, 0.25) 0%, rgba(212, 168, 67, 0.1) 50%, transparent 70%);
  animation: loadingPulse 2s ease-in-out infinite;
}

.loading-logo {
  width: 100px;
  height: 100px;
  border-radius: 18px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 4px 20px rgba(232, 93, 4, 0.3));
}

.loading-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: loadingTextEntry 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  opacity: 0;
}

.loading-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}

.loading-sub {
  font-size: 14px;
  color: var(--silver);
  letter-spacing: 0.5px;
}

.loading-bar {
  width: 160px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
  animation: loadingTextEntry 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
  opacity: 0;
}

.loading-bar-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: right;
  animation: loadingProgress 2.5s ease-in-out forwards;
  animation-delay: 0.6s;
  will-change: transform;
}

@keyframes loadingLogoEntry {
  0% {
    opacity: 0;
    transform: scale(0.5) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes loadingTextEntry {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loadingPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

@keyframes loadingProgress {
  0% { transform: scaleX(0); }
  30% { transform: scaleX(0.4); }
  60% { transform: scaleX(0.7); }
  90% { transform: scaleX(0.85); }
  100% { transform: scaleX(1); }
}

@media (max-width: 480px) {
  .loading-logo-wrap {
    width: 100px;
    height: 100px;
  }
  .loading-glow {
    width: 130px;
    height: 130px;
  }
  .loading-logo {
    width: 80px;
    height: 80px;
    border-radius: 14px;
  }
  .loading-name {
    font-size: 18px;
  }
  .loading-sub {
    font-size: 12px;
  }
  .loading-bar {
    width: 120px;
  }
}

#videoBackground {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: var(--bg-dark);
}

.video-poster {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.1);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  filter: blur(5px) saturate(1.2) brightness(0.9);
  z-index: 0;
  transition: opacity 1.2s ease;
}

.video-poster.hidden {
  opacity: 0;
  pointer-events: none;
}

#ytPlayer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.1);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  aspect-ratio: 16 / 9;
  filter: blur(5px) saturate(1.2) brightness(0.9);
  object-fit: cover;
}

#videoBackground iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.1);
  min-width: 100%;
  min-height: 100%;
  width: 177.78vh;
  height: 100vw;
  filter: blur(5px) saturate(1.2) brightness(0.9);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(6, 13, 26, 0.45) 0%, rgba(0, 0, 0, 0.30) 50%, rgba(6, 13, 26, 0.55) 100%);
  z-index: 1;
}

.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: var(--bg-glass-heavy);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  height: var(--navbar-height);
}

.navbar.scrolled {
  background: rgba(6, 13, 26, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar > .container,
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.navbar-brand .logo-img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: contain;
}

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

.navbar-brand .brand-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.navbar-brand .brand-sub {
  font-size: 11px;
  color: var(--silver);
  letter-spacing: 0.5px;
}

.brand-name-en {
  font-size: 10px;
  color: var(--silver);
  letter-spacing: 0.5px;
  direction: ltr;
  text-align: right;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--silver);
  transition: var(--transition);
  position: relative;
  cursor: pointer;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
  background: var(--accent-light);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 18px;
  left: 18px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), #c04e03) !important;
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--accent-hover), #a84400) !important;
  transform: translateY(-1px);
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px;
  cursor: pointer;
  font-family: inherit;
  margin-right: 8px;
  flex-shrink: 0;
}

.lang-toggle button,
.lang-toggle span {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--silver);
  transition: var(--transition);
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.lang-toggle button.active,
.lang-toggle span.active {
  background: var(--accent);
  color: #fff;
}

.lang-toggle button:hover:not(.active),
.lang-toggle span:hover:not(.active) {
  color: var(--text);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

.mobile-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.en {
  font-family: 'Segoe UI', 'Arial', sans-serif;
  direction: ltr;
  display: none;
  font-size: 0.8em;
  opacity: 0.65;
  font-weight: 400;
  margin-top: 2px;
}

.ar-text {
  display: block;
}

span.ar-text,
a.ar-text,
strong.ar-text,
em.ar-text {
  display: inline;
}

body.lang-en .ar-text {
  display: none !important;
}

body.lang-en .en {
  display: block !important;
  opacity: 1;
  font-size: 1em;
}

body.lang-en span.en,
body.lang-en a.en {
  display: inline !important;
}

body.lang-en {
  direction: ltr;
}

body.lang-en .container,
body.lang-en .navbar-inner,
body.lang-en .page-inner {
  direction: ltr;
}

body.lang-en .navbar-brand {
  direction: ltr;
}

body.lang-en .nav-links {
  direction: ltr;
}

body.lang-en .nav-links a.active::after {
  right: 18px;
  left: 18px;
}

body.lang-en .brand-name {
  display: none;
}

body.lang-en .brand-sub {
  display: none;
}

body.lang-en .brand-name-en {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
}

body.lang-en .contact-card:hover {
  transform: translateX(-4px);
}

body.lang-en .section-header .en {
  font-size: 1em;
  margin-top: 0;
}

body.lang-en h1 .en,
body.lang-en h2 .en {
  font-size: 1em;
  font-weight: inherit;
}

body.lang-en .hero-content .en {
  font-size: 1em;
  opacity: 1;
}

body.lang-en .service-card .en {
  font-size: 1em;
  opacity: 1;
}

body.lang-en .stat-item .en {
  font-size: 1em;
  opacity: 1;
}

.section-header .en {
  font-size: 0.75em;
  margin-top: 4px;
}

h1 .en,
h2 .en {
  font-size: 0.5em;
  font-weight: 400;
}

.content-area {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding-top: var(--navbar-height);
}

.page-section {
  display: none;
  opacity: 0;
  transition: opacity var(--transition-slow);
  min-height: calc(100vh - var(--navbar-height));
}

.page-section.active {
  display: flex;
  flex-direction: column;
  opacity: 1;
}

.page-section.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

.page-section.fade-out {
  animation: fadeOut 0.3s ease forwards;
}

.page-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

#page-services > .page-inner,
#page-about > .page-inner,
#page-contact > .page-inner {
  background: none;
  padding: 0 20px;
  margin-top: 0;
  position: relative;
}

#page-services > .page-inner::before,
#page-about > .page-inner::before,
#page-contact > .page-inner::before {
  display: none;
}

#page-home > .page-inner {
  background: none;
}

.page-title {
  text-align: center;
  padding: 56px 0 40px;
  position: relative;
}

.page-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  margin: 24px auto 0;
  border-radius: 3px;
}

.page-title h1 {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
  color: #fff;
}

.page-title h1 span {
  color: var(--accent);
}

.page-title p {
  color: var(--silver-light);
  font-size: 16px;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.9;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

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

.hero-content {
  max-width: 720px;
  padding: 80px 0 60px;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 93, 4, 0.15);
  border: 1px solid var(--accent-border);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 500;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
  text-shadow: 0 3px 25px rgba(0, 0, 0, 0.8), 0 1px 6px rgba(0, 0, 0, 0.6), 0 0 50px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.hero-content h1 span {
  color: var(--accent);
}

body.lang-en .hero-content h1 .en {
  color: var(--gold);
  font-size: 0.7em;
  opacity: 1;
}

.hero-content p {
  font-size: 17px;
  color: rgba(240, 242, 245, 0.92);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.9;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.4);
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: inherit;
  text-align: center;
  justify-content: center;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #c04e03);
  color: #fff;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-hover), #a84400);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 93, 4, 0.25);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1.5px solid var(--border-light);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  background: rgba(232, 93, 4, 0.08);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp svg {
  fill: #fff;
}

.section-block {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 14px;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.section-header h2 span {
  color: var(--accent);
}

.section-header p {
  color: var(--silver-light);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

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

.stat-item {
  text-align: center;
  padding: 24px 16px;
  background: rgba(13, 26, 48, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: var(--transition);
}

.stat-item:hover {
  background: rgba(13, 26, 48, 0.8);
  border-color: var(--accent-border);
  transform: translateY(-3px);
}

.stat-item .stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1.2;
}

.stat-item .stat-label {
  font-size: 14px;
  color: var(--silver);
  margin-top: 4px;
}

body.lang-en .stat-item .en {
  font-size: 1em;
  margin-top: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: rgba(13, 26, 48, 0.65);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  background: rgba(19, 34, 64, 0.8);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent-border);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--accent);
}

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

body.lang-en .service-card .en {
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 10px;
  opacity: 0.6;
}

.service-card p {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.7;
}

.service-detail {
  background: rgba(13, 26, 48, 0.65);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  transition: var(--transition);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.service-detail:hover {
  background: rgba(19, 34, 64, 0.8);
  border-color: var(--accent-border);
}

.service-detail .detail-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.service-detail .detail-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--accent);
}

.service-detail h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}

body.lang-en .service-detail .en {
  font-size: 13px;
  color: var(--gold);
  opacity: 0.55;
  margin-bottom: 10px;
}

.service-detail p {
  color: var(--silver);
  font-size: 15px;
  line-height: 1.8;
}

.service-detail .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.service-detail .tag {
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
}

.about-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 40px 0;
}

.about-block .about-visual {
  background: rgba(13, 26, 48, 0.5);
  border-radius: var(--radius-lg);
  padding: 50px;
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.about-block .about-visual::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(232, 93, 4, 0.04) 0%, transparent 60%);
}

.about-block .about-visual .logo-large {
  position: relative;
  z-index: 1;
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin: 0 auto;
}

.about-block .about-visual .big-icon {
  position: relative;
  z-index: 1;
  color: var(--accent);
}

.about-block .about-visual .big-icon svg {
  width: 120px;
  height: 120px;
  fill: var(--accent);
  opacity: 0.85;
}

.about-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}

.about-content h2 span {
  color: var(--accent);
}

.about-content > p {
  color: var(--silver);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

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

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-item .check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.feature-item .check svg {
  width: 14px;
  height: 14px;
  fill: var(--accent);
}

.feature-item p {
  font-size: 15px;
  color: var(--silver-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.value-card {
  background: rgba(13, 26, 48, 0.65);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.value-card:hover {
  background: rgba(19, 34, 64, 0.8);
  transform: translateY(-4px);
  border-color: var(--accent-border);
}

.value-card .value-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--accent);
}

.value-card .value-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--accent);
}

.value-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.value-card p {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.7;
}

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.vehicle-card {
  background: rgba(13, 26, 48, 0.65);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.vehicle-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  background: rgba(19, 34, 64, 0.8);
}

.vehicle-card .vehicle-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--accent);
}

.vehicle-card .vehicle-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--accent);
}

.vehicle-card h3 {
  font-size: 16px;
  font-weight: 700;
}

.vehicle-card p {
  font-size: 13px;
  color: var(--silver);
  margin-top: 4px;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.contact-card {
  background: rgba(13, 26, 48, 0.65);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.contact-card:hover {
  background: rgba(19, 34, 64, 0.8);
  transform: translateX(4px);
  border-color: var(--accent-border);
}

.contact-card .card-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.contact-card .card-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--accent);
}

.contact-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 14px;
  color: var(--silver);
}

.contact-card a {
  color: var(--accent);
  font-weight: 600;
  font-size: 15px;
}

.contact-card a:hover {
  text-decoration: underline;
}

.hours-card {
  background: rgba(13, 26, 48, 0.65);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hours-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
}

.hours-card h3 svg {
  width: 22px;
  height: 22px;
  fill: var(--accent);
}

.hours-table {
  width: 100%;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row .day {
  font-weight: 600;
  font-size: 14px;
}

.hours-row .time {
  color: var(--silver);
  font-size: 14px;
  direction: ltr;
}

.hours-row.highlight {
  color: var(--accent);
}

.hours-row.closed .time {
  color: rgba(232, 93, 4, 0.7);
}

.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 40px;
}

.map-wrapper iframe {
  width: 100%;
  height: 350px;
  border: none;
}

.quick-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 30px 0;
}

.cta-block {
  text-align: center;
  padding: 60px 40px;
  background: rgba(232, 93, 4, 0.1);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
  margin: 40px 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cta-block h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 14px;
}

.cta-block h2 span {
  color: var(--accent);
}

.cta-block p {
  color: var(--silver);
  font-size: 16px;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-block .btn {
  margin: 0 8px;
}

.spa-footer {
  background: rgba(6, 13, 26, 0.95);
  border-top: 1px solid var(--border);
  padding: 40px 0 20px;
  backdrop-filter: blur(10px);
}

.spa-footer .footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 30px;
}

.spa-footer .footer-col h4 {
  color: var(--gold);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.spa-footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.spa-footer .footer-brand strong {
  display: block;
  color: var(--text);
  font-size: 14px;
  line-height: 1.3;
}

.spa-footer .footer-brand p {
  font-size: 12px;
  color: var(--silver);
  margin: 2px 0 0;
}

.spa-footer .footer-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: contain;
}

.spa-footer .footer-social {
  display: flex;
  gap: 10px;
}

.spa-footer .footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--silver);
}

.spa-footer .footer-social a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.spa-footer .footer-social a:hover {
  background: var(--accent-light);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.spa-footer .footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spa-footer .footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--silver);
}

.spa-footer .footer-contact-list li svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
  flex-shrink: 0;
}

.spa-footer .footer-contact-list a {
  color: var(--silver-light);
  transition: var(--transition);
}

.spa-footer .footer-contact-list a:hover {
  color: var(--accent);
}

.spa-footer .footer-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spa-footer .footer-hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 13px;
  color: var(--silver);
  border-bottom: 1px solid var(--border);
}

.spa-footer .footer-hours-list li.fri {
  color: var(--accent);
  font-weight: 600;
}

.spa-footer .footer-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--silver-light);
  margin-bottom: 10px;
}

.spa-footer .footer-location svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
  flex-shrink: 0;
}

.spa-footer .footer-map-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
}

.spa-footer .footer-map-link svg {
  fill: currentColor;
}

.spa-footer .footer-map-link:hover {
  color: var(--gold);
}

.spa-footer .footer-bottom {
  max-width: 1200px;
  margin: 20px auto 0;
  padding: 16px 20px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.spa-footer .footer-copy {
  font-size: 12px;
  color: var(--silver);
  opacity: 0.7;
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
  color: #fff;
  cursor: pointer;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25d366;
  animation: whatsappPulse 2s ease-out infinite;
  z-index: -1;
}

.about-hero-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
  background: rgba(13, 26, 48, 0.65);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  margin-bottom: 48px;
  position: relative;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.about-hero-logo {
  text-align: center;
}

.about-logo-large {
  width: 140px;
  height: 140px;
  border-radius: 22px;
  object-fit: contain;
  margin: 0 auto 20px;
  border: 2px solid var(--accent-border);
  padding: 10px;
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.about-hero-stats {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.about-stat {
  text-align: center;
  padding: 10px 8px;
  background: rgba(232, 93, 4, 0.08);
  border: 1px solid var(--accent-border);
  border-radius: 10px;
  flex: 1;
}

.about-stat-num {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
}

.about-stat span:last-child {
  font-size: 10px;
  color: var(--silver);
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232, 93, 4, 0.1);
  border: 1px solid var(--accent-border);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 500;
}

.about-hero-text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.4;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.about-hero-text h2 span {
  color: var(--accent);
}

.about-hero-text > p {
  color: var(--silver-light);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 22px;
  opacity: 0.92;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--silver-light);
}

.about-feature-icon {
  width: 24px;
  height: 24px;
  background: rgba(232, 93, 4, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-icon svg {
  width: 14px;
  height: 14px;
  fill: var(--accent);
}

.about-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-actions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.contact-action-card {
  background: rgba(13, 26, 48, 0.65);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}

.contact-action-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-border);
  background: rgba(19, 34, 64, 0.8);
}

.action-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  transition: var(--transition);
}

.action-icon-wrap svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.action-call .action-icon-wrap {
  background: rgba(232, 93, 4, 0.12);
  color: var(--accent);
}

.action-call:hover .action-icon-wrap {
  background: var(--accent);
  color: #fff;
}

.action-whatsapp .action-icon-wrap {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
}

.action-whatsapp:hover .action-icon-wrap {
  background: #25d366;
  color: #fff;
}

.action-location .action-icon-wrap {
  background: rgba(66, 133, 244, 0.12);
  color: #4285f4;
}

.action-location:hover .action-icon-wrap {
  background: #4285f4;
  color: #fff;
}

.action-hours .action-icon-wrap {
  background: rgba(212, 168, 67, 0.12);
  color: var(--gold);
}

.action-hours:hover .action-icon-wrap {
  background: var(--gold);
  color: #fff;
}

.contact-action-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.contact-action-card .action-num {
  font-size: 14px;
  color: var(--silver-light);
  margin: 0;
  font-weight: 500;
}

.contact-action-card .action-hint {
  font-size: 11px;
  color: var(--silver);
  opacity: 0.7;
  margin-top: auto;
}

.contact-email-row {
  text-align: center;
  margin-bottom: 30px;
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--silver-light);
  font-size: 14px;
  padding: 10px 24px;
  background: rgba(13, 26, 48, 0.5);
  border: 1px solid var(--border);
  border-radius: 50px;
  transition: var(--transition);
}

.email-link svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
}

.email-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hours-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.hours-modal-overlay.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.hours-modal {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 100%;
  max-width: 420px;
  position: relative;
  animation: scaleIn 0.3s ease;
}

.hours-modal-close {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(255,255,255,0.08);
  color: var(--silver);
  font-size: 22px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  line-height: 1;
}

[dir="ltr"] .hours-modal-close {
  left: auto;
  right: 12px;
}

.hours-modal-close:hover {
  background: rgba(232, 93, 4, 0.2);
  color: var(--accent);
}

.hours-modal-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.hours-modal-header svg {
  width: 28px;
  height: 28px;
  fill: var(--accent);
}

.hours-modal-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.hours-modal-body {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}

.hours-modal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 15px;
  color: var(--silver-light);
  border-bottom: 1px solid var(--border);
}

.hours-modal-row:last-child {
  border-bottom: none;
}

.hours-modal-row.fri {
  color: var(--accent);
  font-weight: 700;
  background: rgba(232, 93, 4, 0.06);
  margin: 0 -16px;
  padding: 12px 16px;
  border-radius: 10px;
  border-bottom: none;
}

.hours-modal-cta {
  width: 100%;
  justify-content: center;
}

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

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

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

.fade-out {
  animation: fadeOut 0.3s ease forwards;
}

.animate-in-delay-1 {
  animation: fadeInUp 0.6s ease 0.1s forwards;
  opacity: 0;
}

.animate-in-delay-2 {
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

.animate-in-delay-3 {
  animation: fadeInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}

.animate-in-delay-4 {
  animation: fadeInUp 0.6s ease 0.4s forwards;
  opacity: 0;
}

.animate-in-delay-5 {
  animation: fadeInUp 0.6s ease 0.5s forwards;
  opacity: 0;
}

.hero-section-bg {
  position: relative;
  min-height: calc(100vh - var(--navbar-height));
  display: flex;
  align-items: center;
}

.hero-section-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(6, 13, 26, 0.4) 0%,
    rgba(6, 13, 26, 0.15) 40%,
    rgba(6, 13, 26, 0.55) 100%
  );
  z-index: 0;
  pointer-events: none;
}

.hero-section-bg > * {
  position: relative;
  z-index: 1;
}

.page-section .section-block:first-child {
  padding-top: 40px;
}

.divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-border),
    transparent
  );
  margin: 20px 0;
}

.divider-accent {
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent),
    var(--gold),
    transparent
  );
  margin: 30px auto;
  max-width: 200px;
}

.text-accent {
  color: var(--accent);
}

.text-gold {
  color: var(--gold);
}

.text-silver {
  color: var(--silver);
}

.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 8px;
}

.mb-2 {
  margin-bottom: 16px;
}

.mb-3 {
  margin-bottom: 24px;
}

.mb-4 {
  margin-bottom: 32px;
}

.mb-5 {
  margin-bottom: 48px;
}

.mt-3 {
  margin-top: 24px;
}

.mt-4 {
  margin-top: 32px;
}

.mt-5 {
  margin-top: 48px;
}

.pt-3 {
  padding-top: 24px;
}

.pt-4 {
  padding-top: 32px;
}

.pb-3 {
  padding-bottom: 24px;
}

.pb-4 {
  padding-bottom: 32px;
}

.glass-card {
  background: rgba(13, 26, 48, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 24px;
}

.glass-card:hover {
  background: rgba(13, 26, 48, 0.7);
  border-color: var(--accent-border);
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow-accent {
  box-shadow: 0 0 20px rgba(232, 93, 4, 0.15);
}

.border-accent {
  border-color: var(--accent-border);
}

@media (max-width: 1024px) {
  .about-block {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-block .about-visual {
    padding: 30px;
    order: -1;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  :root {
    --navbar-height: 64px;
  }

  .mobile-toggle {
    display: flex;
  }

  .lang-toggle {
    margin-right: 4px;
  }

  .nav-links {
    position: fixed;
    top: var(--navbar-height);
    left: -100%;
    right: auto;
    width: 100%;
    max-width: 300px;
    height: auto;
    max-height: calc(100vh - var(--navbar-height) - 20px);
    background: rgba(6, 13, 26, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 16px;
    gap: 6px;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1), right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    border-left: none;
    border-radius: 0 0 var(--radius) 0;
    overflow-y: auto;
    z-index: 999;
    box-shadow: 4px 4px 30px rgba(0, 0, 0, 0.5);
  }

  body.lang-en .nav-links {
    left: auto;
    right: -100%;
    border-right: none;
    border-left: 1px solid var(--border);
    border-radius: 0 0 0 var(--radius);
    box-shadow: -4px 4px 30px rgba(0, 0, 0, 0.5);
  }

  .nav-links.open {
    left: 0;
    right: auto;
  }

  body.lang-en .nav-links.open {
    left: auto;
    right: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
    border: 1px solid transparent;
  }

  .nav-links a:hover {
    background: rgba(232, 93, 4, 0.08);
    border-color: rgba(232, 93, 4, 0.15);
  }

  .nav-links a.active {
    background: rgba(232, 93, 4, 0.12);
    color: var(--accent);
    border-color: rgba(232, 93, 4, 0.25);
  }

  .nav-links a.active::after {
    display: none;
  }

  .nav-cta {
    margin-top: 10px;
    text-align: center;
    justify-content: center;
    padding: 14px 18px !important;
    border-radius: 12px !important;
    font-size: 15px !important;
  }

  .page-title {
    padding: 36px 0 24px;
  }

  .page-title::after {
    width: 50px;
    margin-top: 18px;
  }

  .hero-content {
    padding: 40px 0;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btns .btn {
    justify-content: center;
    width: 100%;
    padding: 14px 24px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

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

  .about-block {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-block .about-visual {
    padding: 30px;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 20px 16px;
  }

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

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

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

  .service-detail {
    flex-direction: column;
    padding: 24px 20px;
  }

  .service-detail .detail-icon {
    width: 52px;
    height: 52px;
  }

  .service-detail .detail-icon svg {
    width: 24px;
    height: 24px;
  }

  .section-block {
    padding: 40px 0;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .cta-block {
    padding: 40px 20px;
    margin: 30px 0;
  }

  .quick-actions {
    flex-direction: column;
    gap: 12px;
  }

  .quick-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  .about-hero-card {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 24px;
  }

  .about-hero-logo {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .about-logo-large {
    width: 80px;
    height: 80px;
    margin: 0;
    border-radius: 14px;
  }

  .about-hero-stats {
    flex: 1;
    gap: 8px;
  }

  .about-stat-num {
    font-size: 1.1rem;
  }

  .about-cta-row {
    flex-direction: column;
  }

  .about-cta-row .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-actions-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .contact-action-card {
    padding: 20px 14px;
  }

  .action-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .action-icon-wrap svg {
    width: 24px;
    height: 24px;
  }

  .map-wrapper iframe {
    height: 250px;
  }

  .branches-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .branch-card {
    padding: 20px 16px;
  }

  .branch-map-wrapper iframe {
    height: 220px;
  }

  .geo-prompt-btn {
    font-size: 13px;
    padding: 9px 20px;
  }

  .spa-footer {
    padding: 24px 0 14px;
  }

  .spa-footer .footer-grid {
    display: none;
  }

  .footer-mobile-quick {
    display: flex;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px 16px;
  }

  .fmq-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    transition: var(--transition);
  }

  .fmq-btn svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
  }

  .fmq-btn span {
    font-size: 12px;
    font-weight: 600;
  }

  .fmq-call {
    color: var(--accent);
    border-color: rgba(232, 93, 4, 0.2);
    background: rgba(232, 93, 4, 0.06);
  }

  .fmq-wa {
    color: #25d366;
    border-color: rgba(37, 211, 102, 0.2);
    background: rgba(37, 211, 102, 0.06);
  }

  .fmq-map {
    color: #4285f4;
    border-color: rgba(66, 133, 244, 0.2);
    background: rgba(66, 133, 244, 0.06);
  }

  .fmq-btn:active {
    transform: scale(0.96);
  }

  .spa-footer .footer-bottom {
    margin-top: 0;
    padding-top: 12px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

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

  .stat-item .stat-number {
    font-size: 1.5rem;
  }

  .section-block {
    padding: 30px 0;
  }

  .section-header h2 {
    font-size: 1.3rem;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 5px 12px;
  }

  .vehicles-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .vehicle-card {
    padding: 20px 14px;
  }

  .service-card {
    padding: 24px 18px;
  }

  .value-card {
    padding: 24px 18px;
  }

  .contact-card {
    padding: 16px 14px;
  }

  .hours-card {
    padding: 20px 14px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .hero-content {
    padding: 30px 0;
  }

  .about-hero-card {
    padding: 18px;
  }

  .about-hero-logo {
    flex-direction: column;
    text-align: center;
  }

  .about-logo-large {
    width: 70px;
    height: 70px;
  }

  .about-stat {
    padding: 8px 4px;
  }

  .about-stat-num {
    font-size: 1rem;
  }

  .about-hero-text h2 {
    font-size: 1.2rem;
  }

  .about-hero-text > p {
    font-size: 13px;
  }

  .about-feature {
    font-size: 13px;
  }

  .contact-actions-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .contact-action-card {
    padding: 16px 10px;
  }

  .contact-action-card h3 {
    font-size: 13px;
  }

  .contact-action-card .action-num {
    font-size: 12px;
  }

  .contact-action-card .action-hint {
    font-size: 10px;
  }

  .action-icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .action-icon-wrap svg {
    width: 20px;
    height: 20px;
  }

  .branch-card {
    padding: 16px 12px;
  }

  .branch-card-header {
    flex-direction: column;
    gap: 8px;
  }

  .branch-distance.visible {
    align-self: flex-start;
  }

  .branch-name-wrap h3 {
    font-size: 14px;
  }

  .branch-map-wrapper iframe {
    height: 180px;
  }

  .geo-prompt-btn {
    font-size: 12px;
    padding: 8px 16px;
  }

  .branch-location-link {
    font-size: 13px;
    padding: 8px 14px;
  }

  .hours-modal {
    padding: 24px 18px;
    margin: 10px;
  }

  .hours-modal-row {
    font-size: 13px;
    padding: 10px 0;
  }

  .about-block .about-visual .logo-large {
    width: 120px;
    height: 120px;
  }

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

  .navbar-brand .brand-name {
    font-size: 13px;
  }

  .page-title {
    padding: 28px 0 18px;
  }

  .page-title::after {
    width: 40px;
    margin-top: 14px;
  }

  .page-title h1 {
    font-size: 1.4rem;
  }

  .page-title p {
    font-size: 13px;
  }

  .cta-block h2 {
    font-size: 1.2rem;
  }

  .cta-block p {
    font-size: 13px;
  }

  .fmq-btn {
    padding: 12px 6px;
  }

  .fmq-btn svg {
    width: 20px;
    height: 20px;
  }

  .fmq-btn span {
    font-size: 11px;
  }

  .spa-footer .footer-copy {
    font-size: 11px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 16px;
    left: 16px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }

  .nav-links {
    max-width: 100%;
    border-radius: 0;
  }

  body.lang-en .nav-links {
    border-radius: 0;
  }
}

@media (max-width: 360px) {
  .page-inner,
  .container {
    padding: 0 10px;
  }

  .page-title {
    padding: 22px 0 14px;
  }

  .hero-content h1 {
    font-size: 1.3rem;
  }

  .stat-item .stat-number {
    font-size: 1.3rem;
  }

  .navbar-brand .brand-text {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .page-section {
    transition: none;
  }

  .whatsapp-float::before {
    animation: none;
  }
}

@media print {
  #videoBackground,
  .video-overlay,
  .navbar,
  .whatsapp-float,
  .mobile-toggle,
  .lang-toggle {
    display: none !important;
  }

  .content-area {
    padding-top: 0;
  }

  .page-section {
    display: block !important;
    opacity: 1 !important;
    page-break-after: always;
  }

  body {
    background: #fff;
    color: #000;
  }

  .service-card,
  .value-card,
  .vehicle-card,
  .contact-card,
  .hours-card,
  .stat-item,
  .glass-card,
  .branch-card,
  .bp-card {
    background: #f5f5f5;
    border-color: #ddd;
    backdrop-filter: none;
  }
}

.footer-mobile-quick {
  display: none;
}

/* ============================================
   BRANCHES SECTION
   ============================================ */
.branches-section {
  margin-top: 40px;
}

.branches-header {
  text-align: center;
  margin-bottom: 28px;
}

.branches-header h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
  margin-bottom: 6px;
}

.branches-header h2 span {
  color: var(--accent);
}

.branches-header > p {
  color: var(--silver);
  font-size: 14px;
  margin-bottom: 16px;
}

.geo-prompt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(66, 133, 244, 0.1);
  border: 1px solid rgba(66, 133, 244, 0.3);
  border-radius: 50px;
  color: #4285f4;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.geo-prompt-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.geo-prompt-btn:hover {
  background: rgba(66, 133, 244, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(66, 133, 244, 0.2);
}

.geo-prompt-btn.loading {
  opacity: 0.6;
  pointer-events: none;
}

.geo-prompt-btn.hidden {
  display: none;
}

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

.branch-card {
  background: rgba(13, 26, 48, 0.65);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
  position: relative;
}

.branch-card:hover {
  border-color: var(--accent-border);
  background: rgba(19, 34, 64, 0.8);
}

.branch-card.nearest {
  border-color: var(--accent);
  box-shadow: 0 0 24px rgba(232, 93, 4, 0.15), 0 0 0 1px rgba(232, 93, 4, 0.1);
}

.branch-nearest-label {
  display: none;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
  padding: 5px 12px;
  background: rgba(232, 93, 4, 0.08);
  border-radius: 50px;
  width: fit-content;
}

.branch-nearest-label svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.branch-card.nearest .branch-nearest-label {
  display: inline-flex;
}

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

.branch-name-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.branch-number {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(232, 93, 4, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}

.branch-name-wrap h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
}

.branch-distance {
  display: none;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  background: rgba(66, 133, 244, 0.1);
  border: 1px solid rgba(66, 133, 244, 0.25);
  border-radius: 50px;
  color: #4285f4;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.branch-distance svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.branch-distance.visible {
  display: inline-flex;
}

.branch-card.nearest .branch-distance {
  background: rgba(232, 93, 4, 0.1);
  border-color: var(--accent-border);
  color: var(--accent);
}

.branch-location-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4285f4;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  background: rgba(66, 133, 244, 0.08);
  border: 1px solid rgba(66, 133, 244, 0.2);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  margin-bottom: 16px;
  text-decoration: none;
}

.branch-location-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.branch-location-link:hover {
  background: rgba(66, 133, 244, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.15);
}

.branch-map-wrapper {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}

.branch-map-wrapper iframe {
  width: 100%;
  height: 250px;
  border: none;
}

/* ============================================
   BRANCHES PAGE (DEDICATED PAGE)
   ============================================ */
.bp-locate-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 24px;
  background: rgba(66, 133, 244, 0.12);
  border: 1px solid rgba(66, 133, 244, 0.3);
  border-radius: 50px;
  color: #4285f4;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.bp-locate-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.bp-locate-btn:hover {
  background: rgba(66, 133, 244, 0.22);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.15);
}

.bp-locate-btn.loading {
  opacity: 0.6;
  pointer-events: none;
}

.bp-locate-btn.loading svg {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.bp-locate-btn.done {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.3);
  color: #25d366;
  pointer-events: none;
}

.branches-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.bp-card {
  background: rgba(13, 26, 48, 0.65);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.bp-card:hover {
  border-color: var(--accent-border);
  background: rgba(19, 34, 64, 0.8);
}

.bp-card.nearest {
  border-color: var(--accent);
  box-shadow: 0 0 24px rgba(232, 93, 4, 0.15), 0 0 0 1px rgba(232, 93, 4, 0.1);
}

.bp-nearest-label {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 14px;
  padding: 6px 14px;
  background: rgba(232, 93, 4, 0.08);
  border-radius: 50px;
  width: fit-content;
}

.bp-nearest-label svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.bp-card.nearest .bp-nearest-label {
  display: inline-flex;
}

.bp-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.bp-num {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(232, 93, 4, 0.15), rgba(232, 93, 4, 0.08));
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
  border: 1px solid rgba(232, 93, 4, 0.2);
}

.bp-title h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
  margin: 0;
}

.bp-distance {
  display: none;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  background: rgba(66, 133, 244, 0.1);
  border: 1px solid rgba(66, 133, 244, 0.25);
  border-radius: 50px;
  color: #4285f4;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  width: fit-content;
  margin-bottom: 18px;
}

.bp-distance svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.bp-distance.visible {
  display: inline-flex;
}

.bp-card.nearest .bp-distance {
  background: rgba(232, 93, 4, 0.1);
  border-color: rgba(232, 93, 4, 0.25);
  color: var(--accent);
}

.bp-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.bp-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 8px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, border-color 0.25s ease;
  text-align: center;
  border: 1px solid transparent;
}

.bp-action svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.bp-action-label {
  font-size: 12px;
  font-weight: 600;
}

.bp-action-num {
  font-size: 11px;
  opacity: 0.7;
}

.bp-action-call {
  background: rgba(232, 93, 4, 0.1);
  color: var(--accent);
  border-color: rgba(232, 93, 4, 0.2);
}

.bp-action-call:hover {
  background: rgba(232, 93, 4, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 93, 4, 0.15);
}

.bp-action-wa {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.2);
}

.bp-action-wa:hover {
  background: rgba(37, 211, 102, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.15);
}

.bp-action-map {
  background: rgba(66, 133, 244, 0.1);
  color: #4285f4;
  border-color: rgba(66, 133, 244, 0.2);
}

.bp-action-map:hover {
  background: rgba(66, 133, 244, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.15);
}

.bp-map {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}

.bp-map iframe {
  width: 100%;
  height: 280px;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .branches-page-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bp-card {
    padding: 20px 16px;
  }

  .bp-header {
    gap: 12px;
    margin-bottom: 14px;
  }

  .bp-num {
    width: 38px;
    height: 38px;
    font-size: 17px;
    border-radius: 10px;
  }

  .bp-title h3 {
    font-size: 15px;
  }

  .bp-distance {
    margin-bottom: 14px;
    padding: 6px 14px;
    font-size: 13px;
  }

  .bp-actions {
    gap: 8px;
    margin-bottom: 14px;
  }

  .bp-action {
    padding: 12px 6px;
    border-radius: 10px;
  }

  .bp-action svg {
    width: 20px;
    height: 20px;
  }

  .bp-action-label {
    font-size: 11px;
  }

  .bp-action-num {
    font-size: 10px;
  }

  .bp-map iframe {
    height: 200px;
  }

  .bp-locate-btn {
    font-size: 13px;
    padding: 9px 20px;
    margin-top: 12px;
  }

  .bp-nearest-label {
    font-size: 11px;
    padding: 5px 12px;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .bp-card {
    padding: 16px 12px;
  }

  .bp-header {
    gap: 10px;
    margin-bottom: 12px;
  }

  .bp-num {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }

  .bp-title h3 {
    font-size: 14px;
  }

  .bp-actions {
    gap: 6px;
  }

  .bp-action {
    padding: 10px 4px;
    gap: 4px;
  }

  .bp-action svg {
    width: 18px;
    height: 18px;
  }

  .bp-action-label {
    font-size: 10px;
  }

  .bp-action-num {
    font-size: 9px;
  }

  .bp-map iframe {
    height: 170px;
  }

  .bp-locate-btn {
    font-size: 12px;
    padding: 8px 16px;
  }
}

@media (max-width: 360px) {
  .bp-card {
    padding: 14px 10px;
  }

  .bp-title h3 {
    font-size: 13px;
  }

  .bp-action {
    padding: 8px 3px;
  }

  .bp-map iframe {
    height: 150px;
  }
}

/* ============================================
   BRANCHES POPUP MODAL
   ============================================ */
.branches-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.branches-modal-overlay.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.branches-modal {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 100%;
  max-width: 480px;
  position: relative;
  animation: scaleIn 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.branches-modal-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.branches-modal-header svg {
  width: 24px;
  height: 24px;
  fill: var(--accent);
  flex-shrink: 0;
}

.branches-modal-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.branches-modal-subtitle {
  font-size: 13px;
  color: var(--silver);
  margin-bottom: 16px;
  padding-right: 34px;
}

[dir="ltr"] .branches-modal-subtitle {
  padding-right: 0;
  padding-left: 34px;
}

.geo-denied-msg {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(232, 93, 4, 0.08);
  border: 1px solid rgba(232, 93, 4, 0.2);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-size: 12px;
  color: var(--accent);
}

.geo-denied-msg svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.geo-denied-msg p {
  margin: 0;
  line-height: 1.5;
}

.branches-modal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bm-branch {
  background: rgba(13, 26, 48, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  transition: var(--transition);
}

.bm-branch:hover {
  border-color: var(--accent-border);
}

.bm-branch.bm-nearest {
  border-color: var(--accent);
  background: rgba(232, 93, 4, 0.04);
  box-shadow: 0 0 16px rgba(232, 93, 4, 0.1);
}

.bm-branch-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.bm-branch-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.bm-branch-num {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(232, 93, 4, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}

.bm-branch-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.4;
}

.bm-branch-dist {
  font-size: 12px;
  color: #4285f4;
  font-weight: 600;
  margin-top: 2px;
}

.bm-nearest-badge {
  display: none;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: rgba(232, 93, 4, 0.12);
  border-radius: 50px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.bm-branch-actions {
  display: flex;
  gap: 8px;
}

.bm-action {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
}

.bm-action svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.bm-action-call {
  background: rgba(232, 93, 4, 0.1);
  color: var(--accent);
  border-color: rgba(232, 93, 4, 0.2);
}

.bm-action-call:hover {
  background: var(--accent);
  color: #fff;
}

.bm-action-wa {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.2);
}

.bm-action-wa:hover {
  background: #25d366;
  color: #fff;
}

.bm-action-map {
  background: rgba(66, 133, 244, 0.1);
  color: #4285f4;
  border-color: rgba(66, 133, 244, 0.2);
}

.bm-action-map:hover {
  background: #4285f4;
  color: #fff;
}

@media (max-width: 480px) {
  .branches-modal {
    padding: 20px 16px;
  }

  .bm-action {
    padding: 10px 12px;
  }

  .bm-branch-info h4 {
    font-size: 13px;
  }
}

/* Footer branch styles */
.footer-branch {
  margin-bottom: 10px;
}

.footer-branch:last-child {
  margin-bottom: 0;
}

.footer-branch .footer-location {
  margin-bottom: 2px;
  font-size: 13px;
}

.footer-branch .footer-map-link {
  font-size: 12px;
  padding-right: 24px;
}

[dir="ltr"] .footer-branch .footer-map-link {
  padding-right: 0;
  padding-left: 24px;
}

@supports not (backdrop-filter: blur(10px)) {
  .navbar {
    background: rgba(6, 13, 26, 0.96);
  }

  .nav-links {
    background: rgba(6, 13, 26, 0.98);
  }

  .service-card,
  .value-card,
  .vehicle-card,
  .contact-card,
  .hours-card,
  .stat-item,
  .cta-block,
  .about-block .about-visual,
  .service-detail,
  .glass-card,
  .branch-card,
  .bp-card {
    background: rgba(13, 26, 48, 0.92);
  }
}
