/* ==========================================================================
   Char Dham Yatra Budget Calculator Styles (Ghughuti Travel Tools)
   ========================================================================== */

.uk-cdb-container {
  box-sizing: border-box;
  max-width: 1140px;
  margin: 30px auto;
  padding: 28px 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(15, 56, 34, 0.08);
  font-family: inherit;
  color: #2d3748;
}

.uk-cdb-container * {
  box-sizing: border-box;
}

/* Header */
.uk-cdb-header {
  text-align: center;
  margin-bottom: 28px;
}

.uk-cdb-badge {
  display: inline-block;
  background: #eef6f1;
  color: #1a5336;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
  border: 1px solid #c8e6d5;
}

.uk-cdb-title {
  font-size: 28px;
  font-weight: 800;
  color: #1a5336;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.uk-cdb-subtitle {
  font-size: 15px;
  color: #55695d;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.55;
}

/* Two-column layout */
.uk-cdb-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

@media (max-width: 860px) {
  .uk-cdb-layout {
    grid-template-columns: 1fr;
  }
}

/* Form inputs column */
.uk-cdb-inputs {
  background: #fbfdfc;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid #e2ebe5;
}

.uk-cdb-group {
  margin-bottom: 20px;
}

.uk-cdb-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: #1e3a2b;
  margin-bottom: 8px;
}

.uk-cdb-icon {
  margin-right: 6px;
  font-size: 16px;
}

.uk-cdb-val-badge {
  background: #1a5336;
  color: #ffffff;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
}

.uk-cdb-select-wrap {
  position: relative;
}

.uk-cdb-select {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  border-radius: 10px;
  border: 1.5px solid #d2ded7;
  background-color: #ffffff;
  color: #2d3748;
  outline: none;
  transition: all 0.2s ease;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231a5336' d='M1.41 0L6 4.58L10.59 0L12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.uk-cdb-select:focus {
  border-color: #1a5336;
  box-shadow: 0 0 0 3px rgba(26, 83, 54, 0.15);
}

.uk-cdb-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 580px) {
  .uk-cdb-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Range Slider */
.uk-cdb-range {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #dde8e2;
  outline: none;
  accent-color: #1a5336;
  cursor: pointer;
  margin: 10px 0 6px 0;
}

.uk-cdb-range-hints {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #6b8275;
  font-weight: 600;
}

/* Number Stepper */
.uk-cdb-stepper {
  display: flex;
  align-items: center;
  border: 1.5px solid #d2ded7;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
}

.uk-cdb-step-btn {
  background: #f1f7f3;
  border: none;
  color: #1a5336;
  font-size: 18px;
  font-weight: 700;
  width: 44px;
  height: 42px;
  cursor: pointer;
  transition: background 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.uk-cdb-step-btn:hover {
  background: #d8eae0;
}

.uk-cdb-number-input {
  width: 100%;
  border: none;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #1a5336;
  outline: none;
  height: 42px;
  -moz-appearance: textfield;
}

.uk-cdb-number-input::-webkit-outer-spin-button,
.uk-cdb-number-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.uk-cdb-small-hint {
  display: block;
  font-size: 11px;
  color: #718096;
  margin-top: 5px;
}

/* Checkboxes */
.uk-cdb-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #ffffff;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #dbe6e0;
}

.uk-cdb-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #2d3748;
  cursor: pointer;
  user-select: none;
}

.uk-cdb-checkbox-label input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: #1a5336;
  cursor: pointer;
}

/* RIGHT COLUMN: RESULTS */
.uk-cdb-card {
  background: #ffffff;
  border: 1.5px solid #d2ded7;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(15, 56, 34, 0.06);
  position: relative;
}

.uk-cdb-card-badge {
  display: inline-block;
  background: #eef6f1;
  color: #1a5336;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.uk-cdb-price-block {
  text-align: center;
  padding-bottom: 18px;
  border-bottom: 1px solid #eef3f0;
}

