:root {
  --bg-body: #050816;
  --bg-elevated: #0b1020;
  --bg-elevated-soft: #101426;
  --accent-primary: #27c9a9;
  --accent-primary-soft: rgba(39, 201, 169, 0.14);
  --accent-blue: #3ba4ff;
  --accent-amber: #ffb74d;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --text-main: #f9fafb;
  --text-subtle: #9ca3af;
  --text-soft: #6b7280;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-soft: 0 22px 40px rgba(0, 0, 0, 0.55);
  --shadow-subtle: 0 16px 30px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top left, #1f2937 0, #050816 52%)
      fixed,
    radial-gradient(circle at bottom right, #0b1120 0, #020617 55%) fixed;
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 100% - 3rem);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(
      to bottom,
      rgba(2, 6, 23, 0.9),
      rgba(2, 6, 23, 0.75),
      transparent
    );
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.logo-image {
  width: 200px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 600;
  font-size: 0.98rem;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--text-soft);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  font-size: 0.9rem;
}

.nav-link {
  position: relative;
  color: var(--text-subtle);
  padding-inline: 0.2rem;
}

.nav-link.is-active {
  color: var(--text-main);
  font-weight: 500;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #22c55e, #a855f7);
  transition: width 0.18s ease-out;
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.header-phones {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--text-subtle);
}

.header-phones a {
  color: inherit;
}

.header-phones a:hover {
  color: var(--text-main);
}

.phone-separator {
  opacity: 0.6;
}

.btn {
  border-radius: 999px;
  padding: 0.48rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  white-space: nowrap;
  transition: background 0.16s ease-out, color 0.16s ease-out,
    border-color 0.16s ease-out, box-shadow 0.16s ease-out,
    transform 0.06s ease-out;
}

.btn-primary {
  background: linear-gradient(135deg, #22c55e, #14b8a6);
  color: #041019;
  box-shadow: 0 18px 35px rgba(34, 197, 94, 0.27);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 40px rgba(34, 197, 94, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text-main);
  border-color: rgba(148, 163, 184, 0.35);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.8);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border-color: rgba(148, 163, 184, 0.45);
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.8);
}

.btn-lg {
  padding-block: 0.7rem;
  padding-inline: 1.35rem;
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: #e5e7eb;
  border-radius: 999px;
  transition: transform 0.16s ease, opacity 0.16s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  padding: 2.8rem 0 2.6rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-content {
  max-width: 640px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--accent-primary);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(45, 212, 191, 0.5);
  margin-bottom: 0.8rem;
}

.hero-kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent-primary);
}

.hero-title {
  font-size: clamp(2.1rem, 3vw, 2.7rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  margin: 0 0 1.4rem;
  color: var(--text-subtle);
  font-size: 0.95rem;
  max-width: 32rem;
}

.search-bar {
  display: flex;
  align-items: stretch;
  gap: 0.7rem;
  padding: 0.4rem;
  background: rgba(15, 23, 42, 0.9);
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.75);
  margin-bottom: 0.85rem;
}

.search-input-group {
  flex: 1;
  display: flex;
  align-items: center;
  padding-inline: 0.75rem 0.3rem;
}

.search-input-group::before {
  content: "🔍";
  font-size: 0.95rem;
  margin-right: 0.5rem;
  opacity: 0.8;
}

.search-input-group input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.9rem;
  background: transparent;
  color: var(--text-main);
}

.search-input-group input::placeholder {
  color: var(--text-soft);
}

.search-input-wrap {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.search-input-wrap .search-input-group {
  flex: 1;
}

.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 0.25rem;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
  max-height: 18rem;
  overflow-y: auto;
  z-index: 100;
  display: none;
}
.search-suggestions.is-open {
  display: block;
}
.search-suggestions-item {
  padding: 0.65rem 1rem;
  cursor: pointer;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.search-suggestions-item:last-child {
  border-bottom: none;
}
.search-suggestions-item:hover,
.search-suggestions-item:focus {
  background: rgba(148, 163, 184, 0.12);
  outline: none;
}
.search-suggestions-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
}
.search-suggestions-meta {
  font-size: 0.78rem;
  color: var(--text-soft);
}

.search-btn {
  padding-inline: 1.55rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.divider-dot {
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: var(--text-soft);
}

.hero-blog-cta {
  margin-top: 1rem;
}

.hero-panel {
  position: relative;
}

.trust-card {
  background: radial-gradient(circle at top left, #22c55e1f 0, #020617 55%);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: var(--shadow-soft);
}

.trust-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-soft);
  margin-bottom: 0.85rem;
}

.trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.86rem;
  color: var(--text-subtle);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 500;
  margin-right: 0.3rem;
}

.pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
}

.pill-green {
  background: var(--accent-primary-soft);
  color: var(--accent-primary);
}

.pill-green::before {
  background: var(--accent-primary);
}

.pill-blue {
  background: rgba(59, 164, 255, 0.16);
  color: #93c5fd;
}

.pill-blue::before {
  background: var(--accent-blue);
}

.pill-amber {
  background: rgba(252, 211, 77, 0.18);
  color: #fed7aa;
}

.pill-amber::before {
  background: var(--accent-amber);
}

.categories {
  padding: 0.5rem 0 2.3rem;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.section-header h2 {
  font-size: 1.22rem;
  margin: 0;
}

.link-inline {
  font-size: 0.85rem;
  color: var(--accent-blue);
}

.link-inline:hover {
  text-decoration: underline;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.category-card {
  padding: 1.05rem 1rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    145deg,
    rgba(15, 23, 42, 0.96),
    rgba(15, 23, 42, 0.92)
  );
  border: 1px solid rgba(148, 163, 184, 0.38);
  box-shadow: var(--shadow-subtle);
}

.category-card h3 {
  font-size: 0.95rem;
  margin: 0 0 0.4rem;
}

.category-card p {
  margin: 0 0 0.55rem;
  color: var(--text-subtle);
  font-size: 0.84rem;
}

.category-meta {
  font-size: 0.75rem;
  color: var(--text-soft);
}

.business-cta {
  padding: 1.6rem 0 2.5rem;
}

.business-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 2.1rem;
  padding: 1.6rem 1.7rem;
  border-radius: 26px;
  background: radial-gradient(circle at top left, #22c55e33 0, #020617 55%);
  border: 1px solid rgba(45, 212, 191, 0.5);
  box-shadow: var(--shadow-soft);
}

.info-section {
  padding: 0.4rem 0 2.4rem;
}

.about-section {
  padding: 0.4rem 0 2.6rem;
}

.about-card {
  max-width: 720px;
  padding: 1.3rem 1.4rem;
  border-radius: var(--radius-xl);
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-subtle);
  font-size: 0.9rem;
  color: var(--text-subtle);
}

.about-card h2 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.about-card p {
  margin: 0 0 0.6rem;
}

.about-card p:last-of-type {
  margin-bottom: 0;
}

.od-form {
  margin-top: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.od-form label {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 0.3rem;
  color: var(--text-subtle);
}

.od-form input[type="text"],
.od-form input[type="number"],
.od-form input[type="email"],
.od-form input[type="tel"],
.od-form input[type="password"],
.od-form input[type="url"],
.od-form select,
.od-form textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  margin-bottom: 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(2, 6, 23, 0.9);
  color: #f9fafb;
  font-size: 0.9rem;
  box-sizing: border-box;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.od-form input:focus,
.od-form select:focus,
.od-form textarea:focus {
  outline: none;
  border-color: rgba(45, 212, 191, 0.9);
  box-shadow: 0 0 0 1px rgba(45, 212, 191, 0.8), 0 0 0 8px rgba(45, 212, 191, 0.12);
  background: rgba(15, 23, 42, 0.95);
}

.od-form textarea {
  min-height: 80px;
  resize: vertical;
}

.od-form-row-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 0.75rem;
}

.od-form-note {
  margin: 0.3rem 0 0;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.od-form-messages {
  margin: 0.8rem 0;
}

.od-form-errors {
  margin: 0;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.4);
  color: #fecaca;
  font-size: 0.86rem;
  list-style: disc;
  padding-left: 1.5rem;
}

.od-form-success {
  margin: 0;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.45);
  color: #bbf7d0;
  font-size: 0.9rem;
}

