/* BC Tech – Clean Professional Design with Light & Dark Mode */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  /* Brand colors */
  --blue: #1a73e8;
  --blue-light: #e8f0fe;
  --blue-dark: #1557b0;
  --green: #25d366;
  --green-hover: #1ebe57;

  /* Light Theme Defaults */
  --bg-body: #ffffff;
  --bg-surface: #f8fafc;
  --bg-card: #ffffff;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-subtle: #94a3b8;
  --border-color: #e2e8f0;
  --border-subtle: #f1f5f9;
  --navbar-bg: rgba(255, 255, 255, 0.94);
  --hero-bg: radial-gradient(circle at 50% 0%, rgba(26, 115, 232, 0.08) 0%, #f8fafc 50%, #ffffff 90%);
  --input-bg: #ffffff;
  --form-card-bg: #f8fafc;
  --quote-bg: #f1f5f9;
  --gallery-bg: #f1f5f9;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 14px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.10);
  
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
}

/* Dark Theme Overrides */
body.dark-theme {
  --bg-body: #0f1117;
  --bg-surface: #161a26;
  --bg-card: #1c2234;
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --text-subtle: #64748b;
  --border-color: #2a3348;
  --border-subtle: #1e2840;
  --navbar-bg: rgba(15, 17, 23, 0.92);
  --hero-bg: radial-gradient(circle at 50% 0%, rgba(26, 115, 232, 0.16) 0%, rgba(22, 26, 38, 0.95) 50%, #0f1117 90%);
  --input-bg: #111520;
  --form-card-bg: #161a26;
  --quote-bg: #161a26;
  --gallery-bg: #161a26;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.5);
  --shadow: 0 4px 14px rgba(0,0,0,0.5);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.7);
  --blue-light: rgba(26, 115, 232, 0.15);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Heebo', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-main);
  background: var(--bg-body);
  direction: rtl;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color var(--transition), color var(--transition);
}

::selection {
  background: var(--blue);
  color: #ffffff;
}

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

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

/* ─── Container ─── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Section Headers ─── */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-align: center;
}

.btn-primary {
  background: var(--blue);
  color: #ffffff;
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26, 115, 232, 0.35);
}

.btn-whatsapp {
  background: var(--green);
  color: #ffffff;
}
.btn-whatsapp:hover {
  background: var(--green-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-outline {
  background: var(--bg-surface);
  color: var(--text-main);
  border: 1.5px solid var(--border-color);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-light);
}

/* ─── Touch / Click Tactile Micro-Interactions ─── */
.btn:active, 
.profile-social-btn:active, 
.gallery-item:active, 
.theme-toggle-btn:active,
.contact-link:active,
.faq-btn:active,
.showcase-expand:active,
.showcase-nav:active {
  transform: scale(0.96) !important;
}

/* ─── Scroll Reveal Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }
.delay-6 { transition-delay: 0.48s; }

/* ─── Theme Toggle Button ─── */
.theme-toggle-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border-color);
  background: var(--bg-surface);
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: all var(--transition);
  flex-shrink: 0;
}
.theme-toggle-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-light);
  transform: rotate(15deg);
}

/* ─── Card ─── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

body.dark-theme .card {
  background: #1c2234;
  border: 1px solid #2e3a52;
}

body.dark-theme .card:hover {
  border-color: rgba(26, 115, 232, 0.55);
  box-shadow: 0 8px 32px rgba(26, 115, 232, 0.12), 0 0 0 1px rgba(26, 115, 232, 0.2);
}

/* ─── Navbar ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navbar-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: background-color var(--transition), border-color var(--transition);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.navbar-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.navbar-brand:hover .navbar-logo {
  transform: scale(1.05);
}

.navbar-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.navbar-name {
  font-size: 1.28rem;
  font-weight: 900;
  color: var(--text-main);
  letter-spacing: -0.02em;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Heebo', sans-serif;
}

.brand-accent {
  color: var(--blue);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.navbar-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.navbar-links a:hover {
  color: var(--blue);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-actions .btn {
  padding: 9px 18px;
  font-size: 0.85rem;
}

/* ─── Language Switcher (Desktop) ─── */
.lang-switch {
  display: inline-flex;
  align-items: center;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-color);
  border-radius: 30px;
  padding: 3px;
  gap: 2px;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-btn:hover {
  color: var(--text-main);
}

