:root {
  --bg: #fdfdfe;
  --bg-muted: #f8fafc;
  --bg-elevated: #ffffff;
  --primary: #0f172a;
  --primary-soft: rgba(15, 23, 42, 0.04);
  --accent: #0d9488;
  --accent-hover: #0f766e;
  --accent-muted: rgba(13, 148, 136, 0.08);
  --accent-glow: rgba(13, 148, 136, 0.3);
  --text: #1e293b;
  --text-muted: #475569;
  --border: rgba(15, 23, 42, 0.06);
  --border-glass: rgba(15, 23, 42, 0.08);
  --white: #ffffff;
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-sm: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.06), 0 4px 6px -4px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.08);
  --shadow-float: 0 35px 60px -15px rgba(15, 23, 42, 0.15);
  --radius: 14px;
  --radius-lg: 20px;
  --nav-height: 84px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --hero-parallax: 0px;
  --scroll-pct: 0;
}

/* 🚀 Zero Flicker Fix */
.no-transition,
.no-transition *,
.no-transition *::before,
.no-transition *::after {
    transition: none !important;
    animation: none !important;
}

/* Dark Mode Variables */
/* removed */.dark-removed {
  --bg: #0f172a;
  --bg-muted: #1e293b;
  --bg-elevated: #1e293b;
  --primary: #f8fafc;
  --primary-soft: rgba(248, 250, 252, 0.06);
  --accent: #14b8a6;
  --accent-hover: #2dd4bf;
  --accent-muted: rgba(20, 184, 166, 0.15);
  --accent-glow: rgba(20, 184, 166, 0.4);
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --border: rgba(248, 250, 252, 0.1);
  --border-glass: rgba(248, 250, 252, 0.08);
  --white: #1e293b; 
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -4px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 8px 10px -6px rgba(0, 0, 0, 0.6);
  --shadow-float: 0 35px 60px -15px rgba(0, 0, 0, 0.7);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-muted);
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 8px;
  border: 2px solid var(--bg-muted);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-hover);
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 var(--accent-glow); }
  70% { box-shadow: 0 0 0 10px rgba(13, 148, 136, 0); }
  100% { box-shadow: 0 0 0 0 rgba(13, 148, 136, 0); }
}

.text-gradient {
  background: linear-gradient(120deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 20px);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: "Noto Sans Arabic", "Inter", "Noto Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  max-width: 100%;
}

html[dir="ltr"] body {
  font-family: "Inter", "Noto Sans", "Noto Sans Arabic", system-ui, -apple-system, "Segoe UI", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1140px, calc(100% - 1.5rem));
  margin-inline: auto;
  padding-inline: env(safe-area-inset-left, 0) env(safe-area-inset-right, 0);
}

/* Scroll progress — subtle */
.scroll-progress {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  height: 2px;
  width: 100%;
  z-index: 1000;
  pointer-events: none;
  background: transparent;
  transform-origin: 0 50%;
}

html[dir="rtl"] .scroll-progress {
  transform-origin: 100% 50%;
}

.scroll-progress::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background: var(--accent);
  transform: scaleX(var(--scroll-pct, 0));
  transform-origin: inherit;
  opacity: 0.95;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 900px);
  overflow: hidden;
  --hero-parallax: 0px;
  /* Use the background image as a fallback that is only visible if the video fails to load */
  background: none;
  background-color: #0f172a; 
  border-bottom: 1px solid var(--border);
}

/* Fallback layer using the original image, placed behind the video */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      120deg,
      rgba(15, 23, 42, 0.4) 0%,
      rgba(15, 23, 42, 0.2) 42%,
      rgba(15, 23, 42, 0.3) 100%
    ),
    url("assets/cover.png");
  background-position: center;
  background-size: cover;
  z-index: -3;
  pointer-events: none;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  pointer-events: none;
}


.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.55) 0%, rgba(15, 23, 42, 0.75) 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: -1;
  pointer-events: none;
}


.hero--professional {
  background: none !important;
}


