/* Sunrise Transfers - Nile Petrol */

.suntr-fleet {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 22px;
}
.suntr-card {
	background: #FFFFFF;
	border: 1px solid #D9E2E7;
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.suntr-card-img { height: 168px; background-size: cover; background-position: center; }
.suntr-card-img--empty { background: #EFF4F6; }
.suntr-card-body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 7px; flex-grow: 1; }
.suntr-eyebrow {
	font-family: 'Manrope', sans-serif; font-size: 10px; font-weight: 600;
	letter-spacing: 1.8px; text-transform: uppercase; color: #024F70;
}
.suntr-card-title { font-family: 'Marcellus', serif; font-weight: 400; font-size: 21px; line-height: 1.2; color: #0B2233; margin: 0; }
.suntr-card-meta { font-family: 'Manrope', sans-serif; font-size: 13px; color: #3D5A6B; margin: 0; }
.suntr-card-desc { font-family: 'Manrope', sans-serif; font-size: 14px; line-height: 1.6; color: #3D5A6B; margin: 4px 0 0; }
.suntr-card-feat { list-style: none; margin: 6px 0 0; padding: 0; }
.suntr-card-feat li {
	font-family: 'Manrope', sans-serif; font-size: 13px; color: #3D5A6B;
	position: relative; padding-left: 16px; margin-bottom: 4px;
}
.suntr-card-feat li::before { content: ''; position: absolute; left: 0; top: .58em; width: 5px; height: 5px; border-radius: 50%; background: #024F70; }
.suntr-card-from {
	margin: auto 0 0; padding-top: 14px; border-top: 1px solid #D9E2E7;
	font-family: 'Marcellus', serif; font-size: 22px; color: #0B2233;
}
.suntr-card-from span { font-family: 'Manrope', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase; color: #3D5A6B; }

/* ---- quote calculator ---- */
.suntr-quote { background: #0B2233; border-radius: 8px; padding: 30px 30px 24px; }
.suntr-q-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.suntr-q-full { grid-column: 1 / -1; }
.suntr-q-field label,
.suntr-q-field > label {
	display: block; margin-bottom: 8px;
	font-family: 'Manrope', sans-serif; font-size: 10px; font-weight: 600;
	letter-spacing: 1.5px; text-transform: uppercase; color: #8FAEBF;
}
.suntr-quote select {
	width: 100%; background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.20); border-radius: 4px;
	color: #FFFFFF; font-family: 'Manrope', sans-serif; font-size: 14px;
	padding: 12px 13px; appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' fill='none' stroke='%2371BADA' stroke-width='1.6'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: right 12px center; background-size: 15px;
}
.suntr-quote select:focus { outline: none; border-color: #71BADA; }
.suntr-quote select option { background: #0B2233; color: #FFFFFF; }

.suntr-seg { display: flex; gap: 6px; }
.suntr-seg-btn {
	flex: 1 1 50%; padding: 11px 10px; cursor: pointer;
	background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.18);
	border-radius: 4px; color: #C9DCE6;
	font-family: 'Manrope', sans-serif; font-size: 12.5px; font-weight: 600;
	transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.suntr-seg-btn:hover { border-color: rgba(113,186,218,.7); }
.suntr-seg-btn.is-on { background: #FFFFFF; border-color: #FFFFFF; color: #0B2233; }
.suntr-hint { margin: 8px 0 0; font-family: 'Manrope', sans-serif; font-size: 12px; color: #7E9AAB; }

.suntr-step { display: flex; border: 1px solid rgba(255,255,255,.20); border-radius: 4px; overflow: hidden; background: rgba(255,255,255,.06); }
.suntr-step button {
	flex: 0 0 42px; border: 0; background: rgba(255,255,255,.08); color: #FFFFFF;
	font-size: 17px; cursor: pointer; transition: background .2s ease, color .2s ease;
}
.suntr-step button:hover { background: #FFFFFF; color: #0B2233; }
.suntr-step input {
	flex: 1 1 auto; min-width: 0; border: 0; background: transparent; text-align: center;
	color: #FFFFFF; font-family: 'Manrope', sans-serif; font-size: 15px; padding: 12px 0;
	-moz-appearance: textfield; appearance: textfield;
}
.suntr-step input::-webkit-outer-spin-button,
.suntr-step input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.suntr-veh { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 8px; }
.suntr-veh-opt {
	text-align: left; cursor: pointer; padding: 13px 14px;
	background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.18);
	border-radius: 4px; display: flex; flex-direction: column; gap: 3px;
	transition: background .2s ease, border-color .2s ease;
}
.suntr-veh-opt:hover { border-color: rgba(113,186,218,.7); background: rgba(255,255,255,.09); }
.suntr-veh-opt.is-on { border-color: #71BADA; background: rgba(113,186,218,.15); }
.suntr-veh-n { font-family: 'Marcellus', serif; font-size: 16px; color: #FFFFFF; }
.suntr-veh-c { font-family: 'Manrope', sans-serif; font-size: 11.5px; color: #8FAEBF; }
.suntr-veh-p { font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 700; color: #71BADA; margin-top: 2px; }
.suntr-empty { font-family: 'Manrope', sans-serif; font-size: 13.5px; color: #8FAEBF; margin: 0; }

.suntr-total {
	display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
	margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.16);
}
.suntr-total-l { display: flex; flex-direction: column; gap: 2px; }
.suntr-total-lab { font-family: 'Manrope', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase; color: #8FAEBF; }
.suntr-total-l strong { font-family: 'Marcellus', serif; font-weight: 400; font-size: 34px; line-height: 1.05; color: #FFFFFF; }
.suntr-total-sub { font-family: 'Manrope', sans-serif; font-size: 12.5px; color: #8FAEBF; }
.suntr-cta {
	background: #FFFFFF; color: #0B2233; border: 0; border-radius: 4px; cursor: pointer;
	padding: 16px 34px; font-family: 'Manrope', sans-serif; font-size: 11px; font-weight: 700;
	letter-spacing: 1.8px; text-transform: uppercase; transition: background .25s ease;
}
.suntr-cta:hover { background: #71BADA; }
.suntr-note { margin: 16px 0 0; font-family: 'Manrope', sans-serif; font-size: 11.5px; line-height: 1.6; color: #7E9AAB; }

/* quote summary echoed above the booking form */
.suntr-sum {
	display: flex; flex-direction: column; gap: 3px;
	background: #EFF4F6; border: 1px solid #D9E2E7; border-left: 3px solid #024F70;
	border-radius: 4px; padding: 14px 16px; margin-bottom: 18px;
}
.suntr-sum-r { font-family: 'Marcellus', serif; font-size: 17px; color: #0B2233; }
.suntr-sum-d { font-family: 'Manrope', sans-serif; font-size: 12.5px; color: #3D5A6B; }
.suntr-sum-p { font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 700; color: #024F70; margin-top: 3px; }

@media (max-width: 767px) {
	.suntr-q-grid { grid-template-columns: 1fr; gap: 16px; }
	.suntr-quote { padding: 22px 18px 20px; }
	.suntr-total { flex-direction: column; align-items: stretch; }
	.suntr-cta { width: 100%; }
	.suntr-total-l strong { font-size: 28px; }
	.suntr-veh { grid-template-columns: 1fr; }
}

/* ===== panel, steps and stages ===== */
.suntr-panel { background: #0B2233; border-radius: 8px; padding: 28px 30px 24px; }

.suntr-steps { list-style: none; display: flex; gap: 10px; margin: 0 0 24px; padding: 0 0 18px; border-bottom: 1px solid rgba(255,255,255,.14); }
.suntr-steps li {
	display: flex; align-items: center; gap: 9px; cursor: pointer;
	font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 600;
	letter-spacing: .6px; color: #6E8B9C; padding-right: 18px;
}
.suntr-steps li span {
	display: flex; align-items: center; justify-content: center;
	width: 24px; height: 24px; border-radius: 50%;
	border: 1px solid rgba(255,255,255,.26); font-size: 11px; flex: 0 0 auto;
}
.suntr-steps li.is-on { color: #FFFFFF; }
.suntr-steps li.is-on span { background: #FFFFFF; border-color: #FFFFFF; color: #0B2233; }
.suntr-steps li.is-done { color: #71BADA; }
.suntr-steps li.is-done span { border-color: #71BADA; color: #71BADA; }

.suntr-stage[hidden] { display: none !important; }
.suntr-back {
	margin-top: 18px; background: transparent; border: 0; cursor: pointer; padding: 6px 0;
	font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 600;
	letter-spacing: .6px; color: #8FAEBF; transition: color .2s ease;
}
.suntr-back:hover { color: #FFFFFF; }

/* the route select was clipping its own text: no fixed height, real line-height */
.suntr-panel select {
	width: 100%;
	display: block !important;
	height: auto !important;
	min-height: 48px;
	line-height: 1.4 !important;
	background-color: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.20);
	border-radius: 4px;
	color: #FFFFFF;
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	padding: 13px 42px 13px 13px;
	-webkit-appearance: none; appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' fill='none' stroke='%2371BADA' stroke-width='1.6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 15px;
}
.suntr-panel select:focus { outline: none; border-color: #71BADA; }
.suntr-panel select option { background: #0B2233; color: #FFFFFF; }

/* ===== stage 2: the booking form on the ink ground ===== */
.suntr-stage2 .forminator-row { display: flex !important; flex-wrap: wrap !important; margin: 0 -6px !important; }
.suntr-stage2 .forminator-col { flex: 0 0 100% !important; max-width: 100% !important; padding: 0 6px !important; margin-bottom: 13px !important; min-width: 0; }
.suntr-stage2 .forminator-col-6 { flex: 0 0 50% !important; max-width: 50% !important; }
.suntr-stage2 .forminator-field-hidden { display: none !important; }
.suntr-stage2 .forminator-label,
.suntr-stage2 .forminator-ui.forminator-custom-form .forminator-label {
	color: #8FAEBF !important;
	font-family: 'Manrope', sans-serif !important;
	font-size: 9.5px !important; font-weight: 600 !important;
	letter-spacing: 1.3px; text-transform: uppercase; margin-bottom: 6px !important;
}
.suntr-stage2 .forminator-input,
.suntr-stage2 .forminator-textarea,
.suntr-stage2 input[type="text"],
.suntr-stage2 input[type="email"],
.suntr-stage2 input[type="tel"],
.suntr-stage2 input[type="number"],
.suntr-stage2 textarea {
	background: rgba(255,255,255,.06) !important;
	border: 1px solid rgba(255,255,255,.20) !important;
	border-radius: 4px !important;
	color: #FFFFFF !important;
	font-family: 'Manrope', sans-serif !important;
	font-size: 14px !important;
	padding: 11px 13px !important;
	min-height: 0 !important; height: auto !important;
	box-shadow: none !important; width: 100%;
}
.suntr-stage2 textarea { min-height: 62px !important; }
.suntr-stage2 .forminator-input::placeholder,
.suntr-stage2 .forminator-textarea::placeholder { color: #7E9AAB !important; opacity: 1; }
.suntr-stage2 .forminator-input:focus,
.suntr-stage2 .forminator-textarea:focus { border-color: #71BADA !important; background: rgba(255,255,255,.10) !important; }
.suntr-stage2 input.suntr-locked {
	background: rgba(113,186,218,.16) !important;
	color: #FFFFFF !important; font-weight: 600 !important; cursor: not-allowed;
}
.suntr-stage2 .forminator-description { color: #7E9AAB !important; font-family: 'Manrope', sans-serif !important; font-size: 10.5px !important; margin-top: 4px !important; }

/* select2 (date and time pickers) on dark */
.suntr-stage2 .select2-container--default .select2-selection--single {
	background: rgba(255,255,255,.06) !important;
	border: 1px solid rgba(255,255,255,.20) !important;
	border-radius: 4px !important;
	height: 45px !important;
}
.suntr-stage2 .select2-selection__rendered { color: #FFFFFF !important; font-family: 'Manrope', sans-serif !important; font-size: 14px !important; line-height: 43px !important; padding-left: 12px !important; }
.suntr-stage2 .select2-selection__arrow b { border-color: #71BADA transparent transparent !important; }

.suntr-stage2 .forminator-button-submit,
.suntr-stage2 button[type="submit"] {
	background: #FFFFFF !important; color: #0B2233 !important;
	border: 0 !important; border-radius: 4px !important; width: 100%;
	padding: 16px 32px !important;
	font-family: 'Manrope', sans-serif !important;
	font-size: 11px !important; font-weight: 700 !important;
	letter-spacing: 1.8px; text-transform: uppercase;
	margin-top: 4px; transition: background .25s ease;
}
.suntr-stage2 .forminator-button-submit:hover,
.suntr-stage2 button[type="submit"]:hover { background: #71BADA !important; }
.suntr-stage2 .forminator-required { color: #71BADA !important; }
.suntr-stage2 .forminator-error-message { color: #FFC9C9 !important; font-size: 11.5px !important; }
.suntr-stage2 .forminator-response-message,
.suntr-stage2 .forminator-response-message p { color: #FFFFFF !important; }

/* summary block, now on dark */
.suntr-panel .suntr-sum {
	display: flex; flex-direction: column; gap: 3px;
	background: rgba(113,186,218,.12);
	border: 1px solid rgba(113,186,218,.34);
	border-left: 3px solid #71BADA;
	border-radius: 4px; padding: 14px 16px; margin-bottom: 20px;
}
.suntr-panel .suntr-sum-r { font-family: 'Marcellus', serif; font-size: 17px; color: #FFFFFF; }
.suntr-panel .suntr-sum-d { font-family: 'Manrope', sans-serif; font-size: 12.5px; color: #B7CBD6; }
.suntr-panel .suntr-sum-p { font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 700; color: #71BADA; margin-top: 3px; }

@media (max-width: 767px) {
	.suntr-panel { padding: 20px 16px 18px; }
	.suntr-steps { gap: 4px; margin-bottom: 18px; }
	.suntr-steps li { font-size: 11px; padding-right: 8px; gap: 6px; }
	.suntr-stage2 .forminator-col,
	.suntr-stage2 .forminator-col-6 { flex: 0 0 100% !important; max-width: 100% !important; }
}

/* the five quote carriers post real values, so they are text fields hidden in CSS
   rather than Forminator hidden fields, which ignore anything JS writes into them */
#text-3, #text-4, #text-5, #text-6, #text-7 { display: none !important; }