.lang-btn.active {
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.3);
}

.lang-btn .flag {
  font-size: 0.95rem;
  line-height: 1;
}

.lang-flag-img {
  width: 19px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.footer-flag-img {
  width: 22px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* ─── Mobile Navbar Controls ─── */
.navbar-mobile-controls {
  display: none;
  align-items: center;
  gap: 8px;
}

.mobile-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-color);
  color: var(--text-main);
  padding: 5px 12px;
  border-radius: 20px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-lang-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.mobile-lang-switch {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  width: 100%;
}

.mobile-lang-btn-item {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1.5px solid var(--border-color);
  background: var(--bg-surface);
  color: var(--text-main);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-lang-btn-item.active {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-main);
  cursor: pointer;
  padding: 4px;
}

/* Mobile menu */
.mobile-menu {
  display: flex;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-body);
  z-index: 99;
  padding: 24px;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-14px);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 12px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  border-bottom: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.mobile-menu a:active {
  background: var(--bg-surface);
  color: var(--blue);
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 24px;
  margin-top: auto;
}

.mobile-menu-actions .btn {
  justify-content: center;
  width: 100%;
}

/* ─── Hero ─── */
.hero {
  padding: 38px 0 24px;
  background: var(--hero-bg);
  transition: background var(--transition);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.4;
  text-align: center;
  max-width: 100%;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-badge.is-offline {
  background: rgba(245, 158, 11, 0.12);
  color: #b45309;
}

body.dark-theme .hero-badge.is-offline {
  background: rgba(245, 158, 11, 0.16);
  color: #fbbf24;
}

.hero-badge.is-offline .hero-badge-dot {
  background: #f59e0b;
  box-shadow: 0 0 6px rgba(245, 158, 11, 0.4);
  animation: none;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-title-main {
  color: var(--text-main);
  display: inline-block;
  white-space: nowrap;
}

.hero-title-sub {
  display: inline-block;
  font-size: 0.62em;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.3;
  margin-top: 6px;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border-color);
}

.hero-stat-value {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-subtle);
  margin-top: 2px;
}

/* Profile card */
.profile-card {
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  box-shadow: none;
  transition: all var(--transition);
}

.profile-img {
  width: 146px;
  height: 146px;
  border-radius: 50%;
  object-fit: cover;
  border: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  margin: 0 auto 16px;
}

.profile-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
}

.profile-role {
  font-size: 0.88rem;
  color: var(--blue);
  font-weight: 600;
  margin-top: 2px;
}

.profile-location {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.profile-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.profile-social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: all var(--transition);
  background: var(--bg-surface);
}
.profile-social-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-light);
}

.profile-quote {
  margin-top: 20px;
  padding: 14px;
  background: var(--quote-bg);
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── Services ─── */
.services {
  padding: 56px 0;
  background: var(--bg-surface);
  transition: background var(--transition);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  transition: all var(--transition);
}

.service-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.service-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}


/* ─── Gallery ─── */
.gallery-section {
  padding: 40px 0 52px;
  background: var(--bg-body);
}

/* Featured Slideshow (Vertical Portrait Orientation) */
.gallery-showcase {
  position: relative;
  max-width: 500px;
  margin: 32px auto 20px;
  border-radius: 20px;
  overflow: hidden;
  background: #060911;
  border: 1.5px solid var(--border-color);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.45), 0 0 25px rgba(26, 115, 232, 0.15);
  user-select: none;
}

.showcase-slide-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 480px;
  max-height: 600px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  border-radius: 18px;
}

.showcase-img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 2;
  transition: opacity 0.35s ease-in-out, transform 0.35s ease-in-out;
  opacity: 1;
}

.showcase-img.fade-out {
  opacity: 0;
  transform: scale(0.98);
}

.showcase-img.fade-in {
  opacity: 1;
  transform: scale(1);
}

/* Numbering Badge (e.g. 1 / 12) */
.showcase-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  direction: ltr;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}


/* Nav arrows */
.showcase-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(8, 12, 22, 0.65);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 5;
}
.showcase-nav:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-50%) scale(1.08);
}
.showcase-prev { right: 14px; }
.showcase-next { left: 14px; }

