/* ══════════════════════════════════════════
   STACKIFY — Stylesheet
   الفونت: Syne (عناوين) + DM Sans (نصوص)
   اللون الرئيسي: --accent = أخضر مائي
   الخلفية: --navy = أزرق داكن جداً
══════════════════════════════════════════ */

/* ── جلب الفونتين من Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ════════════════════════════════
   ROOT VARIABLES — الألوان والخطوط
════════════════════════════════ */
:root {
  --navy: #0a1628;
  --navy-mid: #112240;

  --accent: #00d4aa;
  --accent-dim: rgba(0, 212, 170, 0.12);

  --text-primary: #e8f0fe;
  --text-secondary: #8892b0;
  --text-muted: #4a5568;

  --border: rgba(255,255,255,0.07);

  --card-bg: rgba(255,255,255,0.03);
  --card-hover: rgba(255,255,255,0.06);

  --white: #ffffff;

  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ════════════════════════════════
   RESET
════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* ════════════════════════════════
   BODY
════════════════════════════════ */
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;

  background: var(--navy);
  color: var(--text-primary);

  overflow-x: hidden;
}

/* الصور ما تطلع برا الشاشة */
img {
  max-width: 100%;
  display: block;
}

/* ════════════════════════════════
   NAVBAR
════════════════════════════════ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;

  display: flex;
  justify-content: space-between;
  align-items: center;

  height: 72px;
  padding: 0 5%;

  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(16px);

  border-bottom: 1px solid var(--border);
}

/* اللوقو */
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;

  color: var(--white);
  text-decoration: none;

  letter-spacing: -0.5px;
}

.nav-logo span {
  color: var(--accent);
}

/* روابط الناف */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

nav a {
  text-decoration: none;

  color: var(--text-secondary);

  font-size: 14px;
  font-weight: 400;

  letter-spacing: 0.02em;

  transition: color 0.2s;
}

nav a:hover {
  color: var(--text-primary);
}

/* زر الحجز */
.nav-cta {
  background: var(--accent) !important;
  color: var(--navy) !important;

  padding: 10px 20px;

  border-radius: 8px;

  font-size: 14px !important;
  font-weight: 600 !important;

  transition: opacity 0.2s;
}

.nav-cta:hover {
  opacity: 0.88;
}

/* ════════════════════════════════
   HERO SECTION
════════════════════════════════ */
#home {
  position: relative;

  min-height: 88vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;

  padding: 100px 6% 80px;

  overflow: hidden;
}

/* Glow effect */
#home::before {
  content: '';

  position: absolute;

  width: 600px;
  height: 600px;

  top: -100px;
  right: -100px;

  background: radial-gradient(
    circle,
    rgba(0,212,170,0.08) 0%,
    transparent 70%
  );

  pointer-events: none;
}

.hero-inner {
  width: 100%;
  max-width: 720px;

  position: relative;
  z-index: 2;
}

/* النص الصغير فوق العنوان */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 28px;

  font-size: 12px;
  font-weight: 500;

  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: var(--accent);
}

.hero-eyebrow::before {
  content: '';

  width: 24px;
  height: 1px;

  background: var(--accent);
}

/* العنوان الرئيسي */
h1 {
  font-family: var(--font-display);

  font-size: clamp(42px, 8vw, 72px);
  font-weight: 800;

  line-height: 1.02;
  letter-spacing: -2px;

  color: var(--white);

  margin-bottom: 24px;
}

h1 em {
  font-style: normal;
  color: var(--accent);
}

/* وصف الهيرو */
.hero-sub {
  max-width: 560px;

  margin-bottom: 40px;

  color: var(--text-secondary);

  font-size: 18px;
  font-weight: 300;

  line-height: 1.7;
}

/* أزرار الهيرو */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ════════════════════════════════
   BUTTONS
════════════════════════════════ */
.btn-primary,
.btn-ghost,
.forJob,
button[type="submit"],
.calling {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  border-radius: 10px;

  font-family: var(--font-body);

  cursor: pointer;

  transition: 0.2s;
}

/* زر أساسي */
.btn-primary,
.forJob,
button[type="submit"],
.calling {
  background: var(--accent);
  color: var(--navy);

  border: none;

  padding: 14px 28px;

  font-size: 15px;
  font-weight: 600;
}

