.contact-hero {
  position: relative;
  height: 280px;
  background: url("../images/contact-banner1.png") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

/* ===== QUICK CONTACT INFO ===== */

.quick-contact {
  padding: 60px 20px;
  background: #f9fbff;
  text-align: center;
}

.contact-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* BOX */
.contact-box {
  background: #ffffff;
  padding: 30px 22px;
  border-radius: 18px;
  border-bottom: 5px solid #19b5e5;   /* BLUE default */
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.contact-box:hover {
  border-bottom-color: #b51f1f;       /* RED hover */
  transform: translateY(-6px);
}

/* ICON */
.contact-box .icon {
  font-size: 34px;
  margin-bottom: 12px;
}

/* TITLE */
.contact-box h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

/* TEXT */
.contact-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.contact-box a {
  color: #19b5e5;
  font-weight: 600;
  text-decoration: none;
}

.contact-box a:hover {
  color: #b51f1f;
}

/* WHATSAPP CTA */
.whatsapp-cta {
  margin-top: 40px;
}

.whatsapp-cta a {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 40px;
  background: #19b5e5;      /* BLUE */
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.whatsapp-cta a:hover {
  background: #b51f1f;      /* RED */
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CONTACT FORM ALT DESIGN ===== */

.contact-form-alt {
  padding: 80px 20px;
  background: #f9fbff;
}

.form-layout {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

/* LEFT FORM */
.form-left {
  background: #ffffff;
  padding: 45px 40px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.form-left h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
}

.form-left p {
  font-size: 15.5px;
  color: #555;
  margin-bottom: 30px;
}

.form-left input,
.form-left select,
.form-left textarea {
  width: 100%;
  padding: 14px 15px;
  margin-bottom: 18px;
  border-radius: 8px;
  border: 1.8px solid #ddd;
  font-size: 15px;
}

.form-left input:focus,
.form-left select:focus,
.form-left textarea:focus {
  border-color: #19b5e5;
  outline: none;
}

/* BUTTON */
.form-left button {
  width: 100%;
  padding: 14px;
  border-radius: 40px;
  border: none;
  background: #19b5e5;   /* BLUE */
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.form-left button:hover {
  background: #b51f1f;   /* RED */
}

/* RIGHT INFO */
.form-right {
  padding: 30px;
}

.form-right h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.form-right ul {
  list-style: none;
  padding: 0;
}

.form-right li {
  font-size: 15.5px;
  color: #444;
  margin-bottom: 14px;
}

/* SUCCESS */
.form-success {
  display: none;
  margin-top: 15px;
  color: #2e7d32;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .form-layout {
    grid-template-columns: 1fr;
  }

  .form-right {
    text-align: center;
  }
}

/* ===== GOOGLE MAP SECTION ===== */

.map-section {
  padding: 70px 20px;
  background: #f9fbff;
  text-align: center;
}

.section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

/* MAP */
.map-wrapper {
  max-width: 1100px;
  margin: auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* CTA */
.map-cta {
  margin-top: 30px;
}

.map-cta a {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 40px;
  background: #19b5e5;    /* BLUE default */
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.map-cta a:hover {
  background: #b51f1f;    /* RED hover */
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .map-wrapper iframe {
    height: 300px;
  }
}


/* ===== DEPARTMENT CONTACT ===== */

.dept-contact {
  padding: 70px 20px;
  background: #ffffff;
  text-align: center;
}

.section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 45px;
}

/* GRID */
.dept-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* BOX */
.dept-box {
  background: #f9fbff;
  padding: 32px 26px;
  border-radius: 18px;
  border-top: 5px solid #19b5e5;   /* BLUE default */
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.dept-box:hover {
  border-top-color: #b51f1f;       /* RED hover */
  transform: translateY(-6px);
}

.dept-box h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.dept-box p {
  font-size: 15px;
  color: #555;
  margin-bottom: 18px;
}

/* ACTIONS */
.dept-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.dept-actions a {
  padding: 10px 22px;
  border-radius: 30px;
  background: #19b5e5;     /* BLUE */
  color: #fff;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 600;
  transition: 0.3s;
}

.dept-actions a:hover {
  background: #b51f1f;     /* RED */
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .dept-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .dept-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CONTACT CTA ===== */

.contact-cta {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f9fbff, #eef6fb);
  text-align: center;
}

.contact-cta h2 {
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 10px;
  color: #1b1b1b;
}

.contact-cta p {
  font-size: 16px;
  color: #555;
  margin-bottom: 28px;
}

/* BUTTONS */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 14px 34px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  background: #19b5e5;     /* BLUE default */
  color: #fff;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #b51f1f;     /* RED hover */
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .contact-cta h2 {
    font-size: 28px;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
  }
}


/* ===== CONTACT FAQ ===== */

.contact-faq {
  padding: 70px 20px;
  background: #ffffff;
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

/* ACCORDION */
.faq-accordion {
  max-width: 900px;
  margin: auto;
}

/* ITEM */
.faq-item {
  margin-bottom: 16px;
  border-radius: 14px;
  overflow: hidden;
}

/* QUESTION */
.faq-question {
  width: 100%;
  padding: 18px 22px;
  background: #19b5e5;      /* BLUE default */
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: 0.3s ease;
}

.faq-question:hover {
  background: #b51f1f;      /* RED hover */
}

/* ACTIVE */
.faq-item.active .faq-question {
  background: #b51f1f;
}

/* ANSWER */
.faq-answer {
  display: none;
  padding: 18px 22px;
  background: #f9fbff;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ===== SOCIAL MEDIA LINKS ===== */

.social-links {
  padding: 60px 20px;
  background: #f9fbff;
  text-align: center;
}

.section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

/* ICONS */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.social-icons a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #19b5e5;   /* BLUE default */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  transition: 0.3s ease;
}

.social-icons a:hover {
  background: #b51f1f;   /* RED hover */
  transform: translateY(-4px);
}
