.search-car-title-bar {
	background: var(--mauno-base, #1a365d);
	border-radius: 18px 18px 0 0;
	border-radius: 32px 32px 0 0;
	border-radius: 20px 20px 0 0;
	border-radius: 12px 12px 0 0;
	padding: 0.75em 0;
	padding: 1.25em 0;
	width: calc(100% + 48px);
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: -24px;
	margin-right: 0;
	margin-top: -34px;
	background-image: url('../images/shapes/book-one-title-shape-1.png');
	background-size: cover;
	background-position: center;
	position: relative;
}
.search-car-title-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
					background: rgba(26, 54, 93, 0.75);
  border-radius: 12px 12px 0 0;
  z-index: 1;
}
.search-car-title-text {
	color: #fff;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 1.25rem;
	letter-spacing: 0.08em;
  position: relative;
  z-index: 2;
}
.search-car-bg .col-lg-6 .search-car-form {
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 2px 16px rgba(0,0,0,0.08);
	padding: 32px 24px;
	max-width: 440px;
	margin: 0 auto;
}
.search-car-bg .col-lg-2 img[src*="booking-one-shape-1"] {
	max-width: 180px;
	width: 100%;
	height: auto;
	object-fit: contain;
	margin: 0 auto;
	display: block;
}
.search-car-bg .col-lg-4 img[src*="booking-one-img-1"] {
	border: 1px solid #d1d5db;
	border-radius: 18px;
	box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}

