
body::before {
  content: "CSS UPDATED";
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999999;
  background: red;
  color: white;
  padding: 10px 16px;
  font-size: 18px;
  font-family: Arial, sans-serif;
}

:root {
  color-scheme: dark;
  --bg: #0d1a1f;
  --bg-strong: #0a1318;
  --surface: rgba(18, 30, 36, 0.92);
  --surface-solid: #121e24;
  --surface-muted: #1a2b33;
  --line: rgba(212, 175, 100, 0.15);
  --line-strong: rgba(212, 175, 100, 0.28);
  --text: #f0e6d6;
  --muted: #9aada8;
  --teal: #d4af64;
  --teal-soft: #e8c97a;
  --champagne: #d4af64;
  --rose: #c9806a;
  --rose-soft: #3a1f1a;
  --gold-light: #f0d490;
  --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.55);
  --shadow-md: 0 18px 40px rgba(0, 0, 0, 0.4);
  --shadow-sm: 0 12px 24px rgba(0, 0, 0, 0.28);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Tajawal", "Segoe UI", sans-serif;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.12;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'><path d='M120 20c18 25 37 38 57 38-2 25 7 45 28 62-21 17-30 37-28 62-20 0-39 13-57 38-18-25-37-38-57-38 2-25-7-45-28-62 21-17 30-37 28-62 20 0 39-13 57-38z' fill='none' stroke='%23143847' stroke-width='1'/></svg>");
  background-size: 220px 220px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}

section {
  padding: 88px 0;
  scroll-margin-top: 110px;
}

.section-tone {
  background: var(--surface-muted);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 34px;
}

.section-kicker {
  color: var(--champagne);
  font-weight: 800;
  letter-spacing: 0;
}

.section-head h2,
.hero-copy h1 {
  font-family: "Marhey", "Tajawal", sans-serif;
  letter-spacing: 0;
  line-height: 1.25;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible,
.menu-toggle:focus-visible,
.drawer-close:focus-visible,
.float-btn:focus-visible {
  outline: 3px solid rgba(216, 156, 97, 0.35);
  outline-offset: 3px;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--champagne), #c07f49);
  box-shadow: 0 14px 28px rgba(192, 127, 73, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 18px 36px rgba(192, 127, 73, 0.34);
}

.btn-outline {
  color: var(--teal);
  background: rgba(255, 250, 245, 0.78);
  border-color: rgba(255, 250, 245, 0.7);
  box-shadow: inset 0 0 0 1px rgba(20, 56, 71, 0.12);
}

.btn-outline:hover {
  background: #fff;
}

.btn-ghost {
  color: var(--teal);
  background: rgba(216, 156, 97, 0.12);
  border-color: rgba(216, 156, 97, 0.22);
}

.btn-lg {
  min-height: 54px;
  padding-inline: 28px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 18, 22, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(212, 175, 100, 0.15);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px 18px 26px 26px;
  background:
    linear-gradient(180deg, rgba(216, 156, 97, 0.2), rgba(20, 56, 71, 0.08)),
    rgba(255, 250, 245, 0.86);
  border: 1px solid rgba(216, 156, 97, 0.25);
  color: var(--teal);
  font-family: "Marhey", "Tajawal", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1.05rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.86rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-weight: 700;
  font-size: 0.95rem;
}

.nav a {
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--champagne);
}

.header-cta {
  display: flex;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 250, 245, 0.86);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--teal);
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 88vw);
  padding: 20px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  background: linear-gradient(180deg, #fffaf6, #f4e7dc);
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 60;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-brand {
  font-family: "Marhey", "Tajawal", sans-serif;
  font-size: 1.2rem;
}

.drawer-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--teal);
  font-size: 1.8rem;
  line-height: 1;
}

.mobile-nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

.mobile-nav a {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.5);
  font-weight: 700;
}

.mobile-cta {
  display: grid;
  gap: 12px;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 29, 37, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 55;
}

.drawer-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

body.drawer-open {
  overflow: hidden;
}

