/* ============================================================
   HAYAT CLINICS — Luxury Design System
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --color-green: #5C6B52;
  --color-green-dark: #3E4A36;
  --color-green-light: #7A8B6F;
  --color-gold: #C4A265;
  --color-gold-light: #D4B97A;
  --color-gold-dark: #A8884D;
  --color-cream: #F9F7F2;
  --color-cream-dark: #F0EDE5;
  --color-sage: #E8EDE4;
  --color-text: #2C3A2A;
  --color-text-light: #5A6858;
  --color-white: #FFFFFF;

  --font-ar: 'Tajawal', 'Segoe UI', sans-serif;
  --font-en: 'Cormorant Garamond', 'Georgia', serif;
  --font-en-body: 'Segoe UI', 'Helvetica Neue', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(44, 58, 42, 0.06);
  --shadow-md: 0 4px 20px rgba(44, 58, 42, 0.08);
  --shadow-lg: 0 8px 40px rgba(44, 58, 42, 0.12);
  --shadow-gold: 0 4px 20px rgba(196, 162, 101, 0.2);

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --container: 1200px;
  --nav-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-ar);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html[lang="en"] body {
  font-family: var(--font-en-body);
}

html[lang="en"] h1,
html[lang="en"] h2,
html[lang="en"] h3,
html[lang="en"] .hero__title,
html[lang="en"] .section-title {
  font-family: var(--font-en);
}

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

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

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

address {
  font-style: normal;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--color-cream);
}

::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: var(--radius-full);
}

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 12px 24px;
  background: var(--color-green);
  color: var(--color-white);
  z-index: 10000;
  font-size: 14px;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ---------- AOS: prevent invisible content before JS loads ---------- */
