/* Mokkafa theme — Arabic RTL marketing site */

:root {
  --mk-indigo: #6366f1;
  --mk-purple: #a855f7;
  --mk-teal: #14b8a6;
  --mk-grad: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  --mk-dark: #0f0c29;
  --mk-dark-2: #1e1b4b;
  --mk-dark-mid: #302b63;
  --mk-bg: #f8f7ff;
  --mk-soft: #f5f3ff;
  --mk-soft-2: #eeecff;
  --mk-text: #1e1b4b;
  --mk-muted: #6b7280;
  --mk-white: #ffffff;
  --mk-whatsapp: #25d366;
  --mk-radius: 16px;
  --mk-radius-lg: 24px;
  --mk-shadow: 0 10px 40px rgba(99, 102, 241, 0.12);
  --mk-max: 1200px;
  --mk-font: "Tajawal", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body.mokkafa-body {
  margin: 0;
  font-family: var(--mk-font);
  background: var(--mk-bg);
  color: var(--mk-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3 {
  line-height: 1.25;
  margin: 0 0 0.75rem;
  font-weight: 800;
}

p {
  margin: 0 0 1rem;
}

.mokkafa-site {
  min-height: 100vh;
  overflow-x: hidden;
}

.mokkafa-main {
  min-height: 50vh;
}

.mokkafa-container {
  width: min(100% - 48px, var(--mk-max));
  margin-inline: auto;
}

/* Logo */
.mokkafa-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.mokkafa-logo--hero {
  display: inline-block;
  background: #fff;
  border-radius: 14px;
  padding: 0.6rem 0.9rem;
  margin-bottom: 1.5rem;
}

.mokkafa-logo--hero img {
  height: 64px;
  margin-bottom: 0;
}

.mokkafa-logo--footer {
  display: inline-block;
  background: #fff;
  border-radius: 12px;
  padding: 0.5rem 0.75rem;
}

.mokkafa-logo--footer img {
  height: 52px;
  margin-bottom: 0;
  filter: none;
}

.mokkafa-footer-brand .mokkafa-logo--footer {
  margin-bottom: 1rem;
}

/* Buttons */
.mokkafa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  font-family: inherit;
  text-align: center;
}

.mokkafa-btn--lg {
  padding: 0.95rem 1.85rem;
  font-size: 1rem;
}

.mokkafa-btn--sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

.mokkafa-btn--primary {
  background: var(--mk-grad);
  color: var(--mk-white);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
}

.mokkafa-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(99, 102, 241, 0.45);
}

.mokkafa-btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--mk-white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.mokkafa-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.mokkafa-btn--outline {
  background: transparent;
  color: var(--mk-indigo);
  border: 1.5px solid rgba(99, 102, 241, 0.35);
}

.mokkafa-btn--outline:hover {
  background: var(--mk-soft-2);
}

/* Nav */
.mokkafa-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.mokkafa-nav.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: rgba(99, 102, 241, 0.12);
  box-shadow: 0 4px 20px rgba(30, 27, 75, 0.06);
}

.mokkafa-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 1rem;
}

.mokkafa-nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.mokkafa-nav-link {
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #374151;
  transition: background 0.2s, color 0.2s;
}

.mokkafa-nav-link:hover,
.mokkafa-nav-link.is-active {
  color: var(--mk-indigo);
  background: var(--mk-soft-2);
}

.mokkafa-nav-cta {
  display: none;
}

.mokkafa-mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--mk-text);
  cursor: pointer;
  padding: 0.35rem;
}

.mokkafa-mobile-menu {
  border-top: 1px solid rgba(99, 102, 241, 0.1);
  background: var(--mk-white);
  padding-bottom: 1.25rem;
}

.mokkafa-mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-top: 0.75rem;
}

.mokkafa-mobile-menu-inner .mokkafa-btn {
  margin-top: 0.5rem;
}

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

  .mokkafa-nav-cta {
    display: inline-flex;
  }

  .mokkafa-mobile-toggle,
  .mokkafa-mobile-menu {
    display: none !important;
  }
}

/* Hero */
.mokkafa-hero {
  position: relative;
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 55%, #1e1b4b 100%);
  color: var(--mk-white);
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.mokkafa-hero-blobs::before,
.mokkafa-hero-blobs::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.mokkafa-hero-blobs::before {
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, transparent 70%);
}

.mokkafa-hero-blobs::after {
  bottom: -150px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, transparent 70%);
}

