:root {
  --teal-dark: #1A6B72;
  --teal:      #2EC4B6;
  --teal-light: #E8F8F7;
  --gold:      #C9A84C;
  --gold-light: #FDF4E0;
  --dark:      #0D1F22;
  --mid:       #2D4A4E;
  --text:      #333D42;
  --text-light: #637074;
  --white:     #FFFFFF;
  --bg:        #F7FBFB;
  --border:    #D8ECEB;
  --shadow:    0 4px 24px rgba(26,107,114,0.10);
  --shadow-lg: 0 12px 48px rgba(26,107,114,0.18);
  --radius:    14px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ─── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  transition: all var(--transition);
}

/* RTL mode */
html[dir="rtl"] body {
  font-family: 'Noto Naskh Arabic', 'Segoe UI', sans-serif;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Utility ──────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.section-header p {
  margin-top: 12px;
  font-size: 1.1rem;
  color: var(--text-light);
}
.tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  outline: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: var(--white);
  box-shadow: 0 4px 18px rgba(26,107,114,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,107,114,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

/* ─── Navbar ────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(26,107,114,0.10);
  padding: 10px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  height: 44px;
  width: auto;
  border-radius: 8px;
}
.nav-logo-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  transition: color var(--transition);
}
#navbar.scrolled .nav-logo-text { color: var(--dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-size: 0.93rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  padding: 7px 14px;
  border-radius: 50px;
  transition: all var(--transition);
}
.nav-links a:hover { background: rgba(255,255,255,0.15); color: var(--white); }
#navbar.scrolled .nav-links a { color: var(--mid); }
#navbar.scrolled .nav-links a:hover { background: var(--teal-light); color: var(--teal-dark); }

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

/* Language Toggle */
#lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  padding: 6px 14px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  transition: all var(--transition);
}
#lang-toggle:hover { background: rgba(255,255,255,0.25); }
#navbar.scrolled #lang-toggle {
  background: var(--teal-light);
  border-color: var(--teal);
  color: var(--teal-dark);
}
.lang-flag { font-size: 1.1rem; }
.lang-text { font-size: 0.82rem; }

.nav-cta {
  font-size: 0.88rem;
  padding: 9px 20px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(201,168,76,0.30);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(201,168,76,0.45); }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
#navbar.scrolled .hamburger span { background: var(--dark); }

/* ─── Hero ──────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--mid) 50%, var(--teal-dark) 100%);
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.4;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,31,34,0.9) 0%, rgba(26,107,114,0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-content .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  backdrop-filter: blur(8px);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(201,168,76,0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

html[dir="rtl"] .hero-content .tag {
  font-family: 'Noto Naskh Arabic', serif;
  font-size: 0.95rem;
  letter-spacing: 0;
  font-weight: 600;
}
.hero-content h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 32px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
}
.hero-stat p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0;
}
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: bounce 2s infinite;
}
.hero-scroll span {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.hero-scroll svg { color: rgba(255,255,255,0.4); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── Highlights ────────────────────────────────────── */
#highlights {
  padding: 0;
  margin-top: -48px;
  position: relative;
  z-index: 10;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.highlight-card {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-right: 1px solid var(--border);
  transition: all var(--transition);
}
.highlight-card:last-child { border-right: none; }
.highlight-card:hover { background: var(--teal-light); }
.highlight-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--teal-light), var(--teal-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 4px;
}
.highlight-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}
.highlight-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ─── Services ──────────────────────────────────────── */
#services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--teal), var(--teal-dark));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}
.service-card:hover::before { transform: scaleY(1); }
.service-icon {
  font-size: 2.2rem;
  width: 60px; height: 60px;
  background: var(--teal-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--dark);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ─── Gallery ───────────────────────────────────────── */
#gallery { background: var(--bg); position: relative; }

.gallery-filters {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.filter-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  min-height: 400px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--border);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item.skeleton {
  background: linear-gradient(90deg, var(--border) 25%, var(--teal-light) 50%, var(--border) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

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

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item.loaded img {
  opacity: 1;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,31,34,0.85) 0%, rgba(13,31,34,0.2) 60%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  backdrop-filter: blur(2px);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  transform: translateY(10px);
  transition: transform 0.4s var(--transition);
}

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* Network Status Badge */
.network-status {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--gold-light);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  border: 1px solid rgba(201,168,76,0.3);
}
.network-status.visible { display: inline-flex; }
/* Lightbox */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
  padding: 20px;
}
#lightbox.active { display: flex; }
#lightbox img, #lightbox video {
  max-width: 95vw;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: 0 32px 100px rgba(0,0,0,0.8);
  object-fit: contain;
}
#lightbox-close {
  position: absolute;
  top: 30px; right: 30px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 10000;
}
#lightbox-close:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }

/* ─── About ─────────────────────────────────────────── */
#about { background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--dark);
  padding: 18px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}