body.drawer-open .floating-actions {
  opacity: 0;
  pointer-events: none;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 92px 0 84px;
  color: #fff;
  background:
    linear-gradient(
      100deg,
      rgba(9, 28, 36, 0.82) 0%,
      rgba(17, 52, 65, 0.72) 42%,
      rgba(31, 61, 67, 0.4) 64%,
      rgba(255, 220, 186, 0.22) 100%
    ),
    url("images/ChatGPT Image 29 أبريل 2026، 03_23_34 ص.png") center / cover
      no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 20, 27, 0.08), rgba(8, 20, 27, 0.32)),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='320' height='320' viewBox='0 0 320 320'><path d='M160 30c22 31 46 47 72 47-2 32 10 57 36 83-26 26-38 51-36 83-26 0-50 16-72 47-22-31-46-47-72-47 2-32-10-57-36-83 26-26 38-51 36-83 26 0 50-16 72-47z' fill='none' stroke='rgba(255,255,255,0.22)' stroke-width='1.2'/></svg>");
  background-size:
    auto,
    220px 220px;
  mix-blend-mode: screen;
  opacity: 0.3;
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(0, 0.72fr);
  gap: 32px;
  align-items: start;
}

.hero-copy {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--radius-xl);
  background: linear-gradient(
    180deg,
    rgba(17, 45, 56, 0.58),
    rgba(17, 45, 56, 0.34)
  );
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.hero-copy > * {
  opacity: 0;
  transform: translateY(18px);
  animation: hero-rise 0.72s ease forwards;
}

.hero-copy > :nth-child(1) {
  animation-delay: 0.04s;
}

.hero-copy > :nth-child(2) {
  animation-delay: 0.12s;
}

.hero-copy > :nth-child(3) {
  animation-delay: 0.2s;
}

.hero-copy > :nth-child(4) {
  animation-delay: 0.28s;
}

.hero-copy > :nth-child(5) {
  animation-delay: 0.36s;
}

.hero-copy > :nth-child(6) {
  animation-delay: 0.44s;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff8f1;
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-copy h1 {
  font-size: clamp(2.35rem, 4.5vw, 4.6rem);
  text-wrap: balance;
}

.lead {
  max-width: 62ch;
  color: rgba(255, 250, 245, 0.88);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points {
  display: grid;
  gap: 10px;
}

.hero-points li {
  position: relative;
  padding-inline-start: 22px;
  color: rgba(255, 250, 245, 0.92);
}

.hero-points li::before {
  content: "";
  position: absolute;
  top: 12px;
  inset-inline-start: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff2e3, var(--gold-light));
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.09);
}

.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.keyword-cloud span,
.contact-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-weight: 700;
}

/* Hero gallery - 2 columns, portrait cards */
.hero-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
  align-self: start;
}

.gallery-card-large {
  grid-column: 1 / -1;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  height: 200px;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 100, 0.2);
  background: #0d1a1f;
  box-shadow: var(--shadow-lg);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-card-large {
  height: 240px;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background: linear-gradient(180deg, transparent, rgba(5, 10, 14, 0.9));
  pointer-events: none;
}

.gallery-caption {
  position: absolute;
  inset: auto 14px 14px 14px;
  z-index: 1;
  display: grid;
  gap: 3px;
  color: #fff;
}

.gallery-caption strong {
  font-size: 0.95rem;
  color: var(--gold-light);
}

.gallery-caption span {
  color: rgba(255, 240, 210, 0.78);
  font-size: 0.84rem;
}

.signature-strip {
  padding: 34px 0 0;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.strip-grid.strip-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.strip-item {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface-solid);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.strip-item:hover {
  transform: translateY(-2px);
  border-color: var(--champagne);
}

.strip-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.03rem;
  color: var(--text);
}

.strip-item p {
  color: var(--muted);
}

.service-grid,
.package-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
}

.service-clusters {
  display: grid;
  gap: 34px;
}

.service-cluster {
  display: grid;
  gap: 18px;
}

.cluster-head {
  display: grid;
  gap: 8px;
  max-width: 760px;
}

.cluster-head h3 {
  color: var(--champagne);
  font-size: 1.45rem;
}

.cluster-head p {
  color: var(--muted);
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid.service-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-grid.service-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid.service-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
  position: relative;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--surface-solid);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}

.service-card:hover {
  border-color: var(--champagne);
  transform: translateY(-4px);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--champagne), var(--rose));
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  color: var(--text);
}

.service-card p {
  color: var(--muted);
}

