/* ═══════════════════════════════════════════
 * AZRA Automotive — Home Page Styles
 * ═══════════════════════════════════════════ */

/* ─────────────────────────────────────────
 * 1. HERO — Full-screen Swiper Slider
 * ───────────────────────────────────────── */
.hero {
	position: relative;
	width: 100%;
	min-height: 100vh;
	min-height: 100dvh;
	height: 100vh;
	height: 100dvh;
	background: #050507;
	overflow: hidden;
}

/* ── Ambient layers (vignette + noise — below slider for depth) ── */
.hero__ambient {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}

.hero__ambient-vignette {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at center 50%, transparent 25%, rgba(0, 0, 0, 0.55) 100%),
		linear-gradient(180deg, rgba(5, 5, 7, 0.6) 0%, transparent 25%),
		linear-gradient(0deg, rgba(5, 5, 7, 0.45) 0%, transparent 18%);
}

.hero__ambient-noise {
	position: absolute;
	inset: 0;
	opacity: 0.03;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
	background-size: 256px 256px;
	mix-blend-mode: overlay;
}

/* ── Swiper Slider ── */
.hero__slider {
	position: absolute;
	inset: 0;
	z-index: 2;
}

.hero__slider .swiper-wrapper {
	height: 100%;
}

.hero__slide {
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
	overflow: hidden;
	padding-top: 80px;   /* fixed header clearance */
	padding-bottom: 80px; /* space for pagination/scroll */
}

/* Background photo per slide */
.hero__slide-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero__slide-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 40%;
	animation: heroKenBurns 18s ease-in-out infinite alternate;
}

.swiper-slide-active .hero__slide-img {
	animation-play-state: running;
}

.swiper-slide:not(.swiper-slide-active) .hero__slide-img {
	animation-play-state: paused;
}

@keyframes heroKenBurns {
	0%   { transform: scale(1); }
	100% { transform: scale(1.05); }
}

/* Dark overlay per slide — strong left-side gradient for text readability */
.hero__slide-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		radial-gradient(ellipse at center, transparent 15%, rgba(0, 0, 0, 0.45) 100%),
		linear-gradient(180deg, rgba(5, 5, 7, 0.7) 0%, rgba(5, 5, 7, 0.25) 30%, rgba(5, 5, 7, 0.55) 100%),
		linear-gradient(90deg, rgba(5, 5, 7, 0.75) 0%, rgba(5, 5, 7, 0.4) 40%, transparent 65%);
}

/* ── Slide 2-column layout ── */
.hero__slide-inner {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	align-items: center;
	gap: var(--space-3xl);
	position: relative;
	z-index: 3;
	width: 100%;
	max-width: var(--container-max-width, 1320px);
	margin: 0 auto;
	padding-left: var(--container-padding, 1.5rem);
	padding-right: var(--container-padding, 1.5rem);
}

/* Gold accent line above kicker */
.hero__accent-line {
	display: block;
	width: 48px;
	height: 2px;
	background: linear-gradient(90deg, var(--color-gold), rgba(201, 168, 76, 0.3));
	border-radius: 1px;
	opacity: 0;
}

/* ── Pagination (thin progress bars) ── */
.hero__pagination {
	position: absolute;
	bottom: 5rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	gap: 6px;
}

.hero__pagination .swiper-pagination-bullet {
	width: 40px;
	height: 3px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 2px;
	opacity: 1;
	transition: all 0.5s ease;
	cursor: pointer;
}

.hero__pagination .swiper-pagination-bullet-active {
	background: var(--color-gold);
	width: 64px;
}

/* ── Slide Counter (01 / 04) ── */
.hero__counter {
	position: absolute;
	right: var(--container-padding);
	bottom: 5rem;
	z-index: 10;
	font-family: var(--font-mono);
	font-size: var(--text-sm);
	letter-spacing: 0.15em;
	color: rgba(255, 255, 255, 0.3);
	opacity: 0;
}

.hero__counter-current {
	color: var(--color-gold);
	font-weight: 600;
}

.hero__counter-sep {
	margin: 0 4px;
}

/* ── Ambient light effects ── */
.hero__glow {
	position: absolute;
	right: 10%;
	top: 50%;
	transform: translateY(-50%);
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
	z-index: 3;
}

