:root {
  --color-dark-brown: #0D0D0D;
  --color-medium-brown: #7b3f28;
  --color-rust: #8b3a2a;
  --color-terracotta: #C28565;
  --color-btn-primary: #97574C;
  --color-btn-primary-hover: #7b3020;
  --color-green-text: #3a5a3a;
  --color-bg-light: #E9E1DE;
  --color-bg-section: #f0e6e0;
  --color-bg-beige: #ede0d8;
  --color-bg-footer: #8b4040;
  --color-white: #ffffff;
  --color-card-bg: #fdf7f4;
  --color-featured-card: #c9a090;
  --font-primary: 'IBM Plex Sans Arabic', sans-serif;
  --font-secondary: 'IBM Plex Sans Arabic', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-family: var(--font-primary);
}
a{
  text-decoration: none;
}

body {
  font-family: inherit;
  background-color: var(--color-bg-light);
  color: var(--color-dark-brown);
  direction: inherit;
}

section[id],
footer[id] {
  scroll-margin-top: 110px;
}

/* ===== NAVBAR ===== */
.navbar-custom {
  background-color: var(--color-bg-light);
  padding: 14px 0;
  border-bottom: 1px solid rgba(139,58,42,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--color-terracotta);
  overflow: hidden;
  background: var(--color-bg-beige);
  display: flex; align-items: center; justify-content: center;
}

.logo-circle img {
  width: 100%; height: 100%; object-fit: cover;
}

.logo-text {
  font-size: 0.75rem;
  color: var(--color-terracotta);
  font-weight: 600;
  letter-spacing: 1px;
}

.nav-link-custom {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 500;
  color: hsl(0deg 0% 0% / 60%) !important;
  padding: 6px 14px !important;
  transition: color 0.2s;
}

.nav-link-custom:hover { color: var(--color-terracotta) !important; }
.navbar-custom .btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.landing-navbar-actions {
  flex-wrap: wrap;
}

.landing-language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(139, 58, 42, 0.12);
}

.landing-language-switch__link {
  min-width: 42px;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(13, 13, 13, 0.6);
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.landing-language-switch__link:hover {
  color: var(--color-btn-primary);
}

.landing-language-switch__link.is-active {
  background: var(--color-btn-primary);
  color: #fff;
}

.landing-language-switch--drawer {
  justify-content: center;
  width: 100%;
}

.landing-account-menu {
  position: relative;
}

.landing-account-menu summary {
  list-style: none;
}

.landing-account-menu summary::-webkit-details-marker {
  display: none;
}

.landing-account-menu__trigger {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(139, 58, 42, 0.12);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(141, 93, 84, 0.08);
}

.landing-account-menu__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(194,133,101,0.24), rgba(151,87,76,0.2));
  color: var(--color-btn-primary);
  font-size: 0.86rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.landing-account-menu__meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.landing-account-menu__name {
  max-width: 140px;
  color: var(--color-dark-brown);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.landing-account-menu__label {
  color: rgba(13, 13, 13, 0.55);
  font-size: 0.72rem;
  font-weight: 600;
}

.landing-account-menu__caret {
  color: rgba(13, 13, 13, 0.5);
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}

.landing-account-menu[open] .landing-account-menu__caret {
  transform: rotate(180deg);
}

.landing-account-menu__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  inset-inline-end: 0;
  width: 230px;
  padding: 10px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(139, 58, 42, 0.12);
  box-shadow: 0 24px 48px rgba(84, 51, 40, 0.14);
  z-index: 20;
}

.landing-account-menu__link {
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--color-dark-brown);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.landing-account-menu__link:hover {
  background: rgba(151, 87, 76, 0.08);
  color: var(--color-btn-primary);
}

.landing-account-menu__button {
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: start;
}

.landing-drawer-account {
  display: grid;
  gap: 12px;
}

.landing-drawer-account__summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.7);
}

