/**
 * theme.css — Taras Limo WordPress Theme
 * All component styles: navbar, hero, about, services, fleet, 
 * testimonials, booking, contact form, footer, legal pages.
 */

/* ============================================================
   NAVBAR
   Matches React NavBody pill: starts full-width, shrinks to 60%
   + translateY(10px) + bg-black + backdrop-blur on scroll.
   Spring stiffness=200/damping=50 ≈ CSS cubic-bezier(.25,.46,.45,.94)
   ============================================================ */
#site-navbar {
    /* Fixed full-width wrapper; z-index set in style.css via --z-navbar */
    position: relative;
}

/* ── Desktop ─────────────────────────────── */
/* Outer wrapper row (full width, always visible) */
.nav-desktop {
    display: none;
    padding: .5rem 1rem;
    /* Outer container spans full width */
}

/* NavBody pill — same as React NavBody */
.nav-body-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
    max-width: 80rem;
    /* max-w-7xl */
    min-width: 280px;
    margin: 0 auto;
    padding: .25rem 1rem;
    /* px-4 py-1 */
    border-radius: 9999px;
    /* rounded-full */
    background: transparent;
    /* Spring-like: cubic-bezier approximation of stiffness=200/damping=50 */
    transition: width .45s cubic-bezier(.25, .46, .45, .94),
        transform .45s cubic-bezier(.25, .46, .45, .94),
        background-color .45s ease,
        backdrop-filter .45s ease,
        box-shadow .45s ease;
}

/* When scrolled: shrinks to 60%, drops 10px, adds glass pill look */
.nav-desktop.scrolled .nav-body-pill {
    width: 60%;
    transform: translateY(10px);
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 0 24px rgba(34, 42, 53, .06),
        0 1px 1px rgba(0, 0, 0, .05),
        0 0 0 1px rgba(34, 42, 53, .04),
        0 0 4px rgba(34, 42, 53, .08),
        0 16px 68px rgba(47, 48, 55, .05),
        inset 0 1px 0 rgba(255, 255, 255, .1);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    /* space-x-2 */
    padding: .25rem .5rem;
    /* px-2 py-1 */
    margin-right: 1rem;
    /* mr-4 */
    font-size: .875rem;
    /* text-sm */
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo img {
    width: 2rem;
    /* w-8 */
    height: 2rem;
    /* h-8 */
    object-fit: contain;
    border-radius: 0;
    /* React logo is not rounded */
}

/* NavItems: absolutely centered in the pill */
.nav-links {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    /* space-x-2 */
    pointer-events: none;
}

.nav-links a {
    pointer-events: auto;
}

.nav-link {
    position: relative;
    padding: .5rem 1rem;
    /* px-4 py-2 */
    color: #fff;
    font-size: .875rem;
    /* text-sm */
    font-weight: 500;
    font-family: var(--font-ui);
    text-decoration: none;
    border-radius: 9999px;
    transition: background-color .2s;
}

.nav-link:hover {
    background: rgba(0, 0, 0, 0.2);
    /* bg-black/20 when not scrolled */
}

.nav-desktop.scrolled .nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    /* bg-white/20 when scrolled */
}

/* Book Now button: on the right of the pill */
.btn-book-now {
    position: relative;
    z-index: 50;
    padding: .5rem .75rem;
    /* px-3 py-2 */
    color: var(--primary);
    font-size: .875rem;
    /* text-sm */
    font-weight: 500;
    font-family: var(--font-ui);
    background: transparent;
    border: none;
    border-radius: .375rem;
    /* rounded-md */
    cursor: pointer;
    white-space: nowrap;
    transition: color .2s, background-color .2s;
    pointer-events: auto;
}

/* 15 april css */
.van-gallery::before,
.van-gallery::after {
    display: none !important;
}

.scroll-up {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: floatUpDown 3.5s ease-in-out infinite;
}

.scroll-up h5 {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    color: #aaaaa1;
}

button#btn-book-now-desktop {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
}

.scroll-up i {
    margin: 10px 0 0;
}

.hero-buttons a {
    height: 65px;
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.btn-book-now:hover {
    color: hsl(45 100% 70% / 0.8);
    background: hsl(45 100% 70% / 0.1);
}

.btn-book-now.w-full {
    width: 100%;
    height: 3rem;
    /* h-12 */
    background: var(--gradient-luxury);
    color: var(--primary-foreground);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius);
    min-height: 48px;
}