.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-grid.package-grid-four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.package-card {
  display: grid;
  grid-template-rows: 240px 1fr;
  overflow: hidden;
  border-radius: 22px;
  background: var(--surface-solid);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.package-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.package-card:hover .package-image {
  transform: scale(1.04);
}

.package-body {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.package-body h3 {
  font-size: 1.32rem;
  color: var(--champagne);
}

.package-body p,
.package-list li {
  color: var(--muted);
}

.package-list {
  display: grid;
  gap: 8px;
}

.package-list li {
  position: relative;
  padding-inline-start: 18px;
}

.package-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 13px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--champagne);
}

.need-grid,
.area-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

.need-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.need-card {
  min-height: 110px;
  display: flex;
  align-items: center;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--surface-solid);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  color: var(--text);
  font-weight: 700;
}

.area-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Showcase / Work section */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 14px;
}

.showcase-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: var(--surface-muted);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.showcase-card.wide {
  grid-column: span 2;
}

.showcase-card.tall {
  grid-row: span 2;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.showcase-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}

.showcase-card:hover img {
  transform: scale(1.06);
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgba(5, 10, 14, 0.88));
  pointer-events: none;
}

.showcase-card figcaption {
  position: absolute;
  inset: auto 16px 14px 16px;
  z-index: 1;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

/* ===== Portfolio Gallery (Work section) ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}

.port-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: var(--surface-muted);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.38s ease,
    border-color 0.3s ease;
}

.port-card.port-wide {
  grid-column: span 2;
}

.port-card.port-tall {
  grid-row: span 2;
}

.port-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  display: block;
}

.port-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.62);
  border-color: rgba(212, 175, 100, 0.5);
}

.port-card:hover img {
  transform: scale(1.08);
}

/* Gradient overlay */
.port-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(5, 10, 14, 0.72) 80%,
    rgba(5, 10, 14, 0.92) 100%
  );
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.38s ease;
}

/* Shimmer on hover */
.port-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(212, 175, 100, 0.06) 50%,
    transparent 70%
  );
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.port-card:hover::after {
  opacity: 1;
}

/* Caption */
.port-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 3;
  padding: 20px 18px 18px;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}

.port-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(212, 175, 100, 0.18);
  border: 1px solid rgba(212, 175, 100, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--gold-light);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.port-card:hover .port-tag {
  background: rgba(212, 175, 100, 0.28);
  border-color: rgba(212, 175, 100, 0.6);
}

/* Portfolio CTA */
.portfolio-cta {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

/* ===== Hero Gallery button ===== */
.btn-gallery {
  color: var(--gold-light);
  background: rgba(212, 175, 100, 0.1);
  border-color: rgba(212, 175, 100, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-gallery:hover {
  background: rgba(212, 175, 100, 0.2);
  border-color: rgba(212, 175, 100, 0.6);
  color: #fff;
}

.testimonial-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.testimonial-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface-solid);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--champagne);
}

.stars {
  margin-bottom: 12px;
  color: var(--champagne);
  font-size: 1.05rem;
  letter-spacing: 0;
}

.testimonial-card p {
  color: var(--text);
}

.client {
  display: inline-block;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 700;
}

.contact {
  padding-bottom: 120px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: 22px;
  align-items: stretch;
}

.contact-copy {
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #0d1f27, #152e38);
  border: 1px solid rgba(212, 175, 100, 0.25);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.contact-copy h2 {
  margin: 8px 0 14px;
  font-family: "Marhey", "Tajawal", sans-serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.3;
}

.contact-copy p {
  color: rgba(255, 250, 245, 0.84);
}

.contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 30px;
  border-radius: var(--radius-xl);
  background: var(--surface-solid);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.contact-label {
  color: var(--muted);
  font-weight: 700;
}

.contact-number {
  font-family: "Marhey", "Tajawal", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--teal);
}

.contact-note {
  color: var(--muted);
}

.contact-handle {
  color: var(--champagne);
  font-weight: 700;
}

.contact-actions {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.faq-item {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--surface-solid);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  position: relative;
  padding-inline-end: 30px;
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  inset-inline-end: 0;
  top: 0;
  color: var(--champagne);
  font-size: 1.35rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin-top: 14px;
  color: var(--muted);
}

.site-footer {
  padding: 30px 0 100px;
  border-top: 1px solid var(--line);
  background: var(--bg-strong);
}