.landing-drawer-account__name {
  color: var(--color-dark-brown);
  font-size: 0.96rem;
  font-weight: 700;
}

.landing-drawer-account__label {
  color: rgba(13, 13, 13, 0.55);
  font-size: 0.76rem;
  font-weight: 600;
}

.btn-primary-custom {
  background-color: var(--color-btn-primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
}

.btn-primary-custom:hover {
  background-color: var(--color-btn-primary-hover);
  transform: translateY(-1px);
}

.btn-primary-custom .arrow-icon {
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
}

.btn-outline-custom {
  background: transparent;
  color: var(--color-btn-primary);
  border: 1.5px solid var(--color-btn-primary);
  border-radius: 50px;
  padding: 10px 15px;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 400;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-outline-custom:hover {
  background: var(--color-btn-primary);
  color: #fff;
}

/* ===== HERO SECTION ===== */
.hero-section {
  background-color: #E5D8D3;
  min-height: 88vh;
  position: relative;
  overflow: hidden;
  padding: 30px 0;
}

.hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
}

.hero-image-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow-text {
  font-size: 18px;
  color: var(--color-terracotta);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.eyebrow-text::before, .eyebrow-text::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 15px;
  background-image: url(../images/title_icon.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.eyebrow-text::after{
  transform: rotateY(180deg);
}

.hero-title {
  font-family: var(--font-primary);
  font-size: 65px;
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-dark-brown);
  margin-bottom: 10px;
}

.hero-title span {
  color: var(--color-btn-primary);
}

.hero-subtitle {
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 30px;
}

.hero-btns {
  width: 80%;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-btns a{
  border-radius: 24px 0 24px 0;
  flex: 1;
  text-align: center;
}
.hero-btns a.btn-outline-custom{
  border-color: rgb(151 87 76 / 40%);
}
.stat-group {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 10%;
}

.stat-icon-wrap {
  display: flex;
    align-items: center;
    width: 68px;
    height: 68px;
    background: #E9E1DE;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    border-radius: 60px; justify-content: center;
}

.stat-number {
  font-family: 'Katibeh', sans-serif;
  font-size: 40px;
  font-weight: 400;
  color: #283618;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: #575A5F;
}

.stats-divider {
  width: 1px;
  height: 40px;
  background: #d0b0a0;
  margin: 0 8px;
}

/* ===== FEATURES SECTION ===== */
.features-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.features-section .btn-outline-custom{
border: 0.5px solid rgba(151, 87, 76, 0.8);
border-radius: 24px 0px 24px 24px;
width: 220px;
text-align: center;
}
.section-eyebrow {
  font-size: 0.8rem;
  color: var(--color-terracotta);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 12px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1.5px;
  background: var(--color-terracotta);
}

.section-title {
  font-family: var(--font-primary);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-dark-brown);
  line-height: 1.3;
}

.section-title span { color: var(--color-btn-primary); }
.section-title .green { color: var(--color-green-text); }

.section-body {
  font-size: 18px;
  color: #7a6358;
  line-height: 1.75;
}

.features-image-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  width: 100%;
}

.feat-grid-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  height: max-content;
}

.feat-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feat-shape-tl {
  width: 50%;
  border-radius: 0 500px 500px 500px;
}

.feat-shape-tr {
  width: 40%;
  border-radius: 500px 0 500px 500px;
  box-shadow: -8.96345px 13.4452px 19.0473px 2.24086px rgba(0, 0, 0, 0.22);
}

.feat-shape-br {
  border-radius: 500px 500px 0 500px;
  width: 38%;
  align-self: end;
}

.feat-shape-bl {
  width: 58%;
  border-radius: 500px 500px 500px 0;
}

.feat-experience-badge {
  background: #97574c;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: -8.96345px 13.4452px 19.0473px 2.24086px rgba(0, 0, 0, 0.22);

}