.btn-book-now.w-full:hover {
    box-shadow: var(--shadow-glow);
}

/* ── Mobile ─────────────────────────────── */
/* Mirrors React MobileNav:
   - normal: full width, no bg, px-0 py-2
   - scrolled: 90% width, y+10, bg-white/5, border-white/10, blur
   - MobileNavMenu: absolute, bg-black/90, border-white/30, px-4 py-8 */
.nav-mobile {
    display: flex;
    flex-direction: column;
    padding: .5rem 0;
    width: 100%;
    max-width: calc(100vw - 2rem);
    margin: 0 auto;
    transition:
        width .45s cubic-bezier(.25, .46, .45, .94),
        transform .45s cubic-bezier(.25, .46, .45, .94),
        background-color .45s ease,
        border-radius .45s ease,
        padding .45s ease,
        backdrop-filter .45s ease;
    border-radius: 2rem;
}

.nav-mobile.scrolled {
    width: 90%;
    transform: translateY(10px);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding-left: .75rem;
    padding-right: .75rem;
    box-shadow:
        0 0 24px rgba(34, 42, 53, .06),
        0 1px 1px rgba(0, 0, 0, .05),
        0 16px 68px rgba(47, 48, 55, .05);
}

.nav-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Hamburger */
.hamburger {
    position: relative;
    padding: .5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
    transition: transform .1s;
}

.hamburger:active {
    transform: scale(0.85) rotate(15deg);
}

/* Lines use absolute position within 24×24 box (matches React w-6 h-6) */
.ham-box {
    width: 24px;
    height: 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ham-line {
    display: block;
    position: absolute;
    width: 24px;
    /* w-6 */
    height: 2px;
    /* h-0.5 */
    background: currentColor;
    border-radius: 1px;
    transition: transform .3s ease-in-out, opacity .3s ease-in-out;
}

.ham-line.top {
    transform: translateY(-8px);
}

.ham-line.mid {
    transform: translateY(0);
}

.ham-line.bot {
    transform: translateY(8px);
}

.hamburger[aria-expanded="true"] .top {
    transform: rotate(45deg);
}

.hamburger[aria-expanded="true"] .mid {
    opacity: 0;
    transform: translateX(20px);
}

.hamburger[aria-expanded="true"] .bot {
    transform: rotate(-45deg);
}

/* MobileNavMenu: absolute, below header, spring slide in */
.mobile-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    /* gap-4 */
    width: 100%;
    padding: 2rem 1rem;
    /* px-4 py-8 */
    background: rgba(0, 0, 0, 0.9);
    /* bg-black/90 */
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* border-white/30 */
    border-radius: .75rem;
    /* rounded-xl */
    box-shadow: var(--shadow-luxury);
    color: #fff;
    z-index: var(--z-modal);
    /* Entrance animation: matches React initial={opacity:0,y:-30,scale:0.9} */
    animation: mobile-menu-in .35s cubic-bezier(.17, .67, .35, 1.2) forwards;
}

.mobile-menu.open {
    display: flex;
}

@keyframes mobile-menu-in {
    from {
        opacity: 0;
        transform: translateY(-24px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile nav items (match: py-4 px-4 flex items-center gap-4 text-xl) */
.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    /* gap-4 */
    padding: 1rem;
    /* py-4 px-4 */
    color: #fff;
    font-size: 1.25rem;
    /* text-xl */
    font-weight: 500;
    font-family: var(--font-ui);
    text-decoration: none;
    min-height: 52px;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    touch-action: manipulation;
    transition: color .3s, transform .3s;
    border-radius: .25rem;
}

.mobile-nav-item:hover {
    color: rgba(255, 255, 255, .85);
    transform: scale(1.03);
}

.mobile-nav-item:active {
    transform: scale(0.96);
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    width: 100%;
}

/* Social links row inside mobile menu */
.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding-top: .5rem;
}

.mobile-social-link {
    padding: .5rem;
    color: #fff;
    transition: color .2s;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
}

.mobile-social-link:hover {
    color: rgba(255, 255, 255, .7);
}

/* Large screens — show desktop, hide mobile */
@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }

    .nav-mobile {
        display: none;
    }
}

