/* home-page fleet section css */
.fleet-badge-top {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.1) 0%, rgba(0, 180, 216, 0.15) 100%);
    color: #0088cc;
    font-size: 0.825rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(0, 136, 204, 0.2);
    text-transform: uppercase;
}
.section-heading-text {
    color: #0f172a;
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.section-heading-text span {
    background: linear-gradient(135deg, #0088cc 0%, #00b4d8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.title-swoosh-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #0088cc 0%, #00b4d8 100%);
    margin: 14px auto 0 auto;
    border-radius: 10px;
    position: relative;
}
.title-swoosh-line::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #00b4d8;
    border-radius: 50%;
    top: -4px;
    right: 0;
    box-shadow: 0 0 10px rgba(0, 180, 216, 0.8);
}
.fleet-card {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid rgba(0, 136, 204, 0.12);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
}
.fleet-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 136, 204, 0.35);
    box-shadow: 0 15px 30px rgba(0, 136, 204, 0.12);
}
.fleet-img-wrapper {
    position: relative;
    height: 220px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    background: #000;
}
.fleet-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.fleet-card:hover .fleet-img-wrapper img {
    transform: scale(1.08);
}
.fleet-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.3) 0%, rgba(15, 23, 42, 0) 40%);
}
.fleet-badges-container {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
}
.fleet-badge-type {
    background: rgba(30, 41, 59, 0.85);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.fleet-badge-category {
    background: #00b4d8;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.fleet-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.fleet-title {
    color: #0f172a;
    font-size: 1.15rem;
    font-weight: 800;
    transition: color 0.3s ease;
}
.fleet-card:hover .fleet-title {
    color: #0088cc;
}
.fleet-description {
    color: #64748b;
    font-size: 0.88rem;
    line-height: 1.55;
}
.clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.fleet-specs-container {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(226, 232, 240, 0.8);
}
.spec-tag {
    background: #f8fafc;
    color: #475569;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: calc(50% - 4px);
}
.spec-tag i { color: #0088cc; font-size: 0.9rem; }
.action-buttons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.action-buttons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
}

.btn-fleet-primary,
.btn-fleet-whatsapp {
    width: 100%;
    min-height: 48px;
    padding: 10px 12px;
    border-radius: 12px;

    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.2;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    text-decoration: none;
    white-space: nowrap;
    box-sizing: border-box;

    transition: all 0.3s ease;
}

/* Read More */
.btn-fleet-primary {
    background: #ffffff;
    color: #0088cc;
    border: 1.5px solid #0088cc;
}

.btn-fleet-primary:hover {
    background: linear-gradient(135deg, #0088cc 0%, #00b4d8 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 18px rgba(0, 136, 204, 0.25);
}

/* WhatsApp */
.btn-fleet-whatsapp {
    background: #25D366;
    color: #ffffff;
    border: 1.5px solid #25D366;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.18);
}

.btn-fleet-whatsapp:hover {
    background: #1eac52;
    color: #ffffff;
    border-color: #1eac52;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

/* Icons */
.btn-fleet-primary i,
.btn-fleet-whatsapp i {
    font-size: 16px;
    flex-shrink: 0;
}

/* Mobile */
@media (max-width: 480px) {
    .action-buttons-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .btn-fleet-primary,
    .btn-fleet-whatsapp {
        min-height: 46px;
    }
}

/* =========================================
   LUXURY SERVICES HERO
========================================= */

.luxury-services-section {
    min-height: 650px;
    background: #111;
    margin-top: -30px !important;
    padding-top: 0 !important;
}


/* Dynamic Background */

.service-showcase-bg {
    position: absolute;
    inset: 0;
    z-index: 0;

    background-size: cover;
    background-position: center;

    transform: scale(1.03);

    transition: opacity .5s ease, transform 6s ease;
}


/* Dark Overlay */

.service-showcase-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(
        90deg,
        rgba(0,0,0,.88),
        rgba(0,0,0,.68) 35%,
        rgba(0,0,0,.28) 65%,
        rgba(0,0,0,.10)
    );
}


/* Content */

.service-showcase-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    animation: serviceFade .6s ease;
}

.service-showcase-content p {
    max-width: 600px;
    color: rgba(255,255,255,.85);
}


/* Small H1 */

.service-page-heading {
    font-size: 16px;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0,0,0,.35);
}


/* Slider */

.service-slider-wrapper {
    position: relative;
    z-index: 3;
    overflow: hidden;
}


/* Cards Container */

.service-cards {
    position: relative;
    height: 430px;
    overflow: hidden;
}


/* Base Card */

.service-thumb {
    position: absolute;

    border: 0;
    padding: 0;

    overflow: hidden;
    border-radius: 8px;

    background: #222;

    opacity: 0;
    pointer-events: none;

    transform: translateX(150px) scale(.9);

    transition: all .65s cubic-bezier(.22,.61,.36,1);

    box-shadow: 0 15px 40px rgba(0,0,0,.35);
}


