:root {
  --bg: #18171b;
  --bg-soft: #222127;
  --bg-card: rgba(38, 35, 43, 0.78);
  --bg-card-solid: #25232a;
  --gold: #c79a4b;
  --gold-light: #f1d18a;
  --cream: #f5ead7;
  --muted: #c8bcae;
  --line: rgba(241, 209, 138, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Tajawal", Arial, sans-serif;
  color: var(--cream);
  background:
    radial-gradient(circle at 12% 8%, rgba(199, 154, 75, 0.18), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(125, 92, 164, 0.14), transparent 30%),
    linear-gradient(180deg, #1b1a20 0%, #17161a 48%, #1e1d22 100%);
  line-height: 1.8;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(22px);
  background: rgba(24, 23, 27, 0.78);
  border-bottom: 1px solid var(--line);
}

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

.brand img,
.site-footer img {
  width: 128px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--gold-light);
}

.header-cta,
.btn,
.package-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.header-cta {
  min-width: 138px;
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--gold), #8b6127);
  color: #1d1710;
  box-shadow: 0 10px 30px rgba(199, 154, 75, 0.23);
}

.header-cta:hover,
.btn:hover,
.package-card a:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: 82px;
}

.hero-media,
.hero-shade,
.promise-bg {
  position: absolute;
  inset: 0;
}

.hero-media img,
.promise-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(24, 23, 27, 0.96) 0%, rgba(24, 23, 27, 0.74) 44%, rgba(24, 23, 27, 0.28) 100%),
    linear-gradient(180deg, rgba(24, 23, 27, 0.15) 0%, #18171b 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-inline-start: auto;
  margin-inline-end: 0;
  padding-block: 110px 70px;
}

