 /* ================= QUOTE HERO ================= */
.quote-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  /**background-image: url("../images/contact-hero-bg.jpg");**/
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Overlay */
.quote-hero-overlay {
  position: absolute;
  inset: 0;
  /**background: linear-gradient(
      90deg,
      rgba(15,43,70,0.65),
      rgba(15,43,70,0.55)
    );**/
  background: radial-gradient(circle at right center, rgba(255, 255, 255, 0.08), transparent 45%), linear-gradient(135deg, #173357, #0f2b46);
  z-index: 1;
}

/* Content */
.quote-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  color: #ffffff;
}


/* Pill */
.quote-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 18px;
}

.quote-pill i {
  font-size: 15px;
}


/* Heading */
.quote-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

/* Paragraph */
.quote-hero p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #d7e1eb;
  max-width: 640px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .quote-hero {
    min-height: 480px;
  }

  .quote-hero h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 576px) {
  .quote-hero {
    min-height: 440px;
  }

  .quote-hero h1 {
    font-size: 2rem;
  }

  .quote-hero p {
    font-size: 0.95rem;
  }
}

/* ================= REQUEST QUOTE ================= */
.quote-section {
  padding: 100px 0;
  background: #faf9f7;
  font-family: 'Inter', sans-serif;
}

/* Header */
.quote-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0f2b46;
  margin-bottom: 14px;
}

.quote-header p {
  max-width: 620px;
  margin: 0 auto 50px;
  font-size: 17px;
  color: #5b6b7a;
  line-height: 1.6;
}

/* Card */
.quote-card {
  max-width: 860px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px;
  padding: 44px;
  box-shadow: 0 20px 60px rgba(15, 43, 70, 0.08);
}

/* Inputs */
.quote-card .form-control,
.quote-card .form-select {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #d0d7de;
  font-size: 15px;
}

.quote-card .form-control:focus,
.quote-card .form-select:focus {
  border-color: #173357;
  box-shadow: none;
}

/* Button */
.quote-btn {
  width: 100%;
  background: linear-gradient(135deg, #173357, #0f2b46);
  color: #ffffff;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  border: none;
}

.quote-btn:hover {
  background: #0f2b46;
  color: #ffffff;
}

.btn-custom {
    padding: 10px 26px !important;
}

/* ================= DIRECT CONTACT ================= */
.quote-direct {
  margin-top: 48px;
}

.quote-direct-title {
  font-weight: 600;
  color: #5b6b7a;
}

/* Contact row */
.direct-contact-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 14px 0 10px;
}

/* Individual item */
.direct-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 12px;
  background: #f7f9fc;
  font-weight: 600;
  color: #173357;
  box-shadow: 0 10px 26px rgba(23, 51, 87, 0.16);
  transition: all 0.25s ease;
}

.direct-contact-item i {
  font-size: 18px;
  color: #173357;
}

.direct-contact-item a {
  text-decoration: none;
  color: inherit;
}

/* Hover */
.direct-contact-item:hover {
  /**transform: translateY(-2px);**/
  box-shadow: 0 10px 26px rgba(23, 51, 87, 0.16);
}

.direct-contact-item.whatsapp i {
  color: #173357;
}

/* Footer note */
.quote-direct-note {
  display: block;
  margin-top: 30px;
  color: #6b7c8f;
  font-size: 14px;
}

/* Mobile */
@media (max-width: 576px) {
  .direct-contact-wrap {
    flex-direction: column;
    align-items: center;
  }
}