.btn-primary:hover,
.forJob:hover,
button[type="submit"]:hover,
.calling:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* زر شفاف */
.btn-ghost {
  background: transparent;

  border: 1px solid var(--border);

  color: var(--text-primary);

  padding: 14px 28px;

  font-size: 15px;
}

.btn-ghost:hover {
  background: var(--card-hover);
  border-color: rgba(255,255,255,0.18);
}

/* ════════════════════════════════
   SECTIONS
════════════════════════════════ */
section {
  padding: 80px 6%;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 16px;

  font-size: 12px;
  font-weight: 500;

  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: var(--accent);
}

.section-label::before {
  content: '';

  width: 20px;
  height: 1px;

  background: var(--accent);
}

.section-title {
  margin-bottom: 16px;

  font-family: var(--font-display);

  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;

  letter-spacing: -1px;

  color: var(--white);
}

.section-desc {
  max-width: 560px;

  margin-bottom: 56px;

  color: var(--text-secondary);

  font-size: 16px;
  line-height: 1.7;
}

/* ════════════════════════════════
   SERVICES
════════════════════════════════ */
#services {
  background: var(--navy-mid);
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));

  gap: 1px;

  border: 1px solid var(--border);
  border-radius: 14px;

  overflow: hidden;
}

.card {
  background: var(--card-bg);

  padding: 40px 36px;

  transition: background 0.25s;
}

.card:hover {
  background: var(--card-hover);
}

.card .icon {
  margin-bottom: 20px;

  font-size: 28px;
}

.card h4 {
  margin-bottom: 10px;

  font-family: var(--font-display);

  font-size: 18px;
  font-weight: 600;

  color: var(--white);
}

.card p {
  color: var(--text-secondary);

  font-size: 14px;
  line-height: 1.6;
}

/* ════════════════════════════════
   ABOUT
════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 80px;
}

.about-block h3 {
  margin-bottom: 12px;

  font-family: var(--font-display);

  font-size: 20px;
  font-weight: 700;
}

.about-block p {
  color: var(--text-secondary);

  font-size: 15px;
  line-height: 1.75;
}

/* ════════════════════════════════
   REVIEWS
════════════════════════════════ */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 20px;
}

.review {
  background: var(--card-bg);

  border: 1px solid var(--border);
  border-radius: 14px;

  padding: 32px 28px;

  transition: border-color 0.2s;
}

.review:hover {
  border-color: rgba(0,212,170,0.25);
}

.stars {
  margin-bottom: 16px;

  color: var(--accent);

  font-size: 14px;

  letter-spacing: 2px;
}

.review p {
  margin-bottom: 20px;

  color: var(--text-secondary);

  font-size: 15px;
  line-height: 1.7;

  font-style: italic;
}

.review h4 {
  color: var(--text-primary);

  font-size: 13px;
  font-weight: 500;
}

/* ════════════════════════════════
   CTA BANNER
════════════════════════════════ */
.cta-banner {
  margin: 0 6% 80px;

  padding: 60px 56px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

  gap: 40px;

  background: var(--accent-dim);

  border: 1px solid rgba(0,212,170,0.2);
  border-radius: 18px;
}

.cta-banner h2 {
  font-family: var(--font-display);

  font-size: 32px;
  font-weight: 700;

  letter-spacing: -0.5px;
}

.cta-banner p {
  margin-top: 8px;

  color: var(--text-secondary);

  font-size: 15px;
}

/* ════════════════════════════════
   CONTACT
════════════════════════════════ */
.contact-info {
  display: flex;
  flex-direction: column;

  gap: 16px;

  margin-top: 36px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;

  color: var(--text-secondary);

  font-size: 15px;

  overflow-wrap: anywhere;
}

.contact-item strong {
  color: var(--text-primary);
}

/* ════════════════════════════════
   FORM PAGE — صفحة الحجز
════════════════════════════════ */

.form-page {
  min-height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 60px 20px;
}

/* كرت الفورم */
.form-card {
  width: 100%;
  max-width: 520px;

  background: var(--navy-mid);

  border: 1px solid var(--border);
  border-radius: 18px;

  padding: 42px 36px;
}

.form-card h2 {
  font-family: var(--font-display);

  font-size: 28px;
  font-weight: 700;

  color: var(--white);

  margin-bottom: 8px;
}

