/* ================= BASE ================= */
/*
body {
  font-family: "Poppins", sans-serif;
  background: #fafafa;
  color: #222;
}
*/

/* ================= LOGO TEXT ================= */

.text-logo-contact {
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  position: relative;
  transition: all 0.4s ease;

  /* Premium Red Gradient */
  background: linear-gradient(90deg, #b30000, #ff1a1a, #cc0000);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;

  /* Soft depth */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.ultra-navbar.scrolled .text-logo-contact {
  background: linear-gradient(90deg, #ff0000, #ff4d4d, #ff0000);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 3px 8px rgba(255, 0, 0, 0.25);
}

/* ================================= */
/* CONTACT HEADER - RED THEME */
/* ================================= */

.contact-header {
  position: relative;
  min-height: 300px;
  padding: 150px 0 80px;
  background: linear-gradient(135deg, #fff5f5, #ffeaea);
  color: #111;
  text-align: center;
  overflow: hidden;
}

.contact-header .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Soft Glow Effects */

.contact-header::before,
.contact-header::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  filter: blur(120px);
}

.contact-header::before {
  top: -120px;
  left: -120px;
  background: rgba(220, 53, 69, 0.25);
}

.contact-header::after {
  bottom: -120px;
  right: -120px;
  background: rgba(220, 53, 69, 0.18);
}

/* Title */

.contact-header .header-title {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  color: #000;
}

/* Accent Line */

.contact-header .header-line {
  width: 70px;
  height: 3px;
  background: #dc3545;
  border-radius: 50px;
  margin: 16px auto 20px;
  transition: width 0.3s ease;
}

.contact-header:hover .header-line {
  width: 100px;
}

/* Subtitle */

.contact-header .header-subtitle {
  font-size: 17px;
  color: #555;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ================================= */
/* MODAL IMAGE */
/* ================================= */

.modal-image-box {
  max-width: 1000px;
  max-height: 90vh;
  margin: auto;
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ================================= */
/* CONTACT SECTION */
/* ================================= */

.contact-section {
  padding: 70px 0;
}

.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* ================================= */
/* FORM */
/* ================================= */

.form-control,
.form-select {
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  border: 1px solid #ddd;
}

.form-control::placeholder {
  color: #999;
}

.form-control:focus,
.form-select:focus {
  box-shadow: 0 0 0 0.15rem rgba(229, 57, 53, 0.25);
  border-color: #e53935;
}

/* ================================= */
/* CONTACT INFO */
/* ================================= */

.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: #e53935;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* ================================= */
/* MAP */
/* ================================= */

.map-box iframe {
  width: 100%;
  height: 380px;
  border: 0;
}

/* ================================= */
/* CTA */
/* ================================= */

.contact-cta {
  background: linear-gradient(135deg, #e53935, #c62828);
  color: #fff;
  padding: 55px 0;
  text-align: center;
}

.contact-cta h3 {
  font-weight: 700;
}

.contact-cta p {
  opacity: 0.95;
}

/* ================================= */
/* RESPONSIVE */
/* ================================= */

@media (max-width: 992px) {
  .contact-header {
    padding: 130px 0 60px;
    min-height: 320px;
  }

  .contact-header .header-title {
    font-size: 32px;
  }

  .contact-header .header-subtitle {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .contact-header {
    padding: 120px 0 60px;
  }

  .contact-header .header-title {
    font-size: 26px;
  }

  .contact-header .header-subtitle {
    font-size: 14px;
  }

  .contact-header .header-line {
    width: 60px;
  }

  .contact-section {
    padding: 55px 0;
  }

  .contact-card {
    padding: 26px;
  }

  .map-box iframe {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .contact-header {
    padding: 110px 0 50px;
  }

  .contact-header .header-title {
    font-size: 24px;
  }

  .contact-header .header-subtitle {
    font-size: 14px;
  }

  .contact-card {
    padding: 22px;
  }

  .contact-cta {
    padding: 45px 0;
  }
}