/* ============================================================
   HERO SECTION
   Matches HeroFocus.tsx exactly:
   h1: text-4xl(2.25rem) md:text-6xl(3.75rem) lg:text-7xl(4.5rem) font-black
   subtitle: text-lg(1.125rem) md:text-xl(1.25rem)
   ShinyText: text-3xl(1.875rem) md:text-4xl(2.25rem) lg:text-5xl(3rem) font-black
   Buttons: text-xl(1.25rem) md:text-2xl(1.5rem) px-8(2rem) py-4(1rem) rounded-md
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem 1rem 2rem;
    text-align: center;
    z-index: var(--z-content);
}

.hero-inner {
    /* space-y-6 md:space-y-8 → gap between groups */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

@media (min-width: 768px) {
    .hero-inner {
        gap: 2rem;
    }
}

.hero-title-group {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

@media (min-width: 768px) {
    .hero-title-group {
        gap: 1rem;
    }
}

/* h1: text-4xl → 2.25rem · md:text-6xl → 3.75rem · lg:text-7xl → 4.5rem */
.hero-h1 {
    font-size: 2.25rem;
    font-family: var(--font-hero);
    font-weight: 900;
    /* font-black */
    color: var(--foreground);
    line-height: 1;
    animation: fade-in-up .8s ease both;
}

@media (min-width: 768px) {
    .hero-h1 {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-h1 {
        font-size: 4.5rem;
    }
}

/* p: text-lg → 1.125rem · md:text-xl → 1.25rem */
.hero-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    font-family: var(--font-body);
    max-width: 42rem;
    /* max-w-2xl */
    margin: 0 auto;
    animation: fade-in-up .8s .2s ease both;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

/* ShinyText wrapper: relative flex justify-center px-4 */
.hero-shiny-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    animation: fade-in-up .8s .35s ease both;
}

/* ShinyText: text-3xl md:text-4xl lg:text-5xl font-black font-hero */
.shiny-text {
    font-size: 1.875rem;
    /* text-3xl */
    font-family: var(--font-hero);
    font-weight: 900;
    /* font-black */
    display: inline-block;
    color: var(--primary);
    background-image: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, .9) 50%, transparent 60%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shine 6s linear infinite;
}

@media (min-width: 768px) {
    .shiny-text {
        font-size: 2.25rem;
    }
}

/* text-4xl */
@media (min-width: 1024px) {
    .shiny-text {
        font-size: 3rem;
    }
}

/* text-5xl */

/* Hero buttons:
   flex-col gap-4 · sm:flex-row · mt-8
   Both buttons: text-xl md:text-2xl font-bold px-8 py-4 font-hero rounded-md
*/
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* gap-4 */
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    /* mt-8 */
    animation: fade-in-up .8s .5s ease both;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

/* Call button: bg-gradient-to-r from-green-500 to-green-600 → right */
.btn-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    /* gap-2 */
    padding: 1rem 2rem;
    /* py-4 px-8 */
    font-size: 1.25rem;
    /* text-xl */
    font-weight: 700;
    /* font-bold */
    font-family: var(--font-hero);
    background: linear-gradient(to right, #22c55e, #16a34a);
    /* from-green-500 to-green-600 */
    color: #fff;
    border-radius: .375rem;
    /* rounded-md */
    text-decoration: none;
    transition: background .3s, box-shadow .3s, transform .3s;
    white-space: nowrap;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1);
}

@media (min-width: 768px) {
    .btn-call {
        font-size: 1.5rem;
    }
}

/* md:text-2xl */

.btn-call:hover {
    background: linear-gradient(to right, #16a34a, #15803d);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 25px rgba(34, 197, 94, .4);
    transform: translateY(-2px);
}

/* Quote button: bg-gradient-to-r from-yellow-400 to-yellow-600, text-black */
.btn-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    /* py-4 px-8 */
    font-size: 1.25rem;
    /* text-xl */
    font-weight: 700;
    font-family: var(--font-hero);
    background: linear-gradient(to right, #facc15, #ca8a04);
    /* from-yellow-400 to-yellow-600 */
    color: #000;
    border-radius: .375rem;
    /* rounded-md */
    border: none;
    cursor: pointer;
    transition: background .3s, box-shadow .3s, transform .3s;
    white-space: nowrap;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1);
}

@media (min-width: 768px) {
    .btn-quote {
        font-size: 1.5rem;
    }
}

/* md:text-2xl */

