/* Reset & global */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #222;
}

/* Header */
header {
  padding: 15px 20px;
  background-color: #000;
  color: #ff6600;
  text-align: center;
}

.logo-container {
  margin-bottom: 10px;
}

.logo {
  max-width: 120px;
  height: auto;
  display: block;
  margin: 0 auto;
}

header h1 {
  margin: 0;
  font-weight: 600;
  font-size: 1.8rem;
}

.top-nav {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-nav a {
  color: #ff6600;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 5px 10px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.top-nav a:hover {
  background-color: #ff6600;
  color: #fff;
  border-radius: 5px;
}

/* Contact container: flex side by side */
.contact-container {
  display: flex;
  flex-wrap: nowrap;
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  gap: 30px;
  align-items: flex-start;
}

/* Form Section */
.form-section {
  flex: 0 0 40%;
  max-width: 40%;
  min-width: 280px;
}

.form-section h2 {
  margin-bottom: 20px;
  color: #ff6600;
}

form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 18px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  resize: vertical;
}

form textarea {
  min-height: 100px;
}

form input[type="submit"] {
  background-color: #ff6600;
  color: white;
  border: none;
  padding: 14px;
  font-size: 1.1rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

form input[type="submit"]:hover {
  background-color: #e65c00;
}

/* Map Section */
.map {
  flex: 0 0 60%;
  max-width: 60%;
  min-width: 350px;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(0,0,0,0.15);
}

.map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
footer {
  background-color: #000;
  color: #ff6600;
  text-align: center;
  padding: 20px 10px;
  margin-top: 40px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

footer nav {
  margin-bottom: 8px;
}

footer a {
  color: #ff6600;
  text-decoration: none;
  font-weight: 600;
}

footer a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-wrap: wrap;
    padding: 0 10px;
  }

  .form-section,
  .map {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: auto;
    height: auto;
    margin-bottom: 30px;
  }

  .map {
    height: 300px;
  }
}