.feat-experience-badge .feat-badge-number {
  font-family: 'Katibeh', sans-serif;
    font-size: 70px;
    font-weight: 400;
    color: #fff;
    line-height: 1;
}

.feat-experience-badge span {
  font-size: 20px;
  font-weight: 400;
  margin-top: 6px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.feature-icon {
  color: var(--color-btn-primary);
  font-size: 22px;
}

.feature-item h6 {
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  color: var(--color-dark-brown);
  margin-bottom: 5px;
}
.divider-line{
  width: 90%;
  height: 0.8px;
  background: linear-gradient(270deg,transparent, #97574C, transparent);
  margin: 0 auto;
}
.feature-item p {
  font-size: 0.78rem;
  color: #0D0D0D;
  line-height: 1.5;
  margin: 0;
  opacity: 0.6;
}

.social-icons a {
  color: #2F201A;
  margin-left: 15px;
  font-size: 23px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.social-icons a:hover {color: #fff; }

/* ===== STEPS SECTION ===== */
.steps-section {
  background-color: #E5D8D3;
  padding: 72px 0 96px;
  position: relative;
  overflow: hidden;
  border-radius: 32px 32px 0 0;
}

.steps-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url(../images/steps_bg.png) no-repeat left bottom;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

.steps-inner {
  position: relative;
  z-index: 1;
}

.steps-header {
  margin-bottom: 56px;
}

.steps-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 14px;
}

.steps-title-green {
  color: #1b3022;
}

.steps-title-accent {
  color: #97574c;
}

.steps-subtitle {
  max-width: 480px;
  margin: 0 auto;
  color: #707070;
}

.steps-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.steps-col {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: flex-end;
}

.step-card {
  display: flex;
  flex-direction: column;
  width: 310px;
  max-width: 100%;
}
.step-number-badge {
  width: 62px;
  height: 62px;
  line-height: 62px;
  background: #D9B79A;
  border-radius: 40px 40px 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  color: #8b5a4800;
  margin-bottom: 20px;
  font-family: 'Katibeh';
  -webkit-text-stroke: 2px;
  -webkit-text-stroke-color: #8b5a48;
}

.step-card h5 {
  font-size: 24px;
  font-weight: 700;
  color: #283618;
  margin-bottom: 10px;
  width: 100%;
}

.step-card p {
  font-size: 16px;
  color: #7A7A7A;
  line-height: 1.8;
  margin: 0;
  width: 100%;
}

.steps-center-images {
  position: relative;
  width: 350px;
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.steps-img-circle,
.steps-img-organic {
  overflow: hidden;
}

.steps-img-circle img,
.steps-img-organic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.steps-img-tl {
  width: 50%;
  height: auto;
  top: 0;
  left: 18px;
  z-index: 1;
  border-radius: 300px 300px 0 300px;
}

.steps-img-tr {
  width: 40%;
  height: auto;
  top: 34px;
  right: 10px;
  z-index: 1;
  border-radius: 300px 300px 300px 0;
  align-self: end;
}
.steps-img-main {
  width: 100%;
  height: auto;
  z-index: 2;
  border-radius: 300px 0 300px 300px;
  box-shadow: -8.96345px 13.4452px 19.0473px 2.24086px rgba(0, 0, 0, 0.11);
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  background-color: #f2e9e4;
  padding: 80px 0 96px;
}

.pricing-header {
  margin-bottom: 52px;
}

.pricing-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 14px;
}

.pricing-title-dark {
  color: #4a4a4a;
}

.pricing-title-accent {
  color: #8d5d54;
}

.pricing-subtitle-text {
  max-width: 520px;
  margin: 0 auto;
  font-size: 18px;
  color: #707070;
  line-height: 1.75;
}
.pricing-cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  --card-outer: #E4D7D2;
  background: var(--card-outer);
  border-radius: 24px;
  padding: 10px;
  position: relative;
  height: 100%;
  min-width: 0;
}

.pricing-card.featured {
  transform: translateY(-12px);
}

.pricing-card-inner {
  background-image: url(../images/plan_1.png);
  background-size: 100% 100%;
  border-radius: 24px;
  padding: 80px 28px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.pricing-card.featured .pricing-card-inner {
  background-image: url(../images/plan_2.png);
}

.pricing-card-decor {
  position: absolute;
  bottom: 72px;
  left: 8px;
  width: 130px;
  height: 130px;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.pricing-card.featured .pricing-card-decor {
  bottom: 90px;
  left: 20px;
  width: 150px;
  height: 150px;
}

.pricing-save {
  position: absolute;
  top: 30px;
  right: 25px;
  color: #8d5d54;
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
  z-index: 5;
}
.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgb(205 165 130 / 15%);
  color: #97574C;
  font-size: 24px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 24px 0 24px 24px;
  margin: 0 auto;
  margin-bottom: 18px;
  position: relative;
  z-index: 4;
  width: fit-content;
}

.pricing-card.featured .pricing-badge {
  background: rgba(255, 255, 255, 0.5);
  color: #97574C;
}

.pricing-badge .fa-crown {
  color: #97574C;
}

.pricing-price-wrap {
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  position: relative;
  z-index: 4;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #8d5d54;
  line-height: 1;
}

.pricing-period {
  font-size: 0.85rem;
  font-weight: 500;
  color: #8a7068;
}

.pricing-desc {
  font-size: 18px;
  color: #8d5d54;
  margin-bottom: 20px;
  position: relative;
  text-align: center;
  z-index: 4;
}
.pricing-divider {
  width: 60%;
  height: 25px;
  background-image: url(../images/shape.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 auto;
  margin-bottom: 15px;
}
.pricing-card.featured .pricing-divider{
  filter: brightness(0) invert(1);
}

.pricing-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
  position: relative;
  z-index: 4;
}

.pricing-features li {
  font-size: 20px;
  color: #97574C;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li .fa-check {
  color: #97574C;
  font-size: 20px;
  flex-shrink: 0;
}

.pricing-card.featured .pricing-features li{
  color: #fff;
}

.btn-pricing {
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0 13px;
  border-radius: 16px;
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid #c9a88e;
  background: #fff;
  color: #8d5d54;
  transition: all 0.2s;
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-pricing:hover {
  background: #faf7f4;
  border-color: #8d5d54;
}

.btn-pricing.featured-btn {
  background: #8d5d54;
  color: #fff;
  border-color: #8d5d54;
}

.btn-pricing.featured-btn:hover {
  background: #7b4f46;
  border-color: #7b4f46;
}

.landing-signup-modal__content {
  border: 1px solid rgba(201, 168, 142, 0.6);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(249,243,238,0.98) 100%);
  box-shadow: 0 28px 70px rgba(84, 51, 40, 0.18);
}

.landing-signup-modal__header {
  border-bottom: 1px solid rgba(201, 168, 142, 0.35);
  padding: 28px 28px 18px;
  align-items: flex-start;
}

.landing-signup-modal__copy,
.landing-signup-modal__note {
  color: #7e625a;
  font-size: 0.95rem;
  line-height: 1.9;
}

.landing-signup-modal__close {
  margin: 0 !important;
  opacity: 0.75;
}

.landing-signup-modal__body {
  padding: 0 28px 28px;
}

.landing-signup-alert {
  margin-bottom: 18px;
  border-radius: 18px;
  border: 1px solid rgba(168, 74, 74, 0.22);
  background: rgba(255, 238, 238, 0.9);
  color: #8d4e4e;
  padding: 14px 16px;
  font-size: 0.92rem;
}

.landing-signup-form {
  display: grid;
  gap: 18px;
}

.landing-signup-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.landing-signup-grid--documents {
  align-items: start;
}

.landing-signup-label {
  display: block;
  margin-bottom: 8px;
  color: #5b433d;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-signup-input {
  width: 100%;
  border: 1px solid rgba(201, 168, 142, 0.48);
  border-radius: 18px;
  background: rgba(255,255,255,0.95);
  color: #3e2e2a;
  padding: 14px 16px;
  font-size: 0.96rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.landing-signup-input:focus {
  outline: none;
  border-color: #a16456;
  box-shadow: 0 0 0 4px rgba(161, 100, 86, 0.12);
}

.landing-signup-input.is-invalid {
  border-color: rgba(168, 74, 74, 0.65);
}

.landing-signup-input--file {
  padding: 12px 16px;
}

.landing-signup-error {
  margin-top: 6px;
  color: #a84a4a;
  font-size: 0.84rem;
}

.landing-signup-modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(201, 168, 142, 0.35);
  padding-top: 18px;
}

.landing-signup-submit {
  min-width: 180px;
}

.landing-signup-login {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #7e625a;
  font-size: 0.92rem;
}

.landing-signup-login a {
  color: #8d5d54;
  font-weight: 700;
  text-decoration: none;
}

.landing-signup-login a:hover {
  color: #6f473f;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
  background-color: #f2e9e4;
}

.testimonials-bg-pattern {
  position: absolute;
  inset: 0;
  border-radius: 70px;
  background-image: url(../images/review_bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.55;
  pointer-events: none;
}

.testimonial-slider-wrapper {
  position: relative;
  z-index: 1;
  /* max-width: 760px; */
  margin: 0 auto;
}

.testimonial-info {
  text-align: center;
  height: 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 8px;
}

.testimonial-name {
  font-weight: 700;
  font-size: 1.2rem;
  color: #3d2a24;
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 0.85rem;
  color: #a07060;
  margin: 0;
}

.testimonial-avatar-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 200px;
  margin-bottom: 28px;
}

.testimonial-avatar-viewport {
  overflow: hidden;
  width: 100%;
  /* max-width: 500px; */
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-avatar-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  height: 200px;
  overflow: visible;
  transition: transform 0.4s ease;
  will-change: transform;
}

.avatar-item {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, opacity 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  transform: scale(0.72);
  opacity: 0.4;
  z-index: 1;
}

.avatar-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.avatar-item.av-near {
  transform: scale(0.88);
  opacity: 0.65;
  z-index: 2;
}

.avatar-item.av-active {
  transform: scale(2.5);
  opacity: 1;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
  z-index: 3;
}

.testimonial-nav {
  background: transparent;
  border: none;
  color: #8d5d54;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.35rem;
  padding: 8px;
  flex-shrink: 0;
  transition: color 0.2s, transform 0.2s;
}

.testimonial-nav:hover {
  color: #6b4038;
  transform: scale(1.1);
}

.testimonial-quote-box {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  min-height: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: #5a4a44;
  line-height: 1.9;
  text-align: center;
  margin: 0;
  max-width: 520px;
}

.quote-mark {
  position: absolute;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3.5rem;
  color: #c9a090;
  opacity: 0.45;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.quote-mark-close {
  top: -8px;
  right: 0;
}

.quote-mark-open {
  bottom: -12px;
  left: 0;
}
.space{
  background-color: #f2e9e4;
  height: 60px;
}
/* ===== FOOTER ===== */
.footer-section {
  background-color: #f2e9e4;  
  color: #fff;
  padding: 64px 0 32px;
  margin-top: -4px;
  position: relative;
  overflow: hidden;
}
.footer-bg-pattern {
  position: absolute;
  inset: 0;
  border-radius: 70px 70px 0 0;
  background-image: url(../images/footer_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #f2e9e4;
}

.footer-inner {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-brand {
  text-align: right;
}

.footer-logo-img {
  width: 140px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-desc {
  font-size: 20px;
  color: rgb(255, 255, 255);
  line-height: 1.85;
  margin: 0;
  max-width: 330px;
}

.footer-col {
  text-align: right;
}

.footer-heading {
  color: #fff;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-heading::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 5px;
  background-image: url(../images/Line.svg);
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 7px 0;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact-group {
  margin-bottom: 18px;
}
.footer-contact-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 6px;
}

.footer-contact-label i {
  font-size: 16px;
  opacity: 0.85;
}
.footer-contact-value {
  opacity: 0.8;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

.footer-bottom {
  margin-top: 30px;
  text-align: center;
  font-size: 18px;
  color: rgb(255, 255, 255);
}

.footer-bottom img {
  height: 25px;
}

/* ===== UTILITIES ===== */
.text-terracotta { color: var(--color-terracotta); }
.text-green { color: var(--color-green-text); }

.img-placeholder {
  background: linear-gradient(135deg, #e0ccc4, #c9a88e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(139,58,42,0.4);
  font-size: 2rem;
}

@media (max-width: 991.98px) {
  .hero-image-wrapper { width: 100%; opacity: 0.25; }
  .hero-section { min-height: auto; padding: 60px 0; }
  .hero-title { font-size: 2.2rem; }
  .features-image-grid { margin: 0 auto 40px; gap: 14px; }
  .feat-experience-badge .feat-badge-number { font-size: 1.75rem; }
  .feat-experience-badge span { font-size: 0.8rem; }
  .pricing-cards-row {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .pricing-card.featured { transform: none; }
  .landing-account-menu {
    display: none;
  }
  .landing-signup-grid { grid-template-columns: 1fr; }
  .landing-signup-modal__footer { flex-direction: column; align-items: stretch; }
  .landing-signup-submit { width: 100%; }
  .pricing-title { font-size: 2rem; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
  }
  .footer-logo-img {
    margin-inline: auto;
  }
  .footer-desc {
    margin: 0 auto;
  }
  .steps-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .steps-center-images {
    order: -1;
    margin: 0 auto;
  }
  .steps-col {
    align-items: center;
  }
  .steps-col {
    gap: 36px;
  }
  .steps-title {
    font-size: 2rem;
  }
  .steps-section::before {
    background-size: auto 70%;
    opacity: 0.45;
  }
}

@media (max-width: 767.98px) {
  .hero-title { font-size: 1.8rem; }
  .section-title { font-size: 1.7rem; }
  .pricing-title { font-size: 1.65rem; }
  .pricing-section { padding: 56px 0 72px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .footer-brand,
  .footer-col {
    text-align: center;
  }
  .footer-desc {
    margin: 0 auto;
  }
  .footer-logo-img {
    margin-inline: auto;
  }
  .footer-heading::after {
    display: none;
  }
  .footer-contact-label {
    justify-content: center;
  }
  .footer-contact-value {
    text-align: center;
  }
  .footer-section {
    border-radius: 28px 28px 0 0;
    padding: 48px 0 28px;
  }
  .steps-section {
    padding: 56px 0 72px;
    border-radius: 24px 24px 0 0;
  }
  .steps-title {
    font-size: 1.65rem;
  }
  .step-number-badge {
    width: 38px;
    height: 38px;
    font-size: 1.15rem;
    border-radius: 10px;
  }
  .steps-center-images {
    width: 260px;
    height: 300px;
  }
  .steps-img-tl {
    width: 100px;
    height: 100px;
    left: 14px;
  }
  .steps-img-tr {
    width: 96px;
    height: 96px;
    top: 26px;
    right: 8px;
  }
  .steps-img-main {
    width: 188px;
    height: 188px;
  }
  .testimonial-avatar-row {
    gap: 8px;
    height: 110px;
    margin-bottom: 20px;
  }
  .testimonial-avatar-viewport {
    max-width: 280px;
    height: 110px;
  }
  .testimonial-avatar-strip {
    gap: 12px;
    height: 110px;
  }
  .avatar-item {
    width: 48px;
    height: 48px;
  }
  .avatar-item.av-active {
    transform: scale(1.55);
  }
  .testimonial-quote-box {
    min-height: 150px;
    height: 150px;
    padding: 0 32px;
  }
  .testimonial-info {
    height: 72px;
  }
}

/* ===== MOBILE MENU DRAWER & RESPONSIVE FIXES ===== */
.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: -320px; /* Hidden by default (slides in from right in RTL) */
  width: 300px;
  height: 100vh;
  background-color: var(--color-bg-light);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-drawer.open {
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu-overlay.show {
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid rgba(139, 58, 42, 0.08);
}

.drawer-logo img {
  display: block;
}

.drawer-close-btn {
  background: transparent;
  border: none;
  color: var(--color-btn-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.drawer-close-btn:hover {
  transform: rotate(90deg);
}

.drawer-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  padding: 30px 20px;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.drawer-link {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-dark-brown);
  padding: 10px 14px;
  border-radius: 12px;
  transition: background-color 0.2s, color 0.2s;
  text-align: right;
  display: block;
}

.drawer-link:hover {
  background-color: rgba(151, 87, 76, 0.08);
  color: var(--color-btn-primary);
}

.drawer-footer {
  margin-top: auto;
}

.mobile-menu-toggle-btn {
  background: transparent;
  border: none;
  color: var(--color-btn-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.mobile-menu-toggle-btn:hover {
  transform: scale(1.05);
}

[dir='ltr'] .hero-image-wrapper {
  left: auto;
  right: 0;
}

[dir='ltr'] .stat-group {
  margin-left: 0;
  margin-right: 10%;
}

[dir='ltr'] .social-icons a {
  margin-left: 0;
  margin-right: 15px;
}

[dir='ltr'] .quote-mark-close {
  right: auto;
  left: 0;
}

[dir='ltr'] .quote-mark-open {
  left: auto;
  right: 0;
}

[dir='ltr'] .footer-brand,
[dir='ltr'] .footer-col,
[dir='ltr'] .drawer-link {
  text-align: left;
}

[dir='ltr'] .footer-contact-label {
  justify-content: flex-start;
}

[dir='ltr'] .mobile-menu-drawer {
  right: auto;
  left: -320px;
  box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
  transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[dir='ltr'] .mobile-menu-drawer.open {
  left: 0;
}

/* Additional responsive refinements (without changing desktop styles) */
@media (max-width: 991.98px) {
  .pricing-cards-row {
    display: grid !important;
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
    gap: 30px;
  }
  
  .step-card {
    text-align: center;
    align-items: center;
    margin: 0 auto;
  }
  
  .step-number-badge {
    margin-inline: auto;
  }
}

@media (max-width: 767.98px) {
  .navbar-brand-logo img {
    width: 65px !important;
    height: 65px !important;
  }
  .navbar-custom {
    padding: 8px 0;
  }
  .btn-primary-custom {
    padding: 8px 18px;
    font-size: 0.8rem;
  }
  .landing-signup-modal__header,
  .landing-signup-modal__body {
    padding-left: 18px;
    padding-right: 18px;
  }
  .hero-btns {
    width: 100% !important;
    flex-direction: column;
    gap: 12px;
  }
  .hero-btns a {
    width: 100%;
    flex: none;
  }
  .hero-btns button {
    width: 100%;
    flex: none;
  }
  .testimonial-quote-box {
    height: auto !important;
    min-height: 150px;
    padding: 0 16px;
  }
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal-item {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-fade-up {
  transform: translateY(30px);
}

.reveal-fade-down {
  transform: translateY(-30px);
}

.reveal-fade-left {
  transform: translateX(-30px);
}

.reveal-fade-right {
  transform: translateX(30px);
}

.reveal-scale {
  transform: scale(0.95);
}

/* Activated state */
.reveal-item.reveal-visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Stagger delay classes */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }
