/* CebuSelfDrive brand styles — navy #122A4E / orange #F2622E */

.csd-booking-wrap {
	background: #F4F6FA;
	border: 1px solid #E3E8F0;
	border-radius: 12px;
	padding: 28px;
	margin: 24px 0 32px;
	max-width: 900px;
}

.csd-form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px 24px;
}

.csd-field {
	display: flex;
	flex-direction: column;
	margin-bottom: 4px;
}

.csd-field label {
	font-weight: 600;
	color: #122A4E;
	margin-bottom: 6px;
	font-size: 14px;
}

.csd-field input[type="text"],
.csd-field input[type="email"],
.csd-field input[type="datetime-local"],
.csd-field input[type="file"],
.csd-field select,
.csd-field textarea {
	padding: 10px 12px;
	border: 1px solid #CBD3E1;
	border-radius: 8px;
	font-size: 15px;
	background: #fff;
	color: #1a1a1a;
	width: 100%;
	box-sizing: border-box;
}

.csd-field input:focus,
.csd-field select:focus,
.csd-field textarea:focus {
	outline: none;
	border-color: #F2622E;
	box-shadow: 0 0 0 3px rgba(242, 98, 46, 0.15);
}

.csd-radio-row {
	display: flex;
	gap: 22px;
	flex-wrap: wrap;
	font-weight: 400;
}

.csd-radio-row label {
	font-weight: 400;
	display: flex;
	align-items: center;
	gap: 6px;
	color: #333;
}

.csd-note {
	background: #FFF3EC;
	border-left: 3px solid #F2622E;
	padding: 12px 14px;
	font-size: 13.5px;
	color: #4a4a4a;
	border-radius: 4px;
	margin: 16px 0;
}

.csd-price-summary {
	background: #122A4E;
	color: #fff;
	padding: 14px 18px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 16px;
	margin: 20px 0;
}

.csd-btn {
	display: inline-block;
	background: #F2622E;
	color: #fff !important;
	border: none;
	padding: 13px 28px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 16px;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.15s ease;
}

.csd-btn:hover {
	background: #d9531f;
	color: #fff !important;
}

.csd-btn-outline {
	background: transparent;
	color: #122A4E !important;
	border: 2px solid #122A4E;
}

.csd-btn-outline:hover {
	background: #122A4E;
	color: #fff !important;
}

.csd-form-message {
	display: none;
	padding: 12px 16px;
	border-radius: 8px;
	margin: 14px 0;
	font-size: 14px;
	font-weight: 500;
}

.csd-message-error {
	background: #FDECEA;
	color: #9B1C1C;
	border: 1px solid #F5C2C0;
}

.csd-message-success {
	background: #E9F7EF;
	color: #14532D;
	border: 1px solid #BEE6C9;
}

/* Fleet grid */

.csd-fleet-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 20px;
	margin: 24px 0;
}

.csd-fleet-card {
	border: 1px solid #E3E8F0;
	border-radius: 12px;
	padding: 22px;
	background: #fff;
	text-align: left;
}

.csd-fleet-image img,
.csd-vehicle-image img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	display: block;
	margin-bottom: 14px;
}

.csd-fleet-card h3 {
	color: #122A4E;
	margin: 0 0 8px;
	font-size: 20px;
}

.csd-fleet-models {
	color: #5B6B84;
	font-size: 13.5px;
	margin: 0 0 6px;
}

.csd-fleet-meta {
	color: #5B6B84;
	font-size: 13.5px;
	margin: 0 0 10px;
}

.csd-fleet-price {
	color: #F2622E;
	font-weight: 700;
	font-size: 17px;
	margin: 0 0 16px;
}

/* Vehicle pricing table */

.csd-price-table {
	width: 100%;
	border-collapse: collapse;
	margin: 18px 0;
}

.csd-price-table th,
.csd-price-table td {
	border: 1px solid #E3E8F0;
	padding: 10px 14px;
	text-align: left;
}

.csd-price-table th {
	background: #122A4E;
	color: #fff;
}

.csd-vehicle-block {
	max-width: 640px;
}

/* Contact form */

.csd-contact-form {
	max-width: 560px;
	margin: 20px 0;
}

.csd-contact-form .csd-field {
	margin-bottom: 16px;
}

@media (max-width: 640px) {
	.csd-form-grid {
		grid-template-columns: 1fr;
	}
	.csd-booking-wrap {
		padding: 18px;
	}
}
