:root {
    --color-primary: #040404;
    --color-primary-dark: #000000;
    --color-brand: #20a8d8;
    --color-brand-dark: #188db8;
    --color-accent: #a3a3a3;
    --color-accent-dark: #737373;
    --color-gold: var(--color-accent);
    --color-gold-dark: var(--color-accent-dark);
    --color-white: #ffffff;
    --color-light: #f5f5f5;
    --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --site-header-height: 4.25rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: #2d3748;
    background: var(--color-white);
    line-height: 1.6;
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    color: var(--color-gold-dark);
}

/* Header */
.site-header {
    background: var(--color-brand);
    box-shadow: 0 2px 14px rgba(24, 141, 184, 0.28);
    z-index: 1030;
}

.site-header .navbar {
    min-height: var(--site-header-height);
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    padding: 0.5rem 0.85rem;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #fff;
    text-shadow: 0 0 0.5px currentColor;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    padding: 0.15rem 0;
    line-height: 0;
}

.brand-logo {
    display: block;
    width: auto;
    max-width: min(200px, 58vw);
    height: auto;
    object-fit: contain;
    object-position: left center;
}

.brand-logo--footer {
    max-width: 200px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

.footer-brand:hover {
    opacity: 0.92;
}

/* Buttons */
.btn-primary {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

.btn-outline-gold {
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.btn-outline-gold:hover {
    background: var(--color-gold);
    color: var(--color-primary);
}

.site-header .language-switch {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.75);
}

.site-header .language-switch:hover,
.site-header .language-switch:focus {
    background: rgba(255, 255, 255, 0.16);
    border-color: #fff;
    color: #fff;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #25d366;
    border-color: #25d366;
    color: #fff;
    font-weight: 600;
}

.btn-whatsapp:hover {
    background: #1da851;
    border-color: #1da851;
    color: #fff;
}

.wa-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.bg-gold {
    background: var(--color-gold) !important;
    color: var(--color-primary) !important;
}

.text-gold {
    color: var(--color-gold) !important;
}

/* Hero */
.hero-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: var(--color-white);
    min-height: clamp(28rem, 72vh, 40rem);
    display: flex;
    align-items: center;
    background-color: #0b1c24;
    background-image: var(--hero-banner);
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(180deg, rgba(4, 16, 24, 0.72) 0%, rgba(4, 16, 24, 0.55) 45%, rgba(4, 16, 24, 0.78) 100%),
        linear-gradient(90deg, rgba(4, 16, 24, 0.35) 0%, rgba(4, 16, 24, 0.15) 50%, rgba(4, 16, 24, 0.35) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-block: clamp(3.5rem, 8vh, 5.5rem);
}

.hero-copy {
    max-width: 52rem;
}

.hero-title {
    font-size: clamp(1.7rem, 4.4vw, 2.85rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    text-wrap: balance;
    animation: hero-fade-up 0.7s ease-out both;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 500;
    line-height: 1.65;
    opacity: 0.95;
    max-width: 44rem;
    margin-inline: auto;
    text-wrap: pretty;
    animation: hero-fade-up 0.7s ease-out 0.12s both;
}

.hero-actions {
    margin-top: 1.75rem;
    animation: hero-fade-up 0.7s ease-out 0.22s both;
}

.btn-hero-whatsapp,
.btn-hero-secondary {
    min-width: 12.5rem;
    border-radius: 0.65rem;
    padding: 0.8rem 1.35rem;
    font-weight: 700;
}

.btn-hero-secondary {
    background: var(--color-brand);
    border-color: var(--color-brand);
    color: #fff;
}

.btn-hero-secondary:hover,
.btn-hero-secondary:focus {
    background: var(--color-brand-dark);
    border-color: var(--color-brand-dark);
    color: #fff;
}

@keyframes hero-fade-up {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats */
.section-stats {
    background: var(--color-gold);
    color: var(--color-primary);
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Sections */
.section-title {
    color: var(--color-primary);
    font-weight: 700;
}

.bg-light-subtle {
    background: var(--color-light);
}

.page-hero {
    background: var(--color-light);
    border-bottom: 3px solid var(--color-gold);
}

.page-title {
    color: var(--color-primary);
    font-weight: 700;
}

.page-lead {
    max-width: 42rem;
    margin-top: 0.5rem;
    font-size: 1.05rem;
}

/* Service cards */
.service-card {
    padding: 1.5rem;
    border-radius: 12px;
    background: var(--color-white);
    box-shadow: 0 4px 20px rgba(26, 54, 93, 0.08);
    border: 1px solid #e2e8f0;
}

.service-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon .bi {
    font-size: 1.5rem;
    line-height: 1;
    color: var(--color-white);
}

/* City tour (home) */
.city-tour-section {
    background: linear-gradient(180deg, var(--color-light) 0%, var(--color-white) 100%);
}

.city-tour-subtitle {
    max-width: 40rem;
}

.city-tour-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.city-tour-card-title {
    color: var(--color-primary);
    font-weight: 700;
}

.city-tour-duration {
    color: var(--color-primary-dark);
    font-size: 0.875rem;
    font-weight: 600;
}

.city-tour-duration .bi {
    margin-right: 0.25rem;
}

.city-tour-highlights li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.35rem;
    color: #4a5568;
}

.city-tour-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
}

.city-tour-card {
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-white);
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.city-tour-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.city-tour-card-image-link {
    display: block;
    text-decoration: none;
}

.city-tour-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.city-tour-card-img-placeholder {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    font-size: 2rem;
}

.city-tour-card-body {
    padding: 1.25rem;
}

.city-tour-card-icon--sm {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.city-tour-card-title a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 700;
}

.city-tour-card-title a:hover {
    color: var(--color-accent-dark);
}

.city-tour-highlights--page li {
    margin-bottom: 0.5rem;
}

.city-tour-inquiry-card .card-header {
    border-bottom: none;
}

/* Fleet index */
.fleet-index-section {
    background: var(--color-light);
}

.fleet-filters {
    border: none;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    background: var(--color-white);
}

/* Fleet cards */
.fleet-card {
    border: none;
    border-radius: 14px;
    overflow: hidden;
    background: var(--color-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
}

.fleet-card-media {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #e9eef5;
    text-align: inherit;
    -webkit-appearance: none;
    appearance: none;
}

button.fleet-card-media-trigger {
    cursor: zoom-in;
}

button.fleet-card-media-trigger:focus-visible {
    outline: 3px solid rgba(32, 168, 216, 0.55);
    outline-offset: -3px;
}

.fleet-card-img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 62%;
    padding: 0;
    transform: scale(1.18);
    transform-origin: center 58%;
    transition: transform 0.4s ease;
}

.fleet-card:hover .fleet-card-img {
    transform: scale(1.24);
}

.fleet-card-img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #e8f0fa 0%, #d4e4f7 100%);
    color: var(--color-primary);
    font-size: 2.75rem;
}

.fleet-card-media-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 45, 98, 0.22) 100%);
    pointer-events: none;
}