/* 3s Progress Bar */
.showcase-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 4;
}
.showcase-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
  transition: width 0.1s linear;
}

/* Smaller Thumbnails Grid Below (Vertical Aspect) */
.gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  max-width: 620px;
  margin: 16px auto 0;
  counter-reset: thumb-count;
}

.gallery-thumbnails .gallery-item {
  counter-increment: thumb-count;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3 / 4;
  background: var(--gallery-bg);
  border: 2px solid var(--border-color);
  opacity: 0.65;
  transition: all var(--transition);
}

.gallery-thumbnails .gallery-item::after {
  content: counter(thumb-count);
  position: absolute;
  bottom: 3px;
  right: 3px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 4px;
  line-height: 1.2;
  pointer-events: none;
  border: 0.5px solid rgba(255, 255, 255, 0.2);
}

.gallery-thumbnails .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-thumbnails .gallery-item:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  border-color: var(--blue);
}

.gallery-thumbnails .gallery-item.active {
  opacity: 1;
  border-color: var(--blue);
  box-shadow: 0 0 14px rgba(26, 115, 232, 0.45);
  transform: scale(1.04);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  left: 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.8rem;
  cursor: pointer;
  transition: color var(--transition);
  z-index: 10;
}
.lightbox-close:hover { color: #ffffff; }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: rgba(255,255,255,0.8);
  font-size: 1.4rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.lightbox-nav:hover {
  background: rgba(255,255,255,0.2);
  color: #ffffff;
}
.lightbox-prev { right: 20px; }
.lightbox-next { left: 20px; }

.lightbox-img {
  max-width: 88vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ─── Why Us ─── */
.why-us {
  padding: 56px 0;
  background: var(--bg-surface);
  transition: background var(--transition);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.why-card {
  text-align: center;
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.why-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin: 0 auto 14px;
}

.why-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0;
}

body.dark-theme .why-card {
  background: #1c2234;
  border: 1px solid #2e3a52;
}

body.dark-theme .why-card:hover {
  border-color: rgba(26, 115, 232, 0.55);
  box-shadow: 0 8px 32px rgba(26, 115, 232, 0.12), 0 0 0 1px rgba(26, 115, 232, 0.2);
}

/* ─── Service Badges & Header ─── */
.service-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.service-card-header .service-icon {
  margin-bottom: 0;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 0;
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.35);
  line-height: 1.2;
  white-space: nowrap;
}

/* ─── Reviews / Testimonials ─── */
.reviews-section {
  padding: 80px 0;
  background: var(--bg-body);
  transition: background var(--transition);
}

.reviews-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 8px 18px;
  border-radius: 50px;
  margin-top: 14px;
  box-shadow: var(--shadow-sm);
  font-size: 0.85rem;
  color: var(--text-main);
}

.reviews-rating-badge .stars {
  color: #f59e0b;
  font-size: 0.95rem;
  display: flex;
  gap: 2px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

.review-text {
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.review-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
}

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

/* ─── Floating WhatsApp Quick Widget ─── */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 100;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.whatsapp-float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: all var(--transition);
  animation: pulse-whatsapp 2.5s infinite;
}

.whatsapp-float-btn:hover {
  background: #1ebe57;
  transform: scale(1.08);
}

.whatsapp-bubble {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  border-radius: 16px;
  padding: 12px 16px 12px 28px;
  font-size: 0.82rem;
  color: var(--text-main);
  max-width: 250px;
  line-height: 1.45;
  transition: all 0.3s ease;
}

.whatsapp-bubble.hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
}

.whatsapp-bubble-close {
  position: absolute;
  top: 4px;
  left: 8px;
  background: none;
  border: none;
  font-size: 1.15rem;
  color: var(--text-subtle);
  cursor: pointer;
  padding: 2px 4px;
  line-height: 1;
}

.whatsapp-bubble-close:hover {
  color: var(--text-main);
}

@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .floating-whatsapp {
    display: none; /* Mobile uses the floating bottom pill bar */
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Contact ─── */
.contact {
  padding: 56px 0;
  background: var(--bg-surface);
  transition: background var(--transition);
}

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 32px;
  max-width: 920px;
  margin: 48px auto 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.contact-link:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
}

.contact-link-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-link-label {
  font-size: 0.75rem;
  color: var(--text-subtle);
}
.contact-link-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

