
:root {
  --bg: #0d1015;
  --surface: #121721;
  --surface-2: #171d29;
  --text: #f4f7fb;
  --muted: #b7c0cf;
  --gold: #c9a76a;
  --gold-2: #e0c48c;
  --line: rgba(255,255,255,.09);
  --shadow: 0 22px 50px rgba(0,0,0,.28);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', 'Cairo', sans-serif;
  background: #07111d url('images/main-background.jpg') center center / cover fixed no-repeat;
  color: var(--text);
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, rgba(4,10,18,.9), rgba(7,33,58,.78) 48%, rgba(9,14,22,.9));
  z-index: -2;
}
.page-bg {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 18% 22%, rgba(23,125,255,.18), transparent 24%),
              radial-gradient(circle at 82% 18%, rgba(201,167,106,.18), transparent 22%),
              radial-gradient(circle at 80% 76%, rgba(0,214,201,.1), transparent 24%);
  z-index: -1;
  pointer-events: none;
}
.page-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .18;
  pointer-events: none;
  z-index: -1;
  animation: floatGlow 14s ease-in-out infinite;
}
.glow-1 { top: 12%; left: -100px; background: rgba(18, 124, 255, .8); }
.glow-2 { right: -120px; bottom: 8%; background: rgba(201, 167, 106, .65); animation-delay: -6s; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button { font: inherit; }
.container { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 92px 0; }
.section-alt { background: rgba(255,255,255,.025); }
.section-tag, .eyebrow, .folder-label {
  text-transform: uppercase; letter-spacing: .18em; color: var(--gold-2); font-size: .76rem; font-weight: 700;
}
.section-head { max-width: 720px; margin-bottom: 34px; }
.section-head h2, .section-copy h2 { font-size: clamp(2rem, 5vw, 3.3rem); margin: 10px 0 16px; line-height: 1.08; }
.section-subtext, .section-copy p, .service-card p, .feature-card li, .contact-card span, .contact-card p, .folder-head p { color: var(--muted); }

.site-header {
  position: sticky; top: 0; z-index: 40; backdrop-filter: blur(16px);
  background: rgba(10,13,18,.72); border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 82px; }
.brand { display: flex; align-items: center; gap: 14px; font-weight: 800; }
.brand-logo { width: 54px; height: 54px; object-fit: cover; border-radius: 50%; border: 2px solid rgba(201,167,106,.45); }
.brand span { display: block; color: var(--muted); font-size: .78rem; letter-spacing: .24em; }
.nav { display: flex; align-items: center; gap: 22px; }
.nav a { color: var(--muted); font-weight: 600; }
.nav a:hover { color: var(--text); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.lang-switcher { display: flex; gap: 6px; padding: 6px; background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: 999px; }
.lang-switcher button {
  border: 0; background: transparent; color: var(--muted); padding: 8px 12px; border-radius: 999px; cursor: pointer; font-weight: 700;
}
.lang-switcher button.active { background: var(--gold); color: #111; }
.menu-btn { display: none; border: 1px solid var(--line); background: rgba(255,255,255,.04); color: var(--text); border-radius: 12px; padding: 10px 12px; }

.hero {
  position: relative; overflow: hidden; padding: 84px 0 70px;
  background: transparent;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/main-background.jpg') center center / cover no-repeat;
  transform: scale(1.04);
  filter: brightness(.62) contrast(1.08) saturate(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.06) 42%, rgba(255,255,255,0) 58%);
  transform: translateX(-130%) skewX(-18deg);
  animation: heroShine 8s linear infinite;
  pointer-events: none;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,6,10,.92) 10%, rgba(5,6,10,.62) 55%, rgba(5,6,10,.18) 100%); z-index: 0;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 34px; align-items: center; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); line-height: .96; margin: 14px 0 18px; max-width: 780px; }
.hero-text { color: var(--muted); font-size: 1.05rem; max-width: 660px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 30px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; padding: 14px 22px; border-radius: 999px; font-weight: 700; border: 1px solid transparent;
}
.btn-primary { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%); color: #111; }
.btn-secondary { background: rgba(255,255,255,.05); border-color: var(--line); color: var(--text); }
.btn.full { width: 100%; margin-top: 12px; }
.hero-stats { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.hero-stats li, .service-card, .feature-card, .contact-card, .folder-card {
  background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow);
}
.hero-stats li { padding: 18px; }
.hero-stats strong { display: block; font-size: 1.2rem; margin-bottom: 6px; }
.hero-stats span { color: var(--muted); }
.hero-card { border-radius: 28px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); min-height: 560px; }
.hero-card img { height: 100%; object-fit: cover; }

.two-col, .contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: start; }
.feature-card, .contact-card { padding: 30px; }
.feature-card h3, .contact-card a { margin-top: 0; }
.feature-card ul { margin: 20px 0 0; padding-left: 18px; display: grid; gap: 12px; }
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { padding: 24px; }
.service-card h3 { margin-top: 0; margin-bottom: 10px; }