.search-car-section {
	min-height: 420px;
	display: flex;
	align-items: center;
	padding-top: 0;
	padding-bottom: 0;
}
/* Container mai mare pentru formularul de căutare */
.search-car-section .container {
	max-width: 1600px;
}
/* Overlay mauno black peste background din search-car-bg */
.search-car-bg {
	position: relative;
}
.search-car-bg::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(19, 25, 44, 0.92); /* albastru foarte închis, tentă mov extrem de subtilă */
	z-index: 1;
	pointer-events: none;
}
.search-car-bg > * {
	position: relative;
	z-index: 2;
}
/* Imaginea booking-one-img-1 mai mică pe desktop */
.search-car-bg .col-lg-4 img[src*="booking-one-img-1"] {
	max-width: 320px;
	max-height: 360px;
	width: 100%;
	height: auto;
	object-fit: contain;
	margin: 0 auto;
	display: block;
}
/* Background imagine doar pe interiorul formularului */
.search-car-bg {
  background: url('../images/backgrounds/booking-one-bg.webp') center center/cover no-repeat;
}
/* ===== MODERN CITY BAR - ANIMATED CITIES RIBBON ===== */
.city-bar-wrapper {
	width: 100%;
	overflow: hidden;
	background: linear-gradient(135deg, var(--mauno-base, #1a365d) 0%, #2d4a70 100%);
	padding: 1.5rem 0;
	position: relative;
	z-index: 10;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Decorative gradient overlay */
.city-bar-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg,
		transparent 0%,
		rgba(96, 165, 250, 0.5) 25%,
		rgba(96, 165, 250, 0.8) 50%,
		rgba(96, 165, 250, 0.5) 75%,
		transparent 100%);
}

.city-bar-track {
	display: inline-flex;
	gap: 4rem;
	white-space: nowrap;
	animation: cityBarMove 40s linear infinite;
	will-change: transform;
}

.city-bar-item {
	color: #ffffff;
	font-size: clamp(1.1rem, 2.5vw, 1.5rem);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	padding: 0.75rem 2rem;
	border-radius: 50px;
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Location icon before each city */
.city-bar-item::before {
	content: '\f3c5';
	font-family: 'Font Awesome 5 Free', 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 1.1em;
	color: rgba(96, 165, 250, 0.8);
	transition: all 0.3s ease;
}

/* Hover effect */
.city-bar-item:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(96, 165, 250, 0.5);
	color: #60a5fa;
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(96, 165, 250, 0.3);
}

.city-bar-item:hover::before {
	color: #60a5fa;
	transform: scale(1.2) rotate(10deg);
}

/* Pause animation on hover */
.city-bar-wrapper:hover .city-bar-track {
	animation-play-state: paused;
}

.city-bar-track.paused {
	animation-play-state: paused !important;
}

/* Smooth infinite scroll animation */
@keyframes cityBarMove {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* Responsive Design */
@media (max-width: 991px) {
	.city-bar-wrapper {
		padding: 1.25rem 0;
	}

	.city-bar-track {
		gap: 3rem;
		animation-duration: 35s;
	}

	.city-bar-item {
		font-size: clamp(1rem, 3vw, 1.3rem);
		padding: 0.65rem 1.75rem;
		gap: 0.5rem;
	}
}

@media (max-width: 768px) {
	.city-bar-wrapper {
		padding: 1rem 0;
	}

	.city-bar-track {
		gap: 2.5rem;
		animation-duration: 30s;
	}

	.city-bar-item {
		font-size: clamp(0.95rem, 4vw, 1.2rem);
		padding: 0.6rem 1.5rem;
		letter-spacing: 0.05em;
	}

	.city-bar-item::before {
		font-size: 1em;
	}
}

@media (max-width: 576px) {
	.city-bar-wrapper {
		padding: 0.875rem 0;
	}

	.city-bar-track {
		gap: 2rem;
		animation-duration: 25s;
	}

	.city-bar-item {
		font-size: clamp(0.85rem, 5vw, 1.1rem);
		padding: 0.5rem 1.25rem;
		border-radius: 40px;
	}

	.city-bar-item:hover {
		transform: translateY(-2px);
	}
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
	.city-bar-track {
		animation: none !important;
	}

	.city-bar-item:hover {
		transform: none;
	}

	.city-bar-item:hover::before {
		transform: none;
	}
}

/* Performance optimization */
.city-bar-track,
.city-bar-item {
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
/* Hero content left alignment */
.hero-content-inner {
	text-align: left;
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	max-width: 480px;
		padding-left: 7vw;
	padding-right: 3vw;
	gap: 1.2rem;
}
/* Evidențiere cuvânt 'rent' în hero slogan */
.hero-rent-highlight {
	color: var(--mauno-base) !important;
	font-weight: 700;
}
/* Book Now button mauno base solid */
.btn-mauno-base-solid {
	background: var(--mauno-base) !important;
	color: var(--mauno-black) !important;
	border: none !important;
	font-weight: 600;
	box-shadow: none !important;
	transition: background 0.2s, color 0.2s;
}
.btn-mauno-base-solid:hover {
	background: var(--mauno-black) !important;
	color: #fff !important;
}
/* Book Now button mauno base outline */
.btn-mauno-base-outline {
	background: none !important;
	color: var(--mauno-base) !important;
	border: 2px solid var(--mauno-base) !important;
	box-shadow: none !important;
	font-weight: 600;
	transition: background 0.2s, color 0.2s;
}
.btn-mauno-base-outline:hover {
	background: var(--mauno-base) !important;
	color: #fff !important;
}
/* ===== MODERN HERO SECTION ===== */
.hero-slider {
	position: relative;
	width: 100%;
	overflow: hidden;
	min-height: 90vh;
	display: flex;
	align-items: center;
	background: #0f0e1a;
}

/* Background image with parallax feel */
.hero-slider picture {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.hero-slider picture img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center center;
	animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.05);
	}
}

/* Modern gradient overlay */
.hero-blue-filter {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: linear-gradient(
		135deg,
		rgba(15, 14, 26, 0.85) 0%,
		rgba(26, 25, 48, 0.75) 50%,
		rgba(11, 77, 136, 0.65) 100%
	);
	z-index: 1;
	pointer-events: none;
}

/* Decorative elements */
.hero-slider::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 800px;
	height: 800px;
	background: radial-gradient(
		circle,
		rgba(11, 77, 136, 0.15) 0%,
		transparent 70%
	);
	border-radius: 50%;
	z-index: 1;
	animation: float 20s ease-in-out infinite;
}