.is-arabic {
  direction: rtl;
  text-align: right;
  font-family: "Cairo", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Location page: full-page RTL when Arabic */
body.loc-rtl {
  direction: rtl;
  text-align: right;
  font-family: "Cairo", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.loc-lang-row a {
  margin-inline-end: 0.5rem;
  margin-inline-start: 0;
}

.loc-lang-current {
  font-weight: 600;
  text-decoration: underline !important;
}

/* Floating language bar (location page) */
.has-lang-bar {
  padding-bottom: 3.5rem;
}

.loc-lang-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.98);
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  padding: 0.5rem 1rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

/* Lang select at top of page */
.lang-select-top {
  background: rgba(15, 23, 42, 0.97);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  padding: 0.4rem 0;
  z-index: 1001;
  position: relative;
  backdrop-filter: blur(8px);
}
.lang-select-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  max-width: 1200px;
  margin: 0 auto;
  width: min(100% - 2rem, 1120px);
  padding-inline: 1rem;
}
.lang-select-label {
  font-size: 0.8rem;
  color: var(--text-soft);
}
.lang-select {
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(30, 41, 59, 0.9);
  color: var(--text-main);
  font-size: 0.85rem;
  cursor: pointer;
  min-width: 140px;
}
.lang-select:hover,
.lang-select:focus {
  border-color: rgba(39, 201, 169, 0.5);
  outline: none;
}
body.loc-rtl .lang-select-inner {
  justify-content: flex-start;
}

.loc-lang-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.6rem;
}

.loc-lang-bar-link {
  display: inline-block;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(30, 41, 59, 0.8);
  color: var(--text-soft);
  font-size: 0.78rem;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.loc-lang-bar-link:hover {
  border-color: rgba(45, 212, 191, 0.6);
  background: rgba(45, 212, 191, 0.15);
  color: #e2e8f0;
}

.loc-lang-bar-link.active {
  background: linear-gradient(90deg, #22c55e, #06b6d4);
  color: #02131a;
  border-color: rgba(45, 212, 191, 0.9);
}

body.loc-rtl .loc-lang-bar-inner {
  flex-direction: row-reverse;
}

.signup-card {
  max-width: none;
}

.signup-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 1.6rem;
  align-items: flex-start;
}

.signup-copy {
  font-size: 0.9rem;
  color: var(--text-subtle);
}

.signup-copy h2 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
  color: var(--text-main);
}

.signup-pricing {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.signup-pricing-card {
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.16), transparent 55%),
    rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}

.signup-pricing-card h4 {
  margin: 0 0 0.2rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

.signup-pricing-price {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent-primary);
}

.signup-pricing-price span {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-soft);
  margin-left: 0.2rem;
}

.signup-pricing-note {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-soft);
}

.signup-form-card {
  padding: 1.25rem 1.4rem;
  border-radius: 18px;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), transparent 55%),
    rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.32);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.signup-form-header {
  margin-bottom: 0.9rem;
}

.signup-form-title {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #e5e7eb;
}

.signup-form-subtitle {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-soft);
}

@media (max-width: 900px) {
  .signup-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .signup-pricing {
    grid-template-columns: minmax(0, 1fr);
  }
}

.business-text h2 {
  margin: 0 0 0.75rem;
  font-size: 1.3rem;
}

.business-text p {
  margin: 0 0 0.8rem;
  color: var(--text-subtle);
  font-size: 0.92rem;
}

.business-benefits {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-subtle);
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.business-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  justify-content: center;
}

.business-actions .btn {
  flex: 1;
}

.business-note {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-soft);
}

.recent-reviews {
  padding: 0.2rem 0 2.6rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.reviews-grid > a {
  display: flex;
  min-height: 0;
}

.review-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  padding: 1.1rem 1.05rem;
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.93);
  border: 1px solid rgba(148, 163, 184, 0.38);
  box-shadow: var(--shadow-subtle);
  font-size: 0.85rem;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.review-rating span {
  font-size: 0.95rem;
}

.review-label {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.review-card h3 {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
}

.review-card p {
  flex: 1;
  min-height: 0;
  margin: 0 0 0.75rem;
  color: var(--text-subtle);
}

.loc-details-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.2rem;
  margin-top: 1rem;
  font-size: 0.86rem;
  color: var(--text-subtle);
}

.loc-details-grid dt {
  font-weight: 500;
  color: var(--text-soft);
}

.loc-details-grid dd {
  margin: 0 0 0.4rem;
}

.loc-media {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.loc-logo {
  width: 200px;
  max-width: 100%;
  max-height: 220px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(15, 23, 42, 0.95);
  object-fit: contain;
}

.loc-photos {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  scroll-snap-type: x mandatory;
}

.loc-photos-slider-wrap {
  position: relative;
}

.loc-photos-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.9);
  color: #e2e8f0;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  padding: 0;
}

.loc-photos-arrow:hover {
  background: rgba(39, 201, 169, 0.25);
  border-color: var(--accent-primary);
  color: #f9fafb;
}

.loc-photos-arrow-prev {
  left: 4px;
}

.loc-photos-arrow-next {
  right: 4px;
}

