*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: hsl(40, 33%, 98%);
  --fg: hsl(35, 13%, 22%);
  --border: hsl(40, 20%, 85%);
  --card: hsl(40, 33%, 99%);
  --primary: hsl(38, 92%, 44%);
  --primary-10: hsla(38, 92%, 44%, 0.1);
  --primary-20: hsla(38, 92%, 44%, 0.2);
  --primary-40: hsla(38, 92%, 44%, 0.4);
  --primary-5: hsla(38, 92%, 44%, 0.05);
  --primary-8: hsla(38, 92%, 44%, 0.08);
  --primary-15: hsla(38, 92%, 44%, 0.15);
  --primary-fg: hsl(0, 0%, 100%);
  --destructive-60: hsla(0, 84%, 60%, 0.6);
  --amber: #f59e0b;
  --whatsapp: #25D366;
  --whatsapp-hover: #1ebd5a;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.15), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
  --radius: 1rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Tajawal', sans-serif;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

::selection {
  background: var(--primary-20);
  color: var(--primary);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hidden {
  display: none !important;
}

.ltr {
  direction: ltr;
  display: inline-block;
}

.primary-color {
  color: var(--primary);
}

.primary-icon {
  color: var(--primary);
}

.primary-text {
  color: var(--primary);
}

.icon-xs {
  width: 16px;
  height: 16px;
}

.icon-sm {
  width: 20px;
  height: 20px;
}

.icon-md {
  width: 24px;
  height: 24px;
}

.icon-lg {
  width: 32px;
  height: 32px;
}

.inline-icon {
  vertical-align: middle;
  margin-right: 4px;
}

svg {
  display: block;
}

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

button {
  font-family: 'Tajawal', sans-serif;
  cursor: pointer;
  border: none;
  background: none;
  color: var(--fg);
}

a {
  color: inherit;
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Tajawal', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), hsl(35, 92%, 48%));
  color: var(--primary-fg);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--fg);
  border: 2px solid var(--border);
  transition: all 0.3s;
}

.btn-outline:hover {
  background: var(--primary-5);
  border-color: var(--primary-40);
  transform: translateY(-2px);
}

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

.btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.05);
}

.btn-rounded {
  border-radius: 9999px;
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
  height: 56px;
}

.btn-xl {
  padding: 1rem 2.5rem;
  font-size: 1.25rem;
  height: 64px;
}

.btn-full {
  width: 100%;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: #000;
  font-weight: 400;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.divider-center {
  width: 80px;
  height: 6px;
  background: var(--primary-40);
  margin: 0 auto;
  border-radius: 9999px;
}

.divider-left {
  width: 80px;
  height: 6px;
  background: var(--primary-40);
  border-radius: 9999px;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.card-bg {
  background: var(--card);
}

.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  background: var(--whatsapp);
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s, background 0.3s;
}

.whatsapp-btn svg {
  margin: 0;
}

.whatsapp-btn:hover {
  background: var(--whatsapp-hover);
  transform: scale(1.1);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
  background: hsla(40, 33%, 98%, 0.3);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  padding: 1rem 0;
}

.navbar.scrolled {
  background: hsla(40, 33%, 98%, 0.88);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 0.5rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--primary);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.02);
}

.nav-logo svg {
  margin: 0;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.nav-logo:hover svg {
  transform: rotate(-8deg);
}

.nav-links-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links-desktop button {
  font-weight: 600;
  color: hsla(35, 13%, 22%, 0.75);
  transition: color 0.3s, transform 0.2s;
  font-size: 0.9375rem;
  padding: 6px 0;
  position: relative;
}

.nav-links-desktop button::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: center;
}

.nav-links-desktop button:hover {
  /* color: var(--primary); */
  transform: translateY(-1px);
}

.nav-links-desktop button:hover::after {
  transform: scaleX(1);
}

.nav-phone {
  font-weight: 700;
  direction: ltr;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 9999px;
  background: var(--primary-8);
  transition: background 0.3s, transform 0.2s;
}

.nav-phone:hover {
  background: var(--primary-15);
  transform: translateY(-1px);
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg);
  padding: 6px;
  background: var(--primary-8);
  border-radius: 0.5rem;
  border: none;
  transition: background 0.3s, transform 0.2s;
}

.nav-toggle:hover {
  background: var(--primary-15);
  transform: scale(1.05);
}

.mobile-menu {
  background: hsla(40, 33%, 98%, 0.95);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--primary-15);
  padding: 1rem 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu button,