.hero-slider::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -15%;
	width: 600px;
	height: 600px;
	background: radial-gradient(
		circle,
		rgba(49, 130, 206, 0.12) 0%,
		transparent 70%
	);
	border-radius: 50%;
	z-index: 1;
	animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
	0%, 100% {
		transform: translate(0, 0) scale(1);
	}
	50% {
		transform: translate(30px, -30px) scale(1.1);
	}
}

/* Hero Content Container */
.hero-content {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 90vh;
	z-index: 2;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	text-align: left;
	color: #fff;
	padding: 2rem 0;
}

/* Hero Content Inner */
.hero-content-inner {
	max-width: 650px;
	padding-left: clamp(2rem, 7vw, 8rem);
	padding-right: 2rem;
	animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Modern Typography */
.hero-content h1 {
	font-size: clamp(3rem, 7vw, 5.5rem);
	font-weight: 800;
	margin-bottom: 1.5rem;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
	text-transform: uppercase;
	letter-spacing: 0.02em;
	line-height: 1.1;
	background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
	animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-content h2 {
	font-size: clamp(1.25rem, 3vw, 2rem);
	margin-bottom: 2.5rem;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
	font-weight: 400;
	letter-spacing: 0.03em;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.95);
	animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-rent-highlight {
	color: #60a5fa !important;
	font-weight: 700;
	position: relative;
	display: inline-block;
}

.hero-rent-highlight::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, #3182ce, #60a5fa);
	border-radius: 2px;
	animation: highlightGrow 1.5s ease-out 0.6s both;
}

@keyframes highlightGrow {
	from {
		width: 0;
		opacity: 0;
	}
	to {
		width: 100%;
		opacity: 1;
	}
}

/* Enhanced CTA Button */
.hero-content-inner .btn-modern {
	animation: fadeInUp 1s ease-out 0.6s both;
	min-width: 200px;
	font-size: 1.1rem;
	padding: 1rem 2rem;
	box-shadow: 0 8px 24px rgba(11, 77, 136, 0.3);
}

.hero-content-inner .btn-modern:hover {
	box-shadow: 0 12px 32px rgba(11, 77, 136, 0.4);
}

/* Decorative line element */
.hero-content-inner::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 4px;
	height: 80px;
	background: linear-gradient(180deg, #3182ce, transparent);
	border-radius: 2px;
	animation: slideDown 1s ease-out both;
}

@keyframes slideDown {
	from {
		height: 0;
		opacity: 0;
	}
	to {
		height: 80px;
		opacity: 1;
	}
}

/* Scroll indicator */
.hero-scroll-indicator {
	position: absolute;
	bottom: 3rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	cursor: pointer;
	animation: fadeIn 1s ease-out 1s both;
}

.hero-scroll-indicator i {
	animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(10px);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* ===== RESPONSIVE HERO DESIGN ===== */
@media (max-width: 1199px) {
	.hero-slider {
		min-height: 85vh;
	}

	.hero-content h1 {
		font-size: clamp(2.5rem, 6vw, 4.5rem);
	}

	.hero-content h2 {
		font-size: clamp(1.15rem, 2.5vw, 1.75rem);
	}

	.hero-slider::before,
	.hero-slider::after {
		width: 600px;
		height: 600px;
	}
}

@media (max-width: 991px) {
	.hero-slider {
		min-height: 80vh;
	}

	.hero-content-inner {
		padding-left: clamp(1.5rem, 5vw, 4rem);
		max-width: 550px;
	}

	.hero-content h1 {
		font-size: clamp(2.25rem, 5.5vw, 4rem);
		margin-bottom: 1.25rem;
	}

	.hero-content h2 {
		font-size: clamp(1.1rem, 2.25vw, 1.5rem);
		margin-bottom: 2rem;
	}

	.hero-content-inner .btn-modern {
		font-size: 1rem;
		padding: 0.875rem 1.75rem;
		min-width: 180px;
	}
}

@media (max-width: 768px) {
	.hero-slider {
		min-height: 60vh; /* Sincronizat cu responsive.css */
	}

	.hero-content {
		min-height: 60vh; /* Sincronizat cu hero-slider */
	}

	.hero-content-inner {
		padding-left: 2rem;
		padding-right: 2rem;
		max-width: 100%;
	}

	.hero-content h1 {
		font-size: clamp(2rem, 8vw, 3.5rem);
		margin-bottom: 1rem;
	}

	.hero-content h2 {
		font-size: clamp(1rem, 4vw, 1.35rem);
		margin-bottom: 1.75rem;
	}

	.hero-content-inner::before {
		height: 60px;
	}

	.hero-scroll-indicator {
		bottom: 2rem;
		font-size: 0.8rem;
	}

	.hero-slider::before,
	.hero-slider::after {
		width: 400px;
		height: 400px;
	}
}

@media (max-width: 576px) {
	.hero-slider {
		min-height: 70vh;
	}

	.hero-content {
		min-height: 70vh;
	}

	.hero-content-inner {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}

	.hero-content h1 {
		font-size: clamp(1.75rem, 10vw, 2.75rem);
		margin-bottom: 0.875rem;
	}

	.hero-content h2 {
		font-size: clamp(0.95rem, 5vw, 1.2rem);
		margin-bottom: 1.5rem;
	}

	.hero-rent-highlight::after {
		height: 2px;
		bottom: -2px;
	}

	.hero-content-inner .btn-modern {
		font-size: 0.95rem;
		padding: 0.75rem 1.5rem;
		min-width: 160px;
		width: 100%;
		max-width: 280px;
	}

	.hero-content-inner::before {
		height: 50px;
		width: 3px;
	}

	.hero-scroll-indicator {
		display: none;
	}

	.hero-slider::before,
	.hero-slider::after {
		width: 300px;
		height: 300px;
	}
}

/* Performance optimizations */
.hero-slider,
.hero-slider *,
.hero-content-inner * {
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
	.hero-slider picture img,
	.hero-slider::before,
	.hero-slider::after,
	.hero-content-inner,
	.hero-content-inner::before,
	.hero-content h1,
	.hero-content h2,
	.hero-content-inner .btn-modern,
	.hero-rent-highlight::after,
	.hero-scroll-indicator,
	.hero-scroll-indicator i {
		animation: none !important;
		transition-duration: 0.01ms !important;
	}
}
/* Cursor pointer pentru selectarea orelor și a locațiilor în formular */
select,
input[type="time"],
input[type="date"],
.form-control,
.dropdown-menu,
.select2-selection,
.select2-results__option {
  cursor: pointer;
}

/* ===== STILURI PERFORMANTE PENTRU FORMULARUL DE CĂUTARE ===== */
.search-car-form .form-group {
  margin-bottom: 1.25rem;
  position: relative;
}

.search-car-form .form-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--mauno-black);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}

