/* Typography */
h1 {
  font-size: 45px !important;
}
h2 {
  font-weight: 500 !important;
  font-size: 43.2px !important;
}
p {
  font-size: 16px !important;
}

/* Buttons */
.action-btn {
  padding: 0 !important;
  margin: 0 !important;
  height: 50px !important;
  width: 50px !important;
  background-color: #000 !important;
  color: #fff !important;
  border: none;
  border-radius: 8px;
  font-size: 20px;
}
.action-btn:hover {
  background-color: #333 !important;
}

/* Inputs */
input[type="checkbox"] {
  transform: scale(1.5) !important;
}
.quote-form input,
.quote-form select,
.form-control {
  border-radius: 8px !important;
  padding: 12px !important;
}

/* Quote Section */
.quote-section {
  background: #f5f7fb;
  padding: 60px 0;
  font-family: Arial, sans-serif;
}
.quote-container {
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}
.quote-form {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  flex: 1;
}
.quote-form button[type="submit"] {
  background: #0078d7;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 18px;
}
.quote-form button[type="submit"]:hover {
  background: #005fa3;
}

/* Results Page */
.price-box {
  background: white !important;
  border: 2px solid #d0d0d0 !important;
  border-radius: 12px !important;
  padding: 35px 50px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  position: relative;
  display: inline-block;
  min-width: 200px;
}
.fixed-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: linear-gradient(135deg, #5cb85c, #4cae4c);
  color: white;
  padding: 10px 40px;
  font-size: 18px;
  font-weight: 600;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.price {
  font-size: 64px !important;
  font-weight: bold !important;
  color: #1a1a4d !important;
  margin: 0;
}

/* Proceed Page */
.section-header {
  background: #003399;
  color: #fff;
  border-radius: 15px;
  padding: 15px 25px;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 25px;
}
.summary-box {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.total-highlight {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0d6efd;
}
.note {
  font-size: 0.9rem;
  color: #6c757d;
}

/* Pay Now Page CSS */

.payment-header {
  background: linear-gradient(
    90deg,
    rgba(52, 143, 255, 0.95),
    rgba(54, 190, 255, 0.9)
  );
  color: #fff;
  padding: 35px 0;
  margin-bottom: 25px;
}
.payment-header .title {
  font-size: 32px;
  font-weight: 700;
}

.payment-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px 50px;
}

.payment-box {
  max-width: 680px;
  margin: 15px auto;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.06);
}
.payment-box-head {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.payment-box-head h5 {
  margin: 0;
  font-weight: 700;
}

.payment-card-logos img {
  height: 28px;
  margin-left: 5px;
}

.payment-box-body {
  padding: 24px;
}

@media (max-width: 576px) {
  .payment-header .title {
    font-size: 26px;
  }
  .payment-card-logos img {
    height: 22px;
  }
}
