/* ---------------------------------- */
/* Contact Us page — professional redesign
------------------------------------- */

/* Hero banner — bold brand-red gradient with quick-contact chips */
.contact-hero {
  background: linear-gradient(120deg, #e8483b, #d63031 65%);
  padding: 100px 0 60px;
}

.contact-hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
}

.contact-hero h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 800;
  margin: 0 0 18px;
}

.contact-hero .page-banner-crumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 34px;
}

.contact-hero .page-banner-crumbs a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.contact-hero .page-banner-crumbs i {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.contact-hero .page-banner-crumbs span {
  color: rgba(255, 255, 255, 0.85);
}

.contact-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(4px);
  transition: background 0.2s ease, transform 0.2s ease;
}

a.contact-hero-chip:hover {
  background: #fff;
  color: #d63031;
  transform: translateY(-2px);
}

@media (max-width: 575px) {
  .contact-hero {
    padding: 90px 0 40px;
  }

  .contact-hero h1 {
    font-size: 28px;
  }

  .contact-hero-chip {
    font-size: 13px;
    padding: 10px 16px;
  }
}

section.contact-us {
  padding: 90px 0;
  background: #f7f6fb;
}

.contact-map-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(20, 20, 40, 0.12);
  line-height: 0;
}

.contact-map-card iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

.contact-page-grid {
  margin-top: 10px;
}

.contact-page-card,
.contact-info-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(20, 20, 40, 0.08);
  height: 100%;
}

.contact-page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #d63031;
  margin-bottom: 10px;
}

.contact-page-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: #d63031;
  display: inline-block;
}

.contact-page-card h3 {
  font-size: 26px;
  font-weight: 700;
  color: #1e1629;
}

.contact-page-subtitle {
  color: #767676;
  font-size: 14.5px;
}

.contact-page-card .alert {
  border-radius: 8px;
  font-size: 14px;
}

.cp-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 10px;
}

.cp-field--full {
  grid-column: 1 / -1;
}

.cp-icon {
  position: relative;
}

.cp-icon > i {
  position: absolute;
  top: 24px;
  left: 16px;
  transform: translateY(-50%);
  font-size: 15px;
  color: #b5b0c9;
  pointer-events: none;
  z-index: 1;
}

.cp-form .form-control,
.cp-form textarea.form-control {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  background: #f8f8f9;
  font-size: 14px;
  color: #333;
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cp-icon .form-control {
  padding-left: 42px;
}

.cp-form textarea.form-control {
  height: auto;
  padding: 14px 16px;
  resize: vertical;
  min-height: 120px;
}

.cp-form .form-control:focus {
  outline: none;
  border-color: #d63031;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(214, 48, 49, 0.12);
}

.cp-form .form-control::placeholder {
  color: #9a9a9a;
}

.cp-captcha-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cp-captcha-badge {
  flex-shrink: 0;
  height: 50px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f1eef5;
  border: 1px dashed #d0cbe0;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #1e1629;
  letter-spacing: 1px;
}

.cp-captcha-row .form-control {
  flex: 1;
}

.cp-submit-btn {
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #e8483b, #d63031);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(214, 48, 49, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cp-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(214, 48, 49, 0.4);
  color: #fff;
}

/* Contact info card */
.contact-info-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1e1629;
  margin-bottom: 8px;
}

.contact-info-card > p {
  color: #767676;
  font-size: 14px;
  margin-bottom: 26px;
}

.contact-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 14.5px;
  line-height: 1.6;
}

.contact-info-list li i {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(214, 48, 49, 0.1);
  color: #d63031;
  font-size: 15px;
  margin-top: 2px;
}

.contact-info-list li a,
.contact-info-list li span {
  color: #555;
}

.contact-info-list li a:hover {
  color: #d63031;
}

@media (max-width: 991.98px) {
  .contact-page-card,
  .contact-info-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  section.contact-us {
    padding: 50px 0;
  }

  .contact-page-card,
  .contact-info-card {
    padding: 26px;
  }

  .cp-form {
    grid-template-columns: 1fr;
  }

  .contact-map-card iframe {
    height: 260px;
  }
}
