body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0b0f14;
  color: white;
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  background: #0f1620;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  z-index: 1000;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 40px;
}

.nav-links {
  display: flex;
  gap: 15px;
}

.nav-links a {
  color: white;
  text-decoration: none;
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #141a22;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 10px;
  }

  .nav-links.active {
    display: flex;
  }
}

/* HERO (FIXED - NO CROPPING, NO BREAKING) */
.hero {
  position: relative;

  width: 100%;
  aspect-ratio: 16 / 9;

  background: url("assets/logo.png") center/contain no-repeat;
  background-color: #0b0f14;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  margin-top: 70px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.tagline {
  font-size: 18px;
  opacity: 0.9;
}

/* BUTTONS */
.btn {
  padding: 10px 15px;
  margin: 5px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
}

.primary {
  background: #ff8c2a;
  color: black;
}

.secondary {
  background: #1b2633;
  color: white;
}

/* SECTIONS */
.section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

.dark {
  background: #111821;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

/* CARD */
.card {
  background: #1a2430;
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

/* CONTACT BUTTONS */
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* FLOATING CALL */
.floating-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ff8c2a;
  color: black;
  font-size: 24px;
  padding: 15px;
  border-radius: 50%;
  text-decoration: none;
  z-index: 999;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 20px;
  background: #0f1620;
}

/* MODAL (FIXED - MUST START HIDDEN) */
.modal {
  display: none;              /* IMPORTANT: must be hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* when active */
.modal.active {
  display: flex;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 30px;
  cursor: pointer;
  z-index: 10000;
}

.modal.active {
  display: flex;
}