.fleet-card-zoom {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    color: var(--color-primary-dark);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

.fleet-card:hover .fleet-card-zoom,
.fleet-card-media-trigger:focus-visible .fleet-card-zoom {
    opacity: 1;
    transform: translateY(0);
}

.fleet-card-category {
    position: absolute;
    left: 0.85rem;
    bottom: 0.85rem;
    z-index: 1;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.fleet-card-featured {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    z-index: 1;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-primary-dark);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(56, 182, 255, 0.45);
}

.fleet-card-body {
    padding: 1.25rem 1.35rem 1.35rem;
}

.fleet-card-title {
    margin-bottom: 0.75rem;
    line-height: 1.35;
    color: var(--color-primary-dark);
}

.fleet-card-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.25rem 0.4rem;
    margin-bottom: 0.85rem;
    padding: 0.65rem 0.85rem;
    background: rgba(4, 4, 4, 0.06);
    border-radius: 8px;
    border-left: 3px solid var(--color-accent);
}

.fleet-card-price-label,
.fleet-card-price-unit {
    font-size: 0.8rem;
    color: #64748b;
}

.fleet-card-price-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
}

.fleet-card-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem 0.75rem;
    margin-bottom: 1rem;
}

.fleet-card-specs li {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.85rem;
    color: #64748b;
    min-width: 0;
}

