:root {
  --blue: #0073b8;
  --beige: #b79e84;
  --white: #ffffff;
  --text: #111827;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

body {
  font-family: 'Cairo', sans-serif;
  margin: 0;
  background: var(--white);
  color: var(--text);
}

/* ===== HEADER ===== */
.header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
}
.logo {
   width: auto;
  max-width: 200px;
  height: auto;
}
.nav ul {
  list-style: none;
  display: flex;
  gap: 1.2rem;
}
.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}
.nav a:hover {
  color: var(--blue);
}

/* ===== HERO ===== */
.hero {
  background: url("assets/cover.png") center center / cover no-repeat;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.6rem;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.btn {
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  padding: 0.8rem 2rem;
  border-radius: 10px;
  font-weight: 700;
  transition: 0.3s;
}
.btn:hover { background: #005f96; }

/* ===== SECTIONS ===== */
.section { padding: 3rem 1rem; }
.section.alt { background: #f7f7f7; }
h2 { text-align: center; color: var(--blue); margin-bottom: 1.5rem; }

/* ===== HOW STEPS ===== */
.steps {
  display: grid;
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
}
.step {
  background: var(--white);
  border-radius: 10px;
  padding: 1rem;
  box-shadow: var(--shadow);
  display: flex;
  gap: 1rem;
  align-items: center;
}
.step span {
  background: var(--blue);
  color: var(--white);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
}

/* ===== FAQ ===== */
.faq-item {
  background: var(--white);
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.faq-item h4 { color: var(--blue); }

/* ===== CONTACT ===== */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.6rem;
  margin-bottom: 0.8rem;
  border-radius: 8px;
  border: 1px solid #ddd;
}

/* ===== FOOTER ===== */
.footer {
  background: #f0f0f0;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #555;
}

/* ===== FLOATING ACTION BUTTON ===== */
.fab {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 1000;
}
#fab-main {
  background: var(--beige);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
#fab-main img { width: 28px; filter: brightness(0) invert(1); }
.fab-menu {
  position: absolute;
  bottom: 70px;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s ease;
  pointer-events: none;
}
.fab-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.fab-menu a {
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  box-shadow: var(--shadow);
}
.fab-menu a:hover { background: #005f96; }
.fab-menu img { width: 20px; filter: brightness(0) invert(1); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 1rem; }
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    color: var(--blue);
  }

  .nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 1rem;
    position: absolute;
    top: 60px;
    right: 0;
    z-index: 999;
  }

  .nav ul.open {
    display: flex;
  }

  .nav a {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
  }
}
.fab {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 99999 !important;
}
