:root {
  --forest: #0a1931;
  --forest-mid: #0c2447;
  --forest-light: #1c3a70;
  --gold: #2b65ec;
  --gold-deep: #1d4ed8;
  --gold-soft: #9fb8e0;
  --stone: #eef4fc;
  --stone-2: #dce8f5;
  --ink: #0a1628;
  --ink-soft: #4a6080;
  --white: #f8fbff;
  --line: rgba(6, 20, 40, 0.12);
  --veil: linear-gradient(180deg, rgba(6, 20, 40, 0.35) 0%, rgba(6, 20, 40, 0.82) 100%);

  --paper: var(--stone);
  --paper-2: var(--stone-2);
  --cream: var(--white);
  --leaf: var(--forest-mid);
  --leaf-mid: var(--forest-light);
  --harvest: var(--gold);
  --harvest-deep: var(--gold-deep);

  --main-color: var(--forest-mid);
  --main-color-light: var(--forest-light);
  --main-color-dark: var(--forest);
  --second-color: var(--gold);
  --white-color: var(--white);
  --accent: var(--gold);
  --accent-ink: #fff;
  --on-accent: #ffffff;
  --brand-gradient: linear-gradient(135deg, #2b65ec 0%, #1d4ed8 100%);

  --section-bg: var(--stone);
  --section-bg-alt: var(--white);
  --body-bg: var(--stone);
  --text-color: var(--ink);
  --text-muted: var(--ink-soft);
  --border-color: var(--line);
  --input-bg: #fff;
  --input-border: #c5d6ea;

  --radius: 4px;
  --radius-lg: 4px;
  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 8px 28px rgba(6, 20, 40, 0.08);
  --shadow-lg: 0 28px 60px rgba(6, 20, 40, 0.16);
  --header-h: 118px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul li {
  list-style: none !important;
}

a {
  text-decoration: none;
  color: inherit;
}

html,
body {
  scroll-behavior: smooth !important;
  font-family: "Outfit", "Tajawal", sans-serif;
  overflow-x: hidden;
  background: var(--body-bg);
  color: var(--text-color);
}

[dir="rtl"] body {
  font-family: "Tajawal", sans-serif;
}

[dir="ltr"] h1,
[dir="ltr"] h2,
[dir="ltr"] .section-title,
[dir="ltr"] .hero-content h1,
[dir="ltr"] .hero-pages h1,
[dir="ltr"] .details-title,
[dir="ltr"] .footer-cta h2,
[dir="ltr"] .contact-card-info h2 {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 600;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 0;
}

.text-main,
.text-primary {
  color: var(--gold) !important;
}

.about-section,
.about-intro-section,
.products-section,
.products-page-section,
.why-section,
.contact-section,
.details-section {
  padding: 110px 0;
}

.loading {
  position: fixed;
  inset: 0;
  background: var(--forest);
  z-index: 99999;
  transition: opacity 0.25s ease;
}
.loading.loaded {
  opacity: 0;
  pointer-events: none;
}
.loading .spinner {
  width: 46px;
  height: 46px;
  border: 2px solid rgba(201, 162, 77, 0.25);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Header */
.header {
  z-index: 1030;
  background: #fff;
  border-bottom: 1px solid rgba(7, 26, 20, 0.08);
  transition: box-shadow 0.35s ease;
}
.header.scrolled {
  box-shadow: 0 10px 28px rgba(7, 26, 20, 0.08);
}
.header .navbar {
  padding: 8px 0;
}
.header .logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink) !important;
}
.header .logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
}
.logo-text {
  display: none;
}
.logo-text strong {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
}
.logo-text small {
  font-size: 11px;
  color: var(--gold-deep);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.header .navbar-toggler {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}
.header .navbar-toggler:focus {
  box-shadow: none;
}
.header .navbar-nav {
  gap: 2px;
}
.header .nav-link {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink) !important;
  padding: 8px 16px !important;
  position: relative;
  transition: var(--transition);
}
.header .nav-link::after {
  content: "";
  position: absolute;
  inset-inline-start: 16px;
  inset-inline-end: 16px;
  bottom: 4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.header .nav-link:hover,
.header .nav-link.active {
  color: var(--gold-deep) !important;
  background: none;
}
.header .nav-link:hover::after,
.header .nav-link.active::after {
  transform: scaleX(1);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-phone {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 0;
  background: var(--gold);
  color: var(--on-accent) !important;
  font-weight: 800;
  font-size: 14px;
  transition: var(--transition);
}
.header-cta:hover {
  background: var(--gold-deep);
  color: #fff !important;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 0;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink) !important;
  font-size: 12px;
  font-weight: 800;
}
.lang-switch i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--on-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

#mobileMenu {
  --bs-offcanvas-width: min(360px, 92vw);
  --bs-offcanvas-bg: var(--forest);
  z-index: 1046;
  color: var(--white);
}
#mobileMenu .offcanvas-header {
  border-bottom: 1px solid rgba(201, 162, 77, 0.2);
}
#mobileMenu .navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
#mobileMenu .logo-img {
  height: 84px;
  width: auto;
  object-fit: contain;
}
#mobileMenu .mobile-menu-close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}
#mobileMenu .nav-link {
  display: block;
  width: fit-content;
  padding: 10px 0 !important;
  margin-bottom: 4px;
  border-radius: 0;
  font-weight: 700;
  color: var(--white) !important;
  background: none !important;
}
#mobileMenu .nav-link.active,
#mobileMenu .nav-link:hover {
  color: var(--gold) !important;
}
#mobileMenu .list-contact {
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
#mobileMenu .list-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}
#mobileMenu .list-contact i {
  color: var(--gold);
  margin-top: 4px;
}
#mobileMenu .list-contact a,
#mobileMenu .list-contact span {
  color: rgba(252, 250, 246, 0.85);
}
#mobileMenu .mobile-menu-social a {
  width: 42px;
  height: 42px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#mobileMenu .mobile-menu-social a:hover {
  background: var(--gold);
  color: var(--on-accent);
}

