/* RESET */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: "Segoe UI", sans-serif;
}

/* ================= BANNER ================= */
/* ================= CONTACT BANNER ================= */

.contact-banner {
  position: relative;
  height: 350px;          /* 🔥 same height as other banners */
  margin-top: 70px;       /* navbar space */
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Banner Image */
.contact-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;      /* image cut aagadhu */
}

/* Overlay */
.contact-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,15,36,0.15),
    rgba(0,0,0,0.5)
  );
}

/* Text */
.contact-banner h1 {
  font-size: 42px;
  font-weight: 700;
  color: white;         /* 🔥 home page orange */
}

.contact-banner p {
  color: #d0d0ff;
  font-size: 15px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .contact-banner {
    height: 200px;
    margin-top: 60px;
  }

  .contact-banner h1 {
    font-size: 28px;
  }

  .contact-banner p {
    font-size: 13px;
  }
}


/* ================= CONTACT SECTION ================= */

.contact-section {
  background: linear-gradient(180deg, #0b0b0f, #0f0f24);
  padding: 80px 0;
}

/* BASE BOX */
.contact-info-box {
  padding: 40px;
  height: 100%;     
}

/* LIGHT BACKGROUND – OUR EMAILING SECTION */
.light-info {
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.95),
    rgba(245,248,255,0.9)
  );
  border-radius: 22px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

/* REMOVE BOX – BANK INFO */
/* .bank-box {
  background: transparent !important;
  box-shadow: none !important;
  padding: 10px !important;
}
.bank-info {
  color: #ff9f1c !important;
} */

/* ORANGE HEADINGS */
.contact-section h3 {
  color: darkblue;
  font-weight: 700;
  margin-bottom: 15px;
}

/* TEXT */
.contact-section {
  padding: 60px 0;
}

.contact-section h3 {
  margin-bottom: 20px;
  font-weight: 600;
}

.contact-section p {
  font-size: 17px;
  line-height: 1.7;
  color: #222;
}

.contact-section a {
  color: #0d6efd;
  text-decoration: none;
}

.contact-section a:hover {
  text-decoration: underline;
}


/* BANK INFO TEXT SIZE */
.bank-box p {
  font-size: 15px;
  line-height: 1.6;
}

/* MAP */
.map-box {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}

.map-box iframe {
  width: 100%;
  height: 350px;
  border: 0;
}
/* ================= ENQUIRY FORM ================= */

.enquiry-box {
  background: linear-gradient(2deg, rgb(0 0 0 / 95%), rgb(12 105 125 / 92%));
  padding: 35px;
  border-radius: 24px;
  box-shadow: 0 30px 55px rgba(0,0,0,0.35);
}

.enquiry-box h3 {
  color: #ffffff;          /* 🔥 home page orange */
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.enquiry-box input,
.enquiry-box textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.enquiry-box input:focus,
.enquiry-box textarea:focus {
  outline: none;
  border-color: #ff9f1c;
  box-shadow: 0 0 0 2px rgba(255,159,28,0.2);
}

/* BUTTON */
.btn-send {
  width: 100%;
  border: none;
  padding: 12px;
  border-radius: 30px;
  background: linear-gradient(135deg, #ff9f1c, #ffb347);
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

.btn-send:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* MOBILE */
@media (max-width: 768px) {
  .enquiry-box {
    padding: 25px;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-banner h1 {
    font-size: 30px;
  }

  .contact-section {
    padding: 50px 0;
  }

  .contact-info-box {
    padding: 25px;
  }

  .map-box iframe {
    height: 260px;
  }
}