.hero-orbs {
  display: block; /* Restore with lower opacity */
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle 60vw at 85% 15%, var(--accent-muted), transparent 70%),
    radial-gradient(circle 50vw at 15% 85%, var(--accent-glow), transparent 70%);
  opacity: 0.2;
  mix-blend-mode: overlay;
  z-index: 0;
}

/* removed */.dark-removed .hero-orbs {
  mix-blend-mode: screen;
  opacity: 0.8;
}

/* removed */.dark-removed .hero::before {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.8) 100%);
}


@media (prefers-reduced-motion: reduce) {
  .hero {
    background-position: center center;
  }
}

/* International / product-style hero — clean mesh, no busy photo */
.hero.hero--global {
  background: none !important;
  border-bottom-color: var(--border);
}


.hero.hero--global::before {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
  z-index: 0;
}

.hero.hero--global .hero-orbs {
  opacity: 0.35;
}

/* Nav */
.nav-shell {
  position: sticky;
  top: 0;
  z-index: 900;
  transition: all 0.4s var(--ease-out);
  border-bottom: 1px solid transparent;
}

.hero .nav-shell,
.page-hero .nav-shell {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: var(--border);
}

.nav-shell.is-scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-glass);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  min-height: var(--nav-height);
  position: relative;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.lang-toggle {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--primary);
  padding: 0.4rem 0.85rem;
  border-radius: 10px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.15s ease;
}

.lang-toggle:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.lang-toggle:active,
.theme-toggle:active {
  transform: scale(0.98);
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--primary);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.theme-toggle:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.logo {
  margin: 0;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
  background: transparent;
  border: none;
  box-shadow: none;
  vertical-align: middle;
}

.logo img {
  width: clamp(200px, 35vw, 300px);
  max-height: none;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
  transition:
    opacity 0.25s ease,
    filter 0.25s ease;
  filter: drop-shadow(0 1px 2px rgba(15, 23, 42, 0.07));
}

html[dir="rtl"] .logo img {
  object-position: right center;
}

.logo-link:hover img {
  opacity: 0.92;
}

.menu-btn {
  display: none;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.125rem;
  margin: 0;
  padding: 0.2rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.nav-shell.is-scrolled .nav-links {
  background: rgba(248, 250, 252, 0.9);
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.8125rem;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.nav-links a::after {
  display: none;
}

.nav-links a:hover {
  background: var(--primary-soft);
  color: var(--primary);
}

.nav-links a.is-active,
.nav-links a[aria-current="page"] {
  background: var(--primary);
  color: var(--white);
}

@media (min-width: 769px) {
  .nav-links {
    gap: 0.15rem;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
  }

  .nav-shell.is-scrolled .nav-links {
    background: transparent;
  }

  .nav-links a {
    border-radius: 8px;
    padding: 0.48rem 0.82rem;
    font-weight: 500;
    font-size: 0.8125rem;
    color: var(--text-muted);
  }

  .nav-links a:hover {
    background: var(--primary-soft);
    color: var(--primary);
  }

  .nav-links a.is-active,
  .nav-links a[aria-current="page"] {
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    box-shadow: 0 2px 0 0 var(--accent);
    border-radius: 0;
  }
}

.hero-content {
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(3.25rem, 9vw, 6.5rem) 0 clamp(4rem, 11vw, 7.5rem);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.badge {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.6875rem;
  color: #ffffff;
  background: rgba(13, 148, 136, 0.4);
  padding: 0.3rem 1.2rem;
  border-radius: 99px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 15px rgba(13, 148, 136, 0.4);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ajh-meaning {
  max-width: 600px;
  margin-inline: auto;
  margin-top: 0.35rem;
  margin-bottom: 0.35rem;
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  line-height: 1.55;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.ajh-meaning strong {
  color: var(--accent);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.85rem, 5.2vw, 3.05rem);
  margin: 0.5rem 0;
  color: #ffffff !important;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.04em;
  /* Cinematic Glow */
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.4), 0 0 40px rgba(13, 148, 136, 0.3), 0 2px 10px rgba(0,0,0,0.5);
}

.subtitle {
  max-width: 580px;
  margin-inline: auto;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: -0.01em;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2), 0 1px 5px rgba(0,0,0,0.5);
}

.hero-actions {
  display: flex;
  gap: 0.65rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.35rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
  box-shadow: none;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-xs);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible,
.nav-links a:focus-visible,
.lang-toggle:focus-visible,
.menu-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent) 0%, #0f766e 100%);
  color: var(--white);
  border: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.2);
}