.mobile-menu a {
  text-align: right;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid hsla(40, 20%, 85%, 0.5);
  display: block;
  width: 100%;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  color: var(--fg);
  cursor: pointer;
  transition: color 0.3s, background 0.3s;
}

.mobile-menu button:hover,
.mobile-menu a:hover {
  color: var(--primary);
  background: var(--primary-5);
}

.mobile-menu a {
  color: var(--fg);
}

.mobile-menu .btn {
  margin-top: 0.75rem;
  border-bottom: none;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroImageZoom 20s ease-in-out infinite alternate;
}

@keyframes heroImageZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

/* .hero-overlay {

  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    hsla(40, 33%, 98%, 0.97) 0%,
    hsla(40, 33%, 98%, 0.90) 30%,
    hsla(40, 33%, 98%, 0.65) 55%,
    hsla(38, 92%, 44%, 0.15) 75%,
    hsla(38, 92%, 44%, 0.25) 100%
  );
  z-index: 1;
} */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left,
      rgba(245, 241, 234, 0.95),
      rgba(245, 241, 234, 0.80),
      rgba(245, 241, 234, 0.40));
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-inner {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.badge-inline {
  max-width: fit-content;
  display: inline-flex;
  align-items: center;
  background: var(--primary-10);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.9375rem;
  border: 1px solid var(--primary-20);
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 hsla(38, 92%, 44%, 0);
  }

  50% {
    box-shadow: 0 0 0 8px hsla(38, 92%, 44%, 0.1);
  }
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.highlight-text {
  position: relative;
  white-space: nowrap;
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 14px;
  background: var(--primary-20);
  border-radius: 6px;
  z-index: -1;
  animation: highlightGrow 1.5s ease-out forwards;
}

@keyframes highlightGrow {
  from {
    transform: scaleX(0);
    opacity: 0;
  }

  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

.hero-desc {
  font-size: 1.3rem;
  color: hsla(35, 13%, 22%, 0.8);
  font-weight: 500;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
}

.hero-btn {
  width: 100%;
  justify-content: center;
  box-shadow: 0 12px 24px -4px hsla(38, 92%, 44%, 0.35);
  transition: all 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -4px hsla(38, 92%, 44%, 0.45);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsla(35, 13%, 22%, 0.75);
  padding-top: 2rem;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 9999px;
  background: var(--primary-5);
  border: 1px solid hsla(40, 20%, 85%, 0.4);
  transition: transform 0.2s, background 0.2s;
}

.hero-badge-item:hover {
  transform: translateY(-2px);
  background: var(--primary-10);
}

.hero-badge-item svg {
  margin: 0;
}

.pain-section {
  padding: 4rem 0;
}

.pain-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.pain-point {
  background: var(--bg);
  border: 1px solid hsla(40, 20%, 85%, 0.5);
  box-shadow: var(--shadow-sm);
  border-radius: 9999px;
  padding: 12px 24px;
  font-size: 1.125rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot-destructive {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: var(--destructive-60);
}

.dot-primary {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: var(--primary-40);
}

.session-desc {
  margin-top: 5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  background: var(--primary-5);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--primary-10);
  position: relative;
  overflow: hidden;
}

.leaf-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 160px;
  height: 160px;
  opacity: 0.05;
  color: var(--primary);
}

.session-desc-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: hsla(35, 13%, 22%, 0.9);
  font-weight: 500;
  position: relative;
  z-index: 10;
  margin-bottom: 2rem;
}

.session-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
  z-index: 10;
}

.badge-item {
  display: inline-block;
  padding: 8px 16px;
  font-size: 1rem;
  font-weight: 500;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  border: 1px solid hsla(40, 20%, 85%, 0.4);
  border-radius: 0.5rem;
}

.marquee-slider-section {
  padding: 3rem 0;
  background: var(--primary-8);
  border-top: 1px solid var(--primary-15);
  border-bottom: 1px solid var(--primary-15);
}

.marquee-slider-container {
  position: relative;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}

.marquee-slider-wrapper {
  display: flex;
  transition: transform 0.5s ease;
  direction: ltr;
}

