/* EKRAM ALDAYF — Luxury Tourism Website */
:root {
  --navy: #081B33;
  --navy-light: #0d2747;
  --gold: #C8A05D;
  --gold-light: #d4b06e;
  --gold-dark: #a8864a;
  --white: #FFFFFF;
  --silver: #F5F5F5;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --container: min(1200px, 92vw);
  --header-h: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: 'Montserrat', system-ui, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: var(--container);
  margin-inline: auto;
}

.serif { font-family: 'Cormorant Garamond', Georgia, serif; }

.eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.gold-divider {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1rem auto 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 160, 93, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(200, 160, 93, 0.6);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-light); }

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(8, 27, 51, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 160, 93, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo__mark {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--gold);
}

.logo__text { line-height: 1.2; }
.logo__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: 0.04em;
}
.logo__tag {
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(200, 160, 93, 0.85);
}

.nav { display: flex; gap: 2.25rem; }
.nav a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.nav a:hover { color: var(--gold); }

.header__actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

.header__cta { display: inline-flex; }

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(200, 160, 93, 0.35);
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
}

.lang-switcher--mobile {
  margin: 0.75rem 0;
  align-self: flex-start;
}

.lang-switcher__btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: var(--transition);
  font-family: inherit;
}

.lang-switcher__btn:hover,
.lang-switcher__btn.active {
  color: var(--gold);
}

.lang-switcher__sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.65rem;
  user-select: none;
}

.hero__eyebrow-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero__eyebrow-line {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero__eyebrow-text { margin: 0; }

.vision-growth-title {
  font-size: 1.75rem;
  margin: 1rem 0 0;
}

.form-success__text {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(200, 160, 93, 0.2);
  padding: 1.5rem;
  z-index: 999;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255, 255, 255, 0.85);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}
.mobile-nav a:hover { color: var(--gold); }

@media (min-width: 900px) {
  .header__actions { display: flex; }
  .lang-switcher--mobile { display: none; }
}
@media (max-width: 899px) {
  .nav, .header__actions { display: none; }
  .menu-toggle { display: block; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
}

.hero__video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 27, 51, 0.95) 0%, rgba(8, 27, 51, 0.75) 50%, rgba(8, 27, 51, 0.35) 100%),
    linear-gradient(180deg, rgba(8, 27, 51, 0.4) 0%, transparent 40%, rgba(8, 27, 51, 0.6) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-h) + 4rem) 0 8rem;
  max-width: 720px;
}

.hero__content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.75rem, 7vw, 5rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero__content h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero__content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: none;
  border-top: 1px solid rgba(200, 160, 93, 0.2);
}

.hero__stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero__stat {
  padding: 1.5rem;
  border-right: 1px solid rgba(200, 160, 93, 0.15);
}
.hero__stat:last-child { border-right: none; }
.hero__stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold);
}
.hero__stat-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
}

@media (min-width: 1024px) {
  .hero__stats { display: block; }
}

/* Sections */
.section {
  padding: 5rem 0;
}
.section--silver { background: var(--silver); }
.section--navy {
  background: var(--navy);
  color: var(--white);
}
.section--navy .eyebrow { color: var(--gold); }

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section__header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 1rem;
  line-height: 1.15;
}

.section__header p {
  color: var(--text-muted);
  margin-top: 1rem;
}

.section--navy .section__header p { color: rgba(255, 255, 255, 0.7); }

/* Trust Grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.trust-card {
  background: var(--white);
  padding: 2rem;
  transition: var(--transition);
}
.trust-card:hover {
  background: var(--navy);
  color: var(--white);
}
.trust-card:hover p { color: rgba(255, 255, 255, 0.7); }

.trust-card__icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 1.25rem;
  transition: transform var(--transition);
}
.trust-card:hover .trust-card__icon { transform: scale(1.1); }

.trust-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.trust-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  height: 99%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--navy);
  color: var(--white);
  padding: 2rem;
  max-width: 220px;
  border-top: 2px solid var(--gold);
  display: none;
}
.about-badge__year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--gold);
}
.about-badge__label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
}
.about-badge p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1rem;
  line-height: 1.5;
}

.about-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.2;
  margin: 1rem 0 1.5rem;
}
.about-content h2 em { font-style: italic; color: var(--gold); }

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.mission-quote {
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
}
.mission-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--navy);
  line-height: 1.4;
}

@media (min-width: 900px) {
  .about-grid { grid-template-columns: 5fr 7fr; gap: 4rem; }
  .about-badge { display: block; }
  .about-content { padding-left: 2rem; }
}

/* Services */
.services-intro {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.services-intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-top: 0.75rem;
  max-width: 480px;
}
.services-intro p {
  color: var(--text-muted);
  max-width: 380px;
  font-size: 0.95rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.service-card {
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  background: var(--white);
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(8, 27, 51, 0.08);
}

.service-card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.service-card:hover .service-card__media img { transform: scale(1.05); }

.service-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 27, 51, 0.75), transparent);
}