body.loc-rtl .loc-photos-arrow-prev {
  left: auto;
  right: 4px;
}

body.loc-rtl .loc-photos-arrow-next {
  right: auto;
  left: 4px;
}

.loc-photos::-webkit-scrollbar {
  display: none;
}

.loc-photos {
  scrollbar-width: none;
}

.loc-photos img {
  width: 210px;
  height: 140px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(148, 163, 184, 0.35);
  flex-shrink: 0;
  scroll-snap-align: start;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
  cursor: pointer;
}

.loc-photos img:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6);
  border-color: rgba(148, 163, 184, 0.55);
}

.loc-lightbox {
  position: fixed;
  inset: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.loc-lightbox[hidden] {
  display: none;
}

.loc-lightbox-inner {
  position: relative;
  max-width: 960px;
  width: 100%;
  max-height: 90vh;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.7);
}

.loc-lightbox-img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}

.loc-lightbox-close,
.loc-lightbox-prev,
.loc-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
}

.loc-lightbox-close {
  top: 1rem;
  right: 1rem;
  transform: none;
}

.loc-lightbox-prev {
  left: 0.75rem;
}

.loc-lightbox-next {
  right: 0.75rem;
}

.loc-lightbox-prev:hover,
.loc-lightbox-next:hover,
.loc-lightbox-close:hover {
  background: rgba(15, 23, 42, 1);
  border-color: rgba(248, 250, 252, 0.9);
}

.loc-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.4rem;
}

.loc-social-link {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #0b1120;
  text-decoration: none;
  background: rgba(148, 163, 184, 0.2);
  border: 1px solid rgba(148, 163, 184, 0.45);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, border-color 0.12s ease;
}

.loc-social-link span {
  font-weight: 600;
}

.loc-social-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.45);
  border-color: rgba(248, 250, 252, 0.7);
}

.loc-social--facebook {
  background: #1877f2;
  color: #e5f0ff;
}

.loc-social--instagram {
  background: radial-gradient(circle at 30% 30%, #fdf497 0, #fd5949 35%, #d6249f 65%, #285aeb 100%);
  color: #f9fafb;
}

.loc-social--twitter {
  background: #020817;
  color: #f9fafb;
}

.loc-social--tiktok {
  background: #000000;
  color: #f97373;
}

.loc-social--snapchat {
  background: #fffc00;
  color: #000000;
}

.loc-social--youtube {
  background: #ff0000;
  color: #f9fafb;
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-soft);
  font-size: 0.78rem;
}

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  background: radial-gradient(circle at top, #020617, #020617 60%);
  margin-top: 1rem;
}

.footer-inner {
  display: flex;
  gap: 2.5rem;
  padding: 1.8rem 0 1.6rem;
}

.footer-brand {
  max-width: 320px;
}

.footer-desc {
  margin: 0.7rem 0 0;
  font-size: 0.85rem;
  color: var(--text-subtle);
}

.footer-columns {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.footer-column h3 {
  margin: 0 0 0.6rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
}

.footer-column a {
  display: block;
  font-size: 0.8rem;
  color: var(--text-subtle);
  margin-bottom: 0.35rem;
}

.footer-column a:hover {
  color: var(--text-main);
}

.footer-bottom {
  border-top: 1px solid rgba(55, 65, 81, 0.9);
  padding: 0.6rem 0 0.9rem;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-soft);
}

.footer-country {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.8fr);
  }

  .hero-panel {
    order: -1;
  }

  .business-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding-block: 0.65rem;
  }

  .logo-image {
    width: 100px;
  }

  .header-phones {
    display: none;
  }

  .main-nav {
    position: absolute;
    inset-inline: 0;
    top: 56px;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.7rem 1.5rem 0.3rem;
    background: rgba(15, 23, 42, 0.98);
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
    transform-origin: top;
    transform: scaleY(0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.16s ease-out, transform 0.16s ease-out;
  }

  .main-nav.is-open {
    opacity: 1;
    transform: scaleY(1);
    pointer-events: auto;
  }

  .header-actions {
    position: absolute;
    right: 1.5rem;
    top: 62px;
    gap: 0.4rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.16s ease-out, transform 0.16s ease-out;
  }

  .header-actions.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 2.2rem;
  }

  .search-bar {
    flex-direction: column;
    border-radius: 18px;
  }

  .search-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 2rem, 560px);
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .hero-subtitle {
    max-width: none;
  }

  .card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .reviews-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-columns {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .loc-logo {
    width: 70px;
    max-height: 120px;
  }
}