.marquee-slide {
  min-width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
  text-align: center;
  padding: 2rem 2.5rem;
  background: var(--bg);
  border: 1px solid hsla(40, 20%, 85%, 0.5);
  border-radius: 1rem;
  direction: rtl;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.marquee-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.description-section {
  padding: 4rem 0;
  background: var(--bg);
  border-bottom: 1px solid hsla(40, 20%, 85%, 0.4);
}

.description-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.desc-text {
  font-size: 1.25rem;
  line-height: 2;
  color: hsla(35, 13%, 22%, 0.85);
  font-weight: 500;
}

.why-section {
  padding: 4rem 0;
  background: var(--bg);
  border-top: 1px solid hsla(40, 20%, 85%, 0.4);
  border-bottom: 1px solid hsla(40, 20%, 85%, 0.4);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.why-image img {
  border-radius: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  height: 500px;
  width: 100%;
}

.why-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: hsla(35, 13%, 22%, 0.8);
}

.check-icon-box {
  margin-top: 4px;
  background: var(--primary-10);
  padding: 6px;
  border-radius: 9999px;
  color: var(--primary);
  flex-shrink: 0;
}

.check-icon-box svg {
  margin: 0;
}

.services-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.skew-bg-top {
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
  height: 100%;
  background: var(--primary-5);
  transform: skewX(-12deg);
  transform-origin: top;
}

.skew-bg-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25%;
  height: 50%;
  background: var(--primary-5);
  transform: skewX(12deg);
  transform-origin: bottom;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
}

.service-card {
  background: hsla(40, 33%, 98%, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid hsla(40, 20%, 85%, 0.5);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
}

.service-icon-box {
  width: 64px;
  height: 64px;
  background: var(--primary-10);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon-box svg {
  margin: 0;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-desc {
  color: hsla(35, 13%, 22%, 0.7);
  line-height: 1.6;
  font-weight: 500;
}

.services-images {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
}

.service-img {
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  height: 256px;
  width: 48%;
}

.service-img-desktop {
  display: none;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  height: 256px;
  width: 48%;
}

.about-section {
  padding: 5rem 0;
  border-top: 1px solid hsla(40, 20%, 85%, 0.4);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1.125rem;
  color: hsla(35, 13%, 22%, 0.8);
  line-height: 1.8;
  font-weight: 500;
}

.about-trust-card {
  background: var(--card);
  border: 1px solid hsla(40, 20%, 85%, 0.6);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.trust-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}

.about-image {
  position: relative;
}

.image-rotate-bg {
  position: absolute;
  inset: -16px;
  background: var(--primary-10);
  border-radius: 2.5rem;
  z-index: -1;
  transform: rotate(3deg);
}

.about-image img {
  border-radius: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  width: 100%;
  height: 500px;
  position: relative;
  z-index: 1;
}

.testimonials-section {
  padding: 5rem 0;
  position: relative;
}

.testimonials-bg-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/WhatsApp%20Image%202026-05-28%20at%202.44.31%20PM6.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.03;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.testimonial-badges-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.badge-outline {
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  background: hsla(40, 33%, 98%, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid var(--primary-20);
  border-radius: 9999px;
}

.slider-container {
  position: relative;
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
}

.slider-wrapper {
  display: flex;
  direction: ltr;
  transition: transform 0.4s ease;
}

.slide {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
}

.slide img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 1rem;
  display: block;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.slider-btn svg {
  width: 20px;
  height: 20px;
  margin: 0;
}

.slider-btn:hover {
  background: var(--primary-10);
  border-color: var(--primary-40);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dot.active {
  background: var(--primary);
  width: 24px;
}

.book-section {
  padding: 6rem 0;
  background: var(--primary-5);
}

.book-card {
  background: var(--bg);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--primary-10);
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.blur-circle-top {
  position: absolute;
  top: -6rem;
  right: -6rem;
  width: 192px;
  height: 192px;
  background: var(--primary-5);
  border-radius: 9999px;
  filter: blur(48px);
}

.blur-circle-bottom {
  position: absolute;
  bottom: -6rem;
  left: -6rem;
  width: 192px;
  height: 192px;
  background: var(--primary-10);
  border-radius: 9999px;
  filter: blur(48px);
}

.book-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 10;
}

.book-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-10);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.book-badge svg {
  margin: 0;
}

.book-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 10;
}

.book-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: var(--card);
  border: 1px solid hsla(40, 20%, 85%, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-sm);
}

.step-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: hsla(35, 13%, 22%, 0.8);
}

.book-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 10;
}

.book-actions .btn {
  justify-content: center;
  width: 100%;
}

.faq-section {
  padding: 5rem 0;
  border-top: 1px solid hsla(40, 20%, 85%, 0.4);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--card);
  border: 1px solid hsla(40, 20%, 85%, 0.6);
  border-radius: 0.75rem;
  padding: 0.5rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: var(--primary-40);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: right;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 0.75rem 0;
  color: var(--fg);
  transition: color 0.3s;
}

.faq-item.open .faq-question {
  color: var(--primary);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
  margin: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 1rem;
  color: hsla(35, 13%, 22%, 0.7);
  font-weight: 500;
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 1rem;
}

