/* ── Fonts ──────────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Vazirmatn';
  src: url('/assets/fonts/Vazirmatn-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Vazirmatn';
  src: url('/assets/fonts/Vazirmatn-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Vazirmatn';
  src: url('/assets/fonts/Vazirmatn-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Vazirmatn';
  src: url('/assets/fonts/Vazirmatn-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── Tokens ─────────────────────────────────────────────────────────────── */
:root {
  --green:        #00C853;
  --green-dark:   #00A846;
  --green-deep:   #1B5E20;
  --green-foot:   #1B2E1B;
  --green-pale:   #E8F5E9;
  --blue:         #2196F3;
  --blue-dark:    #1565C0;
  --white:        #FFFFFF;
  --grey-bg:      #F4F6F8;
  --grey-light:   #EEF1F4;
  --grey-mid:     #C8D0D8;
  --grey-text:    #6B7580;
  --text:         #1A2332;
  --text-light:   #4A5568;

  --radius-sm:    8px;
  --radius:       16px;
  --radius-lg:    24px;
  --radius-pill:  999px;

  --shadow-sm:    0 1px 4px rgba(0,0,0,.07);
  --shadow:       0 4px 20px rgba(0,0,0,.09);
  --shadow-md:    0 8px 32px rgba(0,0,0,.12);
  --shadow-green: 0 4px 24px rgba(0,200,83,.25);

  --transition:   .22s cubic-bezier(.4,0,.2,1);
  --font:         'Vazirmatn', system-ui, sans-serif;
}

/* ── Reset & Base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  direction: rtl;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: var(--font); }

/* ── Container ──────────────────────────────────────────────────────────── */
.container {
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
}
.container--narrow {
  width: min(780px, 100% - 2rem);
  margin-inline: auto;
}

/* ── Typography ─────────────────────────────────────────────────────────── */
h1 { font-size: clamp(1.75rem, 5vw, 2.75rem); font-weight: 700; line-height: 1.35; }
h2 { font-size: clamp(1.35rem, 3vw, 1.85rem); font-weight: 700; line-height: 1.4; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.3rem);  font-weight: 600; line-height: 1.5; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--text-light); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--green);
  background: var(--green-pale);
  padding: .25rem .9rem;
  border-radius: var(--radius-pill);
  letter-spacing: .03em;
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: .5rem;
}

.section-sub {
  font-size: .95rem;
  color: var(--grey-text);
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
}

.text-center { text-align: center; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  height: 48px;
  padding: 0 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(0,200,83,.35);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: #fff;
}

.btn-ghost {
  background: rgba(255,255,255,.15);
  color: #fff;
  border-color: rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.28);
}

.btn-sm {
  height: 38px;
  padding: 0 1.2rem;
  font-size: .85rem;
}

.btn-lg {
  height: 56px;
  padding: 0 2.25rem;
  font-size: 1.05rem;
}

.btn-full { width: 100%; }

.btn svg { width: 18px; height: 18px; }

/* ── Badges ─────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .2rem .75rem;
  border-radius: var(--radius-pill);
  font-size: .78rem;
  font-weight: 600;
}
.badge-green { background: var(--green-pale); color: var(--green-deep); }
.badge-blue  { background: #E3F2FD; color: var(--blue-dark); }

/* ── Header ─────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.1); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--green-deep);
  order: 2; /* In RTL flex, order:2 pushes to left visually */
}
.site-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.site-logo .logo-icon svg { width: 20px; height: 20px; }
.site-logo .logo-en { color: var(--green); font-weight: 700; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  order: 1; /* In RTL flex, order:1 is on right visually */
}
.site-nav a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color var(--transition);
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width var(--transition);
}
.site-nav a:hover,
.site-nav a.active { color: var(--green); }
.site-nav a:hover::after,
.site-nav a.active::after { width: 100%; }

.header-cta {
  order: 3;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.nav-toggle:hover { background: var(--grey-bg); }
.nav-toggle svg { width: 22px; height: 22px; }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--grey-light);
  padding: 1rem 0;
}
.mobile-nav a {
  display: block;
  padding: .7rem 1.5rem;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text-light);
  border-bottom: 1px solid var(--grey-light);
  transition: all var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--green); padding-right: 2rem; }
