/* =========================
   CONTACT HERO SECTION
========================= */

.contact-hero {
  width: 100%;
  padding: 100px 20px;
  text-align: center;

  /* Background Gradient */
background: linear-gradient(135deg, #0f172a, #1b4f9c);

  color: #fff;
  position: relative;
  overflow: hidden;
}

/* 🔥 Glow effect */
.contact-hero::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.1);
  top: -100px;
  left: -100px;
  border-radius: 50%;
  filter: blur(80px);
}

.contact-hero::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.1);
  bottom: -100px;
  right: -100px;
  border-radius: 50%;
  filter: blur(80px);
}

/* TITLE */
.contact-hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

/* SUBTEXT */
.contact-hero p {
  font-size: 18px;
  opacity: 0.9;
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 768px) {

  .contact-hero {
    padding: 70px 15px;
  }

  .contact-hero h1 {
    font-size: 28px;
  }

  .contact-hero p {
    font-size: 15px;
  }

}

/* =========================
   🔥 CONTACT CREATIVE SECTION
========================= */

.contact-creative {
  padding: 80px 20px;
  background: #f5faff;
}

/* WRAPPER */
.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* ================= LEFT ================= */

.contact-left h2 {
  font-size: 32px;
  color: #1b4f9c;
  margin-bottom: 10px;
}

.contact-left p {
  color: #555;
  margin-bottom: 25px;
}

/* CONTACT BOX */
.contact-box {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding: 18px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

/* ICON */
.contact-box i {
  font-size: 22px;
  color: #00b894;
  min-width: 40px;
}

/* TEXT */
.contact-box h4 {
  margin-bottom: 5px;
  color: #1b4f9c;
}

.contact-box p {
  margin: 0;
  color: #555;
  font-size: 14px;
}

/* HOVER 🔥 */
.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ================= RIGHT ================= */

.contact-right {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* TITLE */
.contact-right h3 {
  margin-bottom: 20px;
  color: #1b4f9c;
}

/* INPUTS */
.contact-right input,
.contact-right textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: 0.3s;
}

/* FOCUS EFFECT 🔥 */
.contact-right input:focus,
.contact-right textarea:focus {
  border-color: #00b894;
  outline: none;
  box-shadow: 0 0 8px rgba(0,184,148,0.2);
}

/* TEXTAREA */
.contact-right textarea {
  min-height: 120px;
  resize: none;
}

/* BUTTON */
.contact-right button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(90deg, #1b4f9c, #00b894);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

/* BUTTON HOVER */
.contact-right button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-right {
    margin-top: 20px;
  }

}

/* =========================
   WORKING HOURS (CENTER STYLE)
========================= */

.hours {
  max-width: 500px;
  margin: 40px auto;   /* 🔥 center */

  padding: 25px;
  border-radius: 15px;

  background: #ffffff;
  border: 1px solid #e5e7eb;

  text-align: center;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

/* HOVER */
.hours:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* TITLE */
.hours h4 {
  font-size: 18px;
  color: #1b4f9c;
  margin-bottom: 10px;
}

/* TEXT */
.hours p {
  font-size: 14px;
  color: #555;
  margin: 5px 0;
}

/* ICON */
.hours h4::before {
  content: "⏰";
  margin-right: 8px;
}

/* MOBILE */
@media (max-width: 768px) {
  .hours {
    margin: 30px 15px;
  }
}
/* =========================
   🔥 CTA SECTION
========================= */

.cta {
  margin: 60px 20px;
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;

  /* 💎 Gradient Background */
  background: linear-gradient(135deg, #1b4f9c, #00b894);

  color: #fff;
  position: relative;
  overflow: hidden;
}

/* ✨ Glow effect */
.cta::before,
.cta::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  filter: blur(80px);
}

.cta::before {
  top: -80px;
  left: -80px;
}

.cta::after {
  bottom: -80px;
  right: -80px;
}

/* TITLE */
.cta h2 {
  font-size: 32px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

/* BUTTON */
.cta a {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 30px;

  background: #fff;
  color: #1b4f9c;
  font-weight: 600;
  text-decoration: none;

  transition: 0.3s;
  position: relative;
  z-index: 2;
}

/* HOVER 🔥 */
.cta a:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* MOBILE */
@media (max-width: 768px) {

  .cta {
    padding: 40px 15px;
  }

  .cta h2 {
    font-size: 22px;
  }

}
.form-note {
  font-size: 12px;
  color: #888;
  margin-top: 10px;
  text-align: center;
}

#submitBtn {
  position: relative;
}

#btnLoader {
  font-size: 14px;
}