.uk-cdb-price-label {
  font-size: 13px;
  font-weight: 600;
  color: #617769;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.uk-cdb-price-large {
  font-size: 38px;
  font-weight: 900;
  color: #1a5336;
  line-height: 1.1;
  margin-bottom: 6px;
}

.uk-cdb-price-per-person {
  font-size: 14px;
  color: #4a5568;
}

.uk-cdb-price-per-person strong {
  color: #1a5336;
}

/* Savings Box */
.uk-cdb-savings-box {
  background: linear-gradient(135deg, #f0f7f3 0%, #e2efe7 100%);
  border: 1px solid #c7dfd2;
  border-radius: 10px;
  padding: 14px 16px;
  margin: 18px 0;
}

.uk-cdb-savings-title {
  font-size: 12px;
  font-weight: 700;
  color: #1a5336;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.uk-cdb-savings-grid {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.uk-cdb-savings-col {
  display: flex;
  flex-direction: column;
}

.uk-cdb-savings-label {
  font-size: 11px;
  color: #4a5568;
}

.uk-cdb-savings-diy {
  font-size: 15px;
  color: #1a5336;
  font-weight: 800;
}

.uk-cdb-savings-comm {
  font-size: 15px;
  color: #8c2b2b;
  font-weight: 700;
  text-decoration: line-through;
}

.uk-cdb-savings-highlight {
  font-size: 12px;
  font-weight: 700;
  color: #15693c;
  background: #ffffff;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px dashed #a4d3b8;
  text-align: center;
}

/* Expense Breakdown */
.uk-cdb-breakdown {
  margin: 18px 0;
}

.uk-cdb-breakdown-title {
  font-size: 13px;
  font-weight: 700;
  color: #1a5336;
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.uk-cdb-breakdown-item {
  margin-bottom: 10px;
}

.uk-cdb-breakdown-info {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #2d3748;
  margin-bottom: 4px;
}

.uk-cdb-breakdown-info strong {
  color: #1a5336;
  font-weight: 700;
}

.uk-cdb-bar {
  height: 6px;
  background: #e6eee9;
  border-radius: 3px;
  overflow: hidden;
}

.uk-cdb-fill {
  height: 100%;
  background: #1a5336;
  border-radius: 3px;
  transition: width 0.3s ease;
}

/* Key Specs Grid */
.uk-cdb-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: #fbfdfc;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #e5ede8;
  margin: 18px 0;
}

.uk-cdb-spec-item {
  display: flex;
  flex-direction: column;
}

.uk-cdb-spec-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #718096;
}

.uk-cdb-spec-value {
  font-size: 13px;
  font-weight: 700;
  color: #1a5336;
}

/* Action Buttons */
.uk-cdb-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.uk-cdb-btn {
  flex: 1;
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-align: center;
}

.uk-cdb-btn-primary {
  background: #1a5336;
  color: #ffffff;
}

.uk-cdb-btn-primary:hover {
  background: #0f3822;
}

.uk-cdb-btn-outline {
  background: #ffffff;
  color: #1a5336;
  border: 1.5px solid #1a5336;
}

.uk-cdb-btn-outline:hover {
  background: #eef6f1;
}

/* Pilgrim Advisory Box */
.uk-cdb-advisory {
  background: #fffbf0;
  border: 1px solid #fae6b2;
  border-radius: 12px;
  padding: 18px 20px;
  margin-top: 20px;
}

.uk-cdb-advisory-title {
  font-size: 13px;
  font-weight: 800;
  color: #92540d;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.uk-cdb-advisory-list {
  margin: 0;
  padding-left: 18px;
  font-size: 12px;
  color: #6d4b14;
  line-height: 1.6;
}

.uk-cdb-advisory-list li {
  margin-bottom: 6px;
}

.uk-cdb-advisory-list li:last-child {
  margin-bottom: 0;
}