.mobile-nav .btn { margin: .75rem 1.5rem; width: calc(100% - 3rem); }
.mobile-nav.open { display: flex; }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27,94,32,.82) 0%,
    rgba(0,100,40,.70) 40%,
    rgba(0,80,30,.45) 75%,
    rgba(0,60,20,.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: center;
  padding-block: 5rem 8rem;
}

.hero-text { color: #fff; }
.hero-text .badge {
  background: rgba(255,255,255,.2);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  margin-bottom: 1.25rem;
}
.hero-text h1 {
  font-size: clamp(1.9rem, 4.5vw, 2.85rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.hero-text p {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Booking Widget */
.booking-widget {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.booking-widget h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .25rem;
}
.bw-field {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--grey-bg);
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius);
  padding: .7rem 1rem;
  transition: border-color var(--transition);
}
.bw-field:focus-within { border-color: var(--green); }
.bw-field .icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bw-field .icon-wrap.green { background: var(--green-pale); color: var(--green); }
.bw-field .icon-wrap.red   { background: #FFEBEE; color: #E53935; }
.bw-field .icon-wrap svg   { width: 16px; height: 16px; }
.bw-field input {
  flex: 1;
  border: none;
  background: none;
  font-size: .9rem;
  color: var(--text);
  outline: none;
}
.bw-field input::placeholder { color: var(--grey-text); }

.bw-divider {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--grey-text);
  font-size: .8rem;
}
.bw-divider::before, .bw-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--grey-light);
}

/* ── Steps Section ──────────────────────────────────────────────────────── */
.steps-section {
  background: var(--grey-bg);
  padding: 5rem 0;
}