/* Form */
.contact-form {
  background: var(--form-card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.form-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.form-subtitle {
  font-size: 0.82rem;
  color: var(--text-subtle);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border-color);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text-main);
  background: var(--input-bg);
  transition: border-color var(--transition);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue);
}

.form-textarea {
  resize: none;
  min-height: 80px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.form-note {
  text-align: center;
  font-size: 0.76rem;
  color: var(--text-subtle);
  margin-top: 10px;
}

.form-feedback {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: right;
  line-height: 1.45;
  transition: all var(--transition);
}

.form-feedback.success {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.35);
}

body.dark-theme .form-feedback.success {
  background: rgba(34, 197, 94, 0.18);
  color: #4ade80;
  border-color: rgba(74, 222, 128, 0.3);
}

.form-feedback.error {
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.35);
}

body.dark-theme .form-feedback.error {
  background: rgba(239, 68, 68, 0.18);
  color: #f87171;
  border-color: rgba(248, 113, 113, 0.3);
}

/* ─── FAQ ─── */
.faq {
  padding: 56px 0;
  background: var(--bg-body);
  transition: background var(--transition);
}

.faq-list {
  max-width: 680px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.active {
  border-color: var(--blue);
}

.faq-btn {
  width: 100%;
  padding: 18px 22px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  text-align: right;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--text-subtle);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-btn svg {
  transform: rotate(180deg);
  color: var(--blue);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 22px 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Footer ─── */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border-color);
  background: var(--bg-surface);
  text-align: center;
  transition: background-color var(--transition), border-color var(--transition);
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}

.footer-brand-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand-name {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-main);
}

.footer-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--blue); }

.footer-copy {
  font-size: 0.72rem;
  color: var(--text-subtle);
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

/* ─── Mobile Bottom Bar (Floating Pill) ─── */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 90;
  background: rgba(15, 17, 23, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 8px;
  gap: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  margin-bottom: env(safe-area-inset-bottom, 0px);
}

.mobile-bar .btn {
  flex: 1;
  justify-content: center;
  padding: 13px 14px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 12px;
}

.mobile-bar .btn-outline {
  background: var(--blue);
  color: #ffffff;
  border: none;
}

.mobile-bar .btn-outline:hover {
  background: var(--blue-dark);
  color: #ffffff;
}

.mobile-bar .btn-whatsapp {
  animation: none;
}

@keyframes pulse-whatsapp {
  0%, 100% {
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  }
  50% {
    box-shadow: 0 4px 22px rgba(37, 211, 102, 0.7);
    transform: translateY(-1px);
  }
}

/* Mobile Swipe Hint Badge */
.showcase-swipe-hint {
  display: none;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-grid .profile-card {
    max-width: 360px;
    margin: 0 auto;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-showcase {
    max-width: 480px;
  }
  .showcase-slide-wrapper {
    aspect-ratio: 3 / 4;
    min-height: 480px;
    height: auto;
  }
  .gallery-thumbnails {
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    max-width: 480px;
  }
}

@media (max-width: 768px) {
  .navbar-links,
  .navbar-actions {
    display: none;
  }
  .navbar-mobile-controls {
    display: flex;
  }
  .hamburger {
    display: block;
  }
  .hero {
    padding: 22px 0 28px;
    text-align: center;
  }
  .hero-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }
  .section-title {
    font-size: clamp(1.3rem, 4.5vw, 1.8rem);
    margin-bottom: 6px;
  }
  .section-desc {
    font-size: 0.85rem;
  }
  .services,
  .gallery-section,
  .why-us,
  .contact,
  .faq {
    padding: 34px 0;
  }
  .hero .btn-outline {
    display: none;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
    font-size: 0.95rem;
  }
  .hero-actions {
    justify-content: center;
    margin-bottom: 14px;
  }
  .hero-stats {
    display: none;
  }
  .profile-card {
    display: block;
    max-width: 340px;
    margin: 20px auto 0;
    padding: 16px 12px;
  }
  .profile-img {
    width: 140px;
    height: 140px;
    margin: 0 auto 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }
  .profile-name {
    font-size: 1.45rem;
    font-weight: 800;
  }
  .profile-role {
    font-size: 0.95rem;
    margin-top: 4px;
  }
  .profile-location {
    font-size: 0.88rem;
    margin-top: 6px;
  }
  .profile-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
  }
  .profile-social-btn {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
  .profile-quote {
    display: block;
    margin-top: 16px;
    padding: 12px 14px;
    font-size: 0.86rem;
    line-height: 1.55;
    background: var(--quote-bg);
    border-radius: var(--radius);
    color: var(--text-muted);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
  }
  .services-grid .card {
    padding: 16px 14px;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
  }
  .service-badge {
    font-size: 0.65rem;
    padding: 3px 8px;
    margin-bottom: 8px;
    align-self: flex-start;
    border-radius: 12px;
  }
  .service-icon {
    width: 40px;
    height: 40px;
    font-size: 1.15rem;
    border-radius: 10px;
    margin: 0 0 10px;
    flex-shrink: 0;
  }
  .service-title {
    font-size: 0.94rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 6px;
  }
  .service-desc {
    font-size: 0.81rem;
    line-height: 1.45;
    color: var(--text-muted);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
  }
  .why-card {
    padding: 18px 14px;
    border-radius: 14px;
    text-align: center;
    box-shadow: var(--shadow-sm);
  }
  .why-icon {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
    border-radius: 12px;
    margin: 0 auto 10px;
  }
  .why-title {
    font-size: 0.94rem;
    font-weight: 800;
    margin-bottom: 6px;
  }
  .why-desc {
    font-size: 0.81rem;
    line-height: 1.45;
  }
  .gallery-showcase {
    max-width: 420px;
  }
  .showcase-slide-wrapper {
    aspect-ratio: 3 / 4;
    min-height: 420px;
    height: auto;
  }
  .showcase-caption {
    font-size: 0.95rem;
  }
  .showcase-nav {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }
  .showcase-swipe-hint {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 10;
    pointer-events: none;
    animation: fade-hint 4s forwards;
  }
  @keyframes fade-hint {
    0% { opacity: 0; transform: translateY(-4px); }
    15%, 80% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0.4; transform: translateY(0); }
  }
  .gallery-thumbnails {
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
    max-width: 420px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 20px;
  }
  .contact-form {
    padding: 20px 16px;
  }
  .mobile-bar {
    display: flex;
  }
  body {
    padding-bottom: 84px;
  }
}

