/* ═══════════════════════════════════════════════════════════════
   BETAK DEVELOPMENT — style.css
   Palette: Blacks, Charcoals, Greys, Off-whites, Pure White
   Direction: RTL (Arabic)
   ═══════════════════════════════════════════════════════════════ */

/* ── Google Fonts ─────────────────────────────────────────────── */
@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&family=Cairo:wght@300;400;600;700;900&display=swap");

/* ── CSS Variables ────────────────────────────────────────────── */
:root {
  /* Core palette — greys, blacks, whites only */
  --ink-950: #0a0a0a;
  --ink-900: #111111;
  --ink-800: #1c1c1c;
  --ink-700: #2e2e2e;
  --ink-600: #444444;
  --ink-500: #6b6b6b;
  --ink-400: #8f8f8f;
  --ink-300: #b8b8b8;
  --ink-200: #d9d9d9;
  --ink-100: #efefef;
  --ink-50: #f7f7f7;
  --white: #ffffff;

  /* Accent — a single warm off-white gold-ish tone for highlights */
  --accent: #c8b89a;
  --accent-dk: #a89070;

  /* Typography */
  --font-display: "Tajawal", sans-serif;
  --font-body: "Cairo", sans-serif;

  /* Spacing */
  --section-py: 100px;
  --radius: 16px;
  --radius-lg: 28px;

  /* Effects */
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.14);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.22);
  --transition: 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ─────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink-800);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.7;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

/* ── Container ────────────────────────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Section Labels ───────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dk);
  margin-bottom: 14px;
}
.section-label::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.18;
  color: var(--ink-900);
}
.section-title span {
  color: var(--accent-dk);
}
.section-desc {
  color: var(--ink-500);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 560px;
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-dark {
  background: var(--ink-900);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--ink-700);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  color: var(--ink-900);
}
.btn-accent:hover {
  background: var(--accent-dk);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(200, 184, 154, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-700);
  border-color: var(--ink-300);
}
.btn-ghost:hover {
  border-color: var(--ink-900);
  background: var(--ink-900);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Reveal Animations ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 {
  transition-delay: 0.12s;
}
.reveal-delay-2 {
  transition-delay: 0.24s;
}
.reveal-delay-3 {
  transition-delay: 0.36s;
}
.reveal-delay-4 {
  transition-delay: 0.48s;
}

/* ═══════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--transition);
}
#site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.08),
    var(--shadow-sm);
  padding: 14px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-mark {
  width: 46px;
  height: 46px;
  background: var(--ink-900);
  border-radius: 12px;
  display: grid;
  place-items: center;
  transition: var(--transition);
}
#site-header:not(.scrolled) .logo-mark {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.logo-mark svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.6;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: black;
}
.logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: rgb(255, 255, 255);
}
#site-header:not(.scrolled) .logo-text {
  color: var(--white);
}
.logo-sub {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--ink-400);
  letter-spacing: 0.1em;
  line-height: 1;
  margin-top: 2px;
}
#site-header:not(.scrolled) .logo-sub {
  color: rgba(255, 255, 255, 0.6);
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}
#site-header.scrolled .main-nav a {
  color: var(--ink-600);
}
.main-nav a:hover {
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0.15);
}
#site-header.scrolled .main-nav a:hover {
  color: var(--ink-900) !important;
  background: var(--ink-100);
}
.main-nav a.active {
  color: var(--white) !important;
}
#site-header.scrolled .main-nav a.active {
  color: var(--ink-900) !important;
  background: var(--ink-100);
}
.nav-cta-btn {
  margin-right: 12px;
  background: var(--white) !important;
  color: var(--ink-900) !important;
  padding: 10px 24px !important;
  box-shadow: var(--shadow-sm);
}
#site-header:not(.scrolled) .nav-cta-btn {
  background: rgba(255, 255, 255, 0.2) !important;
  color: var(--white) !important;
}
.nav-cta-btn:hover {
  background: var(--accent) !important;
  color: var(--ink-900) !important;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
#site-header.scrolled .burger span {
  background: var(--ink-800);
}
.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  right: 0;
  left: 0;
  background: var(--white);
  padding: 16px 20px 24px;
  box-shadow: var(--shadow-lg);
  flex-direction: column;
  gap: 4px;
  z-index: 999;
  border-top: 1px solid var(--ink-100);
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-700);
  transition: var(--transition);
}
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--ink-900);
  background: var(--ink-50);
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1800&auto=format&fit=crop&q=85")
    center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(10, 10, 10, 0.88) 0%,
    rgba(28, 28, 28, 0.72) 50%,
    rgba(10, 10, 10, 0.5) 100%
  );
}
/* Geometric decorative lines */
.hero-geo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-geo::before {
  content: "";
  position: absolute;
  top: 10%;
  left: -5%;
  width: 55%;
  height: 80%;
  border: 1px solid rgba(200, 184, 154, 0.12);
  border-radius: 40% 60% 60% 40% / 40% 50% 50% 60%;
  transform: rotate(-12deg);
}
.hero-geo::after {
  content: "";
  position: absolute;
  bottom: -10%;
  right: 5%;
  width: 40%;
  height: 60%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 140px 0 100px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200, 184, 154, 0.15);
  border: 1px solid rgba(200, 184, 154, 0.35);
  border-radius: 50px;
  padding: 8px 22px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: hero-pulse 2.2s infinite;
}
@keyframes hero-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(200, 184, 154, 0.2);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(200, 184, 154, 0.05);
  }
}
.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 22px;
}
.hero-heading .line-accent {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(200, 184, 154, 0.7);
}
.hero-heading .line-bold {
  color: var(--white);
}
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  margin-bottom: 44px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 64px;
}
/* Stats row inside hero */
.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 36px;
}
.h-stat {
  flex: 1;
  padding: 0 32px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.h-stat:first-child {
  padding-right: 0;
}
.h-stat:last-child {
  padding-right: 32px;
  border-right: none;
}
.h-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.h-stat-num span {
  color: var(--accent);
  font-size: 1.4rem;
}
.h-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: scroll-drop 2s ease-in-out infinite;
}
@keyframes scroll-drop {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 1;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════════ */
#services {
  padding: var(--section-py) 0;
  background: var(--ink-50);
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}
.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  cursor: pointer;
  transition: var(--transition);
  overflow: hidden;
  border: 1.5px solid var(--ink-100);
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink-900);
  opacity: 0;
  transition: var(--transition);
  border-radius: var(--radius-lg);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::after {
  opacity: 0.35;
}
.service-card-inner {
  position: relative;
  z-index: 1;
}
.service-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--ink-100);
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  transition: var(--transition);
}
.service-card:hover .service-num {
  color: rgba(255, 255, 255, 0.07);
}
.service-icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--ink-100);
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  transition: var(--transition);
  position: relative;
}
.service-card:hover .service-icon-wrap {
  background: rgba(255, 255, 255, 0.12);
}
.service-icon-wrap svg {
  width: 28px;
  height: 28px;
  stroke: var(--ink-700);
  fill: none;
  stroke-width: 1.6;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap svg {
  stroke: var(--white);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 12px;
  transition: var(--transition);
}
.service-card:hover h3 {
  color: var(--white);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--ink-500);
  line-height: 1.8;
  margin-bottom: 28px;
  transition: var(--transition);
}
.service-card:hover p {
  color: rgba(255, 255, 255, 0.62);
}
.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-700);
  transition: var(--transition);
}
.service-arrow svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: var(--transition);
}
.service-card:hover .service-arrow {
  color: var(--accent);
}
.service-card:hover .service-arrow svg {
  transform: translateX(-6px);
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════════ */
#about {
  padding: var(--section-py) 0;
  background: var(--white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.about-image-col {
  position: relative;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-img-float {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 60%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 5px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  top: 32px;
  left: -28px;
  background: var(--ink-900);
  border-radius: 20px;
  padding: 22px 26px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.about-badge-txt {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

.about-text .section-title {
  margin-bottom: 20px;
}
.about-text .section-desc {
  margin-bottom: 28px;
}
.about-text p {
  color: var(--ink-500);
  line-height: 1.85;
  font-size: 0.97rem;
  margin-bottom: 16px;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 32px 0 40px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--ink-50);
  border-radius: 10px;
  display: grid;
  place-items: center;
}
.feature-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--ink-700);
  fill: none;
  stroke-width: 1.8;
}
.feature-text {
  font-size: 0.9rem;
  color: var(--ink-600);
  line-height: 1.6;
  padding-top: 10px;
}
.feature-text strong {
  display: block;
  color: var(--ink-900);
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 0.93rem;
}

/* ═══════════════════════════════════════════════════════════════
   STATS BAND
   ═══════════════════════════════════════════════════════════════ */
.stats-band {
  background: var(--ink-900);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(200, 184, 154, 0.1);
  border-radius: 50%;
}
.stats-band::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.stat-item {
  text-align: center;
  padding: 12px 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-item:last-child {
  border-left: none;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-num sup {
  font-size: 1.4rem;
  color: var(--accent);
  vertical-align: super;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════
   PROJECTS
   ═══════════════════════════════════════════════════════════════ */
#projects {
  padding: var(--section-py) 0;
  background: var(--ink-50);
}
.projects-header {
  text-align: center;
  margin-bottom: 60px;
}
.projects-header .section-desc {
  margin: 16px auto 0;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.project-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.project-card:hover .project-img {
  transform: scale(1.05);
}
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.18) 55%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: var(--transition);
}
.project-card:hover .project-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.28) 60%,
    transparent 100%
  );
}
.project-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.project-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.project-loc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
}
.project-link-btn {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.project-link-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}
.project-card:hover .project-link-btn {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */
#testimonials {
  padding: var(--section-py) 0;
  background: var(--white);
}
.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}
.testimonials-header .section-desc {
  margin: 16px auto 0;
}
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.t-card {
  background: var(--ink-50);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  border: 1.5px solid transparent;
}
.t-card:hover {
  background: var(--ink-900);
  border-color: var(--ink-900);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.t-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}
.t-stars span {
  color: var(--accent);
  font-size: 1.1rem;
}
.t-text {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--ink-600);
  margin-bottom: 28px;
  font-style: italic;
  transition: var(--transition);
}
.t-card:hover .t-text {
  color: rgba(255, 255, 255, 0.65);
}
.t-divider {
  width: 40px;
  height: 2px;
  background: var(--ink-200);
  border-radius: 2px;
  margin-bottom: 24px;
  transition: var(--transition);
}
.t-card:hover .t-divider {
  background: rgba(255, 255, 255, 0.2);
}
.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}
.t-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink-900);
  transition: var(--transition);
}
.t-card:hover .t-name {
  color: var(--white);
}
.t-role {
  font-size: 0.78rem;
  color: var(--ink-400);
  transition: var(--transition);
}
.t-card:hover .t-role {
  color: rgba(255, 255, 255, 0.45);
}

/* ═══════════════════════════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════════════════════════ */
#cta-band {
  padding: 88px 0;
  background: var(--ink-950);
  position: relative;
  overflow: hidden;
}
.cta-deco-1,
.cta-deco-2 {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200, 184, 154, 0.1);
}
.cta-deco-1 {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -100px;
}
.cta-deco-2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: 5%;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}
.cta-text h2 span {
  color: var(--accent);
}
.cta-text p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
}
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════ */
#contact {
  padding: var(--section-py) 0;
  background: var(--ink-50);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-title {
  margin-bottom: 18px;
}
.contact-info p {
  color: var(--ink-500);
  line-height: 1.85;
  margin-bottom: 40px;
  font-size: 0.97rem;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.c-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: var(--ink-900);
  border-radius: 12px;
  display: grid;
  place-items: center;
}
.c-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.7;
}
.c-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: 3px;
}
.c-value {
  font-size: 0.95rem;
  color: var(--ink-800);
  font-weight: 600;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 8px;
}
.contact-form .form-sub {
  font-size: 0.88rem;
  color: var(--ink-400);
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-700);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--ink-200);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink-800);
  background: var(--ink-50);
  outline: none;
  transition: var(--transition);
  direction: rtl;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ink-700);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(30, 30, 30, 0.06);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 16px;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
#footer {
  background: var(--ink-950);
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 56px;
  margin-bottom: 64px;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.42);
  margin: 18px 0 28px;
  max-width: 280px;
}
.social-row {
  display: flex;
  gap: 10px;
}
.soc-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  transition: var(--transition);
  cursor: pointer;
}
.soc-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.soc-btn svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255, 255, 255, 0.65);
  fill: none;
  stroke-width: 1.8;
}
.soc-btn:hover svg {
  stroke: var(--ink-900);
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.42);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a::before {
  content: "";
  width: 14px;
  height: 1px;
  background: var(--ink-600);
  flex-shrink: 0;
  transition: var(--transition);
}
.footer-col ul li a:hover {
  color: var(--accent);
  padding-right: 4px;
}
.footer-col ul li a:hover::before {
  background: var(--accent);
  width: 20px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 14px;
  line-height: 1.6;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}
.footer-bottom-links {
  display: flex;
  gap: 28px;
}
.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}
.footer-bottom-links a:hover {
  color: var(--accent);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .about-inner {
    gap: 52px;
  }
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .about-inner {
    grid-template-columns: 1fr;
  }
  .about-img-float {
    display: none;
  }
  .about-badge {
    left: auto;
    right: -12px;
    top: -12px;
  }
  .t-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-item:nth-child(2) {
    border-left: none;
  }
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-actions {
    justify-content: center;
  }
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  :root {
    --section-py: 70px;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }
  .h-stat {
    flex-basis: 45%;
    border: none;
    padding: 0;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 32px 24px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom-links {
    justify-content: center;
  }
  .hero-heading {
    font-size: clamp(2.4rem, 8vw, 4rem);
  }
  .services-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