/* Particles container */
.hero__particles {
	position: absolute;
	inset: 0;
	z-index: 4;
	pointer-events: none;
}

.hero__particle {
	position: absolute;
	width: 3px;
	height: 3px;
	background: var(--color-gold);
	border-radius: 50%;
	opacity: 0;
}

/* Content */
.hero__content {
	display: flex;
	flex-direction: column;
	gap: var(--space-lg);
}

.hero__kicker {
	opacity: 0;
	color: var(--color-gold);
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.hero__title {
	display: flex;
	flex-direction: column;
}

.hero__title-line {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 4vw + 1rem, 5.5rem);
	font-weight: 700;
	line-height: 1.08;
	color: #fff;
	overflow: hidden;
	text-shadow:
		0 2px 30px rgba(0, 0, 0, 0.7),
		0 4px 60px rgba(0, 0, 0, 0.4);
}

/* Second title line — gold colour */
.hero__title-line--gold {
	color: var(--color-gold);
	text-shadow:
		0 2px 30px rgba(0, 0, 0, 0.7),
		0 4px 60px rgba(0, 0, 0, 0.4),
		0 0 80px rgba(201, 168, 76, 0.15);
}

.hero__title-line--gold .char {
	color: var(--color-gold);
}

.hero__title-line .char {
	display: inline-block;
	opacity: 0;
	transform: translateY(-50px);
}

.hero__subtitle {
	font-size: var(--text-lg);
	color: rgba(255, 255, 255, 0.85);
	max-width: 520px;
	line-height: 1.6;
	opacity: 0;
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.hero__ctas {
	display: flex;
	gap: var(--space-md);
	opacity: 0;
}

/* Car image */
.hero__car {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.hero__car-img {
	width: 100%;
	max-width: 750px;
	height: auto;
	object-fit: contain;
	opacity: 0;
	transform: translateX(60px);
	/* Car sits slightly above with a drop shadow on the floor */
	filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

/* Car floor reflection */
.hero__car-reflection {
	position: absolute;
	bottom: -30px;
	left: 10%;
	right: 10%;
	height: 60px;
	background: radial-gradient(
		ellipse at center,
		rgba(201, 168, 76, 0.04) 0%,
		rgba(201, 168, 76, 0.02) 40%,
		transparent 100%
	);
	border-radius: 50%;
	pointer-events: none;
}

/* Scroll indicator — centred at bottom */
.hero__scroll {
	position: absolute;
	bottom: 1.2rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-sm);
	opacity: 0;
	z-index: 10;
}

.hero__scroll-text {
	font-family: var(--font-mono);
	font-size: var(--text-xs);
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--color-text-muted);
}

.hero__scroll-line {
	width: 1px;
	height: 40px;
	background: linear-gradient(to bottom, var(--color-gold), transparent);
	animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
	0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
	50%      { opacity: 1; transform: scaleY(1); }
}

/* ─────────────────────────────────────────
 * 2. FEATURED CARS (catalog grid on homepage)
 * ───────────────────────────────────────── */
.featured-cars {
	padding: var(--space-5xl) 0;
	background: var(--color-bg-secondary);
	position: relative;
	overflow: hidden;
}

.featured-cars__header {
	text-align: center;
	margin-bottom: var(--space-3xl);
}

/* ── Grid — same 3-col layout as catalog ── */
.featured-cars__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-xl);
}

/* ── CTA link to full catalog ── */
.featured-cars__cta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--space-md);
	text-align: center;
	margin-top: var(--space-3xl);
}

.featured-cars__cta .btn {
	display: inline-flex;
	align-items: center;
	gap: var(--space-sm);
}

/* ── Responsive ── */
@media (max-width: 991px) {
	.featured-cars__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--space-lg);
	}
}

@media (max-width: 575px) {
	.featured-cars__grid {
		grid-template-columns: 1fr;
	}
}

/* ─────────────────────────────────────────
 * 3. HOW IT WORKS (Jak to działa)
 * ───────────────────────────────────────── */
.how-it-works {
	padding: var(--space-5xl) 0;
	background: var(--color-bg-primary);
}