[data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

body.aos-ready [data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

body.aos-ready [data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--gold {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-white);
  box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(196, 162, 101, 0.35);
}

.btn--outline {
  border: 2px solid var(--color-green);
  color: var(--color-green);
  background: transparent;
}

.btn--outline:hover {
  background: var(--color-green);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 18px 40px;
  font-size: 17px;
}

.btn--sm {
  padding: 10px 24px;
  font-size: 14px;
}

.btn i {
  font-size: 1.1em;
}

/* ---------- Section Helpers ---------- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--color-green-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

html[lang="en"] .section-title {
  font-weight: 600;
  letter-spacing: -0.5px;
}

.section-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  margin: 0 auto;
  border-radius: var(--radius-full);
}

.section-desc {
  margin-top: 16px;
  font-size: 17px;
  color: var(--color-text-light);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-divider {
  overflow: hidden;
  line-height: 0;
}

.section-divider svg {
  display: block;
  width: 100%;
  height: 40px;
}

/* ============================================================
   PAGE LOADER
   ============================================================ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-logo img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 50%;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1); }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(249, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar__logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 50%;
  transition: transform var(--transition);
}

.navbar__logo:hover img {
  transform: scale(1.05);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding: 4px 0;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition);
  border-radius: var(--radius-full);
}

html[dir="ltr"] .navbar__link::after {
  right: auto;
  left: 0;
}

.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}

.navbar__link:hover {
  color: var(--color-green-dark);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1001;
}

.lang-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-green);
  transition: all var(--transition);
}

.lang-toggle:hover {
  background: var(--color-green);
  color: var(--color-white);
}

.navbar__cta {
  display: none;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.navbar__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.navbar__hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 1024px) {
  .navbar__cta {
    display: inline-flex;
  }
}

@media (max-width: 1023px) {
  .navbar__hamburger {
    display: flex;
  }

  .navbar__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--color-cream);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .navbar__nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .navbar__links {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .navbar__link {
    font-size: 24px;
    font-weight: 600;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(160deg, var(--color-cream) 0%, var(--color-sage) 50%, rgba(92, 107, 82, 0.15) 100%);
  overflow: hidden;
  padding: calc(var(--nav-height) + 40px) 24px 60px;
}

.hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__leaf {
  position: absolute;
  color: var(--color-green);
}

.hero__leaf--1 {
  width: 200px;
  top: 10%;
  right: 5%;
  animation: floatLeaf 8s ease-in-out infinite;
}

.hero__leaf--2 {
  width: 160px;
  bottom: 15%;
  left: 8%;
  animation: floatLeaf 10s ease-in-out infinite reverse;
}

.hero__leaf--3 {
  width: 120px;
  top: 60%;
  right: 15%;
  animation: floatLeaf 12s ease-in-out infinite 2s;
}

html[dir="ltr"] .hero__leaf--1 {
  right: auto;
  left: 5%;
}

html[dir="ltr"] .hero__leaf--2 {
  left: auto;
  right: 8%;
}

html[dir="ltr"] .hero__leaf--3 {
  right: auto;
  left: 15%;
}

@keyframes floatLeaf {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.hero__content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero__logo {
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin: 0 auto 24px;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
}

.hero__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.hero__stars {
  display: flex;
  gap: 3px;
  color: var(--color-gold);
  font-size: 16px;
}

.hero__rating-text {
  font-size: 14px;
  color: var(--color-text-light);
  font-weight: 500;
}

.hero__title {
  margin-bottom: 16px;
}

.hero__title-main {
  display: block;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: var(--color-green-dark);
  line-height: 1.2;
}

html[lang="en"] .hero__title-main {
  font-family: var(--font-en);
  font-weight: 600;
  font-style: italic;
  letter-spacing: -1px;
}

.hero__subtitle {
  font-size: clamp(16px, 2.5vw, 22px);
  color: var(--color-text-light);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__divider {
  color: var(--color-gold);
  font-weight: 300;
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--color-green-light);
  border-radius: 13px;
  position: relative;
  opacity: 0.5;
}

.hero__scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--color-green-light);
  border-radius: var(--radius-full);
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 22px; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 100px 0;
  background: var(--color-white);
}

.about__text {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px;
  font-size: 18px;
  line-height: 1.9;
  color: var(--color-text-light);
}

.about__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about__feature {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-md);
  background: var(--color-cream);
  transition: all var(--transition);
}

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

.about__feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-green), var(--color-green-light));
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px;
}

.about__feature h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-green-dark);
  margin-bottom: 8px;
}

.about__feature p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.6;
}

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

@media (max-width: 480px) {
  .about__features {
    grid-template-columns: 1fr;
  }

  .about {
    padding: 60px 0;
  }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 100px 0;
  background: var(--color-cream);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(196, 162, 101, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card--featured {
  border: 2px solid var(--color-gold);
  transform: scale(1.02);
}

.service-card--featured:hover {
  transform: scale(1.02) translateY(-6px);
}

.service-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--color-gold);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

html[dir="ltr"] .service-card__badge {
  right: auto;
  left: 16px;
}

.service-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-sage);
  color: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 24px;
  transition: all var(--transition);
}

.service-card:hover .service-card__icon {
  background: var(--color-green);
  color: var(--color-white);
}

.service-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-green-dark);
  margin-bottom: 10px;
}

.service-card__desc {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.service-card__list {
  text-align: start;
  margin-bottom: 24px;
}

.service-card__list li {
  font-size: 14px;
  padding: 6px 0;
  color: var(--color-text);
  position: relative;
  padding-inline-start: 20px;
}

.service-card__list li::before {
  content: '';
  position: absolute;
  top: 50%;
  inset-inline-start: 0;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
}

@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .service-card--featured {
    transform: none;
  }

  .service-card--featured:hover {
    transform: translateY(-6px);
  }

  .services {
    padding: 60px 0;
  }
}

/* ============================================================
   OFFERS
   ============================================================ */
.offers {
  padding: 60px 0;
  background: var(--color-white);
}

.offers__card {
  background: linear-gradient(135deg, var(--color-green-dark), var(--color-green));
  border-radius: var(--radius-lg);
  padding: 60px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.offers__content {
  position: relative;
  z-index: 2;
}

.offers__badge {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offers__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 12px;
}

.offers__text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  max-width: 500px;
}

.offers__decoration {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 120px;
  color: rgba(255, 255, 255, 0.06);
}

html[dir="ltr"] .offers__decoration {
  right: auto;
  left: 50px;
}

@media (max-width: 768px) {
  .offers__card {
    padding: 40px 30px;
    flex-direction: column;
    text-align: center;
  }

  .offers__text {
    margin-left: auto;
    margin-right: auto;
  }

  .offers__decoration {
    position: static;
    transform: none;
    font-size: 60px;
    color: rgba(255, 255, 255, 0.1);
    margin-top: 20px;
  }
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: 100px 0;
  background: var(--color-cream);
}

.gallery-swiper {
  padding-bottom: 50px;
}

.gallery-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 3px solid var(--color-gold);
  box-shadow: var(--shadow-md);
}

.gallery-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-card:hover img {
  transform: scale(1.03);
}

.gallery-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(44, 58, 42, 0.85));
  color: var(--color-white);
  font-size: 15px;
  font-weight: 600;
}