.fleet-card-specs .bi {
    flex-shrink: 0;
    font-size: 0.95rem;
    color: var(--color-accent);
}

.fleet-card-cta {
    font-weight: 600;
    border-radius: 8px;
    padding: 0.45rem 1rem;
    align-self: center;
    margin-top: 1.25rem;
}

.fleet-card-cta .bi {
    font-size: 0.85em;
    transition: transform 0.2s;
}

.fleet-card:hover .fleet-card-cta .bi {
    transform: translateX(3px);
}

/* Fleet image gallery lightbox */
.fleet-gallery {
    position: fixed;
    inset: 0;
    z-index: 1080;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.fleet-gallery[hidden] {
    display: none !important;
}

.fleet-gallery-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 16, 24, 0.82);
    cursor: zoom-out;
}

.fleet-gallery-dialog {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(960px, 100%);
    max-height: min(90vh, 900px);
}

.fleet-gallery-figure {
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.fleet-gallery-img {
    display: block;
    max-width: 100%;
    max-height: min(78vh, 760px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

.fleet-gallery-caption {
    margin: 0;
    max-width: 90%;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    text-align: center;
}

.fleet-gallery-close,
.fleet-gallery-nav {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(6px);
    transition: background 0.2s ease, transform 0.2s ease;
}

.fleet-gallery-close:hover,
.fleet-gallery-nav:hover {
    background: rgba(255, 255, 255, 0.28);
}

.fleet-gallery-close {
    top: -0.25rem;
    right: -0.25rem;
    width: 2.5rem;
    height: 2.5rem;
    z-index: 2;
}

.fleet-gallery-nav {
    top: 50%;
    width: 2.75rem;
    height: 2.75rem;
    transform: translateY(-50%);
    font-size: 1.35rem;
}

.fleet-gallery-prev {
    left: 0.25rem;
}

.fleet-gallery-next {
    right: 0.25rem;
}

.fleet-gallery-counter {
    position: absolute;
    bottom: -1.75rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

body.fleet-gallery-open {
    overflow: hidden;
}

.fleet-price-lg {
    font-size: 1.25rem;
    color: var(--color-primary);
}

.fleet-specs-card {
    border-left: 4px solid var(--color-gold);
}

.feature-list li {
    margin-bottom: 0.35rem;
}

.feature-list li::marker {
    color: var(--color-gold);
}

.gallery-thumb {
    cursor: pointer;
    opacity: 0.7;
    border: 2px solid transparent;
}

.gallery-thumb.active,
.gallery-thumb:hover {
    opacity: 1;
    border-color: var(--color-gold);
}

/* Testimonials */
.testimonial-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(26, 54, 93, 0.08);
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-avatar.placeholder {
    background: #e2e8f0;
}

/* CTA banner */
.cta-banner {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
}

.site-cta {
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(32, 168, 216, 0.12), transparent 42%),
        #141414;
    color: #fff;
    padding: clamp(2.75rem, 6vw, 4rem) 0;
}

.site-cta-title {
    margin: 0 auto;
    max-width: 40rem;
    font-size: clamp(1.25rem, 2.6vw, 1.65rem);
    font-weight: 700;
    line-height: 1.45;
    text-wrap: balance;
}

/* Sticky inquiry sidebar (airport transfer, etc.) */
.inquiry-sticky-wrap {
    position: sticky;
    top: calc(var(--site-header-height) + 1rem);
    z-index: 10;
    max-height: calc(100vh - var(--site-header-height) - 2rem);
    overflow-y: auto;
    overscroll-behavior: contain;
}

.inquiry-sticky-card {
    background: var(--color-white);
    border: 1px solid #e2e8f0;
}

/* Sections after sticky columns stack above the sticky card */
.section-over-sticky,
.site-footer,
.site-cta {
    position: relative;
    z-index: 20;
}

main > section {
    position: relative;
}

/* Footer */
.site-footer {
    background: var(--color-brand);
    color: rgba(255, 255, 255, 0.95);
}

.footer-main {
    padding-block: clamp(2.75rem, 6vw, 4rem);
}

.footer-title {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-about {
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
    max-width: 28rem;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.95);
    display: inline-block;
    padding: 0.25rem 0;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.footer-contact .bi {
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.footer-phone {
    color: #ffb4c0 !important;
    font-weight: 600;
}

.btn-footer-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #fff;
    border: 1px solid #fff;
    color: var(--color-brand);
    font-weight: 700;
    border-radius: 0.5rem;
    padding: 0.65rem 1.1rem;
}

.btn-footer-whatsapp:hover,
.btn-footer-whatsapp:focus {
    background: rgba(255, 255, 255, 0.92);
    border-color: #fff;
    color: var(--color-brand-dark);
}

.site-footer .seo-crawl-links {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.site-footer .seo-crawl-links .footer-title {
    font-size: 0.85rem;
    opacity: 0.9;
}

.site-footer .seo-crawl-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-bottom {
    background: var(--color-brand-dark);
    padding: 1rem 0 1.15rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.92);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.85);
}

.footer-legal a:hover {
    color: #fff;
}

.footer-legal span {
    margin: 0 0.4rem;
    opacity: 0.6;
}

.whatsapp-float {
    position: fixed;
    right: 1.15rem;
    bottom: 1.15rem;
    z-index: 1040;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 0.85rem;
    background: #25d366;
    color: #fff;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
    transition: transform 0.2s ease, background 0.2s ease;
}

.whatsapp-float svg {
    width: 1.65rem;
    height: 1.65rem;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
    background: #1da851;
    color: #fff;
    transform: translateY(-2px);
}

.text-footer-muted {
    color: rgba(255, 255, 255, 0.65) !important;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.15);
    margin: 2rem 0 1rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.9);
}

.social-links a {
    display: inline-block;
    margin-right: 1rem;
    color: var(--color-gold);
    font-size: 0.875rem;
}

/* Accordion */
.accordion-button:not(.collapsed) {
    background: rgba(26, 54, 93, 0.06);
    color: var(--color-primary);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.35);
}