.contact-section {
  padding: 5rem 0;
  border-top: 1px solid hsla(40, 20%, 85%, 0.4);
}

.contact-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-subtitle {
  font-size: 1.25rem;
  color: hsla(35, 13%, 22%, 0.7);
  font-weight: 500;
  margin-bottom: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  background: var(--bg);
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid hsla(40, 20%, 85%, 0.4);
}

.contact-item svg {
  margin: 0;
}

.contact-label {
  font-weight: 700;
  font-size: 1.125rem;
}

.cta-section {
  padding: 5rem 0;
  background: var(--primary-5);
  border-top: 1px solid var(--primary-15);
}

.cta-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cta-title {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.5;
}

.cta-desc {
  font-size: 1.125rem;
  line-height: 2;
  color: hsla(35, 13%, 22%, 0.8);
  font-weight: 500;
}

.cta-note {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsla(35, 13%, 22%, 0.75);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
}

.cta-actions .btn {
  justify-content: center;
  width: 100%;
}

.footer {
  background: var(--fg);
  color: var(--bg);
  padding: 2rem 0;
  border-top: 4px solid var(--primary);
  text-align: center;
}

.footer p {
  font-size: 1.125rem;
  font-weight: 500;
  opacity: 0.9;
}

@media (min-width: 640px) {
  .container {
    padding: 0 2rem;
  }

  .hero-actions {
    flex-direction: row;
    gap: 1rem;
  }

  .hero-btn {
    width: auto;
  }

  .book-steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .book-actions {
    flex-direction: row;
  }

  .book-actions .btn {
    width: auto;
  }

  .cta-actions {
    flex-direction: row;
  }

  .cta-actions .btn {
    width: auto;
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }

  .nav-inner {
    padding: 0 2rem;
  }

  .nav-links-desktop {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .hero-title {
    font-size: 3.25rem;
  }

  .hero-desc {
    font-size: 1.375rem;
  }

  .pain-section {
    padding: 6rem 0;
  }

  .session-desc {
    padding: 3rem;
  }

  .session-desc-text {
    font-size: 1.375rem;
  }

  .description-section {
    padding: 6rem 0;
  }

  .desc-text {
    font-size: 1.375rem;
  }

  .why-section {
    padding: 6rem 0;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-img-desktop {
    display: block;
  }

  .service-img {
    width: 48%;
  }

  .about-section {
    padding: 8rem 0;
  }

  .about-grid {
    grid-template-columns: 7fr 5fr;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-text {
    font-size: 1.25rem;
  }

  .cta-title {
    font-size: 2.25rem;
  }

  .contact-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-title {
    font-size: 4rem;
  }

  .hero-desc {
    font-size: 1.5rem;
  }

  .cta-title {
    font-size: 2.5rem;
  }

  .book-card {
    padding: 3.5rem;
  }

  .about-section {
    padding: 8rem 0;
  }

  .testimonials-section {
    padding: 8rem 0;
  }

  .marquee-slide {
    font-size: 1.375rem;
  }

  .hero-inner {
    max-width: 720px;
  }

  .nav-links-desktop {
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {

  /* new styles */

  /* ─── NAVBAR ─── */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    transition: all 0.3s ease;
    background: transparent;
    padding-top: 1.25rem;
    /* py-5 */
    padding-bottom: 1.25rem;
  }

  .navbar.scrolled {
    background: rgba(245, 241, 234, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    padding-top: 0.75rem;
    /* py-3 */
    padding-bottom: 0.75rem;
  }

  .navbar .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
  }

  @media (min-width: 768px) {
    .navbar .container {
      padding: 0 2rem;
    }
  }

  .navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Logo */
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: #d4911e;
    cursor: pointer;
  }

  /* Desktop nav links */
  .nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .nav-desktop {
      display: flex;
    }
  }

  .nav-link {
    color: rgba(63, 54, 42, 0.8);
    font-weight: 500;
    transition: color 0.15s;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
  }

  .nav-link:hover {
    color: #d4911e;
  }

  .nav-phone {
    color: #3f362a;
    font-weight: 700;
    letter-spacing: 0.05em;
    direction: ltr;
  }

  .nav-phone-icon {
    color: #d4911e;
    display: inline;
    width: 1rem;
    height: 1rem;
    margin-left: 0.25rem;
    vertical-align: middle;
  }

  /* Book button (navbar) */
  .nav-book-btn {
    border-radius: 9999px;
    font-weight: 700;
    padding: 0 1.5rem;
    background: #d4911e;
    color: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    border: none;
    height: 2.5rem;
    transition: box-shadow 0.15s;
  }

  .nav-book-btn:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }

  /* Mobile menu toggle */
  .nav-mobile-toggle {
    display: block;
    color: #3f362a;
    background: none;
    border: none;
    cursor: pointer;
  }

  @media (min-width: 768px) {
    .nav-mobile-toggle {
      display: none;
    }
  }

  /* Mobile nav dropdown */
  .nav-mobile {
    display: none;
    background: #f8f4ed;
    border-top: 1px solid #ddd5ca;
    margin-top: 0.75rem;
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    position: absolute;
    width: 100%;
    left: 0;
  }

  .nav-mobile.open {
    display: flex;
  }

  .nav-mobile-link {
    text-align: right;
    font-size: 1.125rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(221, 213, 202, 0.5);
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    cursor: pointer;
    color: #3f362a;
    width: 100%;
  }

  .nav-mobile-phone {
    text-align: right;
    font-size: 1.125rem;
    padding: 0.5rem 0;
    font-weight: 700;
    color: #d4911e;
    direction: ltr;
  }

  .nav-mobile-book-btn {
    width: 100%;
    border-radius: 9999px;
    font-weight: 700;
    height: 3rem;
    font-size: 1.125rem;
    background: #d4911e;
    color: #fff;
    margin-top: 0.5rem;
    cursor: pointer;
    border: none;
  }


  /* ─── HERO SECTION ─── */
  .hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5rem;
  }

  .hero-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left,
        rgba(245, 241, 234, 0.95),
        rgba(245, 241, 234, 0.80),
        rgba(245, 241, 234, 0.40));
  }

  .hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 2.5rem 1rem 0;
  }

  @media (min-width: 768px) {
    .hero-content {
      padding: 2.5rem 2rem 0;
    }
  }

  .hero-text-wrapper {
    max-width: 42rem;
    /* max-w-2xl = 672px */
  }

  .hero-text-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    /* space-y-6 */
  }

  /* Badge / tag */
  .hero-badge {
    display: inline-block;
    background: rgba(212, 145, 30, 0.1);
    color: #d4911e;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.875rem;
    border: 1px solid rgba(212, 145, 30, 0.2);
  }

  @media (min-width: 768px) {
    .hero-badge {
      font-size: 1rem;
    }
  }

  /* Heading */
  .hero-heading {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.3;
    color: #3f362a;
  }

  @media (min-width: 768px) {
    .hero-heading {
      font-size: 3rem;
    }
  }

  @media (min-width: 1024px) {
    .hero-heading {
      font-size: 3.75rem;
    }
  }

  .hero-heading-highlight {
    color: #d4911e;
    position: relative;
    white-space: nowrap;
  }

  .hero-heading-highlight-underline {
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 0.75rem;
    background: rgba(212, 145, 30, 0.2);
    z-index: -1;
    border-radius: 0.125rem;
  }

  /* Subtitle */
  .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(63, 54, 42, 0.8);
    line-height: 1.625;
    font-weight: 500;
  }

  @media (min-width: 768px) {
    .hero-subtitle {
      font-size: 1.5rem;
    }
  }

  /* CTA buttons */
  .hero-actions {
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  @media (min-width: 640px) {
    .hero-actions {
      flex-direction: row;
    }
  }

  .hero-btn-primary {
    border-radius: 9999px;
    height: 3.5rem;
    padding: 0 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    background: #d4911e;
    color: #fff;
    box-shadow: 0 10px 15px -3px rgba(212, 145, 30, 0.3);
    cursor: pointer;
    border: none;
    transition: box-shadow 0.15s;
  }

  .hero-btn-primary:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  }

  .hero-btn-outline {
    border-radius: 9999px;
    height: 3.5rem;
    padding: 0 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    background: transparent;
    color: #3f362a;
    border: 2px solid #ddd5ca;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background 0.15s;
  }

  .hero-btn-outline:hover {
    background: rgba(212, 145, 30, 0.1);
    border-color: #d4911e;
  }


  /* ─── WhatsApp Floating Button ─── */
  .whatsapp-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    background: #25D366;
    color: #fff;
    padding: 1rem;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s, background 0.15s;
  }

  .whatsapp-btn:hover {
    background: #1ebd5a;
    transform: scale(1.1);
  }


  /* ─── GLOBAL ─── */
  body {
    font-family: 'Tajawal', sans-serif;
    -webkit-font-smoothing: antialiased;
    background: #f8f4ed;
    color: #3f362a;
  }

  html {
    scroll-behavior: smooth;
  }

  ::selection {
    background: rgba(212, 145, 30, 0.2);
    color: #d4911e;
  }
}