.gallery__cta {
  text-align: center;
  margin-top: 40px;
}

.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
  color: var(--color-gold);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.gallery-swiper .swiper-button-next::after,
.gallery-swiper .swiper-button-prev::after {
  font-size: 18px;
  font-weight: 700;
}

.gallery-swiper .swiper-pagination-bullet {
  background: var(--color-green-light);
  opacity: 0.4;
}

.gallery-swiper .swiper-pagination-bullet-active {
  background: var(--color-gold);
  opacity: 1;
  width: 24px;
  border-radius: var(--radius-full);
}

@media (max-width: 768px) {
  .gallery-card img {
    height: 300px;
  }

  .gallery {
    padding: 60px 0;
  }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  padding: 100px 0;
  background: var(--color-white);
}

.reviews-swiper {
  padding-bottom: 50px;
}

.review-card {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 60px;
  color: var(--color-gold);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}

html[dir="ltr"] .review-card::before {
  right: auto;
  left: 24px;
}

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

.review-card__stars {
  display: flex;
  gap: 3px;
  color: var(--color-gold);
  font-size: 15px;
  margin-bottom: 16px;
}

.review-card__text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text);
  flex: 1;
  margin-bottom: 20px;
  border: none;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-green);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.review-card__name {
  font-weight: 600;
  font-size: 15px;
  color: var(--color-green-dark);
}

.review-card__source {
  font-size: 12px;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

.reviews__cta {
  text-align: center;
  margin-top: 40px;
}

.reviews-swiper .swiper-pagination-bullet {
  background: var(--color-green-light);
  opacity: 0.4;
}

.reviews-swiper .swiper-pagination-bullet-active {
  background: var(--color-gold);
  opacity: 1;
  width: 24px;
  border-radius: var(--radius-full);
}

@media (max-width: 768px) {
  .reviews {
    padding: 60px 0;
  }
}

/* ============================================================
   TEAM
   ============================================================ */
.team {
  padding: 100px 0;
  background: var(--color-cream);
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-card__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-sage), var(--color-cream));
  border: 3px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--color-green);
  margin: 0 auto 20px;
}

.team-card__name {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-green-dark);
  margin-bottom: 6px;
}

.team-card__role {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 14px;
}

.team-card__desc {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .team__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .team {
    padding: 60px 0;
  }
}

/* ============================================================
   INSTAGRAM FEED
   ============================================================ */
.instagram-feed {
  padding: 80px 0;
  background: var(--color-white);
}

.instagram-feed__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 32px;
}

.instagram-feed__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 1;
}

