/* ════════════════════════════════════════════════════════════
   PAGES.CSS  —  Shared styles for contact / services / about
   ════════════════════════════════════════════════════════════ */

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

/* ── Global mobile touch improvements ─────────────────── */
html { -webkit-text-size-adjust: 100%; }
a, button { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; height: auto; }

/* iOS/Android: prevent zoom on focused input (needs font-size ≥ 16px on mobile) */
@media (max-width: 640px) {
  .ct-form__field input,
  .ct-form__field select,
  .ct-form__field textarea,
  .ct-phone__code,
  .ct-phone input[type="tel"] {
    font-size: 1rem; /* 16px prevents iOS auto-zoom */
  }
}

:root {
  --dir-multiplier: 1;   /* 1 = LTR,  -1 = RTL  (set by main.js / lang.js) */
  --cream:   #F5EDE0;
  --cream2:  #EDE4D4;
  --brown:   #2d1810;
  --tan:     #C8926A;
  --blue:    #A3D1E5;
  --dark:    #1C1008;
}

body {
  font-family: "Oswald", system-ui, sans-serif;
  background: var(--cream);
  color: var(--brown);
  overflow-x: clip;
  -webkit-overflow-scrolling: touch;
}

/* ── Page Header ─────────────────────────────────────────── */
.pg-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem;
  background: rgba(245, 237, 224, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(45,24,16,0.08);
}

.pg-header__logo img {
  height: 48px;
  width: auto;
}

.pg-header__nav {
  display: flex;
  gap: 2.5rem;
}

.pg-header__nav a {
  font-family: "Oswald", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--brown);
  opacity: 0.6;
  transition: opacity 0.2s;
}
.pg-header__nav a:hover,
.pg-header__nav a.active { opacity: 1; }

.pg-header__cta {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--dark);
  color: var(--cream);
  font-family: "Oswald", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: opacity 0.2s, transform 0.2s;
}
.pg-header__cta:hover { opacity: 0.8; transform: scale(1.03); }

/* Hamburger on sub-pages */
.pg-header__menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 10;
}
.pg-header__menu span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.pg-header__menu.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.pg-header__menu.is-open span:last-child  { transform: translateY(-4px) rotate(-45deg); }

/* Overlay — same styles used by pages.css (copy from main styles.css) */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: 1fr 1fr;
  pointer-events: none;
  visibility: hidden;
}
.nav-overlay.is-open { pointer-events: all; visibility: visible; }

.nav-overlay__lhs {
  background: #F5EDE0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(5rem, 8vw, 8rem) clamp(2.5rem, 6vw, 7rem);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.65s cubic-bezier(0.76, 0, 0.24, 1);
}
.nav-overlay.is-open .nav-overlay__lhs { clip-path: inset(0 0% 0 0); }

.nav-overlay__rhs {
  overflow: hidden;
  clip-path: inset(0 0 0 100%);
  transition: clip-path 0.65s cubic-bezier(0.76, 0, 0.24, 1) 0.05s;
}
.nav-overlay.is-open .nav-overlay__rhs { clip-path: inset(0 0 0 0%); }

.nav-overlay__img { width: 100%; height: 100%; object-fit: cover; display: block; }

.nav-overlay__nav { display: flex; flex-direction: column; gap: 0.1em; margin-bottom: 3rem; }