.about-image-badge h4 { font-size: 1.6rem; font-weight: 900; }
.about-image-badge p { font-size: 0.78rem; font-weight: 600; }
.about-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}
.about-role {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.about-text p {
  font-size: 0.97rem;
  color: var(--text-light);
  margin-bottom: 14px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.about-stat {
  background: var(--teal-light);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.about-stat h3 {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--teal-dark);
}
.about-stat p {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
  margin: 0;
}

/* ─── Contact ───────────────────────────────────────── */
#contact {
  background: linear-gradient(135deg, var(--dark) 0%, var(--mid) 100%);
}
#contact .section-header h2 { color: var(--white); }
#contact .section-header p { color: rgba(255,255,255,0.6); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 48px; height: 48px;
  background: rgba(46,196,182,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-info-text h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.contact-info-text p, .contact-info-text a {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.75);
}
.contact-info-text a:hover { color: var(--teal); }

/* Force phone numbers left-to-right in all languages */
.contact-info-text a[href^="tel:"],
.contact-info-text a[href^="https://wa.me"],
[data-i18n="contact.info.phone.value"],
[data-i18n="contact.info.whatsapp.value"] {
  direction: ltr;
  unicode-bidi: embed;
  display: inline-block;
}
.contact-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.97rem;
  font-family: inherit;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 130px; }
#form-success {
  display: none;
  background: rgba(46,196,182,0.15);
  border: 1px solid var(--teal);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
  color: var(--teal);
  font-weight: 600;
  margin-top: 12px;
}

/* ─── Footer ────────────────────────────────────────── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 48px 0 28px;
  color: rgba(255,255,255,0.55);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img {
  height: 48px;
  border-radius: 8px;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  max-width: 260px;
}
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}
.footer-bottom a { color: var(--teal); }

/* ─── Animations ────────────────────────────────────── */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Scroll To Top ─────────────────────────────────── */
#scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--teal-dark);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 900;
}
#scroll-top.visible { opacity: 1; pointer-events: all; }
#scroll-top:hover { background: var(--teal); transform: translateY(-3px); }

/* ─── Responsive ────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { gap: 48px; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-card:nth-child(2) { border-right: none; }
  .highlight-card:nth-child(1),
  .highlight-card:nth-child(2) { border-bottom: 1px solid var(--border); }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    padding: 20px 24px;
    box-shadow: var(--shadow);
    gap: 4px;
  }
  .nav-links.open a { color: var(--mid); padding: 10px 14px; }
  .about-inner, .contact-inner, .footer-inner { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .about-image-badge { bottom: 16px; right: 16px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; gap: 16px; }
  .highlights-grid { grid-template-columns: 1fr; }
  .highlight-card { border-right: none !important; border-bottom: 1px solid var(--border); }
  .highlight-card:last-child { border-bottom: none; }
  .about-stats { grid-template-columns: 1fr; }
}

/* ─── RTL Overrides ─────────────────────────────────── */
html[dir="rtl"] .service-card::before {
  left: auto;
  right: 0;
}
html[dir="rtl"] .about-image-badge {
  right: auto;
  left: -20px;
}
@media (max-width: 768px) {
  html[dir="rtl"] .about-image-badge { left: 16px; right: auto; }
}

/* ─── WhatsApp Float ────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  background-color: #20ba5a;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

html[dir="rtl"] .whatsapp-float {
  left: auto;
  right: 30px;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    left: 20px;
  }
  html[dir="rtl"] .whatsapp-float {
    left: auto;
    right: 20px;
  }
}

/* ─── Gallery Filters & Load More ──────────────────── */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.gallery-filter {
  padding: 9px 24px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-light);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.gallery-filter:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}
.gallery-filter.active {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26,107,114,0.3);
}
.gallery-load-more {
  text-align: center;
  margin-top: 40px;
}

/* ─── Testimonials ──────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 5rem;
  line-height: 1;
  color: var(--teal-light);
  font-family: Georgia, serif;
}
html[dir="rtl"] .testimonial-card::before {
  right: auto;
  left: 24px;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.testimonial-card > p {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}
.testimonial-author span {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ─── Map Section ───────────────────────────────────── */
#map-section {
  background: var(--dark);
}
.map-header {
  padding: 48px 0 28px;
  text-align: center;
}
.map-header h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.map-header p {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
}
.map-embed {
  position: relative;
  line-height: 0;
}
.map-embed iframe {
  filter: grayscale(20%) brightness(0.9);
}
.map-cta-bar {
  padding: 28px 0;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.map-cta-bar .container {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Responsive: New Sections ───────────────────────── */
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .map-cta-bar .container { flex-direction: column; align-items: center; }
}

@media (min-width: 992px) {
  .desktop-map-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(135deg, var(--dark) 0%, var(--mid) 100%);
  }
  #map-section, #contact {
    background: transparent;
    padding: 60px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  #map-section .map-embed {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  #map-section .map-embed iframe {
    flex-grow: 1;
    min-height: 350px;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  #map-section .container, #contact .container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
  }
}