.steps-header {
  text-align: center;
  margin-bottom: 3rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  right: calc(12.5% + 36px);
  left: calc(12.5% + 36px);
  height: 2px;
  background: repeating-linear-gradient(
    to left,
    var(--green) 0,
    var(--green) 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 0;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
  transition: transform var(--transition), box-shadow var(--transition);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-num {
  position: absolute;
  top: -12px;
  right: 50%;
  transform: translateX(50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: .5rem auto 1.25rem;
}
.step-icon svg { width: 30px; height: 30px; }

.step-card h4 { color: var(--text); margin-bottom: .35rem; }
.step-card p  { font-size: .85rem; color: var(--grey-text); }

/* ── Services ───────────────────────────────────────────────────────────── */
.services-section {
  padding: 5.5rem 0;
}

.services-header {
  text-align: center;
  margin-bottom: 3rem;
}

.category-tabs {
  display: flex;
  gap: .6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.cat-tab {
  padding: .45rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: .85rem;
  font-weight: 600;
  color: var(--grey-text);
  background: var(--grey-bg);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.cat-tab:hover, .cat-tab.active {
  background: var(--green-pale);
  color: var(--green-deep);
  border-color: var(--green);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--grey-light);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}

.service-img {
  height: 200px;
  overflow: hidden;
  background: var(--grey-bg);
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.service-card:hover .service-img img { transform: scale(1.05); }

.service-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-cat {
  font-size: .75rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: .35rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.service-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .75rem;
  line-height: 1.45;
}
.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: .75rem;
  border-top: 1px solid var(--grey-light);
}
.service-price {
  font-size: .9rem;
  font-weight: 700;
  color: var(--green-deep);
}
.service-price span {
  font-size: .75rem;
  font-weight: 400;
  color: var(--grey-text);
}

/* ── Stats Band ─────────────────────────────────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 100%);
  padding: 4.5rem 0;
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item { padding: 1rem; }
.stat-num {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: .35rem;
  color: #fff;
}
.stat-label {
  font-size: .95rem;
  color: rgba(255,255,255,.82);
}
.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #fff;
}
.stat-icon svg { width: 24px; height: 24px; }

/* ── Gallery ────────────────────────────────────────────────────────────── */
.gallery-section {
  padding: 5rem 0;
  background: var(--grey-bg);
}

.gallery-header { text-align: center; margin-bottom: 2.5rem; }

.gallery-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.25rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:first-child img { height: 380px; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.4) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── Testimonials ───────────────────────────────────────────────────────── */
.testimonials-section {
  padding: 5.5rem 0;
}

.testimonials-header { text-align: center; margin-bottom: 3rem; }

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--grey-light);
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.t-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}
.t-stars svg { width: 16px; height: 16px; color: #FFC107; }

.t-text {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.t-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.t-name { font-weight: 600; font-size: .9rem; color: var(--text); }
.t-role { font-size: .78rem; color: var(--grey-text); }

/* ── Features / Why Us ──────────────────────────────────────────────────── */
.features-section {
  background: var(--green-deep);
  padding: 5rem 0;
  color: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.feature-item { padding: .5rem; }
.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--green);
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-item h4 { color: #fff; margin-bottom: .4rem; font-size: 1rem; }
.feature-item p  { color: rgba(255,255,255,.7); font-size: .85rem; }

/* ── Contact Strip ──────────────────────────────────────────────────────── */
.contact-strip {
  background: var(--grey-bg);
  padding: 4rem 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: var(--shadow-green);
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-label {
  font-size: .78rem;
  color: var(--grey-text);
  margin-bottom: .15rem;
}
.contact-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  direction: ltr;
  text-align: right;
}
.contact-value a:hover { color: var(--green); }

.contact-social {
  display: flex;
  gap: .75rem;
  justify-content: center;
}
.social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--grey-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all var(--transition);
}
.social-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}
.social-btn svg { width: 20px; height: 20px; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--green-foot);
  color: rgba(255,255,255,.8);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand .site-logo { color: #fff; margin-bottom: 1rem; }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.8; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.25rem; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.footer-social a svg { width: 16px; height: 16px; }

.footer-col h5 {
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--green);
  display: inline-block;
}
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col a {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--green); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}
.footer-phone {
  direction: ltr;
  color: rgba(255,255,255,.65);
  font-size: .85rem;
}
.footer-phone a:hover { color: var(--green); }

/* ── Cards / Generic ────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--grey-light);
  padding: 1.5rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

/* ── Forms ──────────────────────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
}
.form-control {
  height: 48px;
  padding: 0 1rem;
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,200,83,.12);
}
textarea.form-control { height: auto; padding: .75rem 1rem; resize: vertical; }

/* ── Alert ──────────────────────────────────────────────────────────────── */
.alert {
  padding: .85rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: 1rem;
  border: 1.5px solid transparent;
}
.alert-success { background: var(--green-pale); color: var(--green-deep); border-color: #A5D6A7; }
.alert-error   { background: #FFEBEE; color: #C62828; border-color: #FFCDD2; }

/* ── Page Hero (inner pages) ────────────────────────────────────────────── */
.page-hero {
  padding: 7rem 0 4rem;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 100%);
  text-align: center;
  color: #fff;
}
.page-hero h1 { font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: .5rem; }
.page-hero p  { color: rgba(255,255,255,.8); font-size: .95rem; }

.page-content { padding: 4rem 0 6rem; }

/* ── Admin ──────────────────────────────────────────────────────────────── */
.admin-wrap {
  min-height: 100vh;
  background: var(--grey-bg);
  display: grid;
  grid-template-rows: auto 1fr;
}
.admin-header {
  background: var(--white);
  border-bottom: 1px solid var(--grey-light);
  padding: 0 2rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-header h1 { font-size: 1.1rem; font-weight: 700; color: var(--text); }
.admin-body { padding: 2rem; }
.admin-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}
.admin-card h2 { font-size: 1rem; font-weight: 700; margin-bottom: 1.25rem; }
.table { width: 100%; border-collapse: collapse; }
.table th { font-size: .8rem; font-weight: 600; color: var(--grey-text); border-bottom: 2px solid var(--grey-light); padding: .6rem .8rem; text-align: right; }
.table td { font-size: .85rem; padding: .65rem .8rem; border-bottom: 1px solid var(--grey-light); }
.table tr:hover td { background: var(--grey-bg); }

/* ── Admin Panel v2 ─────────────────────────────────────────────────────── */
body.is-admin { background: #f0f2f5; }
body.is-admin .site-header, body.is-admin footer { display: none; }

.adm-layout {
  display: flex;
  min-height: 100vh;
  direction: rtl;
}

/* Sidebar */
.adm-side {
  width: 230px;
  flex-shrink: 0;
  background: var(--green-deep);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.adm-brand {
  padding: 1.1rem 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0;
}
.adm-brand-icon {
  width: 30px;
  height: 30px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.adm-nav {
  flex: 1;
  padding: .4rem 0;
  overflow-y: auto;
}
.adm-nav a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem 1rem;
  color: rgba(255,255,255,.68);
  text-decoration: none;
  font-size: .85rem;
  transition: background .15s, color .15s;
  border-right: 3px solid transparent;
}
.adm-nav a svg { width: 16px; height: 16px; flex-shrink: 0; }
.adm-nav a:hover { color: #fff; background: rgba(255,255,255,.07); }
.adm-nav a.active { color: #fff; background: rgba(255,255,255,.12); border-right-color: var(--green); }
.adm-side-foot {
  padding: .75rem 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0;
}
.adm-logout {
  display: flex;
  align-items: center;
  gap: .4rem;
  justify-content: center;
  padding: .45rem .75rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.65);
  font-size: .82rem;
  text-decoration: none;
  transition: all .15s;
}
.adm-logout:hover { color: #fff; border-color: rgba(255,255,255,.5); }

/* Main body */
.adm-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.adm-topbar {
  background: #fff;
  border-bottom: 1px solid var(--grey-light);
  padding: .8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
}
.adm-topbar-title { font-size: 1rem; font-weight: 700; margin: 0; }
.adm-topbar-sub   { color: var(--grey-text); font-size: .8rem; }
.adm-content      { padding: 1.25rem 1.5rem; flex: 1; }

/* Stat cards */
.adm-stats { display: grid; grid-template-columns: repeat(auto-fit,minmax(120px,1fr)); gap: 1rem; margin-bottom: 1.5rem; }
.adm-stat {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.1rem .75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.adm-stat-num   { font-size: 1.85rem; font-weight: 700; line-height: 1.1; }
.adm-stat-label { color: var(--grey-text); font-size: .76rem; margin-top: .3rem; }

/* Card */
.adm-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.adm-card-head {
  padding: .9rem 1.25rem;
  border-bottom: 1px solid var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.adm-card-head h2 { font-size: .9rem; font-weight: 700; margin: 0; }
.adm-card-body    { padding: 1.25rem; }
.adm-table-wrap   { overflow-x: auto; }

/* Form helpers */
.adm-form { display: grid; gap: 1.1rem; }
.adm-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.adm-img-preview { max-width: 90px; max-height: 65px; object-fit: cover; border-radius: 8px; display: block; }

/* Action buttons */
.adm-actions { display: flex; gap: .35rem; align-items: center; flex-wrap: wrap; }
.btn-danger  { background: #ef4444; color: #fff; border: 1px solid #ef4444; }
.btn-danger:hover  { background: #dc2626; border-color: #dc2626; color: #fff; }

/* Status badges */
.adm-badge {
  display: inline-block;
  padding: .18em .55em;
  border-radius: 4px;
  font-size: .75rem;
  font-weight: 600;
  white-space: nowrap;
}
.adm-badge-pending   { background: #fef3c7; color: #92400e; }
.adm-badge-confirmed { background: #d1fae5; color: #065f46; }
.adm-badge-done      { background: #dbeafe; color: #1e40af; }
.adm-badge-cancelled { background: #fee2e2; color: #991b1b; }
.adm-badge-published { background: #d1fae5; color: #065f46; }
.adm-badge-draft     { background: #f3f4f6; color: #6b7280; }

@media (max-width: 768px) {
  .adm-layout  { flex-direction: column; }
  .adm-side    { width: 100%; height: auto; position: static; }
  .adm-nav     { display: flex; flex-wrap: wrap; overflow-y: visible; padding: .2rem; }
  .adm-nav a   { padding: .4rem .55rem; font-size: .78rem; border-right: none; border-bottom: 2px solid transparent; }
  .adm-nav a.active { border-right-color: transparent; border-bottom-color: var(--green); }
  .adm-content { padding: 1rem; }
  .adm-form-row { grid-template-columns: 1fr; }
  .adm-stats   { grid-template-columns: repeat(auto-fit,minmax(100px,1fr)); }
}

/* ── Scroll-to-top ──────────────────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-green);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 800;
  cursor: pointer;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-2px); }
.scroll-top svg { width: 20px; height: 20px; }

/* ── Animations ─────────────────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-up { animation: fadeInUp .55s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }

/* ── Cart button ────────────────────────────────────────────────────────────── */
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  color: var(--text-light);
  transition: background var(--transition), color var(--transition);
}
.cart-btn:hover { background: var(--grey-bg); color: var(--green); }
.cart-badge {
  position: absolute;
  top: 3px;
  left: 3px;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  background: var(--green);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

/* ── Breadcrumb ──────────────────────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: var(--grey-text);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--green); }
.breadcrumb a:hover { text-decoration: underline; }

/* ── Service detail ──────────────────────────────────────────────────────────── */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
.service-gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  background: var(--grey-bg);
}
.service-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-thumbs {
  display: flex;
  gap: .6rem;
  margin-top: .75rem;
  flex-wrap: wrap;
}
.gallery-thumb {
  width: 76px;
  height: 58px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
  flex-shrink: 0;
  background: none;
  padding: 0;
}
.gallery-thumb.active,
.gallery-thumb:hover { border-color: var(--green); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-detail-info { position: sticky; top: 90px; }
.service-price-big {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  padding: 1rem;
  background: var(--green-pale);
  border-radius: var(--radius);
  margin-bottom: .25rem;
}
.price-label { font-size: .85rem; color: var(--grey-text); }
.price-value { font-size: 1.6rem; font-weight: 700; color: var(--green-deep); }
.price-unit  { font-size: .8rem; color: var(--grey-text); }

/* ── Option pills ────────────────────────────────────────────────────────────── */
.option-pills { display: flex; gap: .5rem; flex-wrap: wrap; }
.option-pill { cursor: pointer; display: flex; }
.option-pill input[type=radio] { display: none; }
.option-pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .45rem 1.25rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--grey-mid);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-light);
  background: var(--white);
  transition: all var(--transition);
}
.option-pill input:checked + span {
  background: var(--green-pale);
  border-color: var(--green);
  color: var(--green-deep);
  font-weight: 600;
}
.option-pill:hover span { border-color: var(--green); color: var(--green-deep); }

/* ── Quantity control ────────────────────────────────────────────────────────── */
.qty-control {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius);
  overflow: hidden;
  width: fit-content;
}
.qty-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grey-bg);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  font-family: var(--font);
}
.qty-btn:hover { background: var(--grey-light); }
.qty-input {
  width: 60px;
  height: 44px;
  border: none;
  border-inline: 1.5px solid var(--grey-mid);
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font);
  background: var(--white);
  outline: none;
  -moz-appearance: textfield;
}
.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

/* ── Cart page ───────────────────────────────────────────────────────────────── */
.cart-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
}
.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--grey-light);
  margin-bottom: 1rem;
  transition: box-shadow var(--transition);
  align-items: flex-start;
}
.cart-item:hover { box-shadow: var(--shadow-sm); }
.cart-item-img {
  width: 88px;
  height: 68px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cart-item-body { flex: 1; min-width: 0; }
.cart-item-name { font-weight: 700; font-size: .95rem; color: var(--text); margin-bottom: .2rem; }
.cart-item-meta { font-size: .8rem; color: var(--grey-text); margin-bottom: .4rem; }
.cart-item-price { font-weight: 700; color: var(--green-deep); font-size: .95rem; }
.btn-remove {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E53935;
  background: #FFEBEE;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  flex-shrink: 0;
}
.btn-remove:hover { background: #FFCDD2; }
.btn-remove svg { width: 16px; height: 16px; }
.cart-summary {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1.5px solid var(--grey-light);
  position: sticky;
  top: 90px;
}
.cart-summary h3 {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}
.cart-summary h3 svg { width: 18px; height: 18px; color: var(--green); }
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .55rem 0;
  border-bottom: 1px solid var(--grey-light);
  font-size: .88rem;
}
.cart-summary-row:last-of-type { border-bottom: none; }
.cart-total {
  display: flex;
  justify-content: space-between;
  padding-top: .75rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  border-top: 2px solid var(--grey-light);
  margin-top: .5rem;
}

/* ── Checkout ────────────────────────────────────────────────────────────────── */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
}

/* ── Auth pages ──────────────────────────────────────────────────────────────── */
.auth-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 5rem 0 4rem;
  background: var(--grey-bg);
}
.auth-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}
.auth-sub { text-align: center; color: var(--grey-text); font-size: .9rem; }

/* ── Account page ────────────────────────────────────────────────────────────── */
.account-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  align-items: start;
}
.account-sidebar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1.5px solid var(--grey-light);
  position: sticky;
  top: 90px;
  text-align: center;
}
.account-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}
.account-name { font-weight: 700; margin-bottom: .2rem; }
.account-phone { font-size: .85rem; color: var(--grey-text); direction: ltr; }
.account-nav {
  margin-top: 1.25rem;
  border-top: 1px solid var(--grey-light);
  padding-top: 1rem;
  text-align: right;
}
.account-nav a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem .75rem;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  color: var(--text-light);
  transition: all var(--transition);
  margin-bottom: .25rem;
}
.account-nav a:hover, .account-nav a.active {
  background: var(--green-pale);
  color: var(--green-deep);
}
.account-nav a svg { width: 17px; height: 17px; flex-shrink: 0; }
.order-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1.5px solid var(--grey-light);
  margin-bottom: 1rem;
  transition: box-shadow var(--transition);
}
.order-card:hover { box-shadow: var(--shadow-sm); }
.order-status {
  display: inline-flex;
  align-items: center;
  font-size: .78rem;
  font-weight: 600;
  padding: .25rem .75rem;
  border-radius: var(--radius-pill);
}
.order-status.pending   { background: #FFF8E1; color: #F57F17; }
.order-status.confirmed { background: var(--green-pale); color: var(--green-deep); }
.order-status.done      { background: #E3F2FD; color: var(--blue-dark); }
.order-status.cancelled { background: #FFEBEE; color: #C62828; }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 2rem; }
  .booking-widget { max-width: 500px; }
  .hero-content { padding-block: 4rem 5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .service-detail-grid  { grid-template-columns: 1fr; }
  .service-detail-info  { position: static; }
  .cart-grid            { grid-template-columns: 1fr; }
  .checkout-grid        { grid-template-columns: 1fr; }
  .account-grid         { grid-template-columns: 1fr; }
  .account-sidebar      { position: static; }
  .cart-summary         { position: static; }
}

@media (max-width: 768px) {
  .site-nav, .header-cta .btn:not(.nav-toggle) { display: none; }
  .nav-toggle { display: flex; }
  .header-cta { order: 1; gap: .5rem; }
  .site-logo { order: 2; }

  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }

  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }

  .gallery-strip { grid-template-columns: 1fr; }
  .gallery-item img, .gallery-item:first-child img { height: 220px; }

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

  .contact-inner { grid-template-columns: 1fr; gap: 1.5rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
}

@media (max-width: 390px) {
  .hero-content { padding-block: 3rem 4rem; }
  .hero-text h1 { font-size: 1.65rem; }
  .booking-widget { padding: 1.25rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .container { width: calc(100% - 1.5rem); }
}
