/* =========================================================
   Our Fixed Pricing – Elementor Widget
   Colors: #0091EA (blue) + #000000 (black)
   Card style matches the provided screenshot
   ========================================================= */

.ofp-pricing-wrapper {
	--ofp-primary: #0091EA;
	--ofp-dark: #000000;
	--ofp-card-bg: #0a0a0a;
	--ofp-text: #ffffff;
	--ofp-border: #0091EA;
	--ofp-btn-bg: #0091EA;
	--ofp-btn-text: #ffffff;
	--ofp-btn-hover: #0077c2;
	font-family: inherit;
	color: var(--ofp-text);
	position: relative;
	padding: 10px 0 30px;
}

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

.ofp-section-title {
	font-size: 2.1rem;
	font-weight: 700;
	color: var(--ofp-text);
	margin: 0 0 8px;
	letter-spacing: -0.02em;
}

.ofp-section-title::after {
	content: '';
	display: block;
	width: 56px;
	height: 3px;
	background: var(--ofp-primary);
	margin: 12px auto 0;
	border-radius: 2px;
}

.ofp-section-subtitle {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.7);
	margin: 12px auto 0;
	max-width: 520px;
}

/* Vehicle tabs */
.ofp-tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-bottom: 28px;
}

.ofp-tab {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 12px 22px;
	background: transparent;
	border: 2px solid rgba(0, 145, 234, 0.35);
	border-radius: 10px;
	color: rgba(255, 255, 255, 0.75);
	cursor: pointer;
	transition: all 0.25s ease;
	font-family: inherit;
	min-width: 120px;
}

.ofp-tab:hover {
	border-color: var(--ofp-primary);
	color: #fff;
}

.ofp-tab.is-active {
	background: var(--ofp-primary);
	border-color: var(--ofp-primary);
	color: #fff;
	box-shadow: 0 4px 16px rgba(0, 145, 234, 0.4);
}

.ofp-tab-title {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.2;
}

.ofp-tab-sub {
	font-size: 0.75rem;
	opacity: 0.85;
	margin-top: 2px;
}

/* Tab panels */
.ofp-tab-panel {
	display: none;
}

.ofp-tab-panel.is-active {
	display: block;
}

.ofp-vehicle-label {
	text-align: center;
	margin-bottom: 20px;
}

.ofp-vehicle-name {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--ofp-text);
}

.ofp-vehicle-max {
	display: block;
	font-size: 0.9rem;
	color: var(--ofp-primary);
	margin-top: 4px;
}

/* Swiper */
.ofp-swiper {
	position: relative;
	overflow: hidden;
	padding: 12px 8px 48px;
}

.ofp-swiper .swiper-wrapper {
	align-items: stretch;
}

.ofp-swiper .swiper-slide {
	height: auto;
	box-sizing: border-box;
}

/* ========== PRICE BOX (matches screenshot) ========== */
.ofp-price-box {
	background: var(--ofp-card-bg);
	border: 2px solid var(--ofp-border);
	border-radius: 16px;
	padding: 28px 20px 22px;
	height: 100%;
	min-height: 220px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	text-align: center;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	position: relative;
}

/* Hover – box lifts up */
.ofp-price-box:hover {
	transform: translateY(-10px);
	box-shadow: 0 18px 40px rgba(0, 145, 234, 0.25);
	border-color: var(--ofp-primary);
}

.ofp-box-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding-bottom: 16px;
}

.ofp-box-airport {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--ofp-text);
	margin: 0 0 8px;
	line-height: 1.3;
	letter-spacing: -0.01em;
}

.ofp-box-note {
	display: block;
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.55);
	margin-bottom: 10px;
	line-height: 1.3;
}

.ofp-box-price {
	font-size: 1.85rem;
	font-weight: 700;
	color: var(--ofp-primary);
	line-height: 1.2;
	margin-top: 4px;
}

/* Book Now button */
.ofp-book-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 160px;
	padding: 11px 20px;
	background: var(--ofp-btn-bg);
	color: var(--ofp-btn-text) !important;
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none !important;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
	line-height: 1.3;
}

.ofp-book-btn:hover,
.ofp-book-btn:focus {
	background: var(--ofp-btn-hover) !important;
	color: #fff !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 145, 234, 0.45);
	text-decoration: none !important;
}

/* Navigation arrows */
.ofp-nav {
	width: 42px !important;
	height: 42px !important;
	background: var(--ofp-dark) !important;
	border: 2px solid var(--ofp-primary) !important;
	border-radius: 50% !important;
	color: var(--ofp-primary) !important;
	transition: all 0.25s ease !important;
	top: 50% !important;
	margin-top: -21px !important;
	z-index: 10;
}

.ofp-nav::after {
	font-size: 15px !important;
	font-weight: 700 !important;
	color: var(--ofp-primary) !important;
}

.ofp-nav:hover {
	background: var(--ofp-primary) !important;
}

.ofp-nav:hover::after {
	color: #fff !important;
}

.ofp-prev { left: 2px !important; }
.ofp-next { right: 2px !important; }

/* Pagination */
.ofp-pagination {
	bottom: 6px !important;
}

.ofp-pagination .swiper-pagination-bullet {
	width: 9px;
	height: 9px;
	background: rgba(255, 255, 255, 0.3);
	opacity: 1;
	transition: all 0.25s ease;
}

.ofp-pagination .swiper-pagination-bullet-active {
	background: var(--ofp-primary);
	width: 26px;
	border-radius: 5px;
}

/* Responsive */
@media (max-width: 991px) {
	.ofp-section-title { font-size: 1.7rem; }
	.ofp-box-airport { font-size: 1.05rem; }
	.ofp-box-price { font-size: 1.6rem; }
	.ofp-price-box { min-height: 200px; padding: 22px 16px 18px; }
}

@media (max-width: 575px) {
	.ofp-tabs { gap: 8px; }
	.ofp-tab { padding: 10px 14px; min-width: 100px; }
	.ofp-tab-title { font-size: 0.9rem; }
	.ofp-nav { display: none !important; }
	.ofp-price-box { min-height: 190px; }
	.ofp-box-price { font-size: 1.5rem; }
}

/* Elementor editor */
.elementor-editor-active .ofp-swiper {
	overflow: visible;
}
.elementor-editor-active .ofp-tab-panel {
	display: block !important;
	margin-bottom: 30px;
}
.elementor-editor-active .ofp-tab-panel + .ofp-tab-panel {
	border-top: 1px dashed rgba(0,145,234,0.3);
	padding-top: 20px;
}