.project-folders { display: grid; gap: 24px; }
.folder-card { padding: 24px; }
.folder-head { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.folder-head h3 { margin: 8px 0 10px; font-size: 1.7rem; }
.folder-btn {
  border: 1px solid rgba(201,167,106,.4); background: linear-gradient(135deg, rgba(201,167,106,.2), rgba(224,196,140,.12)); color: var(--text);
  border-radius: 999px; padding: 14px 20px; cursor: pointer; font-weight: 700; white-space: nowrap;
}
.folder-btn:hover { border-color: var(--gold-2); transform: translateY(-1px); }
.folder-panel { display: none; margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); }
.folder-panel.open { display: block; }
.project-info { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.project-info span {
  background: rgba(255,255,255,.05); border: 1px solid var(--line); color: var(--muted); padding: 10px 14px; border-radius: 999px; font-size: .94rem;
}
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-card {
  margin: 0; border-radius: 20px; overflow: hidden; border: 1px solid var(--line); background: #0d1118; min-height: 220px;
}
.folder-gallery .gallery-card img { height: 100%; object-fit: cover; aspect-ratio: 4/3; }

.contact-card { display: grid; gap: 18px; }
.contact-card span { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .18em; margin-bottom: 6px; }
.contact-card a { font-size: 1.05rem; font-weight: 700; }


.trusted-section { padding-top: 36px; }
.trusted-head { margin-bottom: 28px; }
.trusted-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.trusted-card {
  display: grid; grid-template-columns: 112px 1fr; gap: 18px; align-items: center;
  padding: 24px; border-radius: 24px; background: rgba(255,255,255,.04); border: 1px solid var(--line); box-shadow: var(--shadow);
}
.trusted-logo-wrap {
  width: 112px; height: 112px; border-radius: 22px; border: 1px solid var(--line); background: rgba(255,255,255,.03);
  display: grid; place-items: center; overflow: hidden; padding: 12px;
}
.trusted-logo { max-width: 100%; max-height: 100%; object-fit: contain; }
.ministry-logo { border-radius: 14px; }
.private-logo { width: 88px; height: 88px; }
.trusted-badge {
  width: 112px; height: 112px; border-radius: 22px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(32,88,180,.28), rgba(32,88,180,.08)); border: 1px solid rgba(96,150,235,.35);
  color: #cfe0ff; font-size: 2rem; font-weight: 800; letter-spacing: .08em;
}
.trusted-copy h3 { margin: 6px 0 10px; font-size: 1.18rem; line-height: 1.2; }
.trusted-copy p { margin: 0; color: var(--muted); }
.trusted-kicker { text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; color: var(--gold-2) !important; font-weight: 700; }
.trusted-card-textonly .trusted-copy h3 { max-width: 26ch; }

.site-footer { border-top: 1px solid var(--line); padding: 22px 0 34px; }
.footer-wrap { display: flex; justify-content: space-between; gap: 18px; color: var(--muted); }
.whatsapp-float {
  position: fixed; right: 20px; bottom: 20px; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: #25D366; color: white; box-shadow: 0 18px 30px rgba(0,0,0,.28); z-index: 50;
}
.whatsapp-float svg { width: 30px; height: 30px; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .hero-grid, .two-col, .contact-grid, .cards-grid, .trusted-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-card { min-height: 420px; }
}
@media (max-width: 820px) {
  .nav {
    position: absolute; right: 16px; top: 88px; display: none; flex-direction: column; align-items: flex-start; width: min(280px, calc(100% - 32px));
    padding: 18px; background: #101521; border-radius: 18px; border: 1px solid var(--line);
  }
  .nav.show { display: flex; }
  .menu-btn { display: inline-block; }
  .folder-head { flex-direction: column; align-items: flex-start; }
  .folder-btn { width: 100%; }
}
@media (max-width: 640px) {
  .hero h1, .section-head h2, .section-copy h2 { max-width: unset; }
  .trusted-card { grid-template-columns: 1fr; }
  .trusted-logo-wrap, .trusted-badge { width: 100%; max-width: 112px; }
  .hero-stats, .gallery-grid { grid-template-columns: 1fr; }
  .footer-wrap { flex-direction: column; }
}


