/* ----------------------------------------------------
   DESIGN SYSTEM & TOKENS
   ---------------------------------------------------- */
:root {
  /* Palette */
  --bg: #FAF5EC;          /* warm sand page background */
  --bg-alt: #F1E8D6;      /* secondary section background */
  --ink: #12302F;         /* primary text */
  --ink-soft: #3C5654;    /* secondary text */
  --teal: #0F5C4E;        /* primary brand color (emerald/teal) */
  --teal-deep: #0A2B2C;   /* headlines, dark sections */
  --teal-light: #1E6360;  /* hover states */
  --gold: #BE8A2E;        /* accent — eyebrows, numerals, icons */
  --gold-light: #E3BE6F;  /* accent on dark backgrounds */
  --rose: #C6828B;        /* tertiary accent */
  --white: #FFFFFF;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Public Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  /* Shapes & Shadows */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-sm: 0 4px 15px rgba(18, 48, 47, 0.04);
  --shadow-md: 0 10px 30px rgba(18, 48, 47, 0.08);
  --shadow-lg: 0 20px 50px -15px rgba(18, 48, 47, 0.16);

  /* Transitions */
  --transition-fast: 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-normal: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Prevent translation flash / FOUC */
[data-i18n], [data-i18n-html] {
  visibility: hidden;
}
html.translations-loaded [data-i18n], html.translations-loaded [data-i18n-html] {
  visibility: visible;
}

/* Preloader styles */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #FAF5EC; /* matches var(--bg) */
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.preloader-logo {
  height: 180px;
  width: auto;
  object-fit: contain;
  animation: preloader-bounce 1.5s ease-in-out infinite alternate;
}
.preloader-spinner-container {
  width: 140px;
  height: 4px;
  background-color: rgba(15, 92, 78, 0.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.preloader-spinner {
  width: 60px;
  height: 100%;
  background-color: #0F5C4E; /* matches var(--teal) */
  position: absolute;
  left: -60px;
  border-radius: 2px;
  animation: preloader-loading 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes preloader-loading {
  0% { left: -60px; }
  100% { left: 140px; }
}
@keyframes preloader-bounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

/* Force phone numbers & WhatsApp links to remain LTR */
.phone-number, [href^="tel:"], [href^="https://wa.me"] {
  direction: ltr !important;
  unicode-bidi: embed;
  display: inline-block;
}

/* ----------------------------------------------------
   BASE STYLES & RESET
   ---------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--teal-deep);
  font-weight: 700;
  line-height: 1.25;
}

p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

/* ----------------------------------------------------
   LAYOUT UTILITIES
   ---------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 760px) {
  .section-padding {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

.badge-gold {
  display: inline-flex;
  align-items: center;
  background-color: rgba(190, 138, 46, 0.12);
  color: var(--teal-deep);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-rose {
  display: inline-flex;
  align-items: center;
  background-color: rgba(198, 130, 139, 0.15);
  color: var(--teal-deep);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-price {
  display: inline-flex;
  align-items: center;
  background-color: var(--white);
  color: var(--gold);
  border: 1.5px solid var(--gold);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
}

.btn-primary {
  background-color: var(--teal);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--teal-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(15, 92, 78, 0.2);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--teal);
  color: var(--teal);
}

.btn-secondary:hover {
  background-color: rgba(15, 61, 62, 0.06);
}

.btn-gold {
  background-color: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background-color: #a87925;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(190, 138, 46, 0.2);
}

/* ----------------------------------------------------
   PREMIUM ANIMATIONS (SCROLL-DRIVEN & STAGGERED)
   ---------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.stagger-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in .stagger-item {
  opacity: 1;
  transform: translateY(0);
}

.reveal.in .stagger-item:nth-child(1) { transition-delay: 0.1s; }
.reveal.in .stagger-item:nth-child(2) { transition-delay: 0.2s; }
.reveal.in .stagger-item:nth-child(3) { transition-delay: 0.3s; }
.reveal.in .stagger-item:nth-child(4) { transition-delay: 0.4s; }
.reveal.in .stagger-item:nth-child(5) { transition-delay: 0.5s; }
.reveal.in .stagger-item:nth-child(6) { transition-delay: 0.6s; }

/* ----------------------------------------------------
   STICKY HEADER (WITH SHRINK EFFECT)
   ---------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(250, 245, 236, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(18, 48, 47, 0.05);
  transition: background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  transition: height var(--transition-fast);
}

.header.scrolled {
  background-color: rgba(250, 245, 236, 0.96);
  box-shadow: 0 4px 20px rgba(18, 48, 47, 0.06);
}

.header.scrolled .header-container {
  height: 64px;
}

/* Symmetrical Stacked Bilingual Logo Setup */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  transition: height var(--transition-fast);
}

.header.scrolled .logo-img {
  height: 50px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.logo-text-en {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--teal);
  transition: font-size var(--transition-fast);
}

.logo-arabic {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
  margin-top: 2px;
}

.header.scrolled .logo-text-en {
  font-size: 1.45rem;
}

.header-cta,
.header-cta-phone {
  min-width: 165px;
  padding: 10px 16px;
  font-size: 0.85rem;
}

.header-cta-phone {
  background-color: rgba(15, 92, 78, 0.04);
  border: 1.5px solid rgba(15, 92, 78, 0.35);
  color: var(--teal);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  gap: 8px;
}

.header-cta-phone:hover {
  background-color: var(--teal);
  border-color: var(--teal);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 92, 78, 0.18);
}

.header-cta-phone svg {
  transition: transform 0.3s ease;
  stroke: currentColor;
}

.header-cta-phone:hover svg {
  transform: scale(1.15) rotate(15deg);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
}

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

.nav-link:hover {
  color: var(--teal-deep);
}

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

.lang-toggle-pill {
  display: inline-flex;
  align-items: center;
  background-color: rgba(15, 92, 78, 0.05);
  border: 1.5px solid var(--teal);
  border-radius: var(--radius-pill);
  padding: 3px;
  gap: 2px;
}

.lang-toggle-btn {
  background: none;
  border: none;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lang-toggle-btn.active {
  background-color: var(--teal);
  color: var(--white);
}

.header-actions-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--teal);
}

.nav-toggle svg {
  width: 28px;
  height: 28px;
}

.nav-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg);
  z-index: 1010;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  transform: translateY(-100%);
  transition: transform var(--transition-normal);
  padding: 40px;
}