.instagram-feed__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.instagram-feed__overlay {
  position: absolute;
  inset: 0;
  background: rgba(92, 107, 82, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 28px;
  opacity: 0;
  transition: opacity var(--transition);
}

.instagram-feed__item:hover img {
  transform: scale(1.1);
}

.instagram-feed__item:hover .instagram-feed__overlay {
  opacity: 1;
}

.instagram-feed__cta {
  text-align: center;
}

@media (max-width: 768px) {
  .instagram-feed__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

/* ============================================================
   CONTACT / LOCATION
   ============================================================ */
.contact {
  padding: 100px 0;
  background: var(--color-cream);
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.branch-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.branch-card:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.branch-card__icon {
  font-size: 32px;
  color: var(--color-green);
  margin-bottom: 16px;
}

.branch-card__name {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-green-dark);
  margin-bottom: 20px;
}

.branch-card__info {
  text-align: start;
}

.branch-card__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-sage);
  font-size: 15px;
}

.branch-card__row:last-child {
  border-bottom: none;
}

.branch-card__row i {
  color: var(--color-gold);
  margin-top: 4px;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

.branch-card__row a {
  color: var(--color-green);
  font-weight: 600;
  direction: ltr;
  unicode-bidi: bidi-override;
}

.branch-card__row a:hover {
  color: var(--color-gold);
}

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
}

.contact__map iframe {
  display: block;
  width: 100%;
}

.contact__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-green-dark);
}

.trust-badge i {
  font-size: 20px;
  color: var(--color-gold);
}

@media (max-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .contact {
    padding: 60px 0;
  }

  .contact__trust {
    gap: 20px;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-green-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 60px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 16px;
}

.footer__tagline {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}

.footer__official-name {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px;
}

.footer__links h3,
.footer__contact-info h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--color-gold);
}

.footer__contact-info address {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__contact-info a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

.footer__contact-info a:hover {
  color: var(--color-gold);
}

.footer__contact-info i {
  font-size: 16px;
  width: 20px;
  text-align: center;
  color: var(--color-gold);
}

.footer__bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer__powered {
  margin-top: 6px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
}

.footer__powered a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: underline;
  transition: color var(--transition);
}

.footer__powered a:hover {
  color: var(--color-gold);
}

@media (max-width: 768px) {
  .footer__top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__logo {
    margin-left: auto;
    margin-right: auto;
  }

  .footer__contact-info address {
    align-items: center;
  }
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
/* WhatsApp Widget — pill style */
.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

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

.whatsapp-widget__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #25D366;
  color: var(--color-white);
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-ar);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  animation: waPulse 2.5s ease-in-out infinite;
}

html[lang="en"] .whatsapp-widget__btn {
  font-family: var(--font-en-body);
}

.whatsapp-widget__btn i {
  font-size: 22px;
}

.whatsapp-widget__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.55);
  animation: none;
  background: #1fb855;
}

.whatsapp-widget__powered {
  font-size: 10px;
  color: rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  text-decoration: none;
  transition: color var(--transition);
  letter-spacing: 0.2px;
}

.whatsapp-widget__powered:hover {
  color: rgba(0, 0, 0, 0.5);
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 14px rgba(37, 211, 102, 0.08); }
}

/* ============================================================
   MOBILE STICKY BAR
   ============================================================ */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--color-white);
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.08);
  padding: 10px 16px;
  gap: 10px;
  transform: translateY(100%);
  transition: transform var(--transition);
}

.mobile-bar.visible {
  transform: translateY(0);
}

.mobile-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
}

.mobile-bar__btn--call {
  background: var(--color-green);
  color: var(--color-white);
}

.mobile-bar__btn--wa {
  background: #25D366;
  color: var(--color-white);
}

@media (max-width: 768px) {
  .mobile-bar {
    display: flex;
  }

  .whatsapp-widget {
    display: none;
  }
}

/* ============================================================
   UTILITY / RTL ADJUSTMENTS
   ============================================================ */
html[dir="ltr"] .about__features,
html[dir="ltr"] .services__grid,
html[dir="ltr"] .team__grid,
html[dir="ltr"] .contact__grid,
html[dir="ltr"] .footer__top {
  direction: ltr;
}

html[dir="ltr"] .service-card__list {
  text-align: left;
}