@media (max-width: 480px) {
  .gallery-showcase {
    max-width: 100%;
    margin: 18px auto 12px;
    border-radius: 16px;
  }
  .showcase-slide-wrapper {
    aspect-ratio: 4 / 5;
    min-height: 380px;
    height: auto;
  }
  .gallery-thumbnails {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    max-width: 100%;
  }
  .hero-stats {
    display: none;
  }
}

/* ─── Accessibility Widget Styles (Base Desktop) ─── */
.accessibility-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  left: auto;
  z-index: 9999;
}

.accessibility-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue);
  color: #ffffff;
  border: 2.5px solid #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  font-size: 1.45rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.accessibility-btn:hover {
  transform: scale(1.08);
  background: var(--blue-dark);
}

.accessibility-menu {
  position: absolute;
  bottom: 64px;
  right: 0;
  left: auto;
  width: 300px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.95);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.accessibility-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.accessibility-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-subtle);
}

.accessibility-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-main);
}

.accessibility-title i {
  color: var(--blue);
}

.accessibility-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}

.accessibility-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.access-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 6px;
  border-radius: 10px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.76rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.access-btn i {
  font-size: 1.05rem;
  color: var(--blue);
}

.access-btn:hover {
  border-color: var(--blue);
  background: var(--blue-light);
}

.access-btn.active {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
}

.access-btn.active i {
  color: #ffffff;
}

.access-reset {
  grid-column: span 2;
  flex-direction: row;
  padding: 9px;
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.25);
  color: #ef4444;
}

.access-reset i {
  color: #ef4444;
}

.access-reset:hover {
  background: #ef4444;
  color: #ffffff;
}

.access-reset:hover i {
  color: #ffffff;
}

.accessibility-footer {
  text-align: center;
  padding-top: 6px;
  border-top: 1px solid var(--border-subtle);
}

.access-statement-link {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.75rem;
  color: var(--blue);
  text-decoration: underline;
  cursor: pointer;
  padding: 4px;
}