/* Buttons */
.btn-learn-more-creative,
.btn-primary-custom,
.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 8px 0 20px;
  border-radius: 0;
  background: var(--gold);
  color: var(--on-accent) !important;
  font-weight: 800;
  font-size: 15px;
  transition: var(--transition);
}
[dir="ltr"] .btn-learn-more-creative {
  padding: 0 20px 0 8px;
}
.btn-learn-more-creative .btn-icon-wrapper {
  width: 38px;
  height: 38px;
  border-radius: 0;
  background: var(--forest);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-learn-more-creative:hover {
  transform: translateY(-2px);
  background: var(--gold-soft);
  color: var(--forest-mid) !important;
}
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 0;
  border: 1.5px solid rgba(252, 250, 246, 0.7);
  color: var(--white) !important;
  font-weight: 800;
  background: transparent;
}
.btn-hero-outline:hover {
  background: var(--white);
  color: var(--forest-mid) !important;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section-label-icon {
  width: 28px;
  height: 28px;
  border-radius: 0;
  background: var(--gold);
  color: var(--on-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  max-width: 16ch;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}
.section-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-head--center .section-title {
  margin-inline: auto;
  margin-bottom: 18px;
}

/* Hero cinematic */
.hero-section {
  position: relative;
  background: var(--forest);
  min-height: 100vh;
}
.hero-section .heroSwiper,
.hero-section .swiper-wrapper,
.hero-section .swiper-slide {
  height: 100vh;
  min-height: 640px;
}
.hero-full {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.06);
  transition: transform 8s ease-out;
}
.swiper-slide-active .hero-slide-bg {
  transform: scale(1.12);
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 26, 20, 0.88) 0%, rgba(7, 26, 20, 0.45) 55%, rgba(7, 26, 20, 0.2) 100%),
    linear-gradient(180deg, rgba(7, 26, 20, 0.35) 0%, rgba(7, 26, 20, 0.55) 100%);
  pointer-events: none;
}
[dir="ltr"] .hero-veil {
  background:
    linear-gradient(270deg, rgba(7, 26, 20, 0.88) 0%, rgba(7, 26, 20, 0.45) 55%, rgba(7, 26, 20, 0.2) 100%),
    linear-gradient(180deg, rgba(7, 26, 20, 0.35) 0%, rgba(7, 26, 20, 0.55) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  padding-bottom: 120px;
}
.hero-content {
  max-width: 640px;
  color: var(--white);
}
.hero-content h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0 0 18px;
  max-width: 12ch;
  color: var(--white);
}
.hero-lead {
  color: rgba(252, 250, 246, 0.78);
  font-size: 1.08rem;
  line-height: 1.85;
  max-width: 48ch;
  margin-bottom: 28px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-slide-index {
  position: absolute;
  inset-inline-end: 0;
  bottom: 140px;
  font-size: 7rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  pointer-events: none;
}
.hero-dock {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 3;
  padding: 0 0 22px;
  background: linear-gradient(180deg, transparent, rgba(7, 26, 20, 0.72));
}
.hero-dock-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(201, 162, 77, 0.28);
}
.hero-pager {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.hero-pager-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: rgba(252, 250, 246, 0.62);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 0;
  cursor: pointer;
}
.hero-pager-item.is-active {
  background: var(--gold);
  color: var(--on-accent);
}
.hero-pager-num {
  font-variant-numeric: tabular-nums;
  opacity: 0.7;
}
.hero-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.hero-nav {
  width: 42px;
  height: 42px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--on-accent);
}
.hero-progress {
  width: 72px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}