.nav-overlay__link {
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 6vw, 6rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  color: #2d1810;
  line-height: 1.05;
  display: block;
  opacity: 0;
  transform: translateY(30px);
  transition: color 0.2s;
}
.nav-overlay__link:hover { color: #C8926A; }
.nav-overlay.is-open .nav-overlay__link { opacity: 1; transform: translateY(0); }
.nav-overlay.is-open .nav-overlay__link:nth-child(1) { transition: opacity 0.45s 0.35s ease, transform 0.45s 0.35s ease, color 0.2s; }
.nav-overlay.is-open .nav-overlay__link:nth-child(2) { transition: opacity 0.45s 0.42s ease, transform 0.45s 0.42s ease, color 0.2s; }
.nav-overlay.is-open .nav-overlay__link:nth-child(3) { transition: opacity 0.45s 0.49s ease, transform 0.45s 0.49s ease, color 0.2s; }
.nav-overlay.is-open .nav-overlay__link:nth-child(4) { transition: opacity 0.45s 0.56s ease, transform 0.45s 0.56s ease, color 0.2s; }

.nav-overlay__socials {
  display: flex;
  gap: 2rem;
  opacity: 0;
  transform: translateY(10px);
}
.nav-overlay.is-open .nav-overlay__socials {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s 0.65s ease, transform 0.4s 0.65s ease;
}
.nav-overlay__social {
  font-family: "Oswald", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: #2d1810;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.nav-overlay__social:hover { opacity: 1; }

.nav-overlay__close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s 0.4s ease;
  z-index: 10;
}
.nav-overlay.is-open .nav-overlay__close { opacity: 1; }
.nav-overlay__close span {
  position: absolute;
  width: 26px;
  height: 2px;
  background: #2d1810;
  border-radius: 2px;
}
.nav-overlay__close span:first-child { transform: rotate(45deg); }
.nav-overlay__close span:last-child  { transform: rotate(-45deg); }
.nav-overlay__close:hover span { background: #C8926A; }

@media (max-width: 700px) {
  .nav-overlay { grid-template-columns: 1fr; }
  .nav-overlay__rhs { display: none; }
  .nav-overlay__link { font-size: clamp(2.2rem, 12vw, 3.5rem); }
}

/* ── Hero Banner ─────────────────────────────────────────── */
.pg-hero {
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  padding: 0 clamp(1.5rem, 5vw, 6rem) clamp(3rem, 6vw, 6rem);
  position: relative;
  overflow: hidden;
}

.pg-hero--contact  { background: linear-gradient(145deg, #3a1c0e 0%, #5C2A14 55%, #7a4028 100%); }
.pg-hero--services { background: linear-gradient(145deg, #1C3D5A 0%, #2a5a80 55%, #3a7a9a 100%); }
.pg-hero--about    { background: linear-gradient(145deg, #2d1810 0%, #5C2A14 55%, #8B4030 100%); }

/* Decorative grid lines on hero backgrounds */
.pg-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg,   transparent, transparent 60px, rgba(255,255,255,0.04) 60px, rgba(255,255,255,0.04) 61px),
    repeating-linear-gradient(90deg,  transparent, transparent 60px, rgba(255,255,255,0.04) 60px, rgba(255,255,255,0.04) 61px);
  pointer-events: none;
}

.pg-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.pg-hero__eyebrow {
  font-family: "Oswald", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(245,237,224,0.65);
  margin-bottom: 1rem;
}

.pg-hero__title {
  display: flex;
  flex-direction: column;
  gap: 0.05em;
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: clamp(3.2rem, 9vw, 9rem);
  font-weight: 400;
  line-height: 0.93;
  text-transform: uppercase;
  color: var(--cream);
  letter-spacing: 0.01em;
  margin-bottom: 1.4rem;
}

.pg-hero__mark {
  display: inline-block;
  background: var(--tan);
  color: var(--dark);
  padding: 0.04em 0.2em;
  transform: rotate(-2deg);
  transform-origin: left center;
  border-radius: 4px;
}

.pg-hero__sub {
  font-size: clamp(0.85rem, 1.6vw, 1.1rem);
  font-weight: 300;
  color: rgba(245,237,224,0.75);
  max-width: 520px;
  line-height: 1.65;
}

/* ── Page Main wrapper ───────────────────────────────────── */
.pg-main {
  padding: clamp(3rem, 6vw, 7rem) clamp(1.5rem, 5vw, 6rem);
  max-width: 1320px;
  margin: 0 auto;
}

/* ════════════════════════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════════════════════════ */
.ct-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(2.5rem, 5vw, 6rem);
  align-items: start;
}

.ct-section-title {
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: 0.04em;
  color: var(--brown);
  margin-bottom: 2rem;
}

/* Form */
.ct-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.ct-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.ct-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ct-form__field label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
  opacity: 0.7;
}

.ct-required { color: #C8926A; font-size: 0.85em; }

.ct-invalid {
  border-color: #c0392b !important;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.15) !important;
}

.ct-form__error {
  display: block;
  font-size: 0.72rem;
  color: #c0392b;
  margin-top: 0.3rem;
  font-weight: 400;
}

.ct-form__field input,
.ct-form__field select,
.ct-form__field textarea {
  font-family: "Oswald", sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--brown);
  background: #fff;
  border: 1.5px solid rgba(45,24,16,0.15);
  border-radius: 8px;
  padding: 0.85rem 1.1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: none;
  appearance: none;
}

.ct-form__field input:focus,
.ct-form__field select:focus,
.ct-form__field textarea:focus {
  border-color: var(--tan);
  box-shadow: 0 0 0 3px rgba(200,146,106,0.18);
}

.ct-form__field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232d1810' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Phone field with dial code */
.ct-phone {
  display: flex;
  gap: 0;
  border: 1.5px solid rgba(45,24,16,0.15);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ct-phone:focus-within {
  border-color: var(--tan);
  box-shadow: 0 0 0 3px rgba(200,146,106,0.18);
}
.ct-phone__code {
  font-family: "Oswald", sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--brown);
  background: #f5f0e8;
  border: none;
  border-right: 1.5px solid rgba(45,24,16,0.12);
  border-radius: 0;
  padding: 0.85rem 0.6rem 0.85rem 0.8rem;
  outline: none;
  cursor: pointer;
  flex-shrink: 0;
  width: 110px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%232d1810' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.4rem center;
}
.ct-phone input[type="tel"] {
  font-family: "Oswald", sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--brown);
  background: #fff;
  border: none;
  border-radius: 0;
  padding: 0.85rem 1rem;
  outline: none;
  flex: 1;
  min-width: 0;
}

.ct-form__submit {
  align-self: flex-start;
  padding: 1rem 2.8rem;
  background: var(--dark);
  color: var(--cream);
  font-family: "Oswald", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.ct-form__submit:hover { background: #3a2010; transform: scale(1.03); }

.ct-form__note {
  font-size: 0.75rem;
  opacity: 0.5;
  margin-top: -0.5rem;
}

/* Info sidebar */
.ct-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 0.5rem;
}

.ct-info__block {}

.ct-info__label {
  font-family: "Oswald", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 0.35rem;
}

.ct-info__link {
  font-size: 1rem;
  font-weight: 400;
  color: var(--brown);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.ct-info__link:hover { border-color: var(--tan); }

.ct-info__text {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  opacity: 0.8;
}

.ct-info__socials {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ct-social {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown);
  text-decoration: none;
  padding: 0.7rem 1.2rem;
  border-radius: 10px;
  background: var(--cream2);
  border: 1.5px solid rgba(45,24,16,0.1);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.ct-social:hover {
  background: var(--tan);
  border-color: var(--tan);
  color: #fff;
  transform: translateX(4px);
}

.ct-social__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.ct-info__card {
  background: var(--dark);
  color: var(--cream);
  border-radius: 16px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 0.5rem;
}

.ct-info__card-text {
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  opacity: 0.85;
}

.ct-info__card-icon {
  width: 48px;
  height: auto;
  opacity: 0.6;
}

/* ════════════════════════════════════════════════════════════
   SERVICES PAGE
   ════════════════════════════════════════════════════════════ */
.sv-page-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 5vw, 5rem);
}

.sv-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(45,24,16,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.sv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45,24,16,0.14);
}

.sv-card--alt {
  grid-template-columns: 1fr 340px;
}
.sv-card--alt .sv-card__img-wrap { order: 2; }
.sv-card--alt .sv-card__body     { order: 1; }

.sv-card__num {
  position: absolute;
  top: 1.5rem;
  left: 1.8rem;
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: 4rem;
  color: rgba(45,24,16,0.06);
  line-height: 1;
  pointer-events: none;
}

.sv-card__img-wrap {
  background: var(--blue);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.sv-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2rem;
  max-height: 320px;
}

.sv-card__ph {
  width: 80%;
  height: 70%;
  border-radius: 12px;
}
.sv-card__ph--1 { background: linear-gradient(135deg, #a8d5a2, #4a9a6a); }
.sv-card__ph--2 { background: linear-gradient(135deg, #7ec8e3, #2a5a80); }
.sv-card__ph--3 { background: linear-gradient(135deg, #f5c5a3, #c8643a); }
.sv-card__ph--4 { background: linear-gradient(135deg, #f0d080, #c0902a); }
.sv-card__ph--5 { background: linear-gradient(135deg, #c8b0f0, #7040b0); }
.sv-card__ph--6 { background: linear-gradient(135deg, #f0a8c0, #c03060); }

.sv-card__body {
  padding: clamp(1.8rem, 3vw, 3rem);
  padding-left: clamp(1.8rem, 3vw, 3.5rem);
}

.sv-card__title {
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  letter-spacing: 0.03em;
  color: var(--brown);
  margin-bottom: 0.8rem;
}

.sv-card__desc {
  font-size: clamp(0.85rem, 1.2vw, 0.98rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--brown);
  opacity: 0.75;
  margin-bottom: 1.4rem;
  max-width: 520px;
}

.sv-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.8rem;
}

.sv-card__list li {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--brown);
  padding-left: 1.2rem;
  position: relative;
}
.sv-card__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--tan);
  font-size: 0.8rem;
}

.sv-card__btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--dark);
  color: var(--cream);
  font-family: "Oswald", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
}
.sv-card__btn:hover { background: #3a2010; transform: scale(1.04); }

/* ── Secondary services ──────────────────────────────────── */
.sv-secondary {
  margin-top: clamp(4rem, 7vw, 7rem);
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.sv-secondary__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.sv-secondary__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 0.7rem;
}

.sv-secondary__title {
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 5vw, 4.5rem);
  letter-spacing: 0.03em;
  color: var(--brown);
  margin-bottom: 1rem;
}

.sv-secondary__mark {
  background: var(--tan);
  color: var(--dark);
  padding: 0.03em 0.18em;
  border-radius: 4px;
  text-decoration: none;
}

.sv-secondary__sub {
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  font-weight: 300;
  color: var(--brown);
  opacity: 0.65;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.sv-secondary__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.sv-secondary__card {
  background: #fff;
  border-radius: 20px;
  padding: clamp(1.8rem, 3vw, 2.8rem);
  box-shadow: 0 4px 24px rgba(45,24,16,0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 4px solid var(--tan);
}
.sv-secondary__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(45,24,16,0.14);
}

.sv-secondary__icon {
  font-size: 2.4rem;
  line-height: 1;
}

.sv-secondary__name {
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  letter-spacing: 0.03em;
  color: var(--brown);
  line-height: 1.1;
}

.sv-secondary__desc {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--brown);
  opacity: 0.72;
  flex: 1;
}

.sv-secondary__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.sv-secondary__list li {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--brown);
  padding-left: 1.1rem;
  position: relative;
}
.sv-secondary__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--tan);
  font-size: 0.78rem;
}

.sv-secondary__btn {
  display: inline-block;
  align-self: flex-start;
  margin-top: 0.4rem;
  padding: 0.7rem 1.8rem;
  background: var(--dark);
  color: var(--cream);
  font-family: "Oswald", sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
}
.sv-secondary__btn:hover { background: #3a2010; transform: scale(1.04); }

@media (max-width: 960px) {
  .sv-secondary__grid { grid-template-columns: 1fr; }
}

/* CTA banner (shared services + about) */
.sv-cta-banner {
  margin-top: clamp(4rem, 7vw, 7rem);
  background: var(--dark);
  border-radius: 24px;
  padding: clamp(2.5rem, 5vw, 5rem) clamp(2rem, 4vw, 5rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.sv-cta-banner__title {
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 5vw, 4.5rem);
  color: var(--cream);
  letter-spacing: 0.04em;
}

.sv-cta-banner__text {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 300;
  color: rgba(245,237,224,0.65);
  max-width: 440px;
}

.sv-cta-banner__btn {
  display: inline-block;
  padding: 0.9rem 2.8rem;
  background: var(--tan);
  color: var(--dark);
  font-family: "Oswald", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
}
.sv-cta-banner__btn:hover { background: #b07848; transform: scale(1.04); }

/* ════════════════════════════════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════════════════════════════════ */

/* Mission */
.ab-mission {
  text-align: center;
  padding: clamp(2rem, 4vw, 4rem) 0 clamp(1.5rem, 3vw, 3rem);
  border-bottom: 1px solid rgba(45,24,16,0.1);
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.ab-mission__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 1rem;
}

.ab-mission__headline {
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 5vw, 4.5rem);
  letter-spacing: 0.03em;
  line-height: 1.05;
  color: var(--brown);
  margin-bottom: 1.5rem;
}

.ab-mission__mark {
  background: var(--tan);
  color: var(--dark);
  padding: 0.05em 0.18em;
  border-radius: 4px;
  text-decoration: none;
}

.ab-mission__body {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 300;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.75;
}

/* Stats */
.ab-stats {
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

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

.ab-stat {
  background: #fff;
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  box-shadow: 0 4px 20px rgba(45,24,16,0.07);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ab-stat__num {
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--brown);
  line-height: 1;
}

.ab-stat__num sup {
  font-size: 0.5em;
  vertical-align: super;
  color: var(--tan);
}

.ab-stat__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown);
  opacity: 0.55;
}

/* Story */
.ab-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 6rem);
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.ab-story__media {
  position: relative;
}

.ab-story__img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  border-radius: 20px;
  display: block;
}

.ab-story__img-ph {
  width: 100%;
  height: 460px;
  background: linear-gradient(135deg, #A3D1E5, #2a5a80);
  border-radius: 20px;
}

.ab-story__badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--tan);
  color: var(--dark);
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  transform: rotate(3deg);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.ab-story__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 0.8rem;
}

.ab-story__title {
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: 0.03em;
  line-height: 1.05;
  color: var(--brown);
  margin-bottom: 1.5rem;
}

.ab-story__body {
  font-size: clamp(0.88rem, 1.3vw, 1rem);
  font-weight: 300;
  line-height: 1.8;
  opacity: 0.75;
  margin-bottom: 1rem;
}

.ab-story__btn {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.85rem 2.2rem;
  background: var(--dark);
  color: var(--cream);
  font-family: "Oswald", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
}
.ab-story__btn:hover { background: #3a2010; transform: scale(1.04); }

/* Values */
.ab-values {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.ab-values__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 0.8rem;
}

.ab-values__title {
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4.5vw, 4rem);
  letter-spacing: 0.04em;
  color: var(--brown);
  margin-bottom: 3rem;
}

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

.ab-value {
  background: #fff;
  border-radius: 18px;
  padding: clamp(1.8rem, 2.5vw, 2.5rem) 1.8rem;
  box-shadow: 0 4px 20px rgba(45,24,16,0.07);
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}
.ab-value:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(45,24,16,0.13); }

.ab-value__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.ab-value__name {
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--brown);
  margin-bottom: 0.6rem;
}

.ab-value__desc {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  opacity: 0.7;
}

/* Team */
.ab-team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--dark);
  border-radius: 24px;
  padding: clamp(2.5rem, 5vw, 5rem) clamp(2rem, 4vw, 5rem);
  margin-bottom: clamp(3rem, 5vw, 5rem);
  overflow: hidden;
  position: relative;
}