.service-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.service-card__icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  display: grid;
  place-items: center;
  color: var(--navy);
}
.service-card__label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--white);
  background: rgba(8, 27, 51, 0.65);
  backdrop-filter: blur(4px);
  padding: 0.4rem 0.75rem;
}

.service-card__body { padding: 1.75rem; }
.service-card__body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.service-card__body > p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.65;
}

.service-detail {
  font-size: 0.8rem;
  margin-bottom: 1rem;
}
.service-detail strong {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  margin-bottom: 0.35rem;
}
.service-detail ul { list-style: none; }
.service-detail li {
  padding: 0.15rem 0;
  color: var(--text-muted);
}
.service-detail li::before {
  content: '•';
  color: var(--gold);
  margin-right: 0.5rem;
}

.service-steps {
  counter-reset: step;
  margin: 0.75rem 0;
}
.service-steps li {
  counter-increment: step;
  display: flex;
  gap: 0.75rem;
  padding: 0.35rem 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.service-steps li::before {
  content: counter(step);
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.benefits-list { list-style: none; }
.benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  padding: 0.2rem 0;
  color: var(--navy);
}
.benefits-list li svg {
  color: var(--gold);
  flex-shrink: 0;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.25rem;
  margin-top: 0.5rem;
  transition: color var(--transition);
}
.service-card__link:hover { color: var(--gold); }

/* Achievements */
.achievements-bg {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  overflow: hidden;
}
.achievements-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.achievement-item {
  background: var(--navy);
  padding: 2rem 1.5rem;
  text-align: center;
}
.achievement-item__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
}
.achievement-item__label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
}

.achievements-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
  position: relative;
}
.achievements-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.achievements-list li svg { color: var(--gold); flex-shrink: 0; }

/* Vision */
.vision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.vision-grid h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 1rem 0 1.5rem;
  line-height: 1.2;
}
.vision-grid p { color: var(--text-muted); line-height: 1.75; font-size: 1.05rem; }

.growth-list { list-style: none; margin-top: 2rem; }
.growth-list li {
  display: flex;
  gap: 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.growth-list li:last-child { border-bottom: none; }
.growth-list__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gold);
  width: 2.5rem;
  flex-shrink: 0;
}
.growth-list span { color: var(--navy); line-height: 1.6; padding-top: 0.15rem; }

@media (min-width: 900px) {
  .vision-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .vision-grid__right { padding-left: 3rem; border-left: 1px solid var(--border); }
}

/* CTA Banner */
.cta-banner {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
}
.cta-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 27, 51, 0.88);
}
.cta-banner__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.cta-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin: 1rem 0 1.5rem;
  line-height: 1.15;
}
.cta-banner h2 em { font-style: italic; color: var(--gold); }
.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Testimonials */
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
}
.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
}
.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9rem;
}
.testimonial-card__role {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 0.15rem;
}

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--navy);
  transition: color var(--transition);
}
.faq-item__question:hover { color: var(--gold); }
.faq-item__icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--transition);
}
.faq-item.open .faq-item__icon { transform: rotate(45deg); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-item__answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}
.faq-item__answer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 1rem 0 1.5rem;
}
.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-item__icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(200, 160, 93, 0.4);
  display: grid;
  place-items: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-item a:hover { color: var(--gold); }

.map-wrap {
  margin-top: 2rem;
  border: 1px solid var(--border);
  overflow: hidden;
  height: 280px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


/* Footer */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0;
  border-top: 1px solid rgba(200, 160, 93, 0.2);
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
.footer__copy {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Floating widgets */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); }

.chat-widget {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 900;
}

.chat-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  border: 1px solid var(--gold);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 20px rgba(8, 27, 51, 0.3);
  transition: transform var(--transition);
}
.chat-toggle:hover { transform: scale(1.05); }

