html, body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background-color: #f4f6f9;
  color: #222;
  line-height: 1.6;
}

header {
  background: #102a43;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.logo {
  font-weight: 600;
  font-size: 1.4em;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 500;
}

nav a:hover,
nav a.active {
  color: #f2a154;
}

.btn {
  background: #f2a154;
  color: #0d1b2a;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
  font-weight: 500;
}

.btn:hover {
  background: #f7b86d;
}

.contact-hero {
  background: url("../images/contact-bg.jpg") center/cover no-repeat;
  height: 60vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 26, 44, 0.65);
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.hero-text p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.contact-info {
  text-align: center;
  padding: 80px 10%;
}

.contact-info h2 {
  color: #102a43;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.info-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px 20px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

.info-card h3 {
  color: #f2a154;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.info-card p {
  font-size: 0.95rem;
  color: #333;
}

.contact-form-section {
  text-align: center;
  padding: 80px 10%;
  background: #fff;
  border-top: 1px solid #eee;
}

.contact-form-section h2 {
  color: #102a43;
  font-size: 2rem;
  margin-bottom: 30px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #f2a154;
  box-shadow: 0 0 6px rgba(242, 161, 84, 0.3);
  outline: none;
}

.contact-form button {
  background: #102a43;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: #f2a154;
  color: #0d1b2a;
}

.map-section {
  text-align: center;
  padding: 80px 10%;
  background: #f4f6f9;
}

.map-section h2 {
  color: #102a43;
  font-size: 2rem;
  margin-bottom: 25px;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

#map {
  height: 400px;
  width: 100%;
  border-radius: 10px;
  border: 1.5px solid #d6d9de;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-top: 25px;
  transition: box-shadow 0.3s ease;
}

#map:hover {
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

footer {
  background: #0d1b2a;
  color: #fff;
  text-align: center;
  padding: 25px 10px;
  font-size: 0.9em;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .contact-info,
  .contact-form-section,
  .map-section {
    padding: 60px 6%;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

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

  .info-card {
    width: 90%;
  }

  .contact-form {
    width: 100%;
  }
}