.how-it-works__header {
	text-align: center;
	margin-bottom: var(--space-3xl);
}

.how-it-works__subtitle {
	font-size: var(--text-lg);
	color: var(--color-text-secondary);
	max-width: 560px;
	margin: var(--space-sm) auto 0;
}

.how-it-works__steps {
	display: grid;
	grid-template-columns: repeat(7, auto);
	align-items: start;
	justify-content: center;
	gap: 0;
}

.how-it-works__step {
	text-align: center;
	position: relative;
	padding: var(--space-xl) var(--space-lg);
	min-width: 200px;
}

/* Big background number */
.how-it-works__number {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	font-family: var(--font-display);
	font-size: clamp(5rem, 8vw, 8rem);
	font-weight: 700;
	color: var(--color-gold);
	opacity: 0.08;
	line-height: 1;
	pointer-events: none;
	z-index: 0;
	user-select: none;
}

.how-it-works__icon {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	margin: var(--space-2xl) auto var(--space-lg);
	background: var(--color-glass-bg);
	border: 1px solid var(--color-glass-border);
	border-radius: var(--radius-xl);
	color: var(--color-gold);
	transition:
		background var(--transition-base),
		border-color var(--transition-base),
		box-shadow var(--transition-base);
}

.how-it-works__icon img {
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.how-it-works__step:hover .how-it-works__icon {
	background: var(--color-glass-bg-hover);
	border-color: var(--color-gold);
	box-shadow: 0 0 20px rgba(201, 168, 76, 0.12);
}

.how-it-works__step-title {
	position: relative;
	z-index: 1;
	font-family: var(--font-display);
	font-size: var(--text-xl);
	font-weight: 600;
	color: var(--color-text-primary);
	margin-bottom: var(--space-sm);
}

.how-it-works__step-desc {
	position: relative;
	z-index: 1;
	font-size: var(--text-sm);
	color: var(--color-text-muted);
	max-width: 220px;
	margin: 0 auto;
	line-height: 1.6;
}

/* Connector arrows — only desktop */
.how-it-works__connector {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: calc(var(--space-2xl) + 30px);
	color: var(--color-gold);
	opacity: 0.3;
}

/* ─────────────────────────────────────────
 * 4. RENTAL MODELS (Modele wynajmu)
 * ───────────────────────────────────────── */
.rental-models {
	padding: var(--space-5xl) 0;
	background: var(--color-bg-secondary);
}

.rental-models__header {
	text-align: center;
	margin-bottom: var(--space-3xl);
}

.rental-models__subtitle {
	font-size: var(--text-lg);
	color: var(--color-text-secondary);
	max-width: 560px;
	margin: var(--space-sm) auto 0;
}

.rental-models__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-xl);
	align-items: stretch;
}

.rental-models__card {
	padding: var(--space-2xl);
	display: flex;
	flex-direction: column;
	gap: var(--space-md);
	position: relative;
	overflow: hidden;
	transition:
		background var(--transition-base),
		border-color var(--transition-base),
		box-shadow var(--transition-base),
		transform var(--transition-base);
}

.rental-models__card:hover {
	transform: scale(1.02);
	border-color: rgba(201, 168, 76, 0.25);
	box-shadow: 0 8px 32px rgba(201, 168, 76, 0.1);
}

/* Featured card — gold border + lighter bg */
.rental-models__card--featured {
	border-color: rgba(201, 168, 76, 0.3);
	background: rgba(201, 168, 76, 0.04);
}

.rental-models__card--featured:hover {
	border-color: rgba(201, 168, 76, 0.5);
	background: rgba(201, 168, 76, 0.07);
	box-shadow: 0 8px 40px rgba(201, 168, 76, 0.15);
}

.rental-models__badge {
	position: absolute;
	top: var(--space-md);
	right: var(--space-md);
	background: var(--color-gold-gradient);
	color: var(--color-text-inverse);
	font-family: var(--font-mono);
	font-size: var(--text-xs);
	font-weight: 500;
	padding: 4px 12px;
	border-radius: var(--radius-full);
	letter-spacing: 0.05em;
}

.rental-models__icon {
	color: var(--color-gold);
	margin-bottom: var(--space-sm);
}

