:root {
  --black: #000000;
  --green: #86b645;
  --green-dark: #6d9a36;
  --green-light: #a8d468;
  --pink: #c56898;
  --pink-dark: #a8507d;
  --pink-light: #e8b0cc;
  --pink-pale: #fdf0f6;
  --teal: #acd4d3;
  --teal-dark: #7ab9b7;
  --teal-deeper: #5aa09e;
  --teal-light: #c8e5e4;
  --teal-pale: #e8f4f3;
  --teal-bg: #f2faf9;
  --white: #ffffff;
  --cream: #fefcfa;
  --gray-50: #fafaf9;
  --gray-100: #f5f5f4;
  --gray-200: #e7e5e4;
  --gray-300: #d6d3d1;
  --gray-500: #78716c;
  --gray-600: #57534e;
  --gray-700: #44403c;
  --gray-800: #292524;
  --gray-900: #1c1917;

  --font-heading: "Cairo", sans-serif;
  --font-body: "Tajawal", sans-serif;

  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.12);
  --shadow-pink: 0 8px 32px rgba(197, 104, 152, 0.25);
  --shadow-teal: 0 8px 32px rgba(172, 212, 211, 0.4);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 9999px;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â RESET Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.85;
  direction: rtl;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â LAYOUT Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.section-padding {
  padding: 100px 0;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â TYPOGRAPHY Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--pink);
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.section-tag .tag-line {
  width: 32px;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--gray-900);
  line-height: 1.35;
  margin-bottom: 18px;
}
.section-title span {
  color: #c56898;
}
.section-title .green {
  color: var(--green);
}
.section-desc {
  font-size: 1.08rem;
  color: var(--gray-600);
  max-width: 640px;
  line-height: 1.95;
  margin-bottom: 48px;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â BUTTONS Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-pink {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
  box-shadow: var(--shadow-pink);
}
.btn-pink:hover {
  background: var(--pink-dark);
  border-color: var(--pink-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(197, 104, 152, 0.35);
}
.btn-outline-white {
  background: transparent;
  color: #527226;
  border-color: rgb(135 183 71);
}

.btn-outline-white i {
  font-size: 25px;
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-3px);
}
.btn-outline-pink {
  background: transparent;
  color: var(--pink);
  border-color: var(--pink);
}
.btn-outline-pink:hover {
  background: var(--pink-pale);
  transform: translateY(-3px);
}
.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}
.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.3);
}
.btn-white {
  background: var(--white);
  color: var(--pink);
  border-color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â ANIMATIONS Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes floatSlow {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(3deg);
  }
}
@keyframes petalFall {
  0% {
    transform: translate(0, -20px) rotate(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  100% {
    transform: translate(-100px, 700px) rotate(360deg);
    opacity: 0;
  }
}
@keyframes petalFall2 {
  0% {
    transform: translate(0, -10px) rotate(0);
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  100% {
    transform: translate(80px, 600px) rotate(-300deg);
    opacity: 0;
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(197, 104, 152, 0.4);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(197, 104, 152, 0);
  }
}

.anim {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.anim.show {
  opacity: 1;
  transform: translateY(0);
}
.anim-delay-1 {
  transition-delay: 0.1s;
}
.anim-delay-2 {
  transition-delay: 0.2s;
}
.anim-delay-3 {
  transition-delay: 0.3s;
}
.anim-delay-4 {
  transition-delay: 0.4s;
}
.anim-delay-5 {
  transition-delay: 0.5s;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â CUSTOM ICONS Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.icon-circle svg {
  width: 28px;
  height: 28px;
}
.icon-circle.teal {
  background: var(--teal-pale);
}
.icon-circle.teal svg {
  fill: var(--teal-deeper);
}
.icon-circle.pink {
  background: var(--pink-pale);
}
.icon-circle.pink svg {
  fill: var(--pink);
}
.icon-circle.green {
  background: #eef7e0;
}
.icon-circle.green svg {
  fill: var(--green);
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   NAVBAR
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
  padding: 12px 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo svg {
  height: 44px;
  width: auto;
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  transition: var(--transition);
}
.navbar.scrolled .nav-logo-text {
  color: var(--gray-800);
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.92rem;
  color: rgb(0 0 0 / 90%);
  transition: var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.navbar.scrolled .nav-links a {
  color: #000000;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2.5px;
  background: var(--pink);
  border-radius: 2px;
  transition: width 0.3s;
}
.nav-links a:hover {
  color: var(--pink);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta-link .btn {
  padding: 10px 24px;
  font-size: 0.88rem;
}
.mobile-toggle {
  display: none;
  font-size: 1.4rem;
  color: var(--white);
  transition: var(--transition);
}
.navbar.scrolled .mobile-toggle {
  color: var(--gray-800);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-800);
  transition: var(--transition);
}
.mobile-nav a:hover {
  color: var(--pink);
}
.mobile-nav-close {
  position: absolute;
  top: 24px;
  left: 24px;
  font-size: 1.6rem;
  color: var(--gray-700);
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   1. HERO
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #92e0e2;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 90%,
      rgba(197, 104, 152, 0.18) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 85% 15%,
      rgba(134, 182, 69, 0.12) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 50% 50%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 70%
    );
}
/* Floating petals */
.petal {
  position: absolute;
  pointer-events: none;
  border-radius: 50% 0 50% 0;
}
.petal-1 {
  width: 18px;
  height: 18px;
  background: rgba(197, 104, 152, 0.25);
  top: 8%;
  right: 12%;
  animation: petalFall 9s infinite 0s;
}
.petal-2 {
  width: 12px;
  height: 12px;
  background: rgba(134, 182, 69, 0.2);
  top: 15%;
  right: 55%;
  animation: petalFall2 11s infinite 1.5s;
}
.petal-3 {
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.2);
  top: 5%;
  right: 35%;
  animation: petalFall 13s infinite 3s;
}
.petal-4 {
  width: 10px;
  height: 10px;
  background: rgba(197, 104, 152, 0.2);
  top: 25%;
  right: 75%;
  animation: petalFall2 10s infinite 2s;
}
.petal-5 {
  width: 14px;
  height: 14px;
  background: rgba(134, 182, 69, 0.15);
  top: 12%;
  right: 88%;
  animation: petalFall 12s infinite 4.5s;
}
.petal-6 {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
  top: 3%;
  right: 48%;
  animation: petalFall2 14s infinite 6s;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-top: 80px;
}
.hero-content {
  animation: fadeIn 1s ease-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

a.nav-logo img {
  width: 200px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 26px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.hero-badge svg {
  width: 18px;
  height: 18px;
  fill: var(--pink-light);
}

.hero h1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: #000000;
  line-height: 1.25;
  margin-bottom: 10px;
}
.hero h1 em {
  font-style: normal;
  color: #c5749c;
  position: relative;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--pink-light);
  border-radius: 2px;
  opacity: 0.5;
}
.hero-sub {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: rgb(194 110 154);
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 1.05rem;
  color: rgb(0 0 0 / 80%);
  line-height: 1.95;
  margin-bottom: 28px;
  max-width: 500px;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.hero-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  padding: 9px 18px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-pill svg {
  width: 14px;
  height: 14px;
  fill: var(--pink-light);
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  animation: heroVisIn 1s ease-out 0.3s both;
}
@keyframes heroVisIn {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero-visual img {
  /* border-radius: var(--radius-lg); */
  /* box-shadow: 0 20px 80px rgba(0, 0, 0, 0.2); */
  animation: float 7s ease-in-out infinite;
  max-height: 560px;
  object-fit: contain;
  padding-right: 125px;
}
.hero-float-card {
  position: absolute;
  background: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatSlow 5s ease-in-out infinite;
}
.hero-float-card.card-1 {
  bottom: -12px;
  right: 20px;
  animation-delay: 0.5s;
}
.hero-float-card.card-2 {
  bottom: -15px;
  left: 0;
  right: -80px;
  animation-delay: 1.5s;
  text-align: center;
  margin: 0 auto;
  max-width: 240px;
}
.hero-float-card svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.hero-float-card span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--gray-800);
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   2. WHAT IS DOKAN WARDAT
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.what-is {
  background: var(--white);
}
.what-is .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.what-is-visual {
  position: relative;
}
.what-is-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.what-is-visual::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--teal-pale);
  z-index: -1;
}
.what-is-visual::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--pink-pale);
  z-index: -1;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   3. GALLERY
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.gallery {
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}
.gallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--teal),
    var(--pink),
    var(--green),
    var(--teal)
  );
  background-size: 300% 100%;
  animation: shimmer 6s linear infinite;
}
.gallery .header {
  text-align: center;
  margin-bottom: 16px;
}
.gallery .section-desc {
  margin: 0 auto 50px;
  text-align: center;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.gallery-card .overlay span {
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gallery-card .overlay svg {
  width: 16px;
  height: 16px;
  fill: var(--pink-light);
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   4. WHAT DOES IT OFFER
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.offers {
  background: var(--white);
}
.offers .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.offer-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}
.offer-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  background: #acd4d3;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.offer-row:hover {
  background: var(--teal-light);
  transform: translateX(-8px);
}
.offer-row svg {
  width: 22px;
  height: 22px;
  fill: var(--green);
  flex-shrink: 0;
}
.offer-row span {
  font-weight: 600;
  font-size: 1rem;
}

.offers-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   5. WHY THIS OPPORTUNITY
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.opportunity {
  background: #92e0e2;
}
.opportunity .header {
  text-align: center;
}
.opportunity .section-desc {
  text-align: center;
  margin: 0 auto 56px;
}
.opp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.opp-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.opp-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  transition: var(--transition);
}
.opp-card:nth-child(1)::after,
.opp-card:nth-child(4)::after {
  background: var(--teal);
}
.opp-card:nth-child(2)::after,
.opp-card:nth-child(5)::after {
  background: var(--pink);
}
.opp-card:nth-child(3)::after,
.opp-card:nth-child(6)::after {
  background: var(--green);
}
.opp-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}
.opp-card:hover::after {
  height: 6px;
}
.opp-card .icon-circle {
  margin: 0 auto 20px;
}
.opp-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--gray-900);
}
.opp-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.75;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   6. HOW IT WORKS
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.how-works {
  background: var(--white);
}
.how-works .header {
  text-align: center;
}
.how-works .section-desc {
  text-align: center;
  margin: 0 auto 60px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 42px;
  right: 80px;
  left: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--pink), var(--green));
  border-radius: 2px;
}
.step {
  text-align: center;
  position: relative;
  z-index: 2;
}
.step-num {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.step-num span {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--teal-deeper);
  transition: var(--transition);
}
.step:hover .step-num {
  background: var(--pink);
  border-color: var(--pink);
  transform: scale(1.12);
  box-shadow: var(--shadow-pink);
}
.step:hover .step-num span {
  color: var(--white);
}
.step h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.step p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.75;
  max-width: 220px;
  margin: 0 auto;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   7. FRANCHISE INCLUDES
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.franchise {
  background: #92e0e2;
}
.franchise .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.franchise-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.franchise-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  border-right: 4px solid var(--teal);
  transition: var(--transition);
}
.franchise-row:hover {
  border-right-color: var(--pink);
  box-shadow: var(--shadow-md);
  transform: translateX(-6px);
}
.franchise-row svg {
  width: 22px;
  height: 22px;
  fill: var(--green);
  flex-shrink: 0;
  margin-top: 3px;
}
.franchise-row span {
  font-weight: 600;
  line-height: 1.6;
}