.btn.primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f766e 0%, var(--accent) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn.primary:hover::before {
  opacity: 1;
}

.btn.primary:hover {
  box-shadow: 0 10px 25px var(--accent-glow);
  transform: translateY(-3px);
  filter: none;
}

.btn.secondary {
  background: var(--white);
  color: var(--primary);
  border-color: var(--border);
}

.btn.secondary:hover {
  border-color: var(--primary-soft);
  background: #fafbfc;
}

.btn.ghost {
  border-color: var(--border);
  color: var(--primary);
  background: rgba(255, 255, 255, 0.75);
}

.btn.ghost:hover {
  border-color: var(--text-muted);
  background: var(--white);
}

.btn.catalog {
  background: #128c7e;
  color: var(--white);
  border-color: #128c7e;
}

.btn.catalog:hover {
  background: #0f7a6e;
}

/* Main layout */
.main-content {
  padding: clamp(1.75rem, 4vw, 2.75rem) 0 0;
}

.section {
  padding: 0 0 clamp(1.25rem, 3vw, 1.75rem);
}

.panel {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(2.25rem, 5vw, 3.25rem);
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
  position: relative;
  overflow: hidden;
}

.section-head {
  margin-bottom: 1.25rem;
  max-width: 52rem;
}

.section-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.725rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

