/* Amunbet — Dark Premium Egyptian Theme */
:root {
  --bg-primary: #0A0A0A;
  --bg-secondary: #000000;
  --accent-gold-start: #F2C94C;
  --accent-gold-end: #E8A317;
  --accent-gold-bright-start: #FFD700;
  --accent-gold-bright-end: #C9960C;
  --accent-orange: #E8871E;
  --text-primary: #FFFFFF;
  --text-secondary: #B0B0B0;
  --text-muted: #9A9A9A;
  --text-heading-secondary: #C9C9C9;
  --btn-gold: #F0C948;
  --btn-gold-hover: #FFD700;
  --btn-text: #0A0A0A;
  --border-subtle: rgba(255, 255, 255, 0.12);
  --section-gap: 100px;
  --container-max: 1200px;
  --radius-pill: 999px;
  --font-main: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--bg-primary);
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-orange);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-gold-start);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Logo ── */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  height: 42px;
  width: auto;
  display: block;
}

.footer .logo img {
  height: 36px;
}

/* ── Hero Banner ── */
.hero-banner {
  width: 100%;
  background: var(--bg-secondary);
  line-height: 0;
}

.hero-banner a {
  display: block;
}

.hero-banner img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center top;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--btn-gold);
  color: var(--btn-text);
  border-color: var(--btn-gold);
}

.btn--primary:hover {
  background: var(--btn-gold-hover);
  border-color: var(--btn-gold-hover);
  color: var(--btn-text);
  box-shadow: 0 8px 24px rgba(240, 201, 72, 0.25);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--text-primary);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.navbar__nav {
  display: none;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.navbar__nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
}

.navbar__nav a:hover {
  color: var(--text-primary);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar__actions .btn {
  padding: 10px 22px;
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .navbar__nav {
    display: flex;
  }
}

/* ── Hero ── */
.hero {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.hero__content h1 {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero__content h1 .accent {
  color: var(--accent-orange);
  background: linear-gradient(135deg, var(--accent-gold-start), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__content p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 560px;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__visual img {
  max-width: 480px;
  width: 100%;
  filter: drop-shadow(0 20px 60px rgba(232, 135, 30, 0.2));
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .hero__visual {
    justify-content: flex-end;
  }
}

/* ── Sections ── */
.section {
  padding: var(--section-gap) 0;
}

.section--alt {
  background: var(--bg-secondary);
}

.section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-heading-secondary);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  line-height: 1.2;
}

.section__title .accent {
  color: var(--accent-orange);
}

.section p {
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.section p:last-child {
  margin-bottom: 0;
}

.section ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}

.section ul li {
  margin-bottom: 10px;
  color: var(--text-secondary);
}

.section ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.section ol li {
  margin-bottom: 10px;
  color: var(--text-secondary);
}

.section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-heading-secondary);
  margin: 32px 0 16px;
}

/* ── Why Choose / Cards ── */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 32px;
  transition: border-color var(--transition), transform var(--transition);
}

.card:hover {
  border-color: rgba(240, 201, 72, 0.3);
  transform: translateY(-4px);
}

.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 12px;
}

.card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── CTA Banner ── */
.cta-banner {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(232, 135, 30, 0.08), rgba(240, 201, 72, 0.05));
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 28px;
}

/* ── Page Header (inner pages) ── */
.page-header {
  padding: 60px 0 40px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-subtle);
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.page-content {
  padding: 60px 0 var(--section-gap);
}

.page-content .section__title {
  font-size: 1.35rem;
  margin-top: 40px;
}

.page-content .section__title:first-child {
  margin-top: 0;
}

/* ── Disclaimer ── */
.disclaimer {
  padding: 40px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.disclaimer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto;
}

/* ── Footer ── */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 48px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer__brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 320px;
}

.footer__links h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-heading-secondary);
  margin-bottom: 16px;
}

.footer__links ul {
  list-style: none;
  padding: 0;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--accent-gold-start);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