/* Accessibility Statement Modal */
.accessibility-modal {
  position: fixed;
  inset: 0;
  z-index: 10500;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.accessibility-modal.open {
  opacity: 1;
  visibility: visible;
}

.access-modal-content {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  max-width: 520px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  color: var(--text-main);
}

.access-modal-content h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--blue);
}

.access-modal-content h4 {
  font-size: 0.95rem;
  margin: 16px 0 8px;
}

.access-modal-content p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.access-modal-content ul {
  padding-right: 20px;
  margin-bottom: 12px;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.access-modal-close {
  position: absolute;
  top: 16px;
  left: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-subtle);
  cursor: pointer;
  line-height: 1;
}

/* ─── Accessibility Mobile Responsive Overrides ─── */
@media (max-width: 768px) {
  .accessibility-widget {
    position: fixed !important;
    bottom: calc(84px + env(safe-area-inset-bottom, 0px)) !important;
    left: 14px !important;
    right: auto !important;
    z-index: 99999 !important;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }

  .accessibility-btn {
    width: 50px !important;
    height: 50px !important;
    font-size: 1.35rem !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45) !important;
  }

  .accessibility-menu {
    position: fixed !important;
    bottom: calc(144px + env(safe-area-inset-bottom, 0px)) !important;
    left: 14px !important;
    right: auto !important;
    width: calc(100vw - 28px) !important;
    max-width: 320px !important;
    max-height: calc(100vh - 165px) !important;
    overflow-y: auto !important;
    z-index: 100000 !important;
    -webkit-overflow-scrolling: touch;
  }
}

/* Indicator when any accessibility option is active */
.accessibility-widget.has-active .accessibility-btn {
  border-color: #22c55e !important;
  box-shadow: 0 0 0 3.5px rgba(34, 197, 94, 0.45), 0 6px 20px rgba(0, 0, 0, 0.4) !important;
}

/* ─── Real Working Accessibility Modifiers ─── */
html.access-large-text {
  font-size: 124% !important;
}

html.access-small-text {
  font-size: 88% !important;
}

/* Grayscale on site content wrapper ONLY (keeps position:fixed widgets working on iOS Safari!) */
html.access-grayscale #siteWrapper {
  filter: grayscale(100%) !important;
  -webkit-filter: grayscale(100%) !important;
}

/* High Contrast: stark yellow on black without filter to prevent iOS Safari fixed bugs */
html.access-high-contrast body,
html.access-high-contrast #siteWrapper,
html.access-high-contrast .navbar,
html.access-high-contrast .hero,
html.access-high-contrast .services,
html.access-high-contrast .gallery-section,
html.access-high-contrast .why-us,
html.access-high-contrast .contact,
html.access-high-contrast .faq,
html.access-high-contrast .footer {
  background: #000000 !important;
  color: #ffffff !important;
}

html.access-high-contrast .card,
html.access-high-contrast .why-card,
html.access-high-contrast .faq-item,
html.access-high-contrast .contact-form,
html.access-high-contrast .profile-card {
  background: #0d0d0d !important;
  border: 2px solid #ffff00 !important;
  color: #ffffff !important;
}

html.access-high-contrast h1,
html.access-high-contrast h2,
html.access-high-contrast h3,
html.access-high-contrast .hero-title,
html.access-high-contrast .section-title,
html.access-high-contrast strong {
  color: #ffff00 !important;
}

html.access-high-contrast p,
html.access-high-contrast span,
html.access-high-contrast .hero-desc,
html.access-high-contrast .section-desc {
  color: #f8fafc !important;
}

html.access-high-contrast a {
  color: #38bdf8 !important;
}

/* Highlight Links: prominent yellow background with underline */
html.access-highlight-links #siteWrapper a,
body.access-highlight-links #siteWrapper a {
  background-color: #fef08a !important;
  color: #000000 !important;
  text-decoration: underline 3px #ca8a04 !important;
  font-weight: 800 !important;
  border-radius: 4px !important;
  padding: 1px 4px !important;
  box-shadow: 0 0 0 2px #ca8a04 !important;
}

/* Readable Font: dyslexia and reading clarity */
html.access-readable-font #siteWrapper,
html.access-readable-font #siteWrapper *,
body.access-readable-font #siteWrapper * {
  font-family: Arial, Tahoma, Helvetica, sans-serif !important;
  letter-spacing: 0.03em !important;
  word-spacing: 0.06em !important;
}