h3 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(1.4rem, 3.2vw, 1.95rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.section-head h1 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(1.4rem, 3.2vw, 1.95rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.page-hero-inner .section-head {
  margin-bottom: 0.35rem;
}

.page-hero-inner .page-lead {
  margin-top: 0.65rem;
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
}

.home-next {
  margin: 1.75rem 0 0;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.8;
  color: var(--text-muted);
}

.home-next__link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.home-next__link:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.home-next__sep {
  margin: 0 0.5rem;
  color: var(--border);
  font-weight: 400;
}

.prose-secondary {
  color: var(--text-muted);
  font-size: 0.9875rem;
  line-height: 1.75;
}

.section-block .prose-secondary {
  margin-top: 1.05rem;
}

.value-grid {
  list-style: none;
  margin: 1.65rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.85rem;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.value-card:hover {
  border-color: rgba(15, 154, 168, 0.22);
  box-shadow: var(--shadow-xs);
}

.value-card h4 {
  margin: 0 0 0.45rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.01em;
}

.value-card p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.services-intro {
  max-width: 42rem;
}

.services-note {
  margin: 0 0 1.1rem;
  max-width: 48rem;
}

.cards--services {
  margin-top: 0.35rem;
}

.card-desc {
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.58;
}

.card--service {
  align-items: flex-start;
}

.panel--subtle {
  background: #f8fafc;
  border-style: solid;
}

.subhead {
  margin: 0 0 0.7rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.contact-legal {
  margin: 1.35rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.page-hero-inner .page-lead.prose-secondary {
  margin-top: 0.75rem;
}

.section-block > p:not(.section-kicker):not(.contact-lead) {
  max-width: 40rem;
  font-size: 1.0125rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

.contact-lead {
  max-width: 40rem;
  margin: 0 0 1.35rem;
  font-size: 1.0125rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.cards {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(234px, 1fr));
  gap: 0.85rem;
}

.card {
  position: relative;
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-radius: var(--radius);
  padding: 1.75rem 1.65rem;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-sm);
  transition: all 0.5s var(--ease-out);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card::before {
  display: none;
}

.card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-float);
}

.card h4 {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.45;
}

.cover-image {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-top: 1rem;
  transition: box-shadow 0.25s ease;
}

.cover-image:hover {
  box-shadow: var(--shadow-md);
}

.contact {
  padding-bottom: 0;
}

.contact-panel {
  display: grid;
  gap: 1.35rem;
}

@media (min-width: 820px) {
  .contact-panel {
    grid-template-columns: 1fr minmax(260px, 34%);
    align-items: start;
  }
}

.contact-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.contact-panel__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
}

.contact-dl {
  margin: 0;
}

.contact-dl__row {
  display: grid;
  gap: 0.15rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-dl__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-dl__row:first-child {
  padding-top: 0;
}

.contact-dl dt {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-dl dd {
  margin: 0;
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--primary);
}

.contact-dl a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.contact-dl a:hover {
  text-decoration: underline;
}

.location {
  margin-top: 0;
}

.footer {
  background: var(--bg-muted);
  color: var(--text-muted);
  text-align: center;
  padding: 2.5rem 0;
  margin-top: clamp(2.25rem, 5vw, 3.5rem);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.footer-brand {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-legal {
  margin: 0.35rem 0 0;
  max-width: 38rem;
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--text-muted);
  opacity: 0.92;
}

.footer-copy {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}

/* Reveal */
.js-reveal {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition:
    opacity 0.55s var(--ease-out),
    transform 0.55s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.js-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover,
  .card:hover {
    transform: none;
  }

  .cover-image:hover {
    box-shadow: var(--shadow-sm);
  }
}

/* Portfolio lists */
.portfolio-lists {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.15rem;
}

@media (min-width: 900px) {
  .portfolio-lists {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
}

.portfolio-group {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.15rem 1.15rem;
  border: 1px solid var(--border);
}

.portfolio-group-title {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  color: var(--primary);
  font-weight: 700;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--border);
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 0.35rem 0;
  padding-inline-start: 1.1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.95em;
  inset-inline-start: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* Why us */
.page-hero { overflow: hidden;
  position: relative;
  background:
    radial-gradient(ellipse 100% 120% at 50% -30%, rgba(13, 148, 136, 0.06), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero .nav-shell {
  position: relative;
  z-index: 2;
}

.page-hero-inner {
  text-align: center;
  padding: clamp(2.25rem, 6vw, 3.75rem) 0 clamp(2.75rem, 7vw, 4rem);
  max-width: 720px;
  margin-inline: auto;
}

.page-hero-inner h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.75rem, 4vw, 2.45rem);
  color: var(--primary);
  line-height: 1.2;
  font-weight: 700;
}

.page-lead {
  margin: 0;
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.why-main {
  padding: clamp(2rem, 4.5vw, 3rem) 0 clamp(3.5rem, 7vw, 4.5rem);
}

.why-list {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  max-width: 680px;
}

.why-list li {
  position: relative;
  margin-bottom: 0.65rem;
  padding: 1rem 1.15rem;
  padding-inline-start: 2.85rem;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--primary);
  line-height: 1.55;
  box-shadow: var(--shadow-xs);
}

.why-list li::before {
  content: "";
  display: flex;
  position: absolute;
  inset-inline-start: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.35rem;
  height: 1.35rem;
  background: var(--accent-muted);
  border-radius: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.5l3 3 6-7' stroke='%230d9488' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}

.back-home {
  display: inline-flex;
  margin-top: 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.back-home:hover {
  border-bottom-color: var(--accent);
}

@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
  }

  .container {
    width: min(1080px, calc(100% - 1.15rem));
  }

  .hero {
    min-height: min(100dvh, 880px);
  }

  .hero-content {
    padding-inline: 0.35rem;
  }

  .hero-inner {
    max-width: 100%;
  }

  .btn {
    min-height: 2.75rem;
    padding-inline: 1.15rem;
    touch-action: manipulation;
  }

  .lang-toggle {
    min-height: 2.6rem;
    touch-action: manipulation;
  }

  .panel {
    padding: clamp(1.25rem, 4vw, 2.2rem);
    margin-bottom: 0.85rem;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .home-next {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem 0.65rem;
    text-align: center;
    line-height: 1.65;
  }

  .home-next__sep {
    display: none;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 1.5rem 1rem;
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom, 0px));
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    border-radius: 14px;
    gap: 0;
    background: var(--white);
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    padding: 0.4rem;
    z-index: 950;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
  }

  .nav-links a {
    border-radius: 10px;
    padding: 0.65rem 0.85rem;
    font-size: 0.9rem;
    min-height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
  }

  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    color: var(--primary);
    background: var(--white);
    padding: 0.45rem 0.95rem;
    min-height: 2.65rem;
    border-radius: 999px;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.8125rem;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.2s ease;
    touch-action: manipulation;
  }

  .menu-btn:active {
    transform: scale(0.98);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-right {
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  .page-hero-inner {
    padding-inline: 0.5rem;
  }
}

@media (max-width: 480px) {
  h2 {
    font-size: clamp(1.45rem, 6.5vw, 2.2rem);
  }

  .subtitle {
    font-size: 0.95rem;
  }

  .portfolio-lists {
    grid-template-columns: 1fr;
  }
}

/* Card Icons (Phosphor) */
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-muted);
  color: var(--accent);
  font-size: 1.65rem;
  margin-bottom: 1.25rem;
  transition: transform 0.3s var(--ease-out), background 0.3s var(--ease-out), color 0.3s;
}

.card:hover .card-icon {
  transform: scale(1.15) rotate(8deg);
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 15px var(--accent-glow);
}

/* Why Us Grid Upgrade */
#why-root {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  padding: 0;
  margin-top: 2.5rem;
  list-style: none;
}

#why-root li.card {
  padding: 1.7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#why-root li.card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 500;
}



/* Decorative Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  opacity: 0.4;
  animation: floatOrb 15s infinite alternate ease-in-out;
}

.orb--1 {
  width: 400px;
  height: 400px;
  background: var(--accent-muted);
  top: -100px;
  right: -100px;
}

.orb--2 {
  width: 300px;
  height: 300px;
  background: rgba(15, 23, 42, 0.05);
  bottom: -50px;
  left: -50px;
  animation-delay: -5s;
}


/* Feature Expansion Sections */

/* Partners Marquee */
.partners-marquee {
  background: var(--bg-muted);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.marquee-content {
  display: flex;
  gap: 4rem;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
}
.marquee-content span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
  padding: 2rem 0;
}
.stats-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.stats-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stats-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* FAQ Accordion */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-quest {
  width: 100%;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  text-align: inherit;
}
.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.faq-ans.is-open {
  max-height: 200px;
}
.faq-ans p {
  padding-bottom: 1.25rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Blog Preview */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.blog-img {
  width: 100%;
  height: 180px;
  background: var(--primary-soft);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  background-image: linear-gradient(135deg, var(--accent-muted), var(--primary-soft));
}

/* Booking CTA */
.cta-section {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 5rem 2rem;
  border-radius: var(--radius-lg);
  margin-top: 4rem;
  box-shadow: var(--shadow-float);
}
.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-section p {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* Testimonial Cards */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem 1.85rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-muted);
}

.testimonial-icon {
  position: absolute;
  top: 1.5rem;
  inset-inline-end: 1.5rem;
  color: var(--accent-muted);
  font-size: 2.5rem;
  opacity: 0.5;
}

.review-text {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.reviewer {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: auto;
}

.reviewer strong {
  color: var(--primary);
  font-size: 0.95rem;
}

.reviewer span {
  font-size: 0.825rem;
  color: var(--text-muted);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  inset-inline-end: 25px;
  width: 55px;
  height: 55px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transition: all 0.3s var(--ease-out);
  animation: floatPulse 2s infinite;
  text-decoration: none;
}

.whatsapp-float i {
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.3));
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  background-color: #20ba56;
  color: white;
}

@keyframes floatPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), 0 0 15px rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0), 0 0 30px rgba(37, 211, 102, 0.2);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 0 15px rgba(37, 211, 102, 0.4);
  }
}