.hero-progress span {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--gold);
  transform-origin: right center;
  transform: scaleX(0);
}
[dir="ltr"] .hero-progress span {
  transform-origin: left center;
}
.hero-count {
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--white);
}
.hero-count-sep {
  opacity: 0.4;
  margin: 0 4px;
}

/* Ticker */
.ticker {
  overflow: hidden;
  background: var(--gold);
  color: var(--on-accent);
  padding: 14px 0;
  border-block: 1px solid var(--gold-deep);
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: ticker 28s linear infinite;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.ticker-track i {
  font-size: 11px;
  opacity: 0.7;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}
[dir="rtl"] .ticker-track {
  animation-name: ticker-rtl;
}
@keyframes ticker-rtl {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Inner pages */
.hero-pages {
  position: relative;
  overflow: hidden;
  background: var(--forest) url("../images/banner/inner-pages-bg.jpg") center / cover no-repeat;
  padding: calc(var(--header-h) + 72px) 0 64px;
  color: var(--white);
}
.hero-pages::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 26, 20, 0.72), rgba(7, 26, 20, 0.82));
}
.hero-pages .container {
  position: relative;
  z-index: 1;
}
.page-kicker {
  color: var(--gold);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-pages h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  color: var(--white);
}
.hero-pages .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  background: none;
}
.hero-pages .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  padding: 0 8px 0 0;
  color: rgba(252, 250, 246, 0.45);
  float: none;
}
[dir="ltr"] .hero-pages .breadcrumb-item + .breadcrumb-item::before {
  padding: 0 0 0 8px;
}
.hero-pages .breadcrumb a {
  color: rgba(252, 250, 246, 0.7);
}
.hero-pages .breadcrumb .active,
.hero-pages .breadcrumb a:hover {
  color: var(--gold);
}
.page-intro {
  max-width: 52ch;
  color: var(--ink-soft);
  margin-bottom: 40px;
  font-size: 1.08rem;
  line-height: 1.8;
}

/* About */
.about-section {
  background: var(--stone);
}
.about-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.about-media {
  position: relative;
  margin: 0;
  height: 520px;
}
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}
.about-media::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--gold);
  pointer-events: none;
  z-index: -1;
}
[dir="ltr"] .about-media::after {
  inset: 18px 18px -18px -18px;
}
.about-spotlight__chip {
  position: absolute;
  inset-inline-start: 20px;
  bottom: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--on-accent);
  padding: 10px 14px;
  font-weight: 800;
  font-size: 13px;
}
.about-copy .section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  max-width: 14ch;
}
.about-copy .lead,
.about-copy p,
.story-copy p {
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 12px;
  font-size: 1rem;
}
.about-copy .btn-learn-more-creative {
  margin-top: 10px;
}
.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  background: var(--forest);
  color: var(--white);
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0 32px;
}
.stat-card {
  padding: 28px 18px;
  text-align: center;
  border-inline-end: 1px solid rgba(201, 162, 77, 0.22);
}
.stat-card:last-child {
  border-inline-end: 0;
}
.stat-card strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
}
.stat-card span {
  font-size: 13px;
  color: rgba(252, 250, 246, 0.7);
  font-weight: 600;
}
.about-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
}
.about-pills li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 14px;
  list-style: none !important;
}
.about-pills i {
  color: var(--gold-deep);
}

