/* General */
body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

.text-center {
  text-align: center;
}

.section {
  padding: 4rem 0;
}

.bg-light {
  background: #f8f9fa;
}

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

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

/* Navbar */
.navbar {
  background: rgba(0, 0, 0, 0.7);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
  width: 220px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #3b82f6;
  /* Blue hover */
}

/* Hamburger menu (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 25px;
  background: #fff;
  border-radius: 3px;
}

/* Contact Section */
.contact-section {
  background: url('assets/faq_bg.png') no-repeat center center/cover;
  background-attachment: fixed;
  color: #fff;
  position: relative;
  padding: 80px 20px;
  z-index: 1;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
}

/* Left Side Info */
.contact-info {
  text-align: center;
  flex: 1;
}

.contact-info h2 {
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 60px;
}

.contact-info h2::after {
  content: "";
  display: block;
  width: 220px;
  height: 4px;
  background-color: #007bff;
  margin: 8px auto 0;
  border-radius: 2px;
}

.info-item {
  margin-bottom: 30px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.6;
}

.info-item .icon {
  margin-right: 10px;
  color: white;
  font-size: 18px;
}

/* Social Icons */
.socials {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.socials a {
  display: inline-block;
  margin-right: 15px;
  font-size: 30px;
  color: #fff;
  transition: color 0.3s ease;
}

.socials a:hover {
  color: #5da9ff;
}

/* Right Side Form */
.contact-form {
  flex: 1;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #444;
  border-radius: 6px;
  background: #11161d;
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #5da9ff;
}

.contact-form textarea {
  resize: none;
}

/* Button */
.contact-form button {
  padding: 12px;
  background: #3f66ff;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #2544d2;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    gap: 40px;
  }
}


/* Divider */
/* .divider {
    border: 0;
    height: 1px;
    background: #e5e7eb;
    margin: 3rem 0;
} */

/* Map Section */
.map-section iframe {
  margin: 80px 0;
  width: 100%;
  height: 500px;
  border: 0;
  border-radius: 1rem;
}

/* Responsive container max-widths */
@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  /* .container {
        max-width: 768px;
    } */
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

/* Responsive: mobile */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    height: calc(100vh - 70px);
    width: 100%;
    text-align: center;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.9);
    gap: 2rem;
    padding: 2rem;
    transition: right 0.3s ease;
  }

  .nav-links.open {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .contact-section {
    padding: 80px 20px 0 120px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {

  .navbar {
    padding: 1rem;
  }

  .nav-links {
    width: 100%;
    padding: 1.5rem;
    gap: 1.5rem;
    align-items: center;
  }

  .logo img {
    height: 40px;
    width: 180px;
  }

  .nav-links.open {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .contact-section {
    padding: 80px 20px 0 0;
  }
}

.contact-info h2 {
  font-size: 30px;
  margin-bottom: 40px;
}

.contact-info h2::after {
  width: 160px;
}

.info-item {
  display: block;
  margin-bottom: 20px;
}

.socials {
  margin-top: 20px;
}

.map-section iframe {
  margin: 60px 0;
  height: 340px;


}

@media (max-width: 375px) {
  .contact-section {
    padding: 80px 20px 0 0;
  }
}

/* Very small screens (320px) */
@media (max-width: 320px) {
  .nav-links {
    width: 160px;
    padding: 1rem;
    gap: 1rem;
  }

  .logo img {
    height: 35px;
    width: 150px;
  }
}