main, .site-header, .site-footer { position: relative; z-index: 1; }
.section, .trusted-section { position: relative; }
.section::before {
  content: '';
  position: absolute;
  inset: 16px 0;
  background: linear-gradient(180deg, rgba(10, 13, 18, .74), rgba(10, 13, 18, .64));
  z-index: -1;
  backdrop-filter: blur(5px);
}
.section > .container { position: relative; z-index: 1; }
.section-alt::before { background: linear-gradient(180deg, rgba(13, 18, 27, .88), rgba(16, 22, 33, .75)); }
.site-header { background: rgba(6,10,16,.62); }
.nav a, .section-subtext, .section-copy p, .service-card p, .feature-card li, .contact-card span, .contact-card p, .folder-head p, .trusted-copy p { text-shadow: 0 1px 0 rgba(0,0,0,.2); }
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 112px 0 74px;
  background: transparent;
}
.hero-overlay {
  background: linear-gradient(92deg, rgba(4,7,12,.92) 12%, rgba(4,7,12,.72) 52%, rgba(4,7,12,.28) 100%);
}
.hero-copy { animation: fadeUp 1s ease both; }
.hero h1 {
  background: linear-gradient(180deg, #ffffff 0%, #eef5ff 55%, #d4dde9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-card-premium {
  position: relative;
  transform: perspective(1200px) rotateY(-8deg) rotateX(2deg);
  transition: transform .5s ease, box-shadow .5s ease;
}
.hero-card-premium:hover { transform: perspective(1200px) rotateY(-2deg) translateY(-8px); }
.hero-card-premium::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255,255,255,.22), transparent 36%, transparent 62%, rgba(255,255,255,.06));
  pointer-events: none;
}
.hero-card-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(12px);
}
.btn {
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: linear-gradient(135deg, #d8b67b 0%, #f4d59d 38%, #d4aa64 100%);
  box-shadow: 0 18px 36px rgba(201,167,106,.24);
}
.btn-secondary { background: rgba(255,255,255,.08); backdrop-filter: blur(10px); }
.pulse-btn { position: relative; overflow: hidden; }
.pulse-btn::after {
  content: '';
  position: absolute;
  inset: -20%;
  background: linear-gradient(100deg, transparent 18%, rgba(255,255,255,.42) 50%, transparent 82%);
  transform: translateX(-120%) skewX(-20deg);
  animation: shimmer 3.4s linear infinite;
}
.service-card, .feature-card, .contact-card, .folder-card, .trusted-card, .material-card, .quotation-box {
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(14px);
}
.cards-grid, .materials-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.material-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  transition: transform .35s ease, border-color .35s ease;
}
.material-card:hover { transform: translateY(-7px); border-color: rgba(224,196,140,.55); }
.material-visual {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.quotation-section::before { background: linear-gradient(180deg, rgba(8,13,22,.88), rgba(8,13,22,.66)); }
.quotation-box {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 28px;
  border: 1px solid rgba(224,196,140,.22);
  position: relative;
  overflow: hidden;
}
.quotation-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(224,196,140,.15), transparent 35%);
  pointer-events: none;
}
.quotation-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; }
.social-links { display: flex; gap: 12px; justify-content: flex-end; }
.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line);
  transition: transform .3s ease, border-color .3s ease;
}
.social-links a:hover { transform: translateY(-4px) scale(1.04); border-color: rgba(224,196,140,.5); }
.social-links img { width: 22px; height: 22px; }
.footer-right { display: flex; align-items: center; gap: 18px; }
.trusted-card-textonly .trusted-logo-wrap { background: rgba(255,255,255,.04); }
@keyframes shimmer {
  0% { transform: translateX(-120%) skewX(-20deg); }
  100% { transform: translateX(120%) skewX(-20deg); }
}
@keyframes floatGlow {
  0%,100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(38px,-28px,0) scale(1.08); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 980px) {
  .materials-grid, .quotation-box, .footer-right { grid-template-columns: 1fr; }
  .footer-right { display: grid; justify-items: start; }
}
@media (max-width: 980px) {
  .hero-grid, .two-col, .contact-grid, .cards-grid, .trusted-grid, .materials-grid, .quotation-box { grid-template-columns: 1fr; }
  .quotation-actions, .social-links { justify-content: flex-start; }
}
@media (max-width: 640px) {
  .materials-grid, .cards-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
}

@keyframes heroZoom {
  0% { transform: scale(1.04) translate3d(0,0,0); }
  100% { transform: scale(1.14) translate3d(0,-10px,0); }
}
@keyframes heroShine {
  0% { transform: translateX(-130%) skewX(-18deg); }
  100% { transform: translateX(160%) skewX(-18deg); }
}


.social-showcase { padding-top: 36px; }
.social-showcase-head { margin-bottom: 28px; }
.social-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.social-video-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}
.social-video-thumb {
  position: relative;
  min-height: 240px;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}
.social-video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,14,24,.08), rgba(9,14,24,.55));
}
.social-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.social-video-card:hover .social-video-thumb img { transform: scale(1.06); }
.social-platform-pill {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(11,18,32,.72);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.social-video-copy {
  display: grid;
  align-content: start;
  gap: 14px;
  padding-top: 20px;
}
.social-video-copy h3 { margin: 0; }
.social-video-copy p { margin: 0; color: var(--muted); }
.social-btn { width: fit-content; }
.social-cta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
@media (max-width: 900px) {
  .social-showcase-grid { grid-template-columns: 1fr; }
}