.rental-models__icon img {
	width: 48px;
	height: 48px;
	object-fit: contain;
}

.rental-models__title {
	font-family: var(--font-display);
	font-size: var(--text-2xl);
	font-weight: 600;
	color: var(--color-text-primary);
}

.rental-models__desc {
	font-size: var(--text-sm);
	color: var(--color-text-muted);
	line-height: 1.7;
	flex-grow: 1;
}

.rental-models__card .btn {
	margin-top: var(--space-md);
}

/* ─────────────────────────────────────────
 * 4b. BOOKING FORM SECTION
 * ───────────────────────────────────────── */
.booking-section {
	position: relative;
	padding: var(--space-5xl) 0;
	background-color: var(--color-bg-primary);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.booking-section__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(5, 5, 7, 0.92) 0%, rgba(5, 5, 7, 0.80) 100%);
	pointer-events: none;
	z-index: 0;
}

.booking-section__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: var(--space-3xl);
	align-items: start;
}

/* Left: info column */
.booking-section__info {
	display: flex;
	flex-direction: column;
	gap: var(--space-lg);
	padding-top: var(--space-xl);
}

.booking-section__title {
	font-family: var(--font-display);
	font-size: var(--text-4xl);
	font-weight: 600;
	color: var(--color-text-primary);
	line-height: 1.15;
}

.booking-section__subtitle {
	font-size: var(--text-lg);
	color: var(--color-text-secondary);
	line-height: 1.6;
}

.booking-section__contacts {
	display: flex;
	flex-direction: column;
	gap: var(--space-md);
	margin-top: var(--space-lg);
}

.booking-section__contact-item {
	display: inline-flex;
	align-items: center;
	gap: var(--space-sm);
	color: var(--color-text-secondary);
	font-size: var(--text-base);
	transition: color var(--transition-fast);
}

.booking-section__contact-item svg {
	color: var(--color-gold);
	flex-shrink: 0;
}

.booking-section__contact-item:hover {
	color: var(--color-gold);
}

.booking-section__contact-item--whatsapp:hover {
	color: #25D366;
}

.booking-section__contact-item--whatsapp:hover svg {
	color: #25D366;
}

/* Right: form card */
.booking-section__form-wrap {
	padding: var(--space-2xl);
}

/* .booking-form styles moved to components/forms.css (shared with popup) */

/* ─────────────────────────────────────────
 * 5. STATS
 * ───────────────────────────────────────── */
.stats {
	padding: var(--space-4xl) 0;
	background: var(--color-bg-primary);
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
}

.stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-xl);
	text-align: center;
}

.stats__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-sm);
}

.stats__value {
	font-family: var(--font-display);
	font-size: var(--text-4xl);
	font-weight: 700;
	color: var(--color-gold);
	line-height: 1;
}

.stats__label {
	font-family: var(--font-body);
	font-size: var(--text-sm);
	color: var(--color-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

/* ─────────────────────────────────────────
 * 6. TESTIMONIALS
 * ───────────────────────────────────────── */
.testimonials {
	padding: var(--space-5xl) 0;
	background: var(--color-bg-secondary);
}

.testimonials__header {
	text-align: center;
	margin-bottom: var(--space-3xl);
}

.testimonials__swiper {
	max-width: 900px;
	margin: 0 auto;
	position: relative;
}

.testimonials__card {
	padding: var(--space-2xl) var(--space-xl);
	text-align: center;
}

.testimonials__stars {
	display: flex;
	justify-content: center;
	gap: 2px;
	margin-bottom: var(--space-lg);
}

.testimonials__text {
	font-family: var(--font-display);
	font-size: var(--text-xl);
	font-style: italic;
	color: var(--color-text-primary);
	line-height: 1.6;
	margin-bottom: var(--space-xl);
}

.testimonials__author {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.testimonials__author-name {
	font-family: var(--font-body);
	font-size: var(--text-base);
	font-weight: 600;
	color: var(--color-text-primary);
}

.testimonials__author-role {
	font-family: var(--font-mono);
	font-size: var(--text-xs);
	color: var(--color-text-muted);
}

/* Navigation arrows */
.testimonials__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: var(--color-glass-bg);
	border: 1px solid var(--color-glass-border);
	border-radius: 50%;
	color: var(--color-text-secondary);
	cursor: pointer;
	transition:
		background var(--transition-base),
		border-color var(--transition-base),
		color var(--transition-base),
		box-shadow var(--transition-base);
}

.testimonials__nav:hover {
	background: var(--color-glass-bg-hover);
	border-color: var(--color-gold);
	color: var(--color-gold);
	box-shadow: 0 0 20px rgba(201, 168, 76, 0.12);
}

.testimonials__nav--prev {
	left: -80px;
}

.testimonials__nav--next {
	right: -80px;
}

.testimonials__pagination {
	display: flex;
	justify-content: center;
	gap: var(--space-sm);
	margin-top: var(--space-xl);
}

.testimonials__pagination .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: var(--color-text-muted);
	opacity: 0.4;
	border-radius: var(--radius-full);
	transition: all var(--transition-fast);
}

.testimonials__pagination .swiper-pagination-bullet-active {
	background: var(--color-gold);
	opacity: 1;
	width: 24px;
}

/* ─────────────────────────────────────────
 * 7. CTA STRIP
 * ───────────────────────────────────────── */
.cta-strip {
	position: relative;
	padding: var(--space-5xl) 0;
	background: var(--color-bg-primary);
	overflow: hidden;
}

.cta-strip__bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
		radial-gradient(ellipse at 70% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
	pointer-events: none;
}

.cta-strip__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-2xl);
	text-align: center;
}