.btn-quote:hover {
    background: linear-gradient(to right, #eab308, #a16207);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 25px rgba(251, 191, 36, .4);
    transform: translateY(-2px);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: fade-in 1s 1.5s ease both;
}

@keyframes scroll-dot {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(14px);
        opacity: 0;
    }
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
.section-about,
.section-services,
.section-fleet-gallery,
.section-safety,
.section-testimonials,
.section-booking,
.section-fleet,
.section-rates {
    position: relative;
    z-index: var(--z-content);
    padding: 4rem 0;
}

@media (min-width: 768px) {

    .section-about,
    .section-services,
    .section-fleet-gallery,
    .section-safety,
    .section-testimonials,
    .section-booking,
    .section-fleet,
    .section-rates {
        padding: 5rem 0;
    }
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-family: var(--font-display);
    color: var(--foreground);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: clamp(.95rem, 2vw, 1.125rem);
    max-width: 778px;
    margin: 0 auto;
    color: #aaaaa1;
}

.text-center {
    text-align: center;
}

/* ============================================================
   ABOUT CARD
   ============================================================ */
.about-card {
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.about-card-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.about-icon-ring {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gradient-luxury);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
}

.about-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--foreground);
    font-family: var(--font-ui);
}

.about-tagline {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-ui);
    display: flex;
    align-items: center;
    gap: .35rem;
    margin-top: .25rem;
}

.about-years {
    font-size: 14px;
    color: var(--muted-foreground);
    font-family: var(--font-ui);
    margin-top: .2rem;
}

.about-body {
    margin-bottom: 1.5rem;
}

.about-mission-title {
    font-size: clamp(1.25rem, 3vw, 30px);
    color: var(--foreground);
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: .75rem;
}

.about-mission-text {
    color: var(--muted-foreground);
    line-height: 1.75;
    font-family: var(--font-body);
    font-size: 18px;
}

.about-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (min-width: 640px) {
    .about-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: .75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.about-feature-icon {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: .1rem;
}

.feature-title {
    font-size: .875rem;
    font-weight: 600;
    color: var(--foreground);
    text-transform: unset;
}

.feature-desc {
    font-size: 12px;
    color: var(--muted-foreground);
    font-family: "Poppins", sans-serif;
}

.about-awards {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.award-badge {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--primary);
    font-size: .875rem;
    font-weight: 500;
    font-family: var(--font-ui);
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-hint {
    font-size: .75rem;
    color: hsl(60 5% 65% / 0.6);
    margin-top: .5rem;
    font-style: italic;
}

.hint-mobile {
    display: inline;
}

.hint-desktop {
    display: none;
}

@media (min-width: 768px) {
    .hint-mobile {
        display: none;
    }

    .hint-desktop {
        display: inline;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 1300px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    position: relative;
    height: 320px;
    background-size: cover;
    background-position: center;
    border-radius: .75rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease;
}

@media (min-width: 768px) {
    .service-card {
        height: 384px;
    }
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-luxury);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .3);
    transition: opacity .3s;
}

.service-card:hover .service-card-overlay {
    opacity: 0;
}

.service-card.tap-active .service-card-overlay {
    opacity: 0;
}

.service-card-hover-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity .5s ease;
}

.service-card:hover .service-card-hover-img {
    opacity: 1;
}

.service-card.tap-active .service-card-hover-img {
    opacity: 1;
}

.service-card-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.25rem;
    z-index: 2;
}

.service-card-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f9fafb;
    font-family: var(--font-display);
    margin-bottom: .5rem;
}

@media (min-width: 768px) {
    .service-card-text h3 {
        font-size: 1.5rem;
    }
}

.service-card-text p {
    font-size: .875rem;
    color: #f9fafb;
    font-family: var(--font-body);
    line-height: 1.5;
    margin: 0;
}

/* ============================================================
   VAN GALLERY
   ============================================================ */
.van-gallery {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.van-gallery::before,
.van-gallery::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 10%;
    z-index: 2;
    pointer-events: none;
}

.van-gallery::before {
    left: 0;
    background: linear-gradient(to right, var(--background), transparent);
}

.van-gallery::after {
    right: 0;
    background: linear-gradient(to left, var(--background), transparent);
}

.van-scroll-container {
    display: flex;
    width: calc(200%);
    animation: scroll-gallery 20s linear infinite;
}

.van-item {
    flex-shrink: 0;
    width: 300px;
    height: 200px;
    margin-right: 1rem;
}

.van-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: .75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .4);
}

/* ============================================================
   SAFETY SECTION
   ============================================================ */
