* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ================= HEADER ================= */
.header {
  position: absolute;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  z-index: 10;
}

.logo img {
  height: 100px;
}

.nav a {
  margin-left: 25px;
  font-size: 14px;
  color: #fff;
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
  z-index: 1001;
}

/* ================= MOBILE MENU ================= */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100%;
  background: #fff;
  padding: 40px;
  transition: right 0.3s ease;
  z-index: 999;
}

.mobile-menu a {
  display: block;
  margin-bottom: 25px;
  font-size: 16px;
  color: #000;
}

.close {
  font-size: 28px;
  font-weight: bold;
  color: #000;
  text-align: right;
  cursor: pointer;
  line-height: 1;
  margin-bottom: 40px;
  display: block;
}

/* ================= HERO ================= */
.hero {
  height: 100vh;
  background: url("../images/bg_main.jpg") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.hero h2 {
  font-size: 50px;
}

/* ================= CONTACT ================= */
.contact-intro {
  max-width: 900px;
  margin: 60px auto 30px;
  padding: 0 20px;
  text-align: center;
  color: #011222cc;
}

.contact-section {
  width: 100%;
  padding: 0 40px;
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid #bbb;
}

.contact-form textarea {
  height: 160px;
  resize: none;
}

.contact-form button {
  padding: 10px 24px;
  border: 1px solid #aaa;
  cursor: pointer;
}

.form-error {
  font-size: 13px;
}

.contact-map {
  min-height: 420px;
  border: 1px solid #ccc;
}

/* ================= FOOTER ================= */
/* .footer {
  background: #111;
  color: #fff;
  padding: 50px 20px 20px;
  margin-top: 80px;
} */

.footer {
  background: url("../images/footer_bg.png") center/cover no-repeat;
  color: #fff;
  padding: 60px 20px 20px;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65); /* adjust if needed */
}

.footer > * {
  position: relative;
  z-index: 1;
}

.footer-heading {
  max-width: 1100px;
  margin: 0 auto 30px;
}

.footer-heading h2 {
  font-size: 22px;
  font-weight: 700;
}

.footer-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.footer h5 {
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 600;
}

.footer p {
  font-size: 14px;
  margin-bottom: 8px;
  color: #ccc;
}

.footer a {
  font-size: 14px;
  color: #ccc;
}

.footer a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
  border-top: 1px solid #222;
  padding-top: 15px;
}

/* Contact lines */
.contact-line {
  display: flex;
  gap: 6px;
  align-items: center;
  white-space: nowrap;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .hamburger {
    display: block;   /* ✅ FIXED */
  }

  .contact-section {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-heading {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .contact-line {
    white-space: normal;
  }

  .hero h2 {
    font-size: 36px;
  }
}