/* Logo Marquee */
.marquee-section {
  padding: 3rem 0;
  background: var(--primary-soft);
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.marquee-container {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee-container:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3rem;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.3s ease;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-muted);
}

.marquee-item:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
  color: var(--primary);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50%)); }
}

html[dir="rtl"] .marquee-container {
  animation: marquee-rtl 25s linear infinite;
}

@keyframes marquee-rtl {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(50%)); }
}

/* Dark Mode Overrides */
/* removed */.dark-removed .panel {
  background: rgba(30, 41, 59, 0.75);
  border-color: rgba(248, 250, 252, 0.08);
}

/* removed */.dark-removed .panel--subtle {
  background: #0f172a;
}

/* removed */.dark-removed .card {
  background: rgba(30, 41, 59, 0.52);
  border-color: rgba(248, 250, 252, 0.08);
}

/* removed */.dark-removed .card:hover {
  background: rgba(30, 41, 59, 0.9);
}

/* removed */.dark-removed .value-card {
  background: #1e293b;
  border-color: rgba(248, 250, 252, 0.1);
}

/* removed */.dark-removed .value-card:hover {
  background: #334155;
}

/* removed */.dark-removed .btn.secondary {
  background: #1e293b;
}

/* removed */.dark-removed .btn.secondary:hover {
  background: #334155;
}