.safety-card {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, hsl(45 100% 70% / 0.15), hsl(45 100% 70% / 0.08), hsl(45 100% 70% / 0.05));
    border: 1px solid hsl(45 100% 70% / 0.2);
    border-radius: 1rem;
    padding: 3rem 2rem;
    box-shadow: 0 0 40px hsl(45 100% 70% / 0.12);
    backdrop-filter: blur(8px);
    overflow: hidden;
}

.safety-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, hsl(45 100% 70% / 0.05), transparent, hsl(45 100% 70% / 0.05));
    pointer-events: none;
}

.safety-icon-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.safety-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-luxury);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-glow 3s ease-in-out infinite;
}

.safety-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-family: var(--font-display);
    font-weight: 700;
    background: linear-gradient(to right, var(--primary), hsl(45 100% 70% / 0.8));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--primary);
    margin-bottom: 1rem;
}

.safety-text {
    color: var(--muted-foreground);
    max-width: 672px;
    margin: 0 auto 1.5rem;
    line-height: 1.62;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
}

.safety-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem;
}

.safety-badge {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem 1rem;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 2rem;
    font-size: .875rem;
    color: var(--foreground);
    font-weight: 500;
    font-family: var(--font-ui);
}

.badge-dot {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.review-platform-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.platform-badge {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem 1rem;
    background: linear-gradient(to right, hsl(45 100% 70% / 0.1), hsl(45 100% 70% / 0.05));
    border: 1px solid hsl(45 100% 70% / 0.2);
    border-radius: 2rem;
    font-size: .875rem;
    font-family: var(--font-ui);
    color: var(--foreground);
}

.platform-stars {
    color: var(--primary);
    font-size: 1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    padding: 1.5rem;
    transition: box-shadow .3s;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-luxury);
}

.testimonial-stars {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial-quote-wrap {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.quote-icon {
    position: absolute;
    top: -.5rem;
    left: -.5rem;
    opacity: .25;
}

.testimonial-text {
    color: var(--muted-foreground);
    font-style: italic;
    line-height: 1.75;
    font-size: .9rem;
}

.testimonial-author {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

.author-name {
    font-weight: 600;
    color: var(--foreground);
    font-family: var(--font-ui);
}

.author-location {
    font-size: .8rem;
    color: var(--muted-foreground);
    font-family: var(--font-ui);
    margin-top: .2rem;
}

/* ============================================================
   BOOKING SECTION
   ============================================================ */
.booking-iframe-wrap {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.booking-iframe {
    width: 100%;
    border: none;
    min-height: 900px;
    background: transparent;
    border-radius: .75rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .3);
}

@media (max-width: 767px) {
    .booking-iframe {
        min-height: 2000px;
    }
}

/* ============================================================
   FLEET PAGE
   ============================================================ */
.fleet-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem;
    margin-top: 1.5rem;
}

.fleet-badge {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem 1rem;
    background: hsl(45 100% 70% / 0.1);
    border-radius: 2rem;
    font-size: .875rem;
    color: var(--primary);
    font-weight: 500;
    font-family: var(--font-ui);
}

.fleet-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}


.fleet-card {
    padding: 1.5rem;
    transition: box-shadow .3s, transform .3s;
}

.fleet-card:hover {
    box-shadow: var(--shadow-luxury);
    transform: translateY(-2px);
}

.fleet-card-header {
    display: flex;
    align-items: center;
    gap: .875rem;
    margin-bottom: 1.25rem;
}

.fleet-icon-ring {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--gradient-luxury);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
    transition: transform .3s;
}

.fleet-card:hover .fleet-icon-ring {
    transform: scale(1.1);
}

.fleet-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--foreground);
    font-family: var(--font-display);
}

.fleet-card-vehicles {
    font-size: 14px;
    color: var(--primary);
    font-weight: 700;
    margin-top: .2rem;
    font-family: "Poppins", sans-serif;
}

.fleet-capacity {
    font-size: .875rem;
    color: var(--muted-foreground);
    margin-bottom: .75rem;
    font-family: "Poppins", sans-serif;
}

.fleet-desc {
    font-size: .875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    /* margin-bottom: 1rem; */
    margin: 10px 0 0;
}

.fleet-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin: 10px 0 0;
}

.fleet-footer-note .font-body {
    color: #aaaaa1;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
}

.amenity-tag {
    padding: .2rem .75rem;
    background: hsl(45 100% 70% / 0.1);
    color: var(--primary);
    font-size: .75rem;
    border-radius: 2rem;
    border: 1px solid hsl(45 100% 70% / 0.2);
    font-family: var(--font-ui);
}