.ab-team__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 0.8rem;
}

.ab-team__title {
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: 0.03em;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1.2rem;
}

.ab-team__mark {
  background: var(--tan);
  color: var(--dark);
  padding: 0.04em 0.18em;
  border-radius: 4px;
  text-decoration: none;
}

.ab-team__body {
  font-size: clamp(0.85rem, 1.3vw, 0.98rem);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245,237,224,0.65);
  margin-bottom: 1.8rem;
  max-width: 480px;
}

.ab-team__btn {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  background: var(--tan);
  color: var(--dark);
  font-family: "Oswald", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
}
.ab-team__btn:hover { background: #b07848; transform: scale(1.04); }

.ab-team__pins {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  position: relative;
}

.ab-pin {
  width: clamp(60px, 6vw, 96px);
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.5));
}
.ab-pin--1 { transform: rotate(-15deg); }
.ab-pin--2 { transform: rotate( 5deg);  width: clamp(80px, 8vw, 120px); }
.ab-pin--3 { transform: rotate( 18deg); }

/* ── Footer ──────────────────────────────────────────────── */
.pg-footer {
  background: var(--dark);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem clamp(1.5rem, 5vw, 6rem);
  flex-wrap: wrap;
  gap: 1rem;
}

.pg-footer__logo {
  height: 44px;
  width: auto;
  opacity: 0.7;
}