.search-car-form .form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #2d3748;
  background-color: #f7fafc;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  transition: all 0.3s ease;
  outline: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.search-car-form .form-control:hover {
  border-color: #cbd5e0;
  background-color: #fff;
}

.search-car-form .form-control:focus {
  border-color: var(--mauno-base, #1a365d);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.search-car-form .form-control::placeholder {
  color: #a0aec0;
  font-weight: 400;
}

/* Stiluri pentru select dropdown */
.search-car-form select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%231a365d' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}

/* Stiluri pentru input-uri readonly (date picker) */
.search-car-form .form-control[readonly] {
  background-color: #f7fafc;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%231a365d' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM2 2a1 1 0 0 0-1 1v11a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H2z'/%3E%3Cpath d='M2.5 4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5H3a.5.5 0 0 1-.5-.5V4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}

.search-car-form .form-control[readonly]:hover {
  border-color: var(--mauno-base, #1a365d);
  background-color: #fff;
}

/* Stiluri pentru butonul de submit */
.search-car-form .btn {
  padding: 0.875rem 2.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(26, 54, 93, 0.15);
}

.search-car-form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(26, 54, 93, 0.25);
}

.search-car-form .btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(26, 54, 93, 0.2);
}

/* Animație la focus pe form-group */
.search-car-form .form-group:focus-within .form-label {
  color: var(--mauno-base, #1a365d);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .search-car-form .form-control {
    padding: 0.75rem 0.875rem;
    font-size: 0.95rem;
  }

  .search-car-form .form-label {
    font-size: 0.875rem;
  }

  .search-car-form .btn {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }
}

/* ===== LATEST BLOGS SECTION ===== */
.latest-blogs-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.latest-blogs-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(11, 77, 136, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.latest-blogs-title {
  text-align: center;
  margin-bottom: 3rem;
}

.latest-blogs-title h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--mauno-black);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  position: relative;
  display: inline-block;
}