/* First Card */

.service-thumb.card-1 {
    width: 90px;
    height: 230px;

    opacity: .85;
    pointer-events: auto;

    transform: translateX(0) scale(.92);

    z-index: 1;
}


/* Active Card */

.service-thumb.card-2 {
    width: 145px;
    height: 330px;

    opacity: 1;
    pointer-events: auto;

    transform: translateX(105px);

    z-index: 3;
}


/* Third Card */

.service-thumb.card-3 {
    width: 100px;
    height: 260px;

    opacity: .9;
    pointer-events: auto;

    transform: translateX(265px) scale(.94);

    z-index: 2;
}


/* Image */

.service-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform .7s ease;
}

.service-thumb:hover img {
    transform: scale(1.08);
}


/* Card Overlay */

.service-thumb-overlay {
    position: absolute;
    inset: 0;

    padding: 12px 10px;

    background: linear-gradient(
        to top,
        rgba(0,0,0,.85),
        transparent 65%
    );
}


/* Animation */

@keyframes serviceFade {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Tablet */

@media (max-width: 991px) {

    .luxury-services-section {
        padding-top: 60px;
        min-height: 700px;
    }

    .service-cards {
        height: 300px;
    }

    .service-thumb.card-1 {
        width: 75px;
        height: 180px;
    }

    .service-thumb.card-2 {
        width: 120px;
        height: 260px;
        transform: translateX(90px);
    }

    .service-thumb.card-3 {
        width: 85px;
        height: 200px;
        transform: translateX(225px);
    }

}


/* Mobile */

@media (max-width: 576px) {

    .luxury-services-section {
        padding-top: 50px;
        min-height: 720px;
    }

    .service-cards {
        height: 250px;
    }

    .service-thumb.card-1 {
        width: 60px;
        height: 150px;
    }

    .service-thumb.card-2 {
        width: 100px;
        height: 220px;
        transform: translateX(70px);
    }

    .service-thumb.card-3 {
        width: 65px;
        height: 170px;
        transform: translateX(185px);
    }

    .service-page-heading {
        font-size: 13px;
    }

}

/* location section css  */

/* 3D Perspective Coverflow Slider Styles */
.coverflow-section {
  background: radial-gradient(circle at 50% 50%, #1e293b 0%, #0f172a 50%, #020617 100%);
  min-height: 520px;
  display: flex;
  align-items: center;
  user-select: none;
}

.coverflow-wrapper {
  width: 100%;
  padding: 40px 0 60px;
  perspective: 1400px;
  position: relative;
}

.coverflow-stage {
  position: relative;
  width: 100%;
  height: 420px;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  align-items: center;
}

.coverflow-card {
  position: absolute;
  width: 280px;
  height: 400px;
  border-radius: 20px;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease, filter 0.5s ease;
  /* Add these lines */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: #0f172a;
}

.coverflow-card.active .card-inner {
  border: 2px solid #38bdf8;
  box-shadow: 0 20px 45px rgba(56, 189, 248, 0.35);
}

.card-img {
 width: 100%;
  height: 100%;
  object-fit: cover;
  /* Add these lines to fix the blur */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1.0, 1.0);
  transform: translateZ(0) scale(1.0, 1.0);
  image-rendering: -webkit-optimize-contrast; /* Improves sharpness in WebKit */
  image-rendering: crisp-edges;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}

.badge-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-content {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 2;
}

.title-pill {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 10px 14px;
  text-align: center;
}

.city-name {
  color: #38bdf8;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  text-shadow: 0 2px 8px rgba(56, 189, 248, 0.4);
}

/* Floor Reflection */
.card-reflection {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 120px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 20px;
  transform: scaleY(-1);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 80%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 80%);
  filter: blur(1.5px);
  opacity: 0.5;
  pointer-events: none;
}

.card-reflection img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hover-Only Navigation Arrows */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  transition: all 0.3s ease;
}

.prev-arrow { left: 24px; }
.next-arrow { right: 24px; }

.coverflow-wrapper:hover .nav-arrow {
  opacity: 1;
}

.nav-arrow:hover {
  background: #0284c7;
  color: #ffffff;
  transform: translateY(-50%) scale(1.08);
}

/* Pagination Indicators */
.coverflow-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
  position: relative;
  z-index: 50;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  width: 32px;
  border-radius: 12px;
  background: #38bdf8;
  box-shadow: 0 0 10px #38bdf8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .coverflow-card { width: 220px; height: 320px; }
  .coverflow-stage { height: 340px; }
  .prev-arrow { left: 10px; width: 42px; height: 42px; }
  .next-arrow { right: 10px; width: 42px; height: 42px; }
  .nav-arrow { opacity: 0.85; } /* Keep slightly visible on touch screens */
}