.pg-footer__copy {
  font-size: 0.75rem;
  opacity: 0.45;
  letter-spacing: 0.05em;
}

.pg-footer__links {
  display: flex;
  gap: 2rem;
}

.pg-footer__links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.55;
  transition: opacity 0.2s;
}
.pg-footer__links a:hover { opacity: 1; }

/* ── Responsive ──────────────────────────────────────────── */

/* ── Tablet (≤ 960px) ─────────────────────────────────── */
@media (max-width: 960px) {
  /* Header */
  .pg-header             { padding: 1rem 1.5rem; }

  /* Contact */
  .ct-grid               { grid-template-columns: 1fr; }
  .ct-info               { padding-top: 0; }

  /* Services cards */
  .sv-card               { grid-template-columns: 1fr; }
  .sv-card--alt          { grid-template-columns: 1fr; }
  .sv-card--alt .sv-card__img-wrap { order: 0; }
  .sv-card--alt .sv-card__body     { order: 0; }
  .sv-card__img-wrap     { min-height: 260px; }

  /* About */
  .ab-stats__inner       { grid-template-columns: repeat(2, 1fr); }
  .ab-values__grid       { grid-template-columns: repeat(2, 1fr); }
  .ab-story              { grid-template-columns: 1fr; }
  .ab-team               { grid-template-columns: 1fr; gap: 2rem; }
  .ab-team__pins         { display: none; }
}