.latest-blogs-title h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--mauno-base) 0%, #3182ce 100%);
  border-radius: 2px;
}

.latest-blogs-title p {
  font-size: 1.1rem;
  color: #718096;
  max-width: 600px;
  margin: 1.5rem auto 0;
}

.latest-blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.latest-blog-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.latest-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: var(--mauno-border, #e2e8f0);
}

.latest-blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.latest-blog-card:hover img {
  transform: scale(1.05);
}

.latest-blog-content {
  padding: 1.75rem;
}

.latest-blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #718096;
}

.latest-blog-meta i {
  color: var(--mauno-base);
}

.latest-blog-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--mauno-black);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.latest-blog-card:hover h3 {
  color: var(--mauno-base);
}

.latest-blog-content p {
  font-size: 1rem;
  color: #2d3748;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.view-all-blogs {
  text-align: center;
  margin-top: 3rem;
}

.view-all-blogs .btn-modern {
  min-width: 200px;
}

/* ===== OUR PARTNERS SECTION ===== */
.partners-section {
  padding: 4rem 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.partners-section::before {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(49, 130, 206, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.partners-title {
  text-align: center;
  margin-bottom: 3rem;
}

.partners-title h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--mauno-black);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  position: relative;
  display: inline-block;
}

.partners-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--mauno-base) 0%, #3182ce 100%);
  border-radius: 2px;
}

.partners-title p {
  font-size: 1rem;
  color: #718096;
  max-width: 500px;
  margin: 1.25rem auto 0;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.partner-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 180px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--mauno-base);
  background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
}

.partner-card img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: all 0.4s ease;
}

.partner-card:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* Responsive Design for Latest Blogs & Partners */
@media (max-width: 991px) {
  .latest-blogs-section,
  .partners-section {
    padding: 4rem 0;
  }

  .latest-blogs-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
  }

  .partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
  }

  .partner-card {
    min-height: 160px;
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .latest-blogs-section,
  .partners-section {
    padding: 3rem 0;
  }

  .latest-blogs-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .latest-blog-card img {
    height: 200px;
  }

  .partners-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 0 2rem;
  }

  .partner-card {
    min-height: 140px;
  }
}

@media (max-width: 576px) {
  .latest-blogs-section,
  .partners-section {
    padding: 2.5rem 0;
  }

  .latest-blogs-title h2,
  .partners-title h2 {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .latest-blog-content {
    padding: 1.5rem;
  }

  .latest-blog-content h3 {
    font-size: 1.15rem;
  }

  .partner-card {
    min-height: 120px;
    padding: 1.5rem 1rem;
  }

  .partner-card img {
    max-height: 60px;
  }
}

/* ===== 24/7 CALL TO ACTION SECTION ===== */
.call-action-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #131222 0%, #1a1930 100%);
  position: relative;
  overflow: hidden;
}

.call-action-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 4rem 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.call-action-content {
  text-align: center;
  margin-bottom: 3rem;
}

.call-action-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--mauno-base) 0%, #3182ce 100%);
  border-radius: 50px;
  margin-bottom: 2rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(11, 77, 136, 0.7);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(11, 77, 136, 0);
  }
}

.call-action-badge i {
  font-size: 1.2rem;
  color: #fff;
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.call-action-badge span {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.call-action-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.call-action-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.call-action-phone {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 3rem;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  margin-bottom: 2.5rem;
  transition: all 0.3s ease;
}

.call-action-phone:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--mauno-base);
  transform: scale(1.02);
}