/* Blog index */
.blog-index-section {
    background: var(--color-light);
}

.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-filter-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    background: var(--color-white);
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.blog-filter-pill:hover {
    color: var(--color-primary-dark);
    border-color: var(--color-accent);
    box-shadow: 0 2px 8px rgba(4, 4, 4, 0.12);
}

.blog-filter-pill.is-active {
    color: #fff;
    background: var(--color-primary);
    border-color: var(--color-primary);
}

/* Blog cards */
.blog-card {
    border: none;
    border-radius: 14px;
    overflow: hidden;
    background: var(--color-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
}

.blog-card-media {
    position: relative;
    display: block;
    overflow: hidden;
}

.blog-card-img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.04);
}

.blog-card-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #e8f0fa 0%, #d4e4f7 100%);
    color: var(--color-primary);
    font-size: 2.5rem;
}

.blog-card-media-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 45, 98, 0.35) 100%);
    pointer-events: none;
}

.blog-card-category {
    position: absolute;
    left: 0.85rem;
    bottom: 0.85rem;
    z-index: 1;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.blog-card-body {
    padding: 1.25rem 1.35rem 1.35rem;
}

.blog-card-date {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 0.65rem;
}

.blog-card-date .bi {
    color: var(--color-accent);
}

.blog-card-title {
    margin-bottom: 0.65rem;
    line-height: 1.35;
}

.blog-card-title a {
    color: var(--color-primary-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.blog-card-title a:hover {
    color: var(--color-accent-dark);
}

.blog-card-excerpt {
    font-size: 0.925rem;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 1rem;
}

.blog-card-cta {
    font-weight: 600;
    border-radius: 8px;
    padding: 0.45rem 1rem;
}

.blog-card-cta .bi {
    font-size: 0.85em;
    transition: transform 0.2s;
}

.blog-card:hover .blog-card-cta .bi {
    transform: translateX(3px);
}

/* Content */
.content-body h2,
.content-body h3 {
    color: var(--color-primary);
    margin-top: 1.5rem;
}

.content-body ul,
.content-body ol {
    padding-left: 1.25rem;
}

.pricing-table thead {
    background: var(--color-primary);
    color: var(--color-white);
}

.map-embed iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0;
    border-radius: 8px;
}

.service-area-section {
    background: #f3f4f6;
    padding: clamp(2.75rem, 6vw, 4.25rem) 0;
}

.service-area-title {
    color: var(--color-brand);
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    text-wrap: balance;
}

.service-area-text {
    color: #6b7280;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 32rem;
}

.service-area-map {
    overflow: hidden;
    border-radius: 0.75rem;
    background: #e5e7eb;
    min-height: 280px;
    aspect-ratio: 16 / 10;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.service-area-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0.75rem;
}

@media (max-width: 991.98px) {
    .service-area-map {
        aspect-ratio: 4 / 3;
        min-height: 240px;
    }
}

/* Forms */
.inquiry-form .form-label {
    font-weight: 500;
    color: var(--color-primary);
}

.card-header.bg-primary {
    background: var(--color-primary) !important;
}

/* Breadcrumb */
.breadcrumb-item a {
    color: var(--color-primary);
}

/* Section “view all” links */
.btn-section-link {
    font-weight: 600;
    white-space: nowrap;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
}

.btn-section-link .bi {
    font-size: 0.9em;
    vertical-align: -0.05em;
}

/* Pagination */
.blog-pagination-wrap,
.fleet-pagination-wrap {
    padding-top: 0.5rem;
}

.pagination-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.pagination-dntourrentalmobil {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin: 0;
    padding: 0.5rem;
    list-style: none;
    background: var(--color-white);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.pagination-dntourrentalmobil .page-item {
    margin: 0;
}

.pagination-dntourrentalmobil .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.65rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    background: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    line-height: 1;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.pagination-dntourrentalmobil .page-link--arrow {
    min-width: auto;
    padding: 0 0.85rem;
    gap: 0.15rem;
}

.pagination-dntourrentalmobil .page-link--ellipsis {
    min-width: 2rem;
    color: #94a3b8;
    cursor: default;
}

.pagination-dntourrentalmobil .page-link:hover:not(.page-link--ellipsis) {
    background: var(--color-light);
    color: var(--color-primary-dark);
    border-color: #e2e8f0;
}

.pagination-dntourrentalmobil .page-item.active .page-link {
    color: #fff;
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(4, 4, 4, 0.35);
}

.pagination-dntourrentalmobil .page-item.disabled .page-link {
    color: #cbd5e1;
    background: transparent;
    border-color: transparent;
    pointer-events: none;
}

.pagination-meta {
    line-height: 1.5;
}

.pagination-meta-sep {
    margin: 0 0.35rem;
    opacity: 0.5;
}

/* Fleet filters */
.fleet-filters {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

@media (max-width: 991.98px) {
    .hero-section {
        min-height: clamp(24rem, 68vh, 34rem);
        background-position: 62% bottom;
    }

    .hero-content {
        padding-block: 3rem;
    }

    .inquiry-sticky-wrap {
        position: static;
        top: auto;
        z-index: auto;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .fleet-gallery {
        padding: 0.75rem;
    }

    .fleet-gallery-nav {
        width: 2.35rem;
        height: 2.35rem;
    }

    .fleet-gallery-prev {
        left: 0;
    }

    .fleet-gallery-next {
        right: 0;
    }

    .btn-hero-whatsapp,
    .btn-hero-secondary {
        width: 100%;
        min-width: 0;
    }
}