.form-card .form-sub {
  color: var(--text-secondary);

  font-size: 14px;

  margin-bottom: 32px;
}
/* Inputs */
input,
select,
textarea {
  width: 100%;
  min-height: 52px;

  padding: 14px 16px;

  background: rgba(255,255,255,0.04);

  border: 1px solid var(--border);
  border-radius: 10px;

  outline: none;

  color: var(--text-primary);

  font-family: var(--font-body);
  font-size: 15px;

  transition: border-color 0.2s;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(0,212,170,0.5);
}

input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}

input[type="date"],
input[type="time"] {
  color-scheme: dark;
}

/* رسالة الحالة */
#statusMessage {
  min-height: 20px;

  text-align: center;

  font-size: 14px;
}

/* ════════════════════════════════
   CAREER PAGE
════════════════════════════════ */
.career-page {
  padding: 100px 6%;
}

.jobs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));

  gap: 18px;

  margin: 48px 0;
}

.box {
  background: var(--card-bg);

  border: 1px solid var(--border);
  border-radius: 14px;

  padding: 30px 26px;

  transition: 0.2s;
}

.box:hover {
  background: var(--accent-dim);
  border-color: rgba(0,212,170,0.3);
}

.box h2 {
  margin-bottom: 8px;

  font-family: var(--font-display);

  font-size: 18px;
  font-weight: 600;
}

.box h3 {
  color: var(--accent);

  font-size: 13px;
  font-weight: 400;
}

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

  gap: 12px;

  padding: 32px 6%;

  border-top: 1px solid var(--border);
}

footer p {
  color: var(--text-muted);

  font-size: 13px;
}

/* ════════════════════════════════
   HR
════════════════════════════════ */
hr {
  margin: 48px 0;

  border: none;
  border-top: 1px solid var(--border);
}

/* ════════════════════════════════
   RESPONSIVE — TABLET & MOBILE
════════════════════════════════ */
@media (max-width: 768px) {

  /* NAVBAR */
  nav {
    height: auto;

    flex-direction: column;
    align-items: flex-start;

    gap: 18px;

    padding: 18px 6%;
  }

  .nav-links {
    width: 100%;

    flex-wrap: wrap;

    gap: 14px;
  }

  .nav-cta {
    width: 100%;

    display: flex;
    justify-content: center;

    text-align: center;
  }

  /* HERO */
  #home {
    min-height: auto;

    padding: 70px 6% 60px;
  }

  h1 {
    font-size: clamp(44px, 13vw, 62px);

    line-height: 1;
  }

  .hero-sub {
    max-width: 100%;

    font-size: 16px;
  }

  .hero-cta {
    width: 100%;

    flex-direction: column;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
  }

  /* ABOUT */
  .about-grid {
    grid-template-columns: 1fr;

    gap: 32px;
  }

  /* CTA */
  .cta-banner {
    padding: 36px 24px;
  }

  .cta-banner h2 {
    font-size: 26px;
  }

  /* SERVICES */
  .card {
    padding: 28px 24px;
  }

  /* CAREER */
  .career-page {
    padding: 72px 6%;
  }

  .jobs {
    grid-template-columns: 1fr;
  }

  .box {
    padding: 24px 20px;
  }

  .forJob {
    width: 100%;
  }

  /* FORM */
  .form-page {
    padding: 24px 14px;
  }

  .form-card {
    padding: 28px 20px;
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }

  /* FOOTER */
  footer {
    flex-direction: column;
    align-items: flex-start;
  }

}

/* ════════════════════════════════
   SMALL DEVICES
════════════════════════════════ */
@media (max-width: 480px) {

  h1 {
    font-size: 42px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .section-title {
    font-size: 30px;
  }

  .btn-primary,
  .btn-ghost,
  .forJob {
    padding: 13px 18px;

    font-size: 14px;
  }

  .nav-logo {
    font-size: 20px;
  }

  .cta-banner {
    padding: 30px 20px;
  }

}

@media (max-width: 768px) {

  .career-page {
    text-align: center;
  }

  .career-page h1,
  .career-page h2,
  .career-page p {
    text-align: center;
  }

  .box {
    width: 100%;
  }

  .jobs {
    gap: 12px;
  }

}