.eyebrow,
.section-heading span {
  display: inline-flex;
  color: var(--gold-light);
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  font-size: clamp(46px, 7vw, 88px);
  line-height: 1.07;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero p {
  max-width: 620px;
  color: var(--muted);
  font-size: 20px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.btn {
  padding: 15px 26px;
  border: 1px solid var(--line);
}

.btn.primary {
  color: #21170b;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 18px 45px rgba(199, 154, 75, 0.22);
}

.btn.secondary {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.05);
}

.btn.large {
  min-width: 280px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badges span {
  padding: 9px 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  color: var(--muted);
}

section {
  position: relative;
}

.intro,
.goals-section,
.why-section,
.services-section,
.process-section,
.packages-section,
.value-section,
.numbers-section,
.promise-section {
  padding-block: 92px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
}

.intro-card,
.goal-item,
.feature,
.service-card,
.step-card,
.package-card,
.number-card,
.promise-card {
  border: 1px solid var(--line);
  background: var(--bg-card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.intro-card {
  padding: 30px;
  border-radius: var(--radius-lg);
}

.intro-card.featured {
  background: linear-gradient(135deg, rgba(199, 154, 75, 0.16), rgba(255, 255, 255, 0.04));
}

.card-icon {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--gold-light);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(199, 154, 75, 0.08);
}

.intro-card h2,
.intro-card h3,
.section-heading h2 {
  color: #fff7ea;
}

.intro-card p,
.section-heading p,
.goal-item p,
.service-card p,
.step-card p,
.promise-card p,
.package-card li,
.value-list li,
.number-card span {
  color: var(--muted);
}

.split-grid,
.why-grid,
.value-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 42px;
}

.section-heading.align-start {
  text-align: start;
  margin-inline: 0;
}

.section-heading h2 {
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.2;
  margin-bottom: 14px;
}

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

.goal-item {
  padding: 24px;
  border-radius: var(--radius-md);
}

.goal-item strong {
  display: block;
  color: var(--gold-light);
  font-size: 18px;
  margin-bottom: 8px;
}

.why-image,
.value-image {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.why-image img,
.value-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.why-image::after,
.value-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(24, 23, 27, 0.78));
}

.feature {
  min-height: 86px;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  color: var(--cream);
  font-weight: 700;
}

.feature::before,
.value-list li::before,
.package-card li::before {
  content: "✓";
  color: var(--gold-light);
  margin-inline-end: 8px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.service-card div {
  padding: 24px;
}

.service-card h3,
.step-card h3 {
  font-size: 22px;
  color: #fff7ea;
  margin-bottom: 8px;
}

.process-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(199, 154, 75, 0.06));
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.step-card {
  position: relative;
  padding: 28px 22px;
  border-radius: var(--radius-lg);
}

.step-card span {
  display: inline-flex;
  color: var(--gold-light);
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 12px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.package-card {
  overflow: hidden;
  border-radius: 30px;
}

.package-card.highlighted {
  transform: translateY(-18px);
  border-color: rgba(241, 209, 138, 0.48);
  background: linear-gradient(180deg, rgba(199, 154, 75, 0.13), rgba(38, 35, 43, 0.86));
}

.package-head {
  min-height: 186px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  border-bottom: 1px solid var(--line);
}

.package-head h3 {
  font-size: 30px;
  margin-bottom: 2px;
}

.package-head span {
  display: block;
  color: var(--gold-light);
  font-weight: 800;
  margin-bottom: 12px;
}

.package-head.silver {
  background: linear-gradient(135deg, rgba(200, 200, 205, 0.22), rgba(255, 255, 255, 0.03));
}

.package-head.gold {
  background: linear-gradient(135deg, rgba(199, 154, 75, 0.32), rgba(255, 255, 255, 0.04));
}

.package-head.diamond {
  background: linear-gradient(135deg, rgba(154, 93, 211, 0.25), rgba(255, 255, 255, 0.04));
}

.package-card ul,
.value-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-card ul {
  padding: 26px 30px 8px;
  min-height: 340px;
}

.package-card li,
.value-list li {
  margin-bottom: 10px;
}

.package-card a {
  margin: 20px 30px 30px;
  padding: 13px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold-light);
}

.value-list {
  display: grid;
  gap: 12px;
  font-size: 18px;
}

.numbers-section {
  padding-top: 0;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.number-card {
  min-height: 160px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 26px;
  border-radius: var(--radius-lg);
}

.number-card strong {
  display: block;
  color: var(--gold-light);
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1;
}

.promise-section {
  overflow: hidden;
}

.promise-bg {
  opacity: 0.22;
}

.promise-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #18171b 0%, rgba(24, 23, 27, 0.86) 55%, rgba(24, 23, 27, 0.48) 100%);
}

.promise-card {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 44px;
  border-radius: 34px;
}

.promise-card h2 {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 12px;
}

.promise-card p {
  max-width: 710px;
  font-size: 18px;
  margin-bottom: 0;
}

.contact-box {
  min-width: 280px;
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(37, 35, 42, 0.72);
  box-shadow: var(--shadow);
}

.contact-box strong {
  color: var(--gold-light);
  font-size: 20px;
}

.contact-box a:not(.btn),
.footer-contact a {
  color: var(--cream);
  direction: ltr;
  unicode-bidi: isolate;
}

.contact-box a:not(.btn):hover,
.footer-contact a:hover {
  color: var(--gold-light);
}

.contact-box .btn {
  margin-top: 8px;
  justify-content: center;
}

.footer-contact {
  display: grid;
  gap: 4px;
}

.footer-contact p {
  margin: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #151418;
  padding-block: 30px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--gold-light);
  font-weight: 800;
}

@media (max-width: 1080px) {
  .main-nav {
    display: none;
  }

  .intro-grid,
  .split-grid,
  .why-grid,
  .value-grid,
  .services-grid,
  .packages-grid {
    grid-template-columns: 1fr 1fr;
  }

  .intro-card.featured,
  .section-heading.align-start {
    grid-column: 1 / -1;
  }

  .process-timeline,
  .numbers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-card.highlighted {
    transform: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .header-inner {
    height: 72px;
  }

  .brand img,
  .site-footer img {
    width: 108px;
  }

  .header-cta {
    min-width: auto;
    padding: 9px 14px;
    font-size: 14px;
  }

  .hero {
    min-height: 760px;
    padding-top: 72px;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(24, 23, 27, 0.45), #18171b 78%);
  }

  .hero-content {
    padding-block: 130px 56px;
  }

  .hero p {
    font-size: 17px;
  }

  .intro,
  .goals-section,
  .why-section,
  .services-section,
  .process-section,
  .packages-section,
  .value-section,
  .numbers-section,
  .promise-section {
    padding-block: 62px;
  }

  .intro-grid,
  .split-grid,
  .why-grid,
  .value-grid,
  .goals-list,
  .feature-grid,
  .services-grid,
  .packages-grid,
  .process-timeline,
  .numbers-grid {
    grid-template-columns: 1fr;
  }

  .why-image,
  .value-image {
    min-height: 360px;
  }

  .service-card img {
    height: 220px;
  }

  .package-card ul {
    min-height: auto;
  }

  .promise-card,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-box {
    width: 100%;
  }
}
