/* ==========================
   ROOT VARIABLES
========================== */
:root {
  --bg: #ffffff;
  --fg: #E88C00;      /* ORANGE */
  --accent: #ffffff; /* WHITE */
  --panel: #f4f4f4;
  --nav-height: 72px;
  --transition: .3s ease;
}

/* ==========================
   GLOBAL RESET
========================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: #111;
  line-height: 1.6;
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ==========================
   NAVBAR
========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: #0a0a0a;
  display: flex;
  align-items: center;
  z-index: 1200;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.nav-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
}

.logo-img {
  height: 36px;
}

/* ==========================
   NAV LINKS
========================== */
.nav-list {
  display: flex;
  gap: 22px;
  list-style: none;
}

.nav-list li {
  position: relative;
}

.nav-list li a {
  color: var(--fg);
  text-decoration: none;
  font-weight: 500;
  padding: 6px 0;
}

/* ==========================
   DROPDOWN (DESKTOP)
========================== */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #0a0a0a;
  border-radius: 8px;
  min-width: 200px;
  padding: 8px 0;
  z-index: 1500;

  /* 🔑 FIX */
  display: none;
  flex-direction: column;
}

.dropdown:hover > .dropdown-menu {
  display: flex;
}

/* FORCE LIST STACK */
.dropdown-menu li {
  width: 100%;
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  width: 100%;
  padding: 12px 18px;
  color: var(--fg);
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
}

/* HOVER */
.dropdown-menu li a:hover {
  background: var(--fg);
  color: #fff;
}

/* ==========================
   HAMBURGER
========================== */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--fg);
  cursor: pointer;
}

/* ==========================
   MOBILE NAV
========================== */
@media (max-width: 700px) {

  .nav-toggle {
    display: block;
  }

  .nav-list {
    position: fixed;
    top: var(--nav-height);
    left: -100%;
    width: 260px;
    height: calc(100% - var(--nav-height));
    background: #0a0a0a;
    flex-direction: column;
    gap: 0;
    padding-top: 16px;
    transition: left var(--transition);
    overflow-y: auto;
    z-index: 1400;
  }

  .nav-list.active {
    left: 0;
  }

  .nav-list li a {
    display: block;
    padding: 14px 20px;
    color: #fff;
  }

  /* MOBILE DROPDOWN */
  .dropdown-menu {
    position: static;
    background: transparent;
    padding: 0;
    border-radius: 0;
    display: none !important;

    /* 🔑 FIX */
    flex-direction: column;
  }

  .dropdown.open > .dropdown-menu {
    display: flex !important;
  }

  .dropdown-menu li a {
    padding: 12px 32px;
    background: #111;
    color: var(--fg);
  }

  .dropdown-menu li a:hover {
    background: var(--fg);
    color: #fff;
  }
}

/* ==========================
   HERO
========================== */
.hero-section-web {
  padding-top: var(--nav-height);
  background: linear-gradient(rgba(0,0,0,.4), rgba(0,0,0,.6)),
              url("../images/hero-web.jpg") center/cover no-repeat;
  color: #fff;
}

.hero-inner {
  padding: 60px 20px;
  max-width: 900px;
}

/* ==========================
   TERMS CONTENT
========================== */
.terms-page {
  padding: 48px 16px;
}

.terms-section {
  background: var(--panel);
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 10px;
}

/* ==========================
   FOOTER
========================== */
.site-footer {
  background: var(--fg);
  color: #fff;
  padding: 48px 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

/* ==========================
   WHATSAPP FLOAT
========================== */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 1600;
}