.fleet-footer-note {
    padding: 2rem;
    background: linear-gradient(to right, hsl(45 100% 70% / 0.05), hsl(45 100% 70% / 0.1));
    border-radius: var(--radius);
    border: 1px solid hsl(45 100% 70% / 0.2);
}

/* ============================================================
   RATES PAGE
   ============================================================ */
.rates-disclaimer {
    margin-top: 1rem;
    padding: .75rem 1.5rem;
    background: hsl(45 100% 70% / 0.1);
    border: 1px solid hsl(45 100% 70% / 0.2);
    border-radius: var(--radius);
    display: inline-block;
    color: hsl(45, 100%, 70%);
    font-size: .9rem;
    font-family: var(--font-ui);
    font-weight: 500;
}

.rates-main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .rates-main-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.rates-card {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
}

.rates-card-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.rates-card-title {
    font-size: 1.15rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--foreground);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.rates-card-body {
    padding: 1.5rem;
}

.rates-airport-title {
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: .75rem;
    font-family: var(--font-ui);
}

.rates-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .4rem .5rem;
}

.rate-row {
    display: flex;
    justify-content: space-between;
    font-size: .85rem;
    color: var(--muted-foreground);
    font-family: var(--font-body);
    padding: .1rem 0;
    width: fit-content;
    gap: 5px;
}

.rate-price {
    font-weight: 600;
    color: var(--primary);
}

.rates-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .rates-info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.rates-info-card {
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
}

.btn-call-rates {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .875rem 2rem;
    background: var(--gradient-luxury);
    color: var(--primary-foreground);
    font-weight: 600;
    font-family: var(--font-ui);
    border-radius: var(--radius);
    text-decoration: none;
    transition: box-shadow .3s, transform .2s;
}

.btn-call-rates:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-page {
    background: transparent;
    padding-bottom: 4rem;
}

.contact-form-wrapper {
    max-width: 680px;
    margin: 0 auto;
    padding: 1rem;
    animation: fade-in-up .6s ease both;
}

.contact-form-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px -10px hsl(220 20% 5% / 0.9);
}

@media (min-width: 640px) {
    .contact-form-card {
        padding: 2.5rem;
    }
}

.contact-card-title {
    font-size: 1.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: #fff;
    margin-bottom: .5rem;
}

.contact-card-subtitle {
    font-size: .875rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 420px;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .form-grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.form-label {
    font-size: .85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-ui);
}

/* Input glow wrapper — replicates Framer Motion radial gradient effect */
.input-glow-wrapper {
    position: relative;
    border-radius: .5rem;
    padding: 2px;
    background: transparent;
    transition: background .3s;
}

.input-glow-wrapper:focus-within {
    background: var(--gradient-luxury);
}

.form-input,
.form-textarea {
    display: block;
    width: 100%;
    background: hsl(220, 10%, 16%);
    color: #fff;
    border: none;
    border-radius: .4rem;
    padding: .75rem 1rem;
    font-size: .9rem;
    font-family: var(--font-body);
    transition: box-shadow .3s;
    outline: none;
    height: 44px;
}

@media (min-width: 640px) {

    .form-input,
    .form-textarea {
        height: 48px;
    }
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input:focus,
.form-textarea:focus {
    box-shadow: 0 0 0 2px var(--primary);
}

.form-textarea {
    height: auto;
    min-height: 100px;
    resize: vertical;
    padding: .75rem 1rem;
}

.textarea-glow-wrapper {
    margin-bottom: 0;
}

/* SMS Consent */
.sms-consent-wrap {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: .5rem;
    padding: 1rem;
}

.sms-consent-inner {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    cursor: pointer;
}

.sms-checkbox {
    width: 18px;
    height: 18px;
    margin-top: .1rem;
    flex-shrink: 0;
    accent-color: var(--primary);
    cursor: pointer;
}

.sms-label-text {
    font-size: .85rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.consent-link {
    color: var(--primary);
    text-decoration: none;
}

.consent-link:hover {
    text-decoration: underline;
}

/* Submit button */
.btn-submit-form {
    position: relative;
    width: 100%;
    height: 48px;
    background: var(--gradient-luxury);
    color: var(--primary-foreground);
    font-size: 1.05rem;
    font-weight: 600;
    font-family: var(--font-ui);
    border: none;
    border-radius: .5rem;
    cursor: pointer;
    overflow: hidden;
    transition: box-shadow .3s, transform .2s;
}

.btn-submit-form:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-1px);
}