/* removed */.dark-removed .btn.ghost {
  background: rgba(30, 41, 59, 0.75);
}

/* removed */.dark-removed .btn.ghost:hover {
  background: #1e293b;
}

/* removed */.dark-removed .nav-links {
  background: rgba(30, 41, 59, 0.55);
}

/* removed */.dark-removed .nav-shell.is-scrolled .nav-links {
  background: rgba(30, 41, 59, 0.9);
}

/* removed */.dark-removed .theme-toggle, /* removed */.dark-removed .lang-toggle {
  background: #1e293b;
  border-color: rgba(248, 250, 252, 0.2);
  color: var(--primary);
}

/* removed */.dark-removed .hero, /* removed */.dark-removed .hero--professional, /* removed */.dark-removed .hero.hero--global {
  background-color: #0f172a;
  background-image: linear-gradient(
      105deg,
      rgba(15, 23, 42, 0.9) 0%,
      rgba(15, 23, 42, 0.8) 38%,
      rgba(30, 41, 59, 0.85) 70%,
      rgba(30, 41, 59, 0.9) 100%
    ),
    url("assets/cover.png");
}

/* removed */.dark-removed .nav-shell {
  background: rgba(15, 23, 42, 0.72);
  border-bottom-color: rgba(248, 250, 252, 0.1);
}

/* removed */.dark-removed .nav-shell.is-scrolled {
  background: rgba(15, 23, 42, 0.88);
}

/* removed */.dark-removed .hero .nav-shell, /* removed */.dark-removed .page-hero .nav-shell {
  background: rgba(15, 23, 42, 0.72);
}

/* removed */.dark-removed footer {
  border-top-color: rgba(248, 250, 252, 0.1);
}

/* removed */.dark-removed .footer-legal, /* removed */.dark-removed .footer-copy {
  color: var(--text-muted);
}

/* Page Hero Dark Mode */
/* removed */.dark-removed .page-hero { overflow: hidden;
  background:
    radial-gradient(ellipse 100% 120% at 50% -30%, rgba(20, 184, 166, 0.15), transparent 50%),
    linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  border-bottom-color: rgba(248, 250, 252, 0.1);
}

/* removed */.dark-removed .portfolio-group {
  background: #1e293b;
  border-color: rgba(248, 250, 252, 0.1);
}

/* removed */.dark-removed .portfolio-group-title {
  border-bottom-color: rgba(248, 250, 252, 0.1);
}

/* removed */.dark-removed .contact-panel__card {
  background: #1e293b;
  border-color: rgba(248, 250, 252, 0.1);
}

/* removed */.dark-removed .contact-dl dt {
  color: #94a3b8;
}

/* removed */.dark-removed .contact-dl dd {
  color: #f8fafc;
}

/* removed */.dark-removed .menu-btn {
  background: #1e293b;
  color: #f8fafc;
  border-color: rgba(248, 250, 252, 0.2);
}

/* removed */.dark-removed .back-home {
  color: #2dd4bf;
}

/* removed */.dark-removed .why-list li {
  background: #1e293b;
  border-color: rgba(248, 250, 252, 0.1);
  color: #f8fafc;
}

