@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ================= Contact Page Wrapper ================= */
.contact-page {
  padding: 0; /* Remove extra top padding; background handled in wrapper */
  background: #fdfdfd;
  font-family: 'Inter', sans-serif;
  color: #333;
  margin: 0;
}

/* ================= Contact Section Title ================= */
.contact-title {
    font-size: 3rem;
    font-weight: 600;
    margin: 0 auto 15px auto;
    color: #222;
    text-align: center;
    display: block;
    max-width: 100%;
    line-height: 1.2;
    background: linear-gradient(90deg, rgb(15, 48, 118), #0f79aa); /* Add two colors for gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.contact-title::after {
    content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff6600, #ffcc33);
  margin: 10px auto 0;
  border-radius: 3px;
}

/* ================= Contact Section Wrapper ================= */
.contact-section-wrapper {
    background: url('/assets/contact_bg.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    padding: 0;   /* Remove extra top/bottom padding */
    margin: 0;    /* Remove bottom spacing */
}

/* ================= Contact Section ================= */
.contact-section {
  display: flex;
  flex-wrap: nowrap;
  gap: 50px;
  max-width: 1000px;
  width: 100%;
  align-items: stretch;  /* Map & form equal height */
  padding: 40px 20px;    /* Reduced padding */
  margin: 0 auto;
  background: transparent; /* background already on wrapper */
}

/* ---------------- Map ---------------- */
.contact-section .map {
  flex: 1;
  min-width: 350px;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.contact-section .map iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-section .map iframe:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Overlay */
.contact-section .map::before {
  content: "";
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background: rgba(0,0,0,0.2);
  z-index: 0;
  pointer-events: none;
}

/* ---------------- Contact Form ---------------- */
.contact-section .contact-form {
  flex: 1;
  min-width: 350px;
  background: rgba(255, 255, 255, 0.95);
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Form styling */
.contact-form h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #1e325c;
  text-align: center;
}

.contact-form label {
  font-weight: 600;
  margin-top: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
}

.contact-form button.btn {
  background: #ff6600;
  border: none;
  padding: 14px 25px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  color: #fff;
  transition: 0.3s;
}

.contact-form button.btn:hover {
  background: #e55b00;
}

/* ---------------- Info Cards ---------------- */
.info-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 60px;
}

.info-cards .card {
  background: linear-gradient(135deg, #ffffff, #f1f5ff);
  width: 320px;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.info-cards .card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 35px rgba(0,0,0,0.18);
  background: linear-gradient(135deg, #a2bed6, #cfdaf5);
}

.info-cards .card .icon {
  font-size: 30px;
  color: #ff6600;
  margin-bottom: 20px;
  background: rgba(255,102,0,0.1);
  padding: 20px;
  border-radius: 20%;
  display: inline-block;
}

.info-cards h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1e325c;
}

.info-cards p {
  font-size: 15px;
  color: #555;
}

.info-cards a {
  color: #0073e6;
  text-decoration: none;
  font-weight: 600;
}

.info-cards a:hover {
  text-decoration: underline;
}

/* ---------------- Location Cards ---------------- */
.location-cards {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(180deg, #f9fbff, #eef3ff);
  font-family: "Poppins", sans-serif;
}

.location-cards .section-title {
  font-size: 3rem;
    font-weight: 600;
    margin: 0 auto 15px auto;
    color: #222;
    text-align: center;
    display: block;
    max-width: 100%;
    line-height: 1.2;
    background: linear-gradient(90deg, #0f3076);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.location-cards .section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #ff6600;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.location-cards .cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.location-cards .card {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px 20px;
  width: 320px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  text-align: left;
}

.location-cards .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.flag-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.flag {
  width: 36px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.location-cards h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1e325c;
  margin: 0;
}

.location-cards p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.location-cards p strong {
  color: #1e325c;
  font-weight: 700;
}

.location-cards a {
  color: #ff6600;
  text-decoration: none;
}

.location-cards a:hover {
  text-decoration: underline;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 1000px) {
  .contact-section {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .contact-section .map,
  .contact-section .contact-form {
    min-width: 90%;
    height: auto;
  }

  .contact-section .map iframe {
    height: 300px;
  }
}

/* ---------------- Footer Section ---------------- */
.footer-section {
  background: #1e325c;
  color: #fff;
  padding: 40px 20px 20px 20px;
  font-family: 'Inter', sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
}

.footer-column {
  flex: 1;
  text-align: center;
}

.footer-links {
  text-align: left;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.footer-links ul li {
  margin-bottom: 8px;
}

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

.footer-links ul li a:hover {
  color: #f7c600;
}

.center-logo img {
  max-width: 100px;
}

.footer-social {
  text-align: right;
}

.footer-social a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #0073b1;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  font-size: 14px;
  color: #ccc;
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-links, .footer-social {
    text-align: center;
  }
}
