/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* Header */
header {
  background-color: #1f203a;
  color: #fff;
  padding: 20px 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

nav ul li a {
  color: #fff;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  border-color: #f9d342;
}

/* Hero Image */
.hero-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
}

/* Contact Info Cards */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
  background-color: #fff;
}

.contact-info .card {
  background: #f0f0f0;
  padding: 25px;
  width: 300px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.contact-info .card:hover {
  transform: translateY(-5px);
}

.contact-info .icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

/* Form & Map Section */
.contact-form-map {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
  background-color: #eee;
}

.form-box {
  background: #fff;
  padding: 30px;
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form-box h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: #1f203a;
}

.form-box label {
  display: block;
  margin: 15px 0 5px;
  font-weight: 600;
}

.form-box input,
.form-box textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  resize: vertical;
}

.form-box textarea {
  min-height: 100px;
}

.form-box button {
  margin-top: 20px;
  padding: 12px;
  background-color: #1f203a;
  color: white;
  border: none;
  width: 100%;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-box button:hover {
  background-color: #3b3d5c;
}

/* Map */
.map-box iframe {
  width: 100%;
  max-width: 500px;
  height: 400px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Footer */
footer {
  background: #1f203a;
  color: white;
  text-align: center;
  padding: 20px;
}

footer .social {
  margin-top: 10px;
}

footer .social a {
  color: #f9d342;
  margin: 0 8px;
  font-weight: 600;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
    align-items: center;
  }

  .contact-form-map {
    flex-direction: column;
    align-items: center;
  }

  nav ul {
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
  }
}