.nav-mobile-overlay.active {
  transform: translateY(0);
}

.nav-mobile-overlay .nav-link {
  font-size: 1.5rem;
  font-family: var(--font-display);
  color: var(--teal-deep);
}

.nav-mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--teal);
  padding: 8px;
}

.nav-mobile-close svg {
  width: 32px;
  height: 32px;
}

/* Adjust breakpoint for squish protection */
@media (max-width: 1024px) {
  .nav-desktop {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .header-cta, .header-cta-phone {
    display: none !important;
  }
}

/* ----------------------------------------------------
   HERO SECTION
   ---------------------------------------------------- */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 80px;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-top: 40px;
    padding-bottom: 60px;
    text-align: center;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

@media (max-width: 900px) {
  .hero-content {
    align-items: center;
  }
}

.hero-eyebrow {
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2.8rem;
  }
}

.hero-subhead {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-actions {
    justify-content: center;
  }
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 12px;
  border-top: 1px solid rgba(18, 48, 47, 0.08);
  padding-top: 28px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background-color: rgba(18, 48, 47, 0.1);
}

@media (max-width: 900px) {
  .hero-stats {
    justify-content: center;
    width: 100%;
    max-width: 550px;
  }
}

@media (max-width: 640px) {
  .hero-stats {
    gap: 16px;
  }
  .stat-num {
    font-size: 1.25rem;
  }
}

/* ----------------------------------------------------
   HERO SIGNATURE GRAPHIC (Tracking Card)
   ---------------------------------------------------- */
.tracking-card {
  background-color: var(--teal-deep);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
}

@media (max-width: 900px) {
  .tracking-card {
    margin-left: auto;
    margin-right: auto;
  }
}

.tracking-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.tracking-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.tracking-dot {
  width: 8px;
  height: 8px;
  background-color: var(--rose);
  border-radius: 50%;
  position: relative;
}

.tracking-dot::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 16px;
  height: 16px;
  border: 1px solid var(--rose);
  border-radius: 50%;
  animation: pulseGlow 1.8s infinite ease-out;
}

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