.franchise-visual {
  position: relative;
}
.franchise-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-height: 610px;
}
.franchise-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.franchise-badge p {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--pink);
  font-size: 0.95rem;
}
.franchise-badge p svg {
  display: inline;
  width: 18px;
  height: 18px;
  fill: var(--green);
  vertical-align: middle;
  margin-left: 8px;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   8. DAILY FOLLOW-UP
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.daily {
  background: var(--cream);
}
.daily .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.daily-tasks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.task-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}
.task-row:hover {
  background: var(--teal-pale);
  transform: translateX(-4px);
}
.task-check {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.task-check svg {
  width: 14px;
  height: 14px;
  fill: var(--white);
}
.task-row span {
  font-weight: 600;
}
.daily-callout {
  margin-top: 28px;
  padding: 22px 28px;
  background: linear-gradient(135deg, var(--teal-pale), var(--pink-pale));
  border-radius: var(--radius-md);
  text-align: center;
}
.daily-callout p {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gray-800);
}
.daily-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   9. MANAGEMENT SYSTEM
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.system {
  background: linear-gradient(155deg, #1e2a3a, #162028);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.system::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #92e0e2;
}
.system .container {
  position: relative;
  z-index: 2;
}
.system .header {
  text-align: center;
}
.system .section-title {
  color: #000000;
}
.system .section-desc {
  color: rgb(12 12 12 / 65%);
  text-align: center;
  margin: 0 auto 50px;
}
.system-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}
.sys-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgb(139 132 132 / 22%);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  transition: var(--transition);
}
.sys-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-8px);
  border-color: var(--teal);
}
.sys-card svg {
  width: 40px;
  height: 40px;
  fill: #c56898;
  margin-bottom: 18px;
}
.sys-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.05rem;
  color: #000;
}
.sys-card p {
  font-size: 0.9rem;
  color: rgb(0 0 0 / 60%);
  line-height: 1.75;
}
.system-quote {
  text-align: center;
  padding: 26px 32px;
  background: rgba(197, 104, 152, 0.12);
  border: 1px solid rgba(197, 104, 152, 0.25);
  border-radius: var(--radius-md);
}
.system-quote p {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: #121212;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   10. WHY WARDAT
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.why-wardat {
  background: var(--white);
}
.why-wardat .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.why-wardat-callout {
  margin-top: 28px;
  padding: 20px 24px;
  background: #acd4d3;
  border-radius: var(--radius-md);
  border-right: 4px solid var(--green);
}
.why-wardat-callout p {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gray-800);
}
.why-wardat-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   11. WHO IS IT FOR
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.who-for {
  background: var(--gray-50);
}
.who-for .header {
  text-align: center;
}
.who-for .section-desc {
  text-align: center;
  margin: 0 auto 50px;
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  margin-bottom: 36px;
}
.who-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}
.who-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.who-card .icon-circle {
  width: 48px;
  height: 48px;
}
.who-card .icon-circle svg {
  width: 22px;
  height: 22px;
}
.who-card p {
  font-weight: 600;
  line-height: 1.75;
  color: var(--gray-700);
}
.who-footer {
  text-align: center;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--teal-pale), var(--pink-pale));
  border-radius: var(--radius-lg);
}
.who-footer p {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gray-800);
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   12. FAQ
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.faq {
  background: var(--white);
}
.faq .header {
  text-align: center;
  margin-bottom: 50px;
}
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 26px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray-800);
  transition: var(--transition);
  gap: 16px;
}
.faq-q:hover {
  color: var(--pink);
}
.faq-q svg {
  width: 20px;
  height: 20px;
  fill: var(--teal-dark);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.active .faq-q svg {
  transform: rotate(180deg);
  fill: var(--pink);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
}
.faq-item.active .faq-a {
  max-height: 200px;
  padding: 0 26px 22px;
}
.faq-a p {
  color: var(--gray-600);
  line-height: 1.9;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   13. CONTACT FORM
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.contact {
  background: #fff;
}
.contact .header {
  text-align: center;
}
.contact .section-desc {
  text-align: center;
  margin: 0 auto 50px;
}
.contact-box {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group.full {
  grid-column: 1/-1;
}
.form-group label {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--gray-700);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray-900);
  background: var(--gray-50);
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(172, 212, 211, 0.2);
}
.form-group textarea {
  min-height: 100px;
  resize: vertical;
}
.form-submit {
  text-align: center;
  margin-top: 28px;
}
.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 17px;
  font-size: 1.08rem;
}
.form-note {
  text-align: center;
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   14. CTA FINAL
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.cta-final {
  background: #fafaf9;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  /* position: absolute; */
  /* inset: 0; */
  /* background: radial-gradient(
    ellipse at 50% 100%,
    rgba(197, 104, 152, 0.2) 0%,
    transparent 60%
  ); */
}
.cta-final .container {
  position: relative;
  z-index: 2;
}
.cta-final .section-title {
  color: #000000;
}
.cta-final-desc {
  font-size: 1.1rem;
  color: rgb(0 0 0 / 85%);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.95;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   FOOTER
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.footer {
  background: #792b53;
  color: rgba(255, 255, 255, 0.6);
  padding: 50px 0 28px;
}
.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo-icon {
  width: 50px;
  height: 50px;
  background: #acd4d3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}
.footer-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
}
.footer-tagline {
  font-size: 1rem;
  color: rgb(255 255 255);
  font-style: italic;
  font-family: var(--font-heading);
}
.footer-socials {
  display: flex;
  gap: 14px;
}
.footer-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  transition: var(--transition);
}
.footer-socials a:hover {
  background: var(--pink);
  color: var(--white);
}
.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.footer-copy {
  font-size: 0.82rem;
  color: rgb(255 255 255 / 67%);
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   RESPONSIVE
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
@media (max-width: 1024px) {
  .hero .container,
  .what-is .container,
  .offers .container,
  .franchise .container,
  .daily .container,
  .why-wardat .container {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .opp-grid,
  .system-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
  .steps::before {
    display: none;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  video {
    width: 100% !important;
  }
  .mobile-toggle {
    display: block;
  }
  .hero .container {
    padding-top: 100px;
  }
  .hero h1 {
    font-size: 1.9rem;
  }
  .btn-outline-white {
    margin-bottom: 30px;
  }
  .hero-btns {
    flex-direction: column;
  }
  .section-padding {
    padding: 70px 0;
  }
  .opp-grid,
  .system-grid,
  .steps {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .contact-box {
    padding: 28px 22px;
  }
  .who-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    order: -1;
  }
}

video {
  width: 437px;
  height: 470px;
  object-fit: cover;
  border-radius: 15px;
}

source {
  object-fit: cover;
  position: absolute;
}

.btn-instagram {
  background: #d325a4;
  color: var(--white);
  border-color: #d325a4;
}

.franchise-visual.anim.anim-delay-2.show {
  background: #8ee2ed;
}