.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 72px;
}
.story-block:last-child {
  margin-bottom: 0;
}
.story-block--reverse {
  direction: ltr;
}
.story-block--reverse .story-copy {
  direction: rtl;
}
[dir="ltr"] .story-block--reverse .story-copy {
  direction: ltr;
}
.story-photo {
  margin: 0;
  height: 360px;
  overflow: hidden;
  position: relative;
}
.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-photo::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201, 162, 77, 0.55);
  pointer-events: none;
}

/* Products mosaic */
.products-section,
.products-page-section {
  background: var(--white);
}
.product-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.product-card {
  position: relative;
  display: block;
  min-height: 340px;
  overflow: hidden;
  color: var(--white);
}
.product-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.product-card:hover img {
  transform: scale(1.08);
}
.product-card__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 26, 20, 0.12) 20%, rgba(7, 26, 20, 0.88) 100%);
}
.product-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 340px;
  padding: 24px 22px;
}
.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: auto;
}
.product-card__num {
  font-weight: 800;
  font-size: 13px;
  color: var(--gold);
}
.product-card__icon {
  width: 36px;
  height: 36px;
  background: rgba(201, 162, 77, 0.18);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.product-card__body h3 {
  margin: 0 0 6px;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--white);
}
.product-card__tag {
  color: rgba(252, 250, 246, 0.72);
  font-size: 13px;
  font-weight: 600;
}
.product-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 800;
  color: var(--gold);
}
.product-card:hover .product-card__more {
  color: var(--gold-soft);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.service-tile {
  display: block;
  min-height: 340px;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.service-tile__media {
  position: absolute;
  inset: 0;
}
.service-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.service-tile:hover .service-tile__media img {
  transform: scale(1.08);
}
.service-tile__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 340px;
  padding: 24px 22px;
  background: linear-gradient(180deg, rgba(7, 26, 20, 0.12) 20%, rgba(7, 26, 20, 0.88) 100%);
  color: var(--white);
}
.service-tile__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: auto;
}
.service-tile__num {
  font-weight: 800;
  font-size: 13px;
  color: var(--gold);
}
.service-tile__icon {
  width: 34px;
  height: 34px;
  background: rgba(201, 162, 77, 0.18);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.service-tile__body h3 {
  margin: 0 0 6px;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--white);
}
.service-tile__tag {
  color: rgba(252, 250, 246, 0.72);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 0;
}
.service-tile__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 800;
  color: var(--gold);
}
.service-tile:hover {
  color: var(--white);
}

/* Why */
.why-section {
  background: var(--forest);
  color: var(--white);
}
.why-section .section-label {
  color: var(--gold);
}
.why-section .section-title {
  color: var(--white);
}
.why-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.why-visual-card {
  position: relative;
  margin-top: 20px;
  height: 360px;
  overflow: hidden;
}
.why-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-visual-caption {
  position: absolute;
  inset-inline-start: 16px;
  bottom: 16px;
  background: var(--gold);
  color: var(--on-accent);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
}
.why-visual-caption strong {
  font-size: 1.1rem;
}
.why-visual-caption span {
  font-size: 13px;
  opacity: 0.8;
}
.why-list {
  list-style: none !important;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.why-feature-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 162, 77, 0.18);
  list-style: none !important;
}
.why-feature-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.why-feature-card h4 {
  font-size: 1.12rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--white);
}
.why-feature-card p {
  margin: 0;
  color: rgba(252, 250, 246, 0.68);
  line-height: 1.7;
}

/* Contact */
.contact-section {
  background: var(--stone);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  align-items: stretch;
}
.contact-card-info,
.contact-card-form {
  padding: 44px 40px;
}
.contact-card-info {
  background: var(--forest);
  color: var(--white);
}
.contact-card-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin: 12px 0 16px;
  max-width: 14ch;
}
.contact-card-info > p {
  color: rgba(255, 250, 242, 0.72);
  line-height: 1.8;
  margin-bottom: 24px;
}
.contact-eyebrow {
  color: var(--gold);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-checks {
  margin: 0;
  padding: 0;
}
.contact-checks li {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  color: rgba(255, 250, 242, 0.86);
}
.contact-checks i {
  color: var(--gold);
  margin-top: 4px;
}
.contact-details {
  margin: 28px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-details li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.contact-details i {
  color: var(--gold);
  margin-top: 4px;
}
.contact-details strong {
  display: block;
  font-size: 12px;
  opacity: 0.6;
}
.contact-details a,
.contact-details span {
  color: var(--white);
}
.contact-card-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-inline-start: 0;
}
.contact-card-form label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
}
.contact-card-form .form-control,
.contact-card-form .form-select {
  background: var(--stone);
  border: 1px solid var(--input-border);
  border-radius: 0;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  box-shadow: none;
}
.contact-card-form .form-control:focus,
.contact-card-form .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 77, 0.18);
}
.contact-card-form textarea.form-control {
  min-height: 120px;
}
.contact-submit-button {
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 0;
  background: var(--gold);
  color: var(--on-accent);
  font-weight: 800;
}
.contact-submit-button:hover {
  background: var(--gold-deep);
  color: var(--white);
}
.contact-disclaimer {
  color: var(--ink-soft);
  font-size: 13px;
}
.contact-form-status {
  color: var(--forest-light);
  font-weight: 700;
}