.cta-strip__content {
	max-width: 520px;
}

.cta-strip__title {
	font-family: var(--font-display);
	font-size: var(--text-4xl);
	font-weight: 600;
	color: var(--color-text-primary);
	margin-bottom: var(--space-md);
}

.cta-strip__desc {
	font-size: var(--text-lg);
	color: var(--color-text-secondary);
}

.cta-strip__form {
	width: 100%;
	max-width: 800px;
}

/* Better form layout in CTA strip */
.cta-strip__form .azra-form--inline {
	grid-template-columns: 1fr 1fr;
	gap: var(--space-lg);
}

.cta-strip__form .azra-form-field--submit {
	align-self: end;
}

.cta-strip__form .azra-form-field--submit .wpcf7-submit,
.cta-strip__form .azra-form-field--submit input[type="submit"] {
	width: 100%;
	padding: 1rem 2rem;
	font-size: var(--text-base);
}

.cta-strip__form .azra-form-field label {
	color: var(--color-text-secondary);
	font-size: var(--text-sm);
	margin-bottom: var(--space-sm);
}

.cta-strip__divider {
	display: flex;
	align-items: center;
	gap: var(--space-lg);
	width: 100%;
	max-width: 500px;
	color: var(--color-text-muted);
	font-family: var(--font-body);
	font-size: var(--text-sm);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.cta-strip__divider::before,
.cta-strip__divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: var(--color-glass-border);
}

.cta-strip__buttons {
	display: flex;
	gap: var(--space-md);
}

.cta-strip__btn {
	min-width: 180px;
}

.cta-strip__btn--whatsapp:hover {
	background: #25D366;
	border-color: #25D366;
	color: #fff;
}

/* ─────────────────────────────────────────
 * 8. INSTAGRAM FEED
 * ───────────────────────────────────────── */
.instagram-feed {
	padding: var(--space-5xl) 0;
	background: var(--color-bg-primary);
}

.instagram-feed__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: var(--space-3xl);
}

.instagram-feed__follow {
	display: inline-flex;
	align-items: center;
	gap: var(--space-xs);
}

.instagram-feed__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: var(--space-sm);
}

.instagram-feed__item {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: var(--radius-lg);
	aspect-ratio: 1 / 1;
	border: 1px solid var(--color-glass-border);
	transition: border-color var(--transition-base);
}

.instagram-feed__item:hover {
	border-color: rgba(225, 48, 108, 0.4);
}

.instagram-feed__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-slow);
}

.instagram-feed__item:hover img {
	transform: scale(1.08);
}

.instagram-feed__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(5, 5, 7, 0.6);
	opacity: 0;
	transition: opacity var(--transition-base);
	color: #fff;
}

.instagram-feed__item:hover .instagram-feed__overlay {
	opacity: 1;
}