.btn-submit-form:active {
    transform: scale(0.98);
}

.btn-submit-form:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none;
}

.btn-submit-gradient-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity .5s;
}

.btn-submit-gradient-line.top {
    top: -1px;
}

.btn-submit-gradient-line.bottom {
    bottom: -1px;
}

.btn-submit-form:hover .btn-submit-gradient-line {
    opacity: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    position: relative;
    z-index: var(--z-content);
    background: rgba(22, 24, 28, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid var(--border);
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.footer-heading {
    font-size: 20px;
    font-weight: 700;
    color: var(--foreground);
    font-family: var(--font-display);
    margin-bottom: 1rem;
}

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.footer-contact-row {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: var(--muted-foreground);
}

.footer-phone-link {
    text-decoration: none;
    transition: color .2s;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    color: #aaaaa1;
}

.footer-phone-link:hover {
    color: var(--primary);
}

.footer-services li {
    font-family: "Poppins", sans-serif;
}

.footer-hours {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    color: #aaaaa1;
}

.icon-primary {
    color: var(--primary);
    flex-shrink: 0;
}

.footer-services {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    font-size: .875rem;
    color: var(--muted-foreground);
    /* list-style: disc;
    padding-left: 17px; */
}
/* 
.footer-services .footer-highlight {
    margin-left: -17px;
    list-style: none;
} */

.footer-services li:not(.footer-highlight) {
    padding-left: 10px;
    list-style: none;
    position: relative;
}

.footer-services li:not(.footer-highlight)::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 6px;
    background-color: #aaaaa1;
    position: absolute;
    left: 0;
    top: 7.5px;
}

.page-id-18233 .container {
    max-width: 72rem;
}

.section-fleet .fleet-capacity svg {
    width: 16px;
    height: 16px;
    margin-bottom: -2px;
    flex-shrink: 0;
}

.section-fleet .fleet-capacity {
    line-height: 16px;
    display: flex;
    gap: 8px;
}

.footer-highlight {
    color: var(--primary);
    font-weight: 500;
    margin-top: .25rem;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-copyright {
    color: var(--muted-foreground);
    font-size: 16px;
}

.services-hint.font-body {
    font-size: 12px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.section-fleet .fleet-grid .fleet-card {
    background: linear-gradient(to right bottom, rgba(19, 20, 22, 0.9), rgba(19, 20, 22, 0.7));
    backdrop-filter: blur(4px);
}

.footer-legal-link {
    font-size: .875rem;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color .2s;
}

.footer-legal-link:hover {
    color: var(--foreground);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-separator {
    color: var(--muted-foreground);
}

.footer-credit {
    font-size: .875rem;
    color: var(--muted-foreground);
}

.footer-abidi-link {
    color: hsl(270, 100%, 75%);
    text-decoration: none;
    transition: color .2s;
}

.footer-abidi-link:hover {
    color: hsl(270, 100%, 85%);
    text-shadow: 0 0 12px hsl(270, 100%, 70%, .6);
}


/* ============================================================
   LEGAL PAGES (Privacy / Terms)
   ============================================================ */
.legal-page {
    min-height: 100vh;
    background: var(--background);
    padding-top: 5rem;
    padding-bottom: 4rem;
    position: relative;
    z-index: var(--z-content);
}

.legal-container {
    max-width: 900px;
    padding: 0 1.25rem;
}

.legal-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-family: var(--font-display);
    color: var(--foreground);
    font-weight: 700;
    margin-bottom: 1rem;
}

.legal-updated {
    color: var(--muted-foreground);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.legal-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    color: var(--foreground);
}

.legal-content section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.legal-content h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--foreground);
    font-family: var(--font-display);
}

.legal-content p {
    color: hsla(var(--foreground-hsl, 60, 9%, 95%), 0.9);
    line-height: 1.8;
    color: var(--foreground);
    opacity: .9;
}

.legal-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    color: var(--foreground);
    opacity: .9;
}

.legal-content li {
    line-height: 1.7;
}

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

.legal-content a:hover {
    text-decoration: underline;
}

/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */
#toast-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    pointer-events: none;
}