/* Footer */
.footer-cta-section {
  background: var(--stone);
  padding: 0;
}
.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--gold);
  color: var(--on-accent);
  padding: 40px 44px;
  transform: translateY(42px);
  position: relative;
  z-index: 2;
}
.footer-cta-badge {
  margin: 0 0 8px;
  font-weight: 800;
  opacity: 0.8;
}
.footer-cta h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  max-width: 16ch;
}
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  background: var(--forest);
  color: var(--white) !important;
  font-weight: 800;
  white-space: nowrap;
}
.footer-cta-btn:hover {
  background: var(--forest-light);
}
.footer {
  background: var(--forest);
  color: rgba(252, 250, 246, 0.68);
  padding: 96px 0 28px;
}
.footer h4 {
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 18px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--white);
}
.footer-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
}
.footer-brand-name {
  display: none;
}
.footer-text {
  line-height: 1.8;
  max-width: 36ch;
}
.footer-links-list a {
  display: inline-block;
  padding: 5px 0;
  color: rgba(252, 250, 246, 0.68);
}
.footer-links-list a:hover {
  color: var(--gold);
}
.footer-social-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 162, 77, 0.18);
  color: var(--white);
}
.footer-social-list a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-social-badge {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(201, 162, 77, 0.18);
}
.footer-bottom-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
}
.footer-copy {
  color: rgba(252, 250, 246, 0.55);
  font-size: 14px;
}

/* Details */
.details-section {
  background: var(--stone);
}
.details-article {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}
.details-hero {
  position: relative;
  overflow: hidden;
}
.details-hero img {
  width: 100%;
  height: clamp(240px, 36vw, 420px);
  object-fit: cover;
  display: block;
}
.details-pill {
  position: absolute;
  inset-inline-start: 20px;
  bottom: 20px;
  background: var(--gold);
  color: var(--on-accent);
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 800;
}
.details-body {
  padding: 2rem;
}
.details-title {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.details-lead,
.details-body p {
  color: var(--ink-soft);
  line-height: 1.9;
}
.details-quote {
  margin: 1.4rem 0;
  padding: 1.1rem 1.2rem;
  background: rgba(201, 162, 77, 0.1);
  border-inline-start: 3px solid var(--gold);
}
.details-quote-label {
  display: block;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 6px;
}
.details-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 1rem;
  padding: 0;
}
.details-list li {
  position: relative;
  padding-inline-start: 22px;
  color: var(--ink-soft);
}
.details-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--gold);
}
.details-step {
  padding: 1.1rem;
  background: var(--stone);
  border: 1px solid var(--line);
}
.details-step h4 {
  font-size: 1rem;
  font-weight: 800;
  margin: 8px 0;
}
.details-step p {
  margin: 0;
  font-size: 0.92rem;
}
.details-step-icon {
  color: var(--gold-deep);
}
.details-side-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 22px;
}
.details-side-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.details-related {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}
.details-related img {
  width: 64px;
  height: 64px;
  object-fit: cover;
}
.details-related:hover {
  color: var(--gold-deep);
}

/* Floating */
.back-to-top {
  position: fixed;
  bottom: 22px;
  inset-inline-end: 18px;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top-btn,
.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 0;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.back-to-top-btn {
  background: var(--forest);
}
.floating-actions {
  position: fixed;
  bottom: 22px;
  inset-inline-start: 18px;
  z-index: 50;
}
.floating-btn-whatsapp {
  background: #25d366;
}
.floating-btn-phone {
  background: var(--gold);
  color: var(--on-accent) !important;
}

.header-section {
  text-align: center;
}
.header-section .section-title {
  margin-inline: auto;
}