/* removed */.dark-removed .card-icon {
  background: rgba(45, 212, 191, 0.1);
}

/* removed */.dark-removed .card:hover .card-icon {
  background: var(--accent);
}

/* removed */.dark-removed .page-lead.contact-lead {
  color: #94a3b8;
}


/* removed */.dark-removed .contact-panel__card {
  background: #1e293b;
  border-color: rgba(248, 250, 252, 0.1);
}

/* removed */.dark-removed .contact-dl__row {
  border-bottom-color: rgba(248, 250, 252, 0.1);
}

/* removed */.dark-removed .why-list li {
  background: #1e293b;
  border-color: rgba(248, 250, 252, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

/* removed */.dark-removed .why-list li::before {
  background-color: rgba(20, 184, 166, 0.2);
}

/* removed */.dark-removed .scroll-progress {
  background: rgba(255, 255, 255, 0.05);
}

/* Pricing Styles */
.card-price {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.price-current {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.price-old {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.7;
}

html[dir="rtl"] .price-current,
html[dir="rtl"] .price-old {
  direction: ltr; /* Keeping currency formatting standard */
  display: inline-block;
}

/* Service Card Image Styles */
.card--service {
  padding-top: 0 !important; /* Remove top padding for the image to be flush */
  overflow: hidden;
}

.card-image {
  width: calc(100% + 3.5rem); /* Counteract parent padding if any, but since we removed it... */
  margin-left: -1.75rem; 
  margin-right: -1.75rem;
  margin-top: 0;
  height: 200px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.card--service:hover .card-image img {
  transform: scale(1.1);
}

.card--service .card-icon {
  margin-top: -3.5rem; /* Lift icon over the image slightly */
  z-index: 2;
  position: relative;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  margin-left: 1.75rem;
  margin-right: 1.75rem;
}

.card--service .card-content {
  padding: 0 1.75rem 1.75rem;
}

/* Adjusting for RTL if necessary, but these are mostly neutral */
html[dir="rtl"] .card--service .card-icon {
  margin-left: 1.75rem;
  margin-right: 1.75rem;
}

/* Final Layout Tweak for 3 columns on Desktop */
@media (min-width: 1024px) {
  .cards {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
  }
}

.card--service h4 {
    margin-bottom: 0.5rem;
}

.card--service .card-desc {
    margin-bottom: 1rem;
}

/* Branded Service Image Filter - Sophisticated and Calm Tint */
.card-image {
  position: relative;
  background: var(--bg-muted);
}

.card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.05), rgba(15, 23, 42, 0.1));
  mix-blend-mode: multiply;
  pointer-events: none;
}

.card-image img {
  filter: saturate(0.75) brightness(1.02) contrast(0.95); /* Making images calmer and more branded */
}

/* Hover state enhancement */
.card--service:hover .card-image img {
  filter: saturate(1) brightness(1.05); /* Reveal full colors on hover */
}

/* Branded Identity Image Overlay - Forces consistency and calm aesthetic */
.card-image {
  background: #f1f5f9; /* Warm neutral base */
}

.card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.08), rgba(15, 23, 42, 0.12));
  mix-blend-mode: color; /* This tints the image while preserving textures */
  pointer-events: none;
}

.card-image img {
  filter: saturate(0.65) brightness(1.05) contrast(0.9); /* Makes the vibrant images calm and sophisticated */
  transition: all 0.6s var(--ease-out);
}

.card--service:hover .card-image img {
  filter: saturate(0.9) brightness(1.1); /* Subtle reveal on hover */
  transform: scale(1.08);
}

/* Enhanced SVG Icon Display */
.card-image img[src^="data:image/svg+xml"] {
    background: #f8fafc;
    padding: 1.5rem;
    object-fit: contain !important;
}

.card--service:hover .card-image img[src^="data:image/svg+xml"] {
    transform: scale(1.05);
}


/* Pay Button Styles */
.card-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.btn-pay {
    background: linear-gradient(135deg, #0d9488, #0f172a);
    color: white;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-pay:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}
.btn-pay:disabled {
    opacity: 0.7;
    cursor: wait;
}