.mokkafa-hero-inner {
  position: relative;
  z-index: 1;
  padding: 4rem 0 5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .mokkafa-hero-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2rem;
    padding: 5rem 0;
  }
}

.mokkafa-hero-copy {
  max-width: 680px;
  position: relative;
  z-index: 2;
}

.mokkafa-hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  margin-bottom: 1rem;
}

.mokkafa-hero-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 34rem;
}

.mokkafa-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

/* Hero visual + floating icons */
.mokkafa-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  margin-inline: auto;
  width: min(100%, 520px);
}

@media (min-width: 960px) {
  .mokkafa-hero-visual {
    width: 100%;
    min-height: 420px;
  }
}

.mokkafa-hero-glow {
  position: absolute;
  inset: 12% 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.35) 0%, rgba(168, 85, 247, 0.18) 45%, transparent 70%);
  filter: blur(8px);
  pointer-events: none;
  animation: mokkafa-hero-pulse 5s ease-in-out infinite;
}

.mokkafa-hero-img {
  position: relative;
  z-index: 2;
  width: min(100%, 460px);
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(15, 12, 41, 0.45));
  animation: mokkafa-hero-float 6s ease-in-out infinite;
}

.mokkafa-hero-orbit {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.mokkafa-hero-float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem 0.45rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #fff;
  box-shadow: 0 10px 28px rgba(15, 12, 41, 0.28);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.mokkafa-hero-float-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--mk-grad);
  color: #fff;
  flex-shrink: 0;
}

.mokkafa-hero-float-label {
  padding-inline-end: 0.15rem;
}

.mokkafa-hero-float.is-a {
  top: 6%;
  right: 2%;
  animation: mokkafa-float-a 5.5s ease-in-out infinite;
}

.mokkafa-hero-float.is-b {
  top: 18%;
  left: 0;
  animation: mokkafa-float-b 6.2s ease-in-out infinite 0.4s;
}

.mokkafa-hero-float.is-c {
  bottom: 22%;
  left: 4%;
  animation: mokkafa-float-a 5.8s ease-in-out infinite 0.8s;
}

.mokkafa-hero-float.is-d {
  bottom: 8%;
  right: 6%;
  animation: mokkafa-float-b 6.5s ease-in-out infinite 0.2s;
}

.mokkafa-hero-float.is-e {
  top: 46%;
  right: -2%;
  animation: mokkafa-float-a 7s ease-in-out infinite 1s;
}

@media (max-width: 959px) {
  .mokkafa-hero-float.is-e {
    display: none;
  }

  .mokkafa-hero-float.is-b .mokkafa-hero-float-label,
  .mokkafa-hero-float.is-c .mokkafa-hero-float-label {
    display: none;
  }

  .mokkafa-hero-float.is-b,
  .mokkafa-hero-float.is-c {
    padding: 0.4rem;
    border-radius: 14px;
  }
}

@keyframes mokkafa-hero-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes mokkafa-hero-pulse {
  0%,
  100% {
    opacity: 0.75;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes mokkafa-float-a {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

@keyframes mokkafa-float-b {
  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }
  50% {
    transform: translateY(12px) rotate(-2deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mokkafa-hero-img,
  .mokkafa-hero-glow,
  .mokkafa-hero-float {
    animation: none !important;
  }
}

/* Page hero */
.mokkafa-page-hero {
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 55%, #1e1b4b 100%);
  color: var(--mk-white);
  padding: 4.5rem 0 3.5rem;
  text-align: center;
}

.mokkafa-page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  max-width: 18ch;
  margin-inline: auto;
}

.mokkafa-page-hero p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 40rem;
  margin-inline: auto;
}

/* Sections */
.mokkafa-section {
  padding: 5rem 0;
}

.mokkafa-section--soft {
  background: var(--mk-soft);
}

.mokkafa-section--dark {
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 55%, #1e1b4b 100%);
  color: var(--mk-white);
}

.mokkafa-section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}

.mokkafa-section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.mokkafa-section-head p {
  color: var(--mk-muted);
}

.mokkafa-section--dark .mokkafa-section-head p {
  color: rgba(255, 255, 255, 0.75);
}

.mokkafa-section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.mokkafa-pill {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: var(--mk-soft-2);
  color: var(--mk-indigo);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.mokkafa-pill--light {
  background: rgba(255, 255, 255, 0.12);
  color: #c4b5fd;
}

.mokkafa-muted {
  color: var(--mk-muted);
  font-size: 0.9rem;
}

.mokkafa-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--mk-indigo);
  margin-bottom: 0.35rem;
}