/* ─────────────────────────────────────────
 * 9. BLOG PREVIEW
 * ───────────────────────────────────────── */
.blog-preview {
	padding: var(--space-5xl) 0;
	background: var(--color-bg-secondary);
}

.blog-preview__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: var(--space-3xl);
}

.blog-preview__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-xl);
}

.blog-preview__card {
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.blog-preview__body {
	padding: var(--space-lg) var(--space-xl) var(--space-xl);
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
	flex-grow: 1;
}

.blog-preview__media {
	position: relative;
	overflow: hidden;
}

.blog-preview__media--no-thumb {
	padding: var(--space-md) var(--space-lg) 0;
}

.blog-preview__thumb {
	display: block;
	overflow: hidden;
	aspect-ratio: 3 / 2;
}

.blog-preview__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-slow);
}

.blog-preview__card:hover .blog-preview__thumb img {
	transform: scale(1.05);
}

.blog-preview__cat {
	position: absolute;
	top: var(--space-md);
	left: var(--space-md);
	z-index: 2;
	display: inline-block;
	font-family: var(--font-mono);
	font-size: var(--text-xs);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--color-gold);
	text-decoration: none;
	background: rgba(5, 5, 7, 0.65);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 5px 14px;
	border-radius: var(--radius-full);
	border: 1px solid rgba(201, 168, 76, 0.2);
	transition: background var(--transition-base), color var(--transition-base);
}

.blog-preview__media--no-thumb .blog-preview__cat {
	position: static;
}

.blog-preview__cat:hover {
	color: var(--color-gold-light);
	background: rgba(5, 5, 7, 0.8);
}

.blog-preview__meta {
	display: flex;
	gap: var(--space-md);
	font-family: var(--font-mono);
	font-size: var(--text-xs);
	color: var(--color-text-muted);
}

.blog-preview__title {
	font-family: var(--font-display);
	font-size: var(--text-xl);
	font-weight: 600;
}

.blog-preview__title a {
	color: var(--color-text-primary);
	transition: color var(--transition-fast);
}

.blog-preview__title a:hover {
	color: var(--color-gold);
}

.blog-preview__excerpt {
	font-size: var(--text-sm);
	color: var(--color-text-muted);
	flex-grow: 1;
}

.blog-preview__link {
	display: inline-flex;
	align-items: center;
	gap: var(--space-xs);
	font-size: var(--text-sm);
	font-weight: 500;
	color: var(--color-gold);
	margin-top: var(--space-sm);
	transition: gap var(--transition-fast);
}

.blog-preview__link:hover {
	gap: var(--space-sm);
}

/* ═══════════════════════════════════════════
 * RESPONSIVE
 * ═══════════════════════════════════════════ */

/* Tablet */
@media (max-width: 991px) {
	.hero__slide {
		padding-top: 100px;
		padding-bottom: 100px;
	}

	.hero__slide-inner {
		grid-template-columns: 1fr;
		text-align: center;
		gap: var(--space-xl);
	}

	.hero__content {
		align-items: center;
	}

	.hero__accent-line {
		margin: 0 auto;
	}

	.hero__subtitle {
		margin: 0 auto;
	}

	.hero__ctas {
		justify-content: center;
	}

	.hero__car {
		order: -1;
	}

	.hero__car-img {
		max-width: 420px;
	}

	.hero__glow {
		right: auto;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 400px;
		height: 400px;
	}

	.hero__counter {
		display: none;
	}

	.hero__pagination {
		bottom: 4.5rem;
	}

	.how-it-works__steps {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--space-xl);
	}

	.how-it-works__connector {
		display: none;
	}

	.how-it-works__step {
		min-width: 0;
	}

	.rental-models__grid {
		grid-template-columns: 1fr;
		max-width: 460px;
		margin: 0 auto;
	}

	.booking-section__inner {
		grid-template-columns: 1fr;
		gap: var(--space-2xl);
	}

	.booking-section__info {
		text-align: center;
		align-items: center;
		padding-top: 0;
	}

	.booking-section__contacts {
		align-items: center;
	}

	.testimonials__nav--prev {
		left: -12px;
	}

	.testimonials__nav--next {
		right: -12px;
	}

	.stats__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--space-2xl);
	}

	.cta-strip__form .azra-form--inline {
		grid-template-columns: 1fr;
	}

	.cta-strip__buttons {
		flex-direction: column;
		align-items: center;
	}

	.instagram-feed__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: var(--space-xs);
	}

	.instagram-feed__header {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--space-md);
	}

	.blog-preview__grid {
		grid-template-columns: 1fr;
		max-width: 500px;
		margin: 0 auto;
	}

	.blog-preview__header {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--space-md);
	}
}