.toast {
    pointer-events: auto;
    min-width: 260px;
    max-width: 380px;
    padding: 1rem 1.25rem;
    background: hsl(220, 10%, 15%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .5);
    display: flex;
    flex-direction: column;
    gap: .25rem;
    animation: fade-in-up .3s ease both;
    transition: opacity .3s, transform .3s;
}

.toast.success {
    border-left: 3px solid #22c55e;
}

.toast.error {
    border-left: 3px solid #ef4444;
}

.toast-title {
    font-weight: 600;
    color: var(--foreground);
    font-family: var(--font-ui);
    font-size: .95rem;
}

.toast-desc {
    font-size: .85rem;
    color: var(--muted-foreground);
    font-family: var(--font-body);
}

.toast.fade-out {
    opacity: 0;
    transform: translateX(20px);
}

/* 14 april css */
.container {
    max-width: 1312px;
    margin: 0 auto;
    padding: 0 1rem;
}

.services-grid {
    padding: 30px 0 0;
}

.service-card {
    height: 384px;
    max-width: 320px;
}

.custom-slider {
    overflow: hidden;
}

.scroll-up h5 {
    font-size: 12px;
    letter-spacing: 1px;
    color: hsl(60 5% 63%);
    font-family: "Poppins", sans-serif;
}

.scroll-up i {
    color: #ffd966;
}

.scroll-up {
    transition: transform 0.3s ease;
}

.scroll-up:hover {
    transform: translateY(-10px);
}

.platform-badge .platform-stars {
    font-size: 20px;
}

.platform-badge span {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.testimonial-stars span {
    font-size: 21px;
}

.testimonial-card {
    background: linear-gradient(to right bottom, rgba(19, 20, 22, 0.9), rgba(19, 20, 22, 0.7));
}

.quote-icon {
    transform: rotate(190deg);
    stroke: #ef8413;
    stroke-width: 1px;
    opacity: .3;
}

.shiny-text {
    margin: 10px 0 0 0;
}

.about-card {
    margin-top: 30px;
}

.testimonial-quote-wrap p {
    font-size: 16px;
    padding-left: 4px;
}

/* .section-header {
    max-width: 896px;
    margin: 0 auto;
} */
.testimonials-grid {
    padding: 40px 0 0;
}

.hero-title-group {
    gap: 10px;
}

.hero-inner {
    gap: 5px;
}

.hero-buttons {
    margin-top: 17px;
}


/* New css 17 april start */

.section-testimonials  .testimonials-grid {
    padding-top: 0;
}

.section-booking .section-header {
    padding: 0 !important;
}
.section-fleet .fleet-grid .fleet-card .fleet-icon-ring svg {
    color: #000;
}
.section-fleet .fleet-badges .fleet-badge svg {
    width: 16px;
    height: 16px;
}

.services-grid .service-card {
    margin-inline: auto;
    width: 100%;
}
.van-gallery .custom-slider {
    max-width: 74rem;
    margin-inline: auto;
}

/* New css 17 april end */

@media (min-width:768px) {
    .section-testimonials {
        padding-top: 64px;
    }
    .section-testimonials .platform-badge {
        line-height: 24px;
    }
    .testimonial-author .author-name {
        font-size: 16px;
    }

    .booking-iframe-wrap {
        padding-top: 64px;
    }
    .section-services .service-card-text p {
        font-size: 16px;
        line-height: 24px;
    }
}


/* media css */

/* 17 april css start */
@media (min-width:768px){
    
    .fleet-container .fleet-Grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: calc(var(--sp) * 2.5);
    }

    .about-icon-ring svg {
        width: 40px;
        height: 40px;
        color: #000;
    }

    .testimonial-quote-wrap svg {
        color: #725f24;
    }

    .platform-stars svg {
        width: 16px;
        height: 16px;
    }

    .testimonial-stars svg {
        width: 20px;
        height: 20px;
    }

    .testimonial-quote-wrap {
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

    .quote-icon {
        flex-shrink: 0;
    }

    .testimonial-text {
        margin: 0;
    }

    .testimonial-quote-wrap {
        position: relative;
        padding-left: 30px;
    }

    .testimonial-quote-wrap svg {
        position: absolute;
        left: 0;
        top: 0;
        width: 32px;
        height: 32px;
    }
}
/* 17 april css end */


@media (min-width: 640px) {
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .fleet-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media (max-width: 767px) {
    .about-card {
        margin-top: 20px;
    }

    .service-card {
        margin-inline: auto;
        width: 100%;
    }

    .hero-section {
        min-height: 77svh;
    }
}