.phone-icon-circle {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--mauno-base) 0%, #3182ce 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(11, 77, 136, 0.3);
  animation: phoneRing 2s ease-in-out infinite;
}

@keyframes phoneRing {
  0%, 100% {
    transform: rotate(0deg);
  }
  10%, 30% {
    transform: rotate(-10deg);
  }
  20%, 40% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(0deg);
  }
}

.phone-icon-circle i {
  font-size: 2rem;
  color: #fff;
}

.phone-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.phone-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.phone-number {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.phone-number:hover {
  color: var(--mauno-base);
  text-shadow: 0 0 20px rgba(11, 77, 136, 0.5);
}

.call-action-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.call-action-buttons .btn-modern {
  min-width: 200px;
  padding: 1.125rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.btn-call {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border: none;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.btn-call:hover {
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
  transform: translateY(-3px);
}

.btn-book {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-book:hover {
  background: #fff;
  color: var(--mauno-black);
  transform: translateY(-3px);
}

.call-action-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--mauno-base);
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(11, 77, 136, 0.2) 0%, rgba(49, 130, 206, 0.2) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background: linear-gradient(135deg, var(--mauno-base) 0%, #3182ce 100%);
  transform: scale(1.1);
}

.feature-icon i {
  font-size: 1.75rem;
  color: #fff;
}

.feature-text h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
}

.feature-text p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Decorative Elements */
.call-action-decoration {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.1;
  pointer-events: none;
}

.call-action-decoration i {
  font-size: 5rem;
  color: #fff;
}

.decoration-1 {
  top: 10%;
  right: 5%;
  background: radial-gradient(circle, var(--mauno-base) 0%, transparent 70%);
  animation: floatSlow 15s ease-in-out infinite;
}

.decoration-2 {
  bottom: 10%;
  left: 5%;
  background: radial-gradient(circle, #3182ce 0%, transparent 70%);
  animation: floatSlow 18s ease-in-out infinite reverse;
}

@keyframes floatSlow {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(20px, -20px) rotate(10deg);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .call-action-section {
    padding: 4rem 0;
  }

  .call-action-wrapper {
    padding: 3rem 2rem;
  }

  .call-action-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .phone-number {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .call-action-section {
    padding: 3rem 0;
  }

  .call-action-wrapper {
    padding: 2.5rem 1.5rem;
  }

  .call-action-phone {
    flex-direction: column;
    padding: 1.75rem 2rem;
    text-align: center;
  }

  .phone-details {
    text-align: center;
  }

  .phone-icon-circle {
    width: 60px;
    height: 60px;
  }

  .phone-icon-circle i {
    font-size: 1.75rem;
  }

  .phone-number {
    font-size: 1.5rem;
  }

  .call-action-buttons {
    flex-direction: column;
  }

  .call-action-buttons .btn-modern {
    width: 100%;
  }

  .feature-item {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .call-action-wrapper {
    padding: 2rem 1rem;
  }

  .call-action-title {
    font-size: 1.75rem;
  }

  .call-action-subtitle {
    font-size: 1rem;
  }

  .call-action-phone {
    padding: 1.5rem 1.25rem;
  }

  .phone-number {
    font-size: 1.35rem;
  }

  .call-action-badge {
    padding: 0.6rem 1.25rem;
  }

  .call-action-badge span {
    font-size: 0.9rem;
  }

  .feature-item {
    gap: 1rem;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
  }

  .feature-icon i {
    font-size: 1.5rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .call-action-badge,
  .call-action-badge i,
  .phone-icon-circle,
  .call-action-decoration {
    animation: none !important;
  }
}

/* ============================================
   4 Simple Steps to Rent a Car Section
   ============================================ */
.rental-steps-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.rental-steps-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.rental-steps-section .section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(236, 153, 75, 0.1);
  color: var(--mauno-base);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.rental-steps-section .section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--mauno-black);
  margin-bottom: 15px;
  line-height: 1.2;
}

.rental-steps-section .section-subtitle {
  font-size: 18px;
  color: #6b7280;
  margin: 0;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
  position: relative;
}

.step-item {
  background: var(--mauno-white);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(19, 18, 34, 0.08);
  transition: all 0.4s ease;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.step-item:nth-child(1) { animation-delay: 0.1s; }
.step-item:nth-child(2) { animation-delay: 0.2s; }
.step-item:nth-child(3) { animation-delay: 0.3s; }
.step-item:nth-child(4) { animation-delay: 0.4s; }

.step-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(236, 153, 75, 0.2);
}

.step-number-badge {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--mauno-base) 0%, #e08d4a 100%);
  color: var(--mauno-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 25px;
  position: relative;
  box-shadow: 0 4px 15px rgba(236, 153, 75, 0.3);
  transition: all 0.4s ease;
}

.step-item:hover .step-number-badge {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(236, 153, 75, 0.4);
}

.step-icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(236, 153, 75, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
}

.step-item:hover .step-icon-wrapper {
  background: rgba(236, 153, 75, 0.15);
  transform: scale(1.05);
}

.step-icon {
  font-size: 36px;
  color: var(--mauno-base);
  transition: all 0.4s ease;
}

.step-item:hover .step-icon {
  transform: scale(1.1);
}

.step-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--mauno-black);
  margin-bottom: 15px;
  line-height: 1.3;
}

.step-description {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.step-connector {
  position: absolute;
  top: 100px;
  left: calc(50% + 15px);
  width: calc(100% - 30px);
  height: 2px;
  background: linear-gradient(90deg,
    var(--mauno-base) 0%,
    var(--mauno-base) 50%,
    transparent 50%,
    transparent 100%);
  background-size: 20px 2px;
  z-index: 0;
}

.step-connector::after {
  content: '→';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--mauno-base);
  font-size: 20px;
  font-weight: 700;
}

.step-item:nth-child(4) .step-connector {
  display: none;
}

.steps-cta {
  text-align: center;
  margin-top: 20px;
}

.steps-cta .btn-modern {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--mauno-base) 0%, #e08d4a 100%);
  color: var(--mauno-white);
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(236, 153, 75, 0.3);
  border: none;
}

.steps-cta .btn-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(236, 153, 75, 0.4);
  background: linear-gradient(135deg, #e08d4a 0%, var(--mauno-base) 100%);
}

/* Responsive Design - Tablet */
@media (max-width: 992px) {
  .rental-steps-section {
    padding: 60px 0;
  }

  .rental-steps-section .section-title {
    font-size: 32px;
  }

  .rental-steps-section .section-subtitle {
    font-size: 16px;
  }

  .steps-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .step-item:nth-child(2) .step-connector,
  .step-item:nth-child(4) .step-connector {
    display: none;
  }

  .step-connector {
    top: 100px;
  }
}

/* Responsive Design - Mobile */
@media (max-width: 576px) {
  .rental-steps-section {
    padding: 50px 0;
  }

  .rental-steps-section .section-title {
    font-size: 28px;
  }

  .rental-steps-section .section-subtitle {
    font-size: 15px;
  }

  .steps-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step-item {
    padding: 30px 20px;
  }

  .step-connector {
    display: none !important;
  }

  .step-number-badge {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-bottom: 20px;
  }

  .step-icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .step-icon {
    font-size: 30px;
  }

  .step-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .step-description {
    font-size: 14px;
  }

  .steps-cta .btn-modern {
    padding: 14px 35px;
    font-size: 15px;
  }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .step-item {
    animation: none !important;
    opacity: 1;
  }

  .step-item:hover {
    transform: none;
  }

  .step-item:hover .step-number-badge,
  .step-item:hover .step-icon-wrapper,
  .step-item:hover .step-icon {
    transform: none;
  }

  .steps-cta .btn-modern:hover {
    transform: none;
  }
}

/* ============================================
   Best Rental Services Section
   ============================================ */
.rental-services-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.rental-services-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.service-card {
  background: var(--mauno-white);
  padding: 40px 35px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(19, 18, 34, 0.08);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(236, 153, 75, 0.25);
  border-color: var(--mauno-base);
}

.service-icon-wrapper {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, rgba(236, 153, 75, 0.1) 0%, rgba(236, 153, 75, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  position: relative;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon-wrapper {
  background: linear-gradient(135deg, var(--mauno-base) 0%, #e08d4a 100%);
  transform: scale(1.1) rotate(5deg);
}

.service-icon {
  font-size: 40px;
  color: var(--mauno-base);
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  color: var(--mauno-white);
  transform: scale(1.1);
}

.service-content {
  position: relative;
}

.service-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--mauno-black);
  margin-bottom: 15px;
  line-height: 1.3;
}

.service-description {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 25px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  background: transparent;
  border: 2px solid var(--mauno-base);
  color: var(--mauno-base);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-link:hover {
  background: var(--mauno-base);
  color: var(--mauno-white);
  transform: translateX(5px);
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(5px);
}

/* Responsive Design - Services */
@media (max-width: 992px) {
  .rental-services-section {
    padding: 60px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .service-card {
    padding: 35px 30px;
  }
}

@media (max-width: 576px) {
  .rental-services-section {
    padding: 50px 0;
  }

  .service-icon-wrapper {
    width: 75px;
    height: 75px;
  }

  .service-icon {
    font-size: 32px;
  }

  .service-title {
    font-size: 20px;
  }

  .service-description {
    font-size: 14px;
  }
}

/* ============================================
   Locations Section
   ============================================ */
.locations-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.locations-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.location-card {
  background: var(--mauno-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(19, 18, 34, 0.08);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.location-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(236, 153, 75, 0.25);
  border-color: var(--mauno-base);
}

.location-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.location-card:hover .location-image img {
  transform: scale(1.1);
}

.location-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(236, 153, 75, 0.8) 0%, rgba(224, 141, 74, 0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.location-card:hover .location-overlay {
  opacity: 1;
}

.location-overlay i {
  font-size: 50px;
  color: var(--mauno-white);
  transform: scale(0);
  transition: transform 0.4s ease 0.1s;
}

.location-card:hover .location-overlay i {
  transform: scale(1);
}

.location-content {
  padding: 30px;
}

.location-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--mauno-black);
  margin-bottom: 10px;
}

.location-address {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 20px;
}

.location-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}

.location-feature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  background: rgba(236, 153, 75, 0.1);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mauno-base);
}

.location-feature i {
  font-size: 14px;
}

.location-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--mauno-base) 0%, #e08d4a 100%);
  color: var(--mauno-white);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(236, 153, 75, 0.3);
}