.tracking-city {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.tracking-svg-container {
  position: relative;
  width: 100%;
  height: 200px;
  background-color: rgba(15, 61, 62, 0.25);
  border-radius: var(--radius-md);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.pulse-ring {
  transform-origin: 360px 100px;
  animation: pulseRing 3s cubic-bezier(0.215, 0.610, 0.355, 1) infinite;
}

@keyframes pulseRing {
  0% { transform: scale(0.5); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

.moving-provider-dot {
  offset-path: path("M 60 100 Q 160 10, 210 120 T 360 100");
  animation: travel 6s linear infinite;
}

.moving-provider-glow {
  offset-path: path("M 60 100 Q 160 10, 210 120 T 360 100");
  animation: travel 6s linear infinite;
}

@keyframes travel {
  0% { offset-distance: 0%; }
  100% { offset-distance: 100%; }
}

.tracking-card-footer {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tracking-status-title {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--white);
  font-weight: 500;
}

.tracking-status-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ----------------------------------------------------
   TRUST STRIP
   ---------------------------------------------------- */
.trust-strip {
  background-color: var(--teal-deep);
  color: var(--white);
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 200px;
}

.trust-icon-wrapper {
  color: var(--gold-light);
  flex-shrink: 0;
}

.trust-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 820px) {
  .trust-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .trust-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ----------------------------------------------------
   SERVICES SECTION
   ---------------------------------------------------- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.section-eyebrow {
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.75rem;
  max-width: 700px;
}

@media (max-width: 640px) {
  .section-title {
    font-size: 2.2rem;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 760px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.service-card {
  background: linear-gradient(135deg, var(--white) 0%, #f4faf8 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 92, 78, 0.05);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(190, 138, 46, 0.3);
}

.service-icon-container {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background-color: rgba(15, 92, 78, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  transition: transform var(--transition-normal), background-color var(--transition-normal), color var(--transition-normal);
}

.service-card:hover .service-icon-container {
  transform: scale(1.1) rotate(5deg);
  background-color: rgba(190, 138, 46, 0.1);
  color: var(--gold);
}

.service-card:nth-child(4) .service-icon-container {
  color: var(--rose);
  background-color: rgba(198, 130, 139, 0.1);
}

.service-card:nth-child(4):hover .service-icon-container {
  color: var(--gold);
  background-color: rgba(190, 138, 46, 0.1);
}

.service-card-title {
  font-size: 1.6rem;
  color: var(--teal-deep);
}

.service-desc {
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ----------------------------------------------------
   HOW IT WORKS SECTION
   ---------------------------------------------------- */
.how-section {
  background-color: var(--bg-alt);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  margin-top: 40px;
}

.process-timeline::after {
  content: '';
  position: absolute;
  top: 60px;
  left: 100px;
  right: 100px;
  height: 2px;
  background-image: linear-gradient(to right, var(--gold) 35%, rgba(0, 0, 0, 0) 0%);
  background-position: top;
  background-size: 12px 2px;
  background-repeat: repeat-x;
  z-index: 1;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  z-index: 2;
  transition: transform var(--transition-fast);
}

.process-step:hover {
  transform: translateY(-4px);
}

.process-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  transition: color var(--transition-fast);
}

.process-step:hover .process-num {
  color: var(--teal);
}

.process-step-title {
  font-size: 1.25rem;
  color: var(--teal-deep);
  font-weight: 600;
}

.process-step-desc {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

@media (max-width: 820px) {
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .process-timeline::after {
    display: none;
  }
  .process-step {
    align-items: center;
    text-align: center;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ----------------------------------------------------
   TESTIMONIALS SECTION
   ---------------------------------------------------- */
.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(18, 48, 47, 0.03);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--teal-deep);
  line-height: 1.5;
  position: relative;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}

.author-location {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.why-split-container {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  align-items: flex-start;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .why-split-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.photo-frame {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.photo-frame img {
  border-radius: var(--radius-md);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.photo-caption {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

.photo-frame-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(18, 48, 47, 0.08);
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.highlight-icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.highlight-title {
  font-size: 0.95rem;
  color: var(--teal-deep);
  font-weight: 600;
  margin-bottom: 2px;
}
.highlight-text {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

html[dir="rtl"] .highlight-item {
  text-align: right;
}


/* ----------------------------------------------------
   FAQ ACCORDION SECTION
   ---------------------------------------------------- */
.faq-container {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.faq-item {
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition-fast);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--teal-deep);
  text-align: left;
  transition: color var(--transition-fast);
}

.faq-trigger:hover {
  color: var(--gold);
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.faq-trigger[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-content {
  padding: 0 32px 24px 32px;
}

.faq-content p {
  font-size: 1rem;
  color: var(--ink-soft);
}

/* ----------------------------------------------------
   CTA BANNER SECTION
   ---------------------------------------------------- */
.cta-banner {
  background-color: var(--teal);
  border-radius: var(--radius-lg);
  padding: 72px 40px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.cta-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  pointer-events: none;
}

.cta-title {
  font-size: 3rem;
  color: var(--white);
  position: relative;
  z-index: 2;
}

@media (max-width: 640px) {
  .cta-title {
    font-size: 2.2rem;
  }
}

.cta-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.cta-btn-wrapper {
  position: relative;
  z-index: 2;
}

/* ----------------------------------------------------
   FOOTER
   ---------------------------------------------------- */
.footer {
  background-color: var(--teal-deep);
  color: var(--white);
  padding-top: 80px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--white);
}

.footer-logo-arabic {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gold-light);
}

.footer-blurb {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.footer-col-title {
  font-size: 1rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 4px;
}

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

.footer-link {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-link:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.footer-contact-icon {
  color: var(--gold-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a:hover {
  color: var(--white);
}

.footer .stat-label {
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-compliance {
  background-color: rgba(190, 138, 46, 0.06);
  border: 1px dashed rgba(190, 138, 46, 0.25);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* ----------------------------------------------------
   STACKED FLOATING CONVERSION CTAS (CALL + WHATSAPP) - DESKTOP ONLY
   ---------------------------------------------------- */
.floating-ctas-container {
  position: fixed;
  bottom: 100px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 98;
}

.call-float, .whatsapp-float-stacked {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(15, 61, 62, 0.35);
  transition: transform var(--transition-fast), background-color var(--transition-fast);
  border: none;
  cursor: pointer;
}

.call-float {
  background-color: var(--teal);
}

.call-float:hover {
  transform: scale(1.1);
  background-color: var(--teal-light);
}

.whatsapp-float-stacked {
  background-color: var(--teal-deep);
  border: 1.5px solid var(--gold-light);
}

.whatsapp-float-stacked:hover {
  transform: scale(1.1);
  background-color: var(--teal-light);
}

.call-float svg, .whatsapp-float-stacked svg {
  width: 28px;
  height: 28px;
}

/* Hide floating action buttons on mobile screens to prevent overlap with sticky mobile bar */
@media (max-width: 820px) {
  .floating-ctas-container {
    display: none !important;
  }
}

/* ----------------------------------------------------
   STICKY MOBILE BOTTOM BAR (MOBILE ONLY)
   ---------------------------------------------------- */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--teal-deep);
  border-top: 2px solid var(--gold);
  padding: 12px 16px;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.sticky-mobile-bar-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}

.sticky-mobile-bar .btn {
  padding: 10px 16px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@media (max-width: 820px) {
  .sticky-mobile-bar {
    display: block;
  }
  body {
    padding-bottom: 80px; /* offset for mobile bar */
  }
}

/* ----------------------------------------------------
   BOOKING LEAD MODAL (ACCESSIBLE & POLISHED)
   ---------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 43, 44, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1020;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background-color: var(--bg);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 500px;
  box-shadow: var(--shadow-lg);
  padding: 24px 32px;
  position: relative;
  transform: scale(0.95) translateY(10px);
  transition: transform var(--transition-normal);
  border: 1px solid rgba(18, 48, 47, 0.05);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}

.modal-overlay.active .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink-soft);
  padding: 4px;
  border-radius: 50%;
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

.modal-close:hover {
  color: var(--ink);
  background-color: rgba(18, 48, 47, 0.06);
}

.modal-close svg {
  width: 24px;
  height: 24px;
}

.modal-title {
  font-size: 1.6rem;
  margin-bottom: 6px;
  color: var(--teal-deep);
}

.modal-desc {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  font-family: var(--font-body);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(18, 48, 47, 0.15);
  background-color: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
}

.form-textarea {
  resize: vertical;
  min-height: 50px;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 92, 78, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.modal-submit-btn {
  width: 100%;
  margin-top: 10px;
}

.modal-success-content {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
}

.success-icon-wrapper {
  width: 72px;
  height: 72px;
  background-color: rgba(15, 61, 62, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 24px;
}

.success-title {
  font-size: 2.2rem;
  color: var(--teal-deep);
  margin-bottom: 12px;
}

.success-desc {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.success-desc strong {
  color: var(--teal-deep);
}

/* ----------------------------------------------------
   ABOUT PAGE SPECIFIC STYLES
   ---------------------------------------------------- */
.about-hero {
  background-color: var(--bg-alt);
  padding: 80px 0;
  text-align: center;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}
@media (max-width: 760px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.value-card {
  background-color: var(--white);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(18, 48, 47, 0.02);
  transition: transform var(--transition-normal);
}
.value-card:hover {
  transform: translateY(-4px);
}
.team-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.team-card {
  background-color: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  transition: transform var(--transition-normal);
}
.team-card:hover {
  transform: scale(1.02);
}
html[dir="rtl"] .team-card {
  border-left: none;
  border-right: 4px solid var(--gold);
}
.team-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--teal-deep);
}
.team-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* ----------------------------------------------------
   SERVICES PAGE SPECIFIC STYLES
   ---------------------------------------------------- */
.service-detail-section {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 40px;
}
.service-detail-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 40px;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}
.service-detail-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-detail-block:nth-child(even) {
  direction: rtl;
}
.service-detail-block:nth-child(even) .service-detail-content {
  direction: ltr;
}
html[dir="rtl"] .service-detail-block:nth-child(even) {
  direction: ltr;
}
html[dir="rtl"] .service-detail-block:nth-child(even) .service-detail-content {
  direction: rtl;
}
@media (max-width: 820px) {
  .service-detail-block, .service-detail-block:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 24px;
    direction: ltr !important;
  }
  html[dir="rtl"] .service-detail-block, html[dir="rtl"] .service-detail-block:nth-child(even) {
    direction: rtl !important;
  }
}
.service-detail-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
html[dir="rtl"] .service-detail-content {
  align-items: flex-start;
}
.service-detail-image-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.service-detail-image-frame img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.payment-insurance-box {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 80px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(190, 138, 46, 0.2);
  text-align: center;
}
.insurance-badges-container {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.insurance-logo-placeholder {
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  background-color: var(--bg);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal-deep);
  border: 1px solid rgba(15, 92, 78, 0.1);
  transition: transform var(--transition-fast);
}
.insurance-logo-placeholder:hover {
  transform: translateY(-2px);
}

/* ----------------------------------------------------
   CONTACT PAGE SPECIFIC STYLES
   ---------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  margin-top: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.contact-form-card {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-top: 5px solid var(--gold);
  border-left: 1px solid rgba(18, 48, 47, 0.04);
  border-right: 1px solid rgba(18, 48, 47, 0.04);
  border-bottom: 1px solid rgba(18, 48, 47, 0.04);
}
.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 300px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(18, 48, 47, 0.1);
  margin-top: 20px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ----------------------------------------------------
   BLOG PAGE SPECIFIC STYLES
   ---------------------------------------------------- */
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
.blog-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.blog-card-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}
.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold);
}
.blog-card-title {
  font-size: 1.3rem;
  color: var(--teal-deep);
  line-height: 1.4;
}
.blog-card-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--teal);
  align-self: flex-start;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-card-link:hover {
  color: var(--gold);
}

/* ----------------------------------------------------
   RTL EXPLICIT OVERRIDES
   ---------------------------------------------------- */
html[dir="rtl"] .logo-text {
  align-items: flex-start;
}

html[dir="rtl"] .logo-text-en {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  margin-top: 2px;
  display: block;
}

html[dir="rtl"] .logo-arabic {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--teal);
  margin-top: 0;
  display: block;
}

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

html[dir="rtl"] .faq-trigger {
  text-align: right;
}

html[dir="rtl"] .footer-link:hover {
  padding-left: 0;
  padding-right: 4px;
}

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

@media (max-width: 900px) {
  html[dir="rtl"] .tracking-card {
    margin-left: auto;
    margin-right: auto;
  }
}

html[dir="rtl"] .floating-ctas-container {
  right: auto;
  left: 28px;
}

html[dir="rtl"] #tracking-svg {
  transform: scaleX(-1);
}

html[dir="rtl"] .tracking-card-header {
  flex-direction: row-reverse;
}

/* ----------------------------------------------------
   INTERACTIVE WHATSAPP WIDGET
   ---------------------------------------------------- */
.wa-widget-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: var(--font-body);
}

html[dir="rtl"] .wa-widget-container {
  right: auto;
  left: 28px;
  align-items: flex-start;
}

.wa-widget-toggle {
  background-color: #25d366;
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  padding: 12px 24px 12px 18px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform var(--transition-fast), background-color var(--transition-fast);
  position: relative;
}

html[dir="rtl"] .wa-widget-toggle {
  padding: 12px 18px 12px 24px;
}

.wa-widget-toggle:hover {
  transform: scale(1.05);
  background-color: #20ba5a;
}

.wa-widget-badge {
  position: absolute;
  top: -6px;
  left: 10px;
  background-color: var(--rose);
  color: var(--white);
  font-size: 0.7rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 1.5px solid var(--white);
  animation: pulse-badge 2s infinite;
}

html[dir="rtl"] .wa-widget-badge {
  left: auto;
  right: 10px;
}

.wa-chat-card {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 340px;
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity var(--transition-normal), transform var(--transition-normal);
  border: 1px solid rgba(18, 48, 47, 0.08);
}

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

.wa-chat-card.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.wa-chat-header {
  background-color: var(--teal);
  color: var(--white);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.wa-chat-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--white);
}

.wa-chat-avatar svg {
  width: 22px;
  height: 22px;
}

.wa-online-dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 10px;
  height: 10px;
  background-color: #25d366;
  border-radius: 50%;
  border: 1.5px solid var(--teal);
}

.wa-chat-header-info {
  flex-grow: 1;
  text-align: left;
}

html[dir="rtl"] .wa-chat-header-info {
  text-align: right;
}

.wa-chat-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.wa-chat-status {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
}

.wa-chat-close-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
  padding: 4px;
}

.wa-chat-close-btn:hover {
  opacity: 1;
}

.wa-chat-body {
  padding: 20px;
  background-color: #f0f2f5;
  max-height: 250px;
  overflow-y: auto;
}

.wa-chat-bubble {
  background-color: var(--white);
  padding: 12px 14px;
  border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  max-width: 90%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

html[dir="rtl"] .wa-chat-bubble {
  border-radius: var(--radius-md) 0 var(--radius-md) var(--radius-md);
  text-align: right;
}

.wa-chat-sender {
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--gold);
}

.wa-chat-message {
  font-size: 0.85rem;
  color: var(--ink);
  line-height: 1.4;
}

.wa-chat-time {
  font-size: 0.7rem;
  color: var(--ink-soft);
  align-self: flex-end;
}

html[dir="rtl"] .wa-chat-time {
  align-self: flex-start;
}

.wa-chat-footer {
  padding: 16px;
  background-color: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.wa-start-chat-btn {
  width: 100%;
}

@keyframes pulse-badge {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(198, 130, 139, 0.7); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 6px rgba(198, 130, 139, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(198, 130, 139, 0); }
}

@media (max-width: 820px) {
  .wa-widget-container {
    bottom: 80px;
  }
}

/* ----------------------------------------------------
   MOBILE OVERRIDES & MOBILE FORM OPTIMIZATIONS
   ---------------------------------------------------- */
@media (max-width: 576px) {
  .modal-card {
    padding: 24px 20px !important;
    max-height: 92vh !important;
    margin: 10px !important;
  }
  .modal-title {
    font-size: 1.6rem !important;
    margin-bottom: 8px !important;
  }
  .modal-desc {
    margin-bottom: 20px !important;
  }
  .form-group {
    margin-bottom: 14px !important;
  }
}

/* ----------------------------------------------------
   PREMIUM CONTACT PAGE DESIGN
   ---------------------------------------------------- */
.contact-hero-premium {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--gold);
}

.contact-hero-premium h1 {
  color: var(--white);
  font-size: 2.8rem;
  margin-top: 10px;
}

.contact-hero-premium p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 16px auto 0 auto;
  font-size: 1.1rem;
}

.contact-hero-premium::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(190, 138, 46, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.contact-info-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--teal);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  border-top: 1px solid rgba(18, 48, 47, 0.02);
  border-right: 1px solid rgba(18, 48, 47, 0.02);
  border-bottom: 1px solid rgba(18, 48, 47, 0.02);
}

.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

html[dir="rtl"] .contact-info-card {
  border-left: none;
  border-right: 4px solid var(--teal);
}

.contact-info-title {
  color: var(--teal-deep);
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

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

.contact-info-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.contact-info-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(15, 92, 78, 0.08);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