/* Services grid */
.mokkafa-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

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

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

.mokkafa-service-card {
  background: var(--mk-white);
  border-radius: var(--mk-radius-lg);
  padding: 1.75rem;
  box-shadow: var(--mk-shadow);
  border: 1px solid rgba(99, 102, 241, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 100%;
}

a.mokkafa-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(99, 102, 241, 0.18);
}

.mokkafa-service-card h3 {
  font-size: 1.15rem;
}

.mokkafa-service-card p {
  color: var(--mk-muted);
  flex: 1;
  margin-bottom: 0.5rem;
}

.mokkafa-service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--mk-grad);
  color: var(--mk-white);
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}

.mokkafa-card-link {
  font-weight: 700;
  color: var(--mk-indigo);
  font-size: 0.9rem;
}

/* Salla featured */
.mokkafa-salla-featured {
  display: grid;
  gap: 2rem;
}

.mokkafa-salla-copy h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.mokkafa-salla-copy > p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 36rem;
}

.mokkafa-salla-price {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  margin: 1.25rem 0;
  flex-wrap: wrap;
}

.mokkafa-price-now {
  font-size: 2rem;
  font-weight: 900;
  background: var(--mk-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mokkafa-section--dark .mokkafa-price-now,
.mokkafa-page-hero .mokkafa-price-now {
  color: #c4b5fd;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.mokkafa-price-old {
  text-decoration: line-through;
  color: var(--mk-muted);
  font-size: 1.1rem;
}

.mokkafa-section--dark .mokkafa-price-old {
  color: rgba(255, 255, 255, 0.45);
}

.mokkafa-checklist {
  display: grid;
  gap: 0.65rem;
  margin: 1.25rem 0;
}

.mokkafa-checklist--cols {
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .mokkafa-checklist--cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

.mokkafa-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.mokkafa-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.15);
  color: var(--mk-teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.mokkafa-section--dark .mokkafa-check {
  background: rgba(20, 184, 166, 0.25);
  color: #5eead4;
}

.mokkafa-note {
  font-size: 0.9rem;
  color: var(--mk-muted);
  background: var(--mk-soft);
  padding: 1rem 1.15rem;
  border-radius: 12px;
  margin: 1.25rem 0;
}

/* Why / values */
.mokkafa-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .mokkafa-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.mokkafa-why-card {
  background: var(--mk-white);
  border-radius: var(--mk-radius);
  padding: 1.5rem;
  box-shadow: var(--mk-shadow);
  border: 1px solid rgba(99, 102, 241, 0.08);
}

.mokkafa-why-card h3 {
  font-size: 1.05rem;
}

.mokkafa-why-card p {
  color: var(--mk-muted);
  margin: 0;
  font-size: 0.95rem;
}

/* Steps */
.mokkafa-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 700px) {
  .mokkafa-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .mokkafa-steps {
    grid-template-columns: repeat(5, 1fr);
  }
}

.mokkafa-step {
  background: var(--mk-white);
  border-radius: var(--mk-radius);
  padding: 1.35rem;
  border: 1px solid rgba(99, 102, 241, 0.08);
}

.mokkafa-step-num {
  display: inline-block;
  font-weight: 900;
  font-size: 1.25rem;
  background: var(--mk-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}

.mokkafa-step h3 {
  font-size: 1rem;
}

.mokkafa-step p {
  color: var(--mk-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* Portfolio */
.mokkafa-portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.mokkafa-filter-btn {
  border: 1px solid rgba(99, 102, 241, 0.2);
  background: var(--mk-white);
  color: var(--mk-text);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.mokkafa-filter-btn.is-active,
.mokkafa-filter-btn:hover {
  background: var(--mk-grad);
  color: var(--mk-white);
  border-color: transparent;
}

.mokkafa-portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .mokkafa-portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.mokkafa-portfolio-card {
  background: var(--mk-white);
  border-radius: var(--mk-radius-lg);
  overflow: hidden;
  box-shadow: var(--mk-shadow);
  border: 1px solid rgba(99, 102, 241, 0.08);
}

.mokkafa-portfolio-thumb {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eeecff, #fdf4ff);
  font-size: 2.75rem;
}

.mokkafa-portfolio-body {
  padding: 1.25rem 1.4rem 1.5rem;
}

.mokkafa-portfolio-body h3 {
  font-size: 1.1rem;
}

.mokkafa-portfolio-body p {
  color: var(--mk-muted);
  font-size: 0.92rem;
}

/* Pricing */
.mokkafa-pricing-teaser {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 900px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .mokkafa-pricing-teaser {
    grid-template-columns: 1.2fr 1fr;
  }
}

.mokkafa-price-card {
  background: var(--mk-white);
  border-radius: var(--mk-radius-lg);
  padding: 2rem;
  box-shadow: var(--mk-shadow);
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.mokkafa-price-card--featured {
  border: 2px solid transparent;
  background:
    linear-gradient(var(--mk-white), var(--mk-white)) padding-box,
    var(--mk-grad) border-box;
}

.mokkafa-price-card--wide {
  max-width: 860px;
  margin-inline: auto;
}

.mokkafa-price-card h2,
.mokkafa-price-card h3 {
  margin-top: 0.35rem;
}

/* FAQ */
.mokkafa-faq-wrap {
  max-width: 760px;
}

.mokkafa-faq-list {
  display: grid;
  gap: 0.75rem;
}

.mokkafa-faq-item {
  background: var(--mk-white);
  border-radius: 14px;
  border: 1px solid rgba(99, 102, 241, 0.1);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.mokkafa-faq-item.is-open {
  box-shadow: var(--mk-shadow);
}

.mokkafa-faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--mk-text);
  text-align: right;
  cursor: pointer;
}

.mokkafa-faq-icon {
  color: var(--mk-indigo);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.mokkafa-faq-answer {
  padding: 0 1.25rem 1.15rem;
}

.mokkafa-faq-answer p {
  margin: 0;
  color: var(--mk-muted);
}

/* CTA band */
.mokkafa-cta-band {
  background: var(--mk-grad);
  color: var(--mk-white);
  padding: 4.5rem 0;
  text-align: center;
}

.mokkafa-cta-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.mokkafa-cta-inner p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 34rem;
  margin-inline: auto;
}

.mokkafa-cta-band .mokkafa-btn--primary {
  background: var(--mk-white);
  color: var(--mk-indigo);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.mokkafa-cta-band .mokkafa-hero-actions {
  justify-content: center;
}

/* Services detail — alternating 2-col rows */
.mokkafa-services-detail {
  display: grid;
  gap: 2.5rem;
}

.mokkafa-service-row {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: stretch;
}

.mokkafa-service-media {
  order: 1;
}

.mokkafa-service-row .mokkafa-service-block {
  order: 2;
  margin: 0;
  height: auto;
}

@media (min-width: 900px) {
  .mokkafa-service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
  }

  /* RTL: order 1 = right. Card on right, image on left for odd rows */
  .mokkafa-service-row:not(.is-flipped) .mokkafa-service-block {
    order: 1;
  }

  .mokkafa-service-row:not(.is-flipped) .mokkafa-service-media {
    order: 2;
  }

  /* Even rows: image on right, card on left */
  .mokkafa-service-row.is-flipped .mokkafa-service-media {
    order: 1;
  }

  .mokkafa-service-row.is-flipped .mokkafa-service-block {
    order: 2;
  }

  .mokkafa-service-row .mokkafa-service-block {
    height: 100%;
  }
}

.mokkafa-service-media {
  border-radius: var(--mk-radius-lg);
  overflow: hidden;
  min-height: 220px;
  box-shadow: var(--mk-shadow);
  background: linear-gradient(135deg, #eeecff, #fdf4ff 55%, #e0f2fe);
}

.mokkafa-service-media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  max-height: 360px;
  object-fit: cover;
  display: block;
}

@media (min-width: 900px) {
  .mokkafa-service-media {
    min-height: 280px;
  }

  .mokkafa-service-media img {
    min-height: 280px;
    max-height: none;
    aspect-ratio: 16 / 10;
  }
}

.mokkafa-service-media-fallback {
  min-height: 220px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
}

.mokkafa-service-icon--xl {
  width: 88px;
  height: 88px;
  border-radius: 22px;
}

.mokkafa-service-media-label {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--mk-text);
}

/* Packages grid */
.mokkafa-packages-grid {
  display: grid;
  gap: 1.25rem;
}

.mokkafa-packages-grid--single {
  grid-template-columns: 1fr;
}

.mokkafa-packages-grid--single .mokkafa-price-card--wide {
  max-width: 860px;
  margin-inline: auto;
  width: 100%;
}

.mokkafa-packages-grid--many {
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .mokkafa-packages-grid--many {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.mokkafa-packages-grid--many .mokkafa-price-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mokkafa-packages-grid--many .mokkafa-btn {
  margin-top: auto;
}

.mokkafa-portfolio-thumb img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

/* Floating buttons stack */
.mokkafa-fab-stack {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mokkafa-whatsapp-fab,
.mokkafa-call-fab {
  position: static;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: var(--mk-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.mokkafa-whatsapp-fab {
  background: var(--mk-whatsapp);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

.mokkafa-call-fab {
  background: var(--mk-grad);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.mokkafa-whatsapp-fab:hover,
.mokkafa-call-fab:hover {
  transform: scale(1.08);
}

/* Services detail old rule override handled above */

.mokkafa-service-block {
  background: var(--mk-white);
  border-radius: var(--mk-radius-lg);
  padding: 2rem;
  box-shadow: var(--mk-shadow);
  border: 1px solid rgba(99, 102, 241, 0.08);
  scroll-margin-top: 90px;
}

.mokkafa-service-block-head {
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.mokkafa-service-block-head h2 {
  font-size: 1.4rem;
}

.mokkafa-service-block-head p {
  color: var(--mk-muted);
}

/* About */
.mokkafa-about-story {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .mokkafa-about-story {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }
}

.mokkafa-about-text p {
  color: var(--mk-muted);
  font-size: 1.05rem;
}

.mokkafa-mission {
  margin: 0;
  padding: 1.75rem;
  border-radius: var(--mk-radius-lg);
  background: var(--mk-grad);
  color: var(--mk-white);
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: var(--mk-shadow);
}

.mokkafa-mission p {
  margin: 0;
}

/* Contact */
.mokkafa-contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .mokkafa-contact-grid {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
  }
}

.mokkafa-contact-info {
  background: var(--mk-white);
  border-radius: var(--mk-radius-lg);
  padding: 1.75rem;
  box-shadow: var(--mk-shadow);
}

.mokkafa-contact-list {
  display: grid;
  gap: 1rem;
  margin: 1.25rem 0 1.5rem;
}

.mokkafa-contact-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mokkafa-contact-list .mokkafa-service-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.mokkafa-contact-form-wrap {
  background: var(--mk-white);
  border-radius: var(--mk-radius-lg);
  padding: 1.75rem;
  box-shadow: var(--mk-shadow);
}

.mokkafa-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.mokkafa-form-row label {
  font-weight: 700;
  font-size: 0.92rem;
}

.mokkafa-form-row input,
.mokkafa-form-row select,
.mokkafa-form-row textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(99, 102, 241, 0.2);
  background: var(--mk-bg);
  font-family: inherit;
  font-size: 1rem;
  color: var(--mk-text);
  text-align: right;
}

.mokkafa-form-row input:focus,
.mokkafa-form-row select:focus,
.mokkafa-form-row textarea:focus {
  outline: none;
  border-color: var(--mk-indigo);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.mokkafa-form-grid {
  display: grid;
  gap: 0;
}

@media (min-width: 640px) {
  .mokkafa-form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.mokkafa-alert {
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.mokkafa-alert--success {
  background: #ecfdf5;
  color: #047857;
}

.mokkafa-alert--error {
  background: #fef2f2;
  color: #b91c1c;
}

/* Footer */
.mokkafa-footer {
  background: var(--mk-dark-2);
  color: rgba(255, 255, 255, 0.85);
  padding-top: 3.5rem;
}

.mokkafa-footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .mokkafa-footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.mokkafa-footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 28rem;
  font-size: 0.95rem;
}

.mokkafa-footer-col h3 {
  color: var(--mk-white);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.mokkafa-footer-col a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.mokkafa-footer-col a:hover {
  color: #c4b5fd;
}

.mokkafa-footer-col li + li {
  margin-top: 0.55rem;
}

.mokkafa-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.mokkafa-footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
}

.mokkafa-footer-bottom p {
  margin: 0;
}

.mokkafa-footer-cr {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}

.mokkafa-footer-cr:hover {
  color: #c4b5fd;
}

.mokkafa-footer-cr span {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.mokkafa-footer-cr-logo {
  display: block;
  height: 2.5rem;
  width: auto;
  max-width: 9rem;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 0.45rem;
  padding: 0.3rem 0.5rem;
}

/* Floating buttons — see .mokkafa-fab-stack above */

/* Prose fallback */
.mokkafa-prose {
  background: var(--mk-white);
  border-radius: var(--mk-radius);
  padding: 2rem;
}

/* Motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .mokkafa-btn,
  .mokkafa-service-card,
  .mokkafa-whatsapp-fab,
  .mokkafa-faq-icon {
    transition: none;
  }
}