/* ── Mobile (≤ 640px) ────────────────────────────────── */
@media (max-width: 640px) {
  /* Header – hide CTA, keep hamburger + lang btn */
  .pg-header             { padding: 0.85rem 1.2rem; }
  .pg-header__cta        { display: none; }
  .pg-header__logo img   { height: 38px; }

  /* Hero – smaller top/side padding, adjust for fixed header */
  .pg-hero               { min-height: 80vh; padding: 7rem 1.2rem 3rem; align-items: flex-end; }
  .pg-hero__title        { font-size: clamp(2.8rem, 11vw, 5rem); }
  .pg-hero__sub          { font-size: 0.92rem; }

  /* Page main tighter sides */
  .pg-main               { padding: 2.5rem 1.2rem; }

  /* Contact form */
  .ct-form__row          { grid-template-columns: 1fr; }
  .ct-form__submit       { width: 100%; text-align: center; }
  .ct-section-title      { font-size: 1.5rem; }

  /* Services */
  .sv-card__img-wrap     { min-height: 220px; }
  .sv-card__body         { padding: 1.5rem; }
  .sv-secondary__grid    { grid-template-columns: 1fr; }
  .sv-cta-banner         { border-radius: 16px; }
  .sv-cta-banner__btn    { width: 100%; text-align: center; }

  /* About */
  .ab-stats__inner       { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .ab-values__grid       { grid-template-columns: 1fr; }
  .ab-story__badge       { bottom: 0.5rem; right: 0.5rem; font-size: 0.85rem; padding: 0.4rem 0.9rem; }
  .ab-team               { padding: 2rem 1.5rem; }
  .ab-team__btn          { width: 100%; text-align: center; }
  .ab-story__btn         { width: 100%; text-align: center; }

  /* Footer */
  .pg-footer             { flex-direction: column; text-align: center; gap: 1.2rem; padding: 2rem 1.2rem; }
  .pg-footer__links      { flex-wrap: wrap; justify-content: center; gap: 1rem 1.5rem; }

  /* Reviews */
  .rv-stat               { padding: 1.2rem 1rem; }
  .rv-bottom-cta         { padding: 2rem 0 0; }
}

/* ── Small phone (≤ 420px) ───────────────────────────── */
@media (max-width: 420px) {
  .pg-hero__title        { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .sv-card__img-wrap     { min-height: 200px; }
  .ab-stats__inner       { grid-template-columns: repeat(2, 1fr); }
  .ct-phone__code        { width: 90px; font-size: 0.8rem; }
  .rv-filter             { font-size: 0.68rem; padding: 0.45rem 1rem; }
  .sv-cta-banner__title  { font-size: 1.8rem; }
}

/* ════════════════════════════════════════════════════════════
   LANGUAGE SWITCHER  +  RTL SUPPORT  (pages)
   ════════════════════════════════════════════════════════════ */

/* ── Lang switcher button ───────────────────────────────── */
.header__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  border: 2px solid var(--brown);
  background: transparent;
  color: var(--brown);
  font-family: "Oswald", "Cairo", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.lang-btn:hover {
  background: var(--brown);
  color: var(--cream);
}

/* ════════════════════════════════════════════════════════════
   ARABIC FONT  –  Cairo for ALL text on sub-pages
   ════════════════════════════════════════════════════════════ */
[lang="ar"] body,
[lang="ar"] p,
[lang="ar"] span,
[lang="ar"] a,
[lang="ar"] button,
[lang="ar"] label,
[lang="ar"] h1, [lang="ar"] h2, [lang="ar"] h3,
[lang="ar"] .pg-header__cta,
[lang="ar"] .nav-overlay__link,
[lang="ar"] .nav-overlay__social,
[lang="ar"] .pg-hero__eyebrow,
[lang="ar"] .pg-hero__title,
[lang="ar"] .pg-hero__mark,
[lang="ar"] .pg-footer,
[lang="ar"] .ct-form__field label,
[lang="ar"] .ct-form__field input,
[lang="ar"] .ct-form__field select,
[lang="ar"] .ct-form__field textarea,
[lang="ar"] .ct-form__submit,
[lang="ar"] .ct-info,
[lang="ar"] .rv-card,
[lang="ar"] .rv-stat__label,
[lang="ar"] .rv-filter,
[lang="ar"] .sv-card__title,
[lang="ar"] .sv-card__body,
[lang="ar"] .ab-mission p,
[lang="ar"] .ab-story__body {
  font-family: "Cairo", system-ui, sans-serif;
  letter-spacing: 0;
}

/* ════════════════════════════════════════════════════════════
   RTL LAYOUT FIXES  (sub-pages)
   ════════════════════════════════════════════════════════════ */

/* Header */
[dir="rtl"] .pg-header {
  flex-direction: row-reverse;
}

/* Nav overlay – mirror clip-path directions */
[dir="rtl"] .nav-overlay__lhs {
  clip-path: inset(0 0 0 100%);
}
[dir="rtl"] .nav-overlay.is-open .nav-overlay__lhs {
  clip-path: inset(0 0 0 0%);
}
[dir="rtl"] .nav-overlay__rhs {
  clip-path: inset(0 100% 0 0);
}
[dir="rtl"] .nav-overlay.is-open .nav-overlay__rhs {
  clip-path: inset(0 0% 0 0);
}
[dir="rtl"] .nav-overlay__close {
  right: auto;
  left: 2rem;
}
[dir="rtl"] .nav-overlay__lhs {
  text-align: right;
}

/* Hero banner */
[dir="rtl"] .pg-hero__inner {
  text-align: right;
  direction: rtl;
}

/* Forms */
[dir="rtl"] .ct-form__field {
  text-align: right;
}
[dir="rtl"] .ct-form__field label,
[dir="rtl"] .ct-form__field input,
[dir="rtl"] .ct-form__field select,
[dir="rtl"] .ct-form__field textarea {
  text-align: right;
  direction: rtl;
}
[dir="rtl"] .ct-phone {
  flex-direction: row-reverse;
}
[dir="rtl"] .ct-phone select {
  border-inline-end: none;
  border-inline-start: 1px solid rgba(45,24,16,0.15);
  border-radius: 0 10px 10px 0;
}
[dir="rtl"] .ct-phone input {
  border-radius: 10px 0 0 10px;
}

/* Sidebar info */
[dir="rtl"] .ct-info {
  text-align: right;
  direction: rtl;
}

/* About page */
[dir="rtl"] .ab-mission,
[dir="rtl"] .ab-mission__inner,
[dir="rtl"] .ab-story__copy,
[dir="rtl"] .ab-story__eyebrow,
[dir="rtl"] .ab-story__title,
[dir="rtl"] .ab-story__body,
[dir="rtl"] .ab-values__card,
[dir="rtl"] .ab-value,
[dir="rtl"] .ab-team__inner {
  text-align: right;
  direction: rtl;
}
[dir="rtl"] .ab-stats__inner,
[dir="rtl"] .ab-values__grid {
  direction: rtl;
}
[dir="rtl"] .ab-stat {
  text-align: right;
}
[dir="rtl"] .ab-story {
  direction: rtl;
}

/* Services page */
[dir="rtl"] .sv-card__body,
[dir="rtl"] .sv-secondary__header,
[dir="rtl"] .sv-secondary__card {
  text-align: right;
  direction: rtl;
}
[dir="rtl"] .sv-secondary__list {
  direction: rtl;
  padding-inline-start: 0;
  padding-inline-end: 1.2rem;
}
[dir="rtl"] .sv-card__list {
  direction: rtl;
  padding-inline-start: 0;
  padding-inline-end: 1.2rem;
}
[dir="rtl"] .sv-card--alt .sv-card__img-wrap { order: 1; }
[dir="rtl"] .sv-card--alt .sv-card__body     { order: 0; }
[dir="rtl"] .sv-cta-banner {
  direction: rtl;
  text-align: right;
}

/* Contact page */
[dir="rtl"] .ct-section-title,
[dir="rtl"] .ct-form-wrap,
[dir="rtl"] .ct-info__block,
[dir="rtl"] .ct-info__card {
  text-align: right;
  direction: rtl;
}

/* Footer */
[dir="rtl"] .pg-footer {
  flex-direction: row-reverse;
  text-align: right;
}
[dir="rtl"] .pg-footer__links {
  flex-direction: row-reverse;
}

/* Reviews page */
[dir="rtl"] .rv-card,
[dir="rtl"] .rv-stat {
  direction: rtl;
  text-align: right;
}
[dir="rtl"] .rv-card__footer {
  flex-direction: row-reverse;
}
[dir="rtl"] .rv-filters {
  direction: rtl;
}
[dir="rtl"] .rv-bottom-cta {
  direction: rtl;
  text-align: right;
}
[dir="rtl"] .rv-stats {
  direction: rtl;
}
