* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

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

body {
  background: #0a0a0a;
  color: white;
  text-align: center;
}

/* HEADER */
header {
  background: rgba(0,0,0,0.9);
  padding: 15px;
  text-align: center;
}

nav {
  display: flex;
  justify-content: center;
  gap: 15px;
}

nav a, .nav-btn {
  color: white;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #111;
}

.dropdown-content a {
  display: block;
  padding: 10px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* HERO */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.95)),
              url('logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.box {
  background: #1e1e1e;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* CONTACT */
input, textarea {
  width: 80%;
  max-width: 400px;
  padding: 10px;
  margin: 5px;
}

button {
  padding: 10px 20px;
  background: red;
  border: none;
  color: white;
  cursor: pointer;
}

button {
  padding: 12px 20px;
  font-size: 16px;
  margin-top: 10px;
}

/* CALL BUTTON */
.call-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: red;
  color: white;
  padding: 15px;
  border-radius: 50px;
  text-decoration: none;
}

/* MOBILE */
/* MOBILE FIX */
@media (max-width: 768px) {

  header h1 {
    font-size: 20px;
  }

  nav {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  nav a, .nav-btn {
    font-size: 18px;
  }

  .hero {
    height: auto;
    padding: 60px 20px;
    background-size: 80%;
  }

  .hero-content h2 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .grid {
    flex-direction: column;
    align-items: center;
  }

  .box {
    width: 90%;
  }

  input, textarea {
    width: 90%;
  }

  .call-btn {
    padding: 12px 16px;
    font-size: 14px;
  }
  .box a {
  margin-top: auto;
  display: inline-block;
  padding: 10px;
  background: #00f7ff;
  color: black;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
}
}