.chat-panel {
  position: absolute;
  bottom: 70px;
  left: 0;
  width: 320px;
  max-width: calc(100vw - 3rem);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.chat-panel.open { display: flex; }

.chat-panel__header {
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-panel__header h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
}
.chat-panel__close {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.chat-panel__body {
  padding: 1.25rem;
  flex: 1;
}
.chat-panel__body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.chat-panel__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.chat-panel__actions a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.chat-panel__actions a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 600px) {
  .whatsapp-float { bottom: 1rem; right: 1rem; }
  .chat-widget { bottom: 1rem; left: 1rem; }
  .section { padding: 3.5rem 0; }
}

/* ─── RTL / Arabic Typography ─── */
[dir="rtl"] body,
body.rtl {
  font-family: 'Tajawal', system-ui, sans-serif;
}

[dir="rtl"] .serif,
[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4,
[dir="rtl"] .trust-card h3,
[dir="rtl"] .service-card__body h3,
[dir="rtl"] .form-view h3,
[dir="rtl"] .faq-item__question,
[dir="rtl"] .mission-quote p,
[dir="rtl"] .logo__mark,
[dir="rtl"] .hero__stat-num,
[dir="rtl"] .achievement-item__num,
[dir="rtl"] .growth-list__num,
[dir="rtl"] .about-badge__year,
[dir="rtl"] .chat-panel__header h4,
[dir="rtl"] .form-success h4,
body.rtl .serif,
body.rtl h1,
body.rtl h2,
body.rtl h3,
body.rtl h4 {
  font-family: "Cairo", sans-serif;
}

[dir="rtl"] .eyebrow,
[dir="rtl"] .btn,
[dir="rtl"] .service-card__label,
[dir="rtl"] .hero__stat-label,
[dir="rtl"] .achievement-item__label,
[dir="rtl"] .form-field label,
[dir="rtl"] .form-tab,
[dir="rtl"] .service-card__link,
body.rtl .eyebrow,
body.rtl .btn {
  letter-spacing: 0.02em;
  text-transform: none;
}

[dir="rtl"] .hero__overlay,
body.rtl .hero__overlay {
  background:
    linear-gradient(270deg, rgba(8, 27, 51, 0.95) 0%, rgba(8, 27, 51, 0.75) 50%, rgba(8, 27, 51, 0.35) 100%),
    linear-gradient(180deg, rgba(8, 27, 51, 0.4) 0%, transparent 40%, rgba(8, 27, 51, 0.6) 100%);
}

[dir="rtl"] .hero__stat,
body.rtl .hero__stat {
  border-right: none;
  border-left: 1px solid rgba(200, 160, 93, 0.15);
}
[dir="rtl"] .hero__stat:last-child,
body.rtl .hero__stat:last-child {
  border-left: none;
}

[dir="rtl"] .about-badge,
body.rtl .about-badge {
  right: auto;
  left: -2rem;
}

[dir="rtl"] .mission-quote,
body.rtl .mission-quote {
  border-left: none;
  border-right: 2px solid var(--gold);
  padding-left: 0;
  padding-right: 1.5rem;
}

@media (min-width: 900px) {
  [dir="rtl"] .about-content,
  body.rtl .about-content {
    padding-left: 0;
    padding-right: 2rem;
  }
  [dir="rtl"] .vision-grid__right,
  body.rtl .vision-grid__right {
    padding-left: 0;
    padding-right: 3rem;
    border-left: none;
    border-right: 1px solid var(--border);
  }
}

[dir="rtl"] .service-card__tag,
body.rtl .service-card__tag {
  left: auto;
  right: 1rem;
}

[dir="rtl"] .service-detail li::before,
body.rtl .service-detail li::before {
  margin-right: 0;
  margin-left: 0.5rem;
}

[dir="rtl"] .faq-item__question,
body.rtl .faq-item__question {
  text-align: right;
}

[dir="rtl"] .testimonial-card::before,
body.rtl .testimonial-card::before {
  left: auto;
  right: 1.5rem;
}

[dir="rtl"] .icon-arrow,
body.rtl .icon-arrow {
  transform: scaleX(-1);
}

[dir="rtl"] .lang-switcher__btn[data-lang="ar"],
body.rtl .lang-switcher__btn[data-lang="ar"] {
  font-family: 'Tajawal', sans-serif;
}

[dir="rtl"] .header .header__inner .logo__text div:first-child {
  font-size: 1.2rem;
  font-family: 'Montserrat', system-ui, sans-serif;
}

[dir="rtl"] .header .header__inner .logo__text div:last-child {
  font-size: 1rem;
}