/* Stop Animations */
html.access-stop-animations,
html.access-stop-animations *,
html.access-stop-animations *::before,
html.access-stop-animations *::after {
  animation: none !important;
  transition: none !important;
}

/* ─── Israeli Pride Badges ─── */
.why-israel-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 115, 232, 0.08);
  border: 1px solid rgba(26, 115, 232, 0.22);
  color: var(--blue);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  margin-top: 14px;
}

body.dark-theme .why-israel-pill {
  background: rgba(26, 115, 232, 0.16);
  border-color: rgba(26, 115, 232, 0.35);
  color: #93c5fd;
}

.why-israel-pill .flag {
  font-size: 1.1rem;
  line-height: 1;
}

.footer-israel-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(26, 115, 232, 0.08);
  border: 1px solid rgba(26, 115, 232, 0.2);
  border-radius: 30px;
  margin: 14px 0 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
}

body.dark-theme .footer-israel-badge {
  background: rgba(26, 115, 232, 0.15);
  border-color: rgba(26, 115, 232, 0.35);
  color: #93c5fd;
}

.footer-israel-badge .israel-flag {
  font-size: 1.05rem;
  line-height: 1;
}

/* ─── LTR & English Language Support ─── */
html[dir="ltr"] body,
body.lang-en {
  direction: ltr;
  text-align: left;
}

html[dir="ltr"] .hero-title,
html[dir="ltr"] .hero-desc,
html[dir="ltr"] .service-title,
html[dir="ltr"] .service-desc,
html[dir="ltr"] .why-title,
html[dir="ltr"] .why-desc,
html[dir="ltr"] .contact-link-label,
html[dir="ltr"] .contact-link-value,
html[dir="ltr"] .faq-btn,
html[dir="ltr"] .faq-answer-inner,
html[dir="ltr"] .form-label,
html[dir="ltr"] .form-title,
html[dir="ltr"] .form-subtitle,
html[dir="ltr"] .form-note {
  text-align: left;
}

/* Ensure section headers are always centered in all languages */
.section-label,
.section-title,
.section-desc,
html[dir="ltr"] .section-label,
html[dir="ltr"] .section-title,
html[dir="ltr"] .section-desc {
  text-align: center !important;
}

/* Ensure footer is always centered in all languages */
.footer,
.footer-desc,
.footer-links,
.footer-israel-badge,
.footer-copy,
html[dir="ltr"] .footer,
html[dir="ltr"] .footer-desc,
html[dir="ltr"] .footer-links,
html[dir="ltr"] .footer-israel-badge,
html[dir="ltr"] .footer-copy {
  text-align: center !important;
  justify-content: center !important;
}

html[dir="ltr"] .faq-btn svg {
  margin-left: auto;
  margin-right: 0;
}

html[dir="ltr"] .hero-badge,
html[dir="ltr"] .why-israel-pill,
html[dir="ltr"] .footer-israel-badge {
  direction: ltr;
}

html[dir="ltr"] .showcase-prev {
  right: auto;
  left: 14px;
}

html[dir="ltr"] .showcase-next {
  left: auto;
  right: 14px;
}

html[dir="ltr"] .showcase-prev i,
html[dir="ltr"] .lightbox-prev i {
  transform: rotate(180deg);
}

html[dir="ltr"] .showcase-next i,
html[dir="ltr"] .lightbox-next i {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  html[dir="ltr"] .hero-title,
  html[dir="ltr"] .hero-desc {
    text-align: center;
  }
}

html[dir="ltr"] .access-modal-close {
  left: auto;
  right: 18px;
}

html[dir="ltr"] .access-modal-content ul {
  padding-right: 0;
  padding-left: 20px;
}

/* Keep Floating WhatsApp button on the left edge in English (LTR) and bubble to its right */
html[dir="ltr"] .floating-whatsapp {
  flex-direction: row-reverse;
}

html[dir="ltr"] .whatsapp-bubble {
  padding: 12px 28px 12px 16px;
  text-align: left;
}

html[dir="ltr"] .whatsapp-bubble-close {
  left: auto;
  right: 8px;
}


