/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Footlight MT Light','Times New Roman', Times, serif;
}

body, html {
  height: 100%;
  overflow-x: hidden;
}

/* Navbar */
header {
  background: #1a2d50;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 8%;
  height: 70px; /* fixed consistent height */
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 70px;
  height: auto;
  object-fit: contain; /* keeps logo clear */
}

.logo h3 {
  margin-left: 10px;
  color: #fefefe;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px; /* consistent gap between links */
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color:  #ff8400;
}

/* Hamburger for mobile */
.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
  user-select: none;
  z-index: 1100;
}

/* Responsive */
@media (max-width: 900px) {
  .navbar {
    padding: 10px 20px;
    height: 60px;
  }

  .logo img {
    width: 45px;
  }

  .logo h3 {
    font-size: 22px;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: 16px;
  }
}

@media (max-width: 750px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 65px;
    right: 10px;
    width: 150px;
    padding: 12px;
    border-radius: 8px;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-icon {
    display: block;
  }
}


/* Hero Section */
.contact-hero {
  background: url('city-bg.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
  position: relative;
}

.contact-hero .hero-overlay {
  background: rgb(26, 45, 80);
  padding: 60px 30px;
  border-radius: 12px;
  display: inline-block;
  max-width: 800px;
}

.hero-logo {
  max-width: 280px;
  margin-bottom: 10px;
  width: 100%;
}

.contact-hero h1 {
  font-size: 3rem;
  margin: 15px 0;
  color: #ff8400;
}

.contact-hero p {
  font-size: 1.3rem;
  color: #fff;
}

/* Contact Section */
.contact-section {
  background: #fff;
  padding: 70px 20px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: flex-start;
}

/* Left Side Info */
.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  color: #002855;
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.contact-info p {
  margin-bottom: 20px;
  color: #333;
  line-height: 1.6;
  font-size: 1rem;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1rem;
}

.info-item i {
  color: #ff8400;
  font-size: 22px;
  margin-right: 10px;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  margin: 0 8px;
  color: #002855;
  font-size: 22px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ff8400;
}

.office-image img {
  margin-top: 20px;
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Right Side Form */
.contact-form {
  flex: 1;
  min-width: 300px;
  background: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-form h2 {
  color: #002855;
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.contact-form p {
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: #555;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form textarea {
  resize: none;
}

.contact-form button {
  background: #ff8400;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #e67300;
}

/* Team Image */
.team-img {
  margin-top: 20px;
  width: 100%;
  border-radius: 10px;
}

/* Map */
.map-section iframe {
  display: block;
  width: 100%;
  height: 400px;
  border-radius: 10px;
  border: none;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1200px) {
  .contact-hero h1 { font-size: 2.6rem; }
}

@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
    gap: 30px;
  }
  .contact-info, .contact-form {
    width: 100%;
  }
  .office-image img {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 70px 15px;
  }
  .contact-hero h1 { font-size: 2.2rem; }
  .contact-hero p { font-size: 1rem; }
  .hero-logo { max-width: 200px; }
}

@media (max-width: 576px) {
  .contact-hero {
    padding: 50px 15px;
  }
  .contact-hero h1 { font-size: 1.8rem; }
  .contact-hero p { font-size: 0.9rem; }
  .contact-form, .contact-info { padding: 20px; }
  .contact-form h2 { font-size: 1.3rem; }
}

@media (max-width: 400px) {
  .contact-hero .hero-overlay { padding: 40px 15px; }
  .hero-logo { max-width: 160px; }
  .contact-hero h1 { font-size: 1.5rem; }
  .contact-hero p { font-size: 0.85rem; }
  .contact-form button { width: 100%; }
}

/* Footer */
footer {
  background: #002855;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  margin-top: 20px;
}