/* Mobile */
@media (max-width: 575px) {
	.hero__slide {
		padding-top: 90px;
		padding-bottom: 80px;
	}

	.hero__title-line {
		font-size: clamp(2.5rem, 10vw, 4rem);
	}

	.hero__car-img {
		max-width: 100%;
	}

	.hero__ctas {
		flex-direction: column;
		width: 100%;
	}

	.hero__ctas .btn {
		width: 100%;
	}

	/* Darken overlay more on mobile for readability */
	.hero__slide-overlay {
		background:
			radial-gradient(ellipse at center, transparent 10%, rgba(0, 0, 0, 0.6) 100%),
			linear-gradient(180deg, rgba(5, 5, 7, 0.8) 0%, rgba(5, 5, 7, 0.35) 35%, rgba(5, 5, 7, 0.65) 100%);
	}

	.hero__scroll {
		display: none;
	}

	.testimonials__nav {
		width: 40px;
		height: 40px;
	}

	.testimonials__nav--prev {
		left: 4px;
	}

	.testimonials__nav--next {
		right: 4px;
	}

	.instagram-feed__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.how-it-works__steps {
		grid-template-columns: 1fr;
	}

	.how-it-works__number {
		font-size: 4rem;
	}

	.stats__grid {
		grid-template-columns: 1fr 1fr;
	}

	.cta-strip__buttons {
		flex-direction: column;
		width: 100%;
	}

	.cta-strip__btn {
		width: 100%;
	}

	.booking-section__form-wrap {
		padding: var(--space-lg);
	}
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	.hero__slide-img {
		animation: none;
	}

	.hero__particle {
		display: none;
	}

	.hero__scroll-line {
		animation: none;
		opacity: 0.6;
	}
}

/* ═══════════════════════════════════════════
 * HERO — Trust strip
 *
 * Sits under the CTAs and answers the question the hero copy
 * cannot: what you actually get. Gold line icons on glass,
 * staggered in by GSAP after the buttons.
 * ═══════════════════════════════════════════ */
.hero__trust {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm) var(--space-md);
	list-style: none;
	margin: var(--space-sm) 0 0;
	padding: 0;
}

.hero__trust-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 14px 7px 10px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-full);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition:
		background var(--transition-base),
		border-color var(--transition-base),
		transform var(--transition-base);
}

.hero__trust-item:hover {
	background: rgba(201, 168, 76, 0.1);
	border-color: rgba(201, 168, 76, 0.35);
	transform: translateY(-2px);
}

.hero__trust-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	flex-shrink: 0;
	border-radius: 50%;
	background: rgba(201, 168, 76, 0.12);
	color: var(--color-gold);
}

.hero__trust-icon svg {
	width: 16px;
	height: 16px;
}

.hero__trust-label {
	font-family: var(--font-body);
	font-size: var(--text-sm);
	font-weight: 500;
	line-height: 1.2;
	color: rgba(245, 245, 240, 0.9);
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
	white-space: nowrap;
}

/* Tablet — keep all four visible, tighten instead of wrapping badly */
@media (max-width: 1100px) {
	.hero__trust-item {
		padding: 6px 12px 6px 8px;
		gap: 6px;
	}

	.hero__trust-label {
		font-size: var(--text-xs);
	}
}

/* Phone — two per row reads better than a ragged wrap */
@media (max-width: 560px) {
	.hero__trust {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--space-sm);
	}

	.hero__trust-item {
		padding: 6px 10px 6px 6px;
	}

	.hero__trust-icon {
		width: 24px;
		height: 24px;
	}

	.hero__trust-icon svg {
		width: 14px;
		height: 14px;
	}

	.hero__trust-label {
		white-space: normal;
	}
}