.footer-inner {
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.footer-inner strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.floating-actions {
  position: fixed;
  inset: auto 16px 18px 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  z-index: 35;
  transition: opacity 0.3s ease;
}

.float-btn {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: var(--shadow-md);
}

.float-btn.whatsapp {
  color: #fff;
  background: linear-gradient(135deg, #1a7f66, #0f5b49);
}

.float-btn.call {
  color: var(--teal);
  background: rgba(255, 250, 245, 0.96);
  border: 1px solid rgba(20, 56, 71, 0.12);
}

.toast {
  position: fixed;
  inset: auto 50% 96px auto;
  transform: translateX(50%);
  padding: 12px 16px;
  min-width: 200px;
  border-radius: 16px;
  background: rgba(20, 56, 71, 0.95);
  color: #fff;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
  z-index: 70;
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(50%) translateY(-6px);
}

@keyframes hero-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-gallery {
    grid-template-columns: repeat(3, 1fr);
    max-width: 680px;
    margin: 0 auto;
  }

  .gallery-card {
    height: 180px;
  }

  .gallery-card-large {
    grid-column: 1 / -1;
    height: 200px;
  }

  .strip-grid.strip-grid-four,
  .service-grid,
  .service-grid.service-grid-4,
  .service-grid.service-grid-3,
  .need-grid,
  .area-grid,
  .package-grid,
  .package-grid.package-grid-four,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid.service-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
  }

  .showcase-card.wide,
  .showcase-card.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }

  .port-card.port-wide {
    grid-column: span 2;
  }

  .port-card.port-tall {
    grid-row: span 2;
  }
}

@media (max-width: 979px) {
  section {
    padding: 64px 0;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .hero {
    padding: 60px 0 48px;
  }

  .hero-copy {
    padding: 22px;
  }

  .hero-copy h1 {
    font-size: clamp(1.8rem, 7vw, 3rem);
  }

  .hero-gallery {
    grid-template-columns: repeat(2, 1fr);
    max-width: 500px;
    margin: 0 auto;
  }

  .gallery-card-large {
    grid-column: 1 / -1;
  }

  .strip-grid,
  .strip-grid.strip-grid-four,
  .service-grid,
  .service-grid.service-grid-4,
  .service-grid.service-grid-3,
  .service-grid.service-grid-2,
  .package-grid,
  .package-grid.package-grid-four,
  .need-grid,
  .area-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .package-card {
    grid-template-rows: 200px 1fr;
  }

  .package-image {
    height: 200px;
  }

  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .showcase-card.wide {
    grid-column: 1 / -1;
  }

  .showcase-card.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .port-card.port-wide {
    grid-column: 1 / -1;
  }

  .port-card.port-tall {
    grid-row: span 1;
  }
}

@media (max-width: 720px) {
  body {
    line-height: 1.68;
  }

  .container {
    width: min(94%, var(--container));
  }

  .header-inner {
    min-height: 74px;
  }

  .brand-copy small {
    display: none;
  }

  .hero-layout {
    gap: 18px;
  }

  .hero-copy {
    gap: 16px;
    padding: 20px;
    border-radius: 26px;
  }

  .hero-actions,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .contact-actions .btn,
  .mobile-cta .btn {
    width: 100%;
  }

  .hero-layout {
    gap: 14px;
  }

  .hero-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .gallery-card {
    height: 150px;
  }

  .gallery-card-large {
    height: 170px;
    grid-column: 1 / -1;
  }

  .gallery-caption {
    inset: auto 10px 10px 10px;
  }

  .gallery-caption strong {
    font-size: 0.85rem;
  }

  .gallery-caption span {
    display: none;
  }

  .keyword-cloud {
    display: none;
  }

  .keyword-cloud span,
  .contact-tags span {
    min-height: 34px;
    padding: 7px 14px;
    font-size: 0.92rem;
  }

  .need-card,
  .faq-item {
    padding: 20px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .showcase-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .showcase-card.wide {
    grid-column: 1 / -1;
  }

  .showcase-card.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }

  .port-card.port-wide {
    grid-column: 1 / -1;
  }

  .port-card.port-tall {
    grid-row: span 1;
  }

  .contact-copy,
  .contact-card,
  .strip-item,
  .service-card,
  .package-body,
  .testimonial-card {
    padding: 20px;
  }

  .site-footer {
    padding-bottom: 110px;
  }

  .floating-actions {
    flex-direction: column;
  }

  .toast {
    left: 16px;
    right: 16px;
    bottom: 142px;
    min-width: 0;
    transform: none;
    inset-inline: 16px;
  }

  .toast.is-visible {
    transform: translateY(-6px);
  }
}