.location-btn:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(236, 153, 75, 0.4);
  background: linear-gradient(135deg, #e08d4a 0%, var(--mauno-base) 100%);
}

.location-btn i {
  transition: transform 0.3s ease;
}

.location-btn:hover i {
  transform: translateX(5px);
}

.locations-cta {
  text-align: center;
  padding: 40px 20px;
  background: rgba(236, 153, 75, 0.05);
  border-radius: 16px;
  border: 2px dashed var(--mauno-base);
}

.locations-cta-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--mauno-black);
  margin-bottom: 20px;
}

.locations-cta .btn-modern {
  min-width: 200px;
}

/* Responsive Design - Locations */
@media (max-width: 992px) {
  .locations-section {
    padding: 60px 0;
  }

  .locations-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .location-image {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .locations-section {
    padding: 50px 0;
  }

  .location-image {
    height: 200px;
  }

  .location-content {
    padding: 25px 20px;
  }

  .location-title {
    font-size: 22px;
  }

  .location-features {
    gap: 10px;
  }

  .location-feature {
    font-size: 12px;
    padding: 6px 12px;
  }

  .locations-cta-text {
    font-size: 16px;
  }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .service-card:hover,
  .location-card:hover {
    transform: none;
  }

  .service-card:hover .service-icon-wrapper,
  .service-card:hover .service-icon {
    transform: none;
  }

  .location-image img {
    transform: none !important;
  }

  .location-overlay i {
    transform: scale(1);
  }

  .service-link:hover,
  .location-btn:hover {
    transform: none;
  }

  .service-link:hover i,
  .location-btn:hover i {
    transform: none;
  }
}
