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

body {
  background: #f4f7fa;
  color: #222;
}

header {
  background: #003366;
  color: white;
  padding: 20px;
  text-align: center;
}

header h1 {
  font-size: 35px;
}

header p {
  margin-top: 8px;
  font-size: 18px;
}

nav {
  background: #0055aa;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav a {
  color: white;
  text-decoration: none;
  padding: 15px 25px;
  font-weight: bold;
}

nav a:hover {
  background: #0077ff;
}

.hero {
  background: linear-gradient(135deg, #0066cc, #00b3ff);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.hero h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 25px;
}

.btn {
  background: #ffcc00;
  color: black;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 40px 0;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  color: #003366;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.card i {
  font-size: 45px;
  color: #0077ff;
  margin-bottom: 15px;
}

.card h3 {
  margin-bottom: 10px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  height: 220px;
  object-fit: cover;
}

.speed {
  background: #003366;
  color: white;
  padding: 50px 20px;
  text-align: center;
}

.speed h2 {
  font-size: 35px;
  margin-bottom: 20px;
}

.speed p {
  font-size: 22px;
}

footer {
  background: #111;
  color: white;
  padding: 35px;
  text-align: center;
}

footer a {
  color: white;
  margin: 10px;
  font-size: 26px;
}

.footer-note {
  margin-top: 20px;
}

.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  color: white;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 40px 0;
}

.title {
  text-align: center;
  margin-bottom: 35px;
  color: #003366;
}

.brands {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.brand {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: 0.3s;
}

.brand:hover {
  transform: translateY(-5px);
}

.brand i {
  font-size: 45px;
  color: #0077ff;
  margin-bottom: 10px;
}

.brand h3 {
  font-size: 18px;
}

form {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

label {
  display: block;
  margin-top: 18px;
  font-weight: bold;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px;
  margin-top: 8px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

textarea {
  height: 120px;
  resize: none;
}

button {
  margin-top: 25px;
  width: 100%;
  padding: 15px;
  border: none;
  background: #0077ff;
  color: white;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
}

button:hover {
  background: #0055cc;
}

.note {
  margin-top: 30px;
  padding: 20px;
  background: #eaf4ff;
  border-left: 5px solid #0077ff;
  border-radius: 8px;
}

body.status-page {
  background: #f5f7fb;
}

.container.status-container {
  max-width: 700px;
  margin: 50px auto;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #003366;
}

input {
  width: 100%;
  padding: 15px;
  font-size: 17px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 20px;
}

.result {
  display: none;
  margin-top: 30px;
  padding: 20px;
  border-radius: 10px;
  background: #eef7ff;
  border-left: 6px solid #0077ff;
}

.status {
  font-size: 22px;
  font-weight: bold;
  color: green;
  margin-top: 15px;
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.box {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

.box h2 {
  margin-bottom: 20px;
  color: #003366;
}

.info {
  margin: 18px 0;
  font-size: 18px;
}

.info i {
  width: 35px;
  color: #0077ff;
}

.info a {
  text-decoration: none;
  color: #333;
}

form input,
form textarea {
  width: 100%;
  padding: 14px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

form textarea {
  height: 140px;
  resize: none;
}

.map {
  margin-top: 40px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
  text-align: center;
}

iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 10px;
}

footer a {
  color: white;
  font-size: 28px;
  margin: 10px;
}

.whatsapp-link {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 34px;
  color: white;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
