/* =========================================================
   FALAQ HOLDINGS LTD.
   Global Styles
   ========================================================= */

:root {
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --surface: #f8fafc;
  --white: #ffffff;
  --container: 1120px;
}

/* ---------- Reset ---------- */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

/* ---------- Layout ---------- */

.container {
  width: min(var(--container), 92%);
  margin-inline: auto;
}

/* ---------- Header ---------- */

header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  display: inline-block;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.logo span {
  display: block;
  margin-top: -3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
}

nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

nav a {
  color: #374151;
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

nav a:hover {
  opacity: 0.65;
}

/* ---------- Hero ---------- */

.hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  background: var(--surface);
}

.hero-content {
  max-width: 780px;
  padding: 90px 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 25px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.05;
  letter-spacing: -2px;
}

.hero p {
  max-width: 680px;
  margin-bottom: 35px;
  color: #4b5563;
  font-size: 19px;
}

.button {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 6px;
  background: var(--text);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

/* ---------- Sections ---------- */

section {
  padding: 90px 0;
}

.section-title {
  max-width: 700px;
  margin-bottom: 45px;
}

.section-title h2 {
  margin-bottom: 15px;
  font-size: 38px;
  line-height: 1.15;
}

.section-title p {
  color: var(--muted);
  font-size: 17px;
}

/* ---------- About ---------- */

.about {
  background: var(--surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about h2 {
  margin-bottom: 20px;
  font-size: 40px;
  line-height: 1.15;
}

.about p {
  color: #4b5563;
  font-size: 17px;
}

/* ---------- Cards ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.card h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.card p {
  color: var(--muted);
  font-size: 15px;
}

/* ---------- Contact ---------- */

.contact-box {
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
}

.contact-box h2 {
  margin-bottom: 15px;
  font-size: 36px;
  line-height: 1.15;
}

.contact-box p {
  color: var(--muted);
}

/* ---------- Footer ---------- */

footer {
  padding: 30px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
  .nav {
    min-height: 70px;
  }

  nav {
    display: none;
  }

  .hero-content {
    padding: 70px 0;
  }

  section {
    padding: 65px 0;
  }

  .cards,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .section-title h2,
  .about h2,
  .contact-box h2 {
    font-size: 32px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 58px);
    letter-spacing: -1.5px;
  }

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

  .contact-box {
    padding: 28px;
  }
}
