/********** Modified Template CSS **********/
:root {
    --primary:#FFD700;
    --secondary: #0b7abf;
    --light: #F4F5F8;
    --dark: #1C1E32;
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.button-icon-only {
    width: 36px;
    height: 36px;
}

.button-icon-only-sm {
    width: 28px;
    height: 28px;
}

.button-icon-only-lg {
    width: 46px;
    height: 46px;
}

.button-icon-only,
.button-icon-only-sm,
.button-icon-only-lg {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.header-nav-wrapper::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    background: var(--dark);
}

.header-nav-wrapper::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    bottom: 0;
    left: 0;
    background: #ffffff;
}

.navbar-dark .navbar-nav .nav-link {
    padding: 30px 15px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--light);
    outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        padding: 10px 15px;
    }
}

.slider-content-overlay {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(28, 30, 50, .7);
    z-index: 1;
}


@media (max-width: 576px) {
    .slider-content-overlay h4 {
        font-size: 18px;
        font-weight: 500 !important;
    }

    .slider-content-overlay h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.subpage-banner {
    height: 400px;
    margin-bottom: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(28, 30, 50, .9), rgba(28, 30, 50, .9)), url(../img/bg-banner.jpg);
    background-attachment: fixed;
}

@media (max-width: 991.98px) {
    .subpage-banner {
        height: 300px;
    }
}

.service-block {
    height: 320px;
    background: var(--light);
    transition: .5s;
}

.service-block:hover,
.service-block.active {
    background: var(--secondary);
}

.service-block h1,
.service-block h4 {
    transition: .5s;
}

.service-block:hover h1,
.service-block.active h1 {
    color: var(--dark) !important;
}

.service-block:hover h4,
.service-block.active h4 {
    color: var(--light);
}

.vehicle-for-rent {
    padding: 30px;
    text-align: center;
    background: var(--light);
    transition: .5s;
}

.vehicle-for-rent:hover,
.vehicle-for-rent.active {
    background: var(--secondary);
}

.vehicle-for-rent h4 {
    transition: .5s;
}

.vehicle-for-rent:hover h4,
.vehicle-for-rent.active h4 {
    color: var(--light);
}

.team-member-card {
    position: relative;
    padding: 30px 30px 0 30px;
    text-align: center;
    background: var(--light);
    overflow: hidden; /* for the slide effect */
    transition: .5s;
}

/* Sliding color overlay effect */
.team-member-card::before {
    content: "";
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    z-index: 0;
    transition: bottom 0.5s ease-in-out;
}
.team-member-card:hover::before,
.owl-item.center .team-member-card::before {
    bottom: 0;
}

/* Ensure content stays above overlay */
.team-member-card * {
    position: relative;
    z-index: 1;
}

/* Text color change on hover/center */
/* Existing */
.team-member-card h4 {
    transition: .5s;
}

/* Add p to the transition */
.team-member-card h4,
.team-member-card p {
    transition: .5s;
}

/* Change both h4 and p color when centered or hovered */
.owl-item.center .team-member-card h4,
.owl-item.center .vehicle-for-rent h4,
.team-member-card:hover h4,
.owl-item.center .team-member-card p,
.team-member-card:hover p {
    color: var(--light);
}


/* Social icons wrapper */
.team-member-card .member-social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity .5s;
    margin-top: 15px;
}

/* Show icons on hover */
.team-member-card:hover .member-social-links {
    opacity: 1;
}

/* Style for each icon button */
.team-member-card .member-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: background .3s ease;
}
.team-member-card .member-social-links a:hover {
    background: var(--secondary);
    
}

.partner-logo-slider .owl-dots,
.feedback-slider .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo-slider .owl-dot,
.feedback-slider .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 20px;
    height: 20px;
    background: var(--secondary);
    transition: .5s;
}

.partner-logo-slider .owl-dot.active,
.feedback-slider .owl-dot.active {
    width: 40px;
    height: 40px;
    background: var(--primary);
}

.feedback-slider .owl-item img {
    width: 80px;
    height: 80px;
}

.feedback-slider .owl-item .client-feedback-item {
    height: 350px;
    transition: .5s;
    background: var(--light);
}

.feedback-slider .owl-item.center .client-feedback-item {
    background: var(--secondary);
}

.feedback-slider .owl-item .client-feedback-item h1,
.feedback-slider .owl-item .client-feedback-item h4 {
    transition: .5s;
}

.feedback-slider .owl-item.center .client-feedback-item h1 {
    color: var(--dark) !important;
}

.feedback-slider .owl-item.center .client-feedback-item h4 {
    color: var(--light);
}

.promo-banner-background {
    background: linear-gradient(rgba(28, 30, 50, .9), rgba(28, 30, 50, .9)), url(../img/bg-banner.jpg);
    background-attachment: fixed;
}


/* Background video zoom animation */
.background-video-element {
    height: 90vh;
    object-fit: cover;
    animation: zoomVideo 15s ease-in-out infinite alternate;
}

@keyframes zoomVideo {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

/* Car animation: enters, waits, then exits */
.animated-car-graphic {
    position: absolute;
    bottom: 10%;
    right: -500px;
    width: 400px;
    animation: carDriveIn 2s ease-out forwards 4.5s,  /* Delay first animation */
               carDriveOut 2s ease-in forwards 10.5s;  /* Delay = 3.5 + 2 + 4 */
}


@keyframes carDriveIn {
    0% { right: -500px; }
    100% { right: 50%; transform: translateX(50%); }
}

@keyframes carDriveOut {
    0% { right: 50%; transform: translateX(50%); }
    100% { right: 120%; }
}

/* Text animation: slides in from right and stops at left */
/* Animation for sliding text from right to left */
.hero-text-content {
    position: relative;
    transform: translateX(100%);
    opacity: 0;
    animation: textSlideIn 2.5s ease-out forwards;
    animation-delay: 1s;
    text-align: left;
}

/* First line big */
.hero-text-content h4 {
    font-size: 40px;        /* Bigger size */
    font-weight: bold;
    margin-bottom: 10px;
}

/* Second line smaller */
.hero-text-content h1 {
    font-size: 58px;        /* Smaller size */
    font-weight: normal;
    line-height: 1.4;
}

@keyframes textSlideIn {
    0% { transform: translateX(100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}


/* loder video */

#preloader-screen {
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    overflow: hidden;
}

/* Fullscreen responsive video */
#preloader-screen video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Makes sure video fills without distortion */
}

/* services css */

.service-grid-section {
    position: relative;
    width: 100%;
    padding: 45px 0 0 0;
}

.service-grid-section .service-grid-item {
    margin-bottom: 45px;
}

.service-grid-section .service-item-image {
    position: relative;
    width: 100%;
}

.service-grid-section .service-item-image img {
    width: 100%;
    border-radius: 5px;
}


.service-grid-section .meta-date span {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
}

.service-grid-section .meta-date strong {
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.service-grid-section .service-grid-item:hover .meta-date {
    bottom: calc(50% - 35px);
    opacity: 1;
}

.service-grid-section .service-item-description {
    padding: 25px 0 20px 0;
}

.service-grid-section .service-item-description h3 {
    font-size: 22px;
    font-weight: 700;
}

.service-grid-section .service-item-description h3 a {
    color: #202C45;
}

.service-grid-section .service-item-description h3 a:hover {
    color: #E81C2E;
}

.service-grid-section .service-item-description p {
    margin: 0;
}

.service-grid-section .services-meta {
    display: flex;
}

.service-grid-section .services-meta p {
    margin: 0;
    font-size: 14px;
    line-height: 14px;
    padding: 0 10px;
    border-right: 1px solid rgba(0, 0, 0, .15);
}

.service-grid-section .services-meta p:first-child {
    padding-left: 0;
}

.service-grid-section .services-meta p:last-child {
    padding-right: 0;
    border: none;
}

.service-grid-section .services-meta i {
    color: #999999;
    margin-right: 5px;
}

.service-grid-section .services-meta a {
    color: #999999;
}

.service-grid-section .services-meta a:hover {
    color: #E81C2E;
}

.service-grid-section .pagination {
    margin-bottom: 15px;
}

.service-grid-section .pagination .page-link {
    color: #202C45;
    border-radius: 0;
    border-color: #202C45;
}

.service-grid-section .pagination .page-link:hover,
.service-grid-section .pagination .page-item.active .page-link {
    color: #E81C2E;
    background: #202C45;
}

.service-grid-section .pagination .disabled .page-link {
    color: #999999;
}

.vehicle-rental-showcase {
    position: relative;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.showcase-background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.vehicle-rental-showcase h1,
.vehicle-rental-showcase h4,
.vehicle-rental-showcase span {
    color: #fff;
}

.vehicle-for-rent {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.vehicle-for-rent:hover {
    transform: translateY(-10px);
}

.btn-primary {
    background: #ffcc00;
    color: #000;
    border: none;
}

.btn-primary:hover {
    background: #e6b800;
}

/* Responsive */
@media (max-width: 768px) {
    .vehicle-rental-showcase h1.display-1 {
        font-size: 50px;
    }
    .vehicle-rental-showcase h1.display-4 {
        font-size: 28px;
    }
}


.video-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4); /* dark overlay for text readability */
    z-index: -1;
}

/* Marquee Styles */
.scrolling-wrapper {
    width: 100%;
    overflow: hidden;
}
.scrolling-content-inner {
    display: flex;
    animation: scroll-left 25s linear infinite;
}
.vehicle-for-rent {
    flex: 0 0 auto;
    width: 300px; /* Card width */
    margin: 0 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(6px);
    border-radius: 10px;
    padding: 15px;
    color: white;
    text-align: center;
}
.vehicle-for-rent img {
    max-height: 150px;
    object-fit: contain;
}

/* Keyframes for infinite scroll */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/*** Carousel Hero Header Start ***/
.main-hero-slider .main-hero-slide img {
    object-fit: cover;
}


@media (min-width: 1200px) {
    .main-hero-slider .main-hero-slide,
    .main-hero-slider .main-hero-slide img {
        height: 700px;
    }
}

@media (max-width: 1199px) {
    .main-hero-slider .main-hero-slide,
    .main-hero-slider .main-hero-slide img {
        height: 1200px;
    }
}

.main-hero-slider .owl-nav .owl-prev {
    display: none;
}

.main-hero-slider .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    bottom: -60px;
    right: 50%;
    transform: translateY(-50%);
    margin-right: -60px;
    border-radius: 60px;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}
.main-hero-slider .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-light);
    color: var(--bs-primary);
}

.main-hero-slider .owl-nav .owl-next i {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation-name: carousel-next-btn;
    animation-duration: 4s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    transition: 1s;
}

@keyframes carousel-next-btn {
    0%  {margin-top: 35%;}
    50%  {margin-bottom: 70%;}
    100% {margin-top: 35%;}
}

.main-hero-slider .main-hero-slide .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    align-items: center;
}

.carousel-caption .ticket-form {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
}

.main-hero-slider .main-hero-slide img {
    animation-name: image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

@keyframes image-zoom {
    0%  {width: 100%; height: 100%;}

    25% {width: 115%; height: 115%;}

    50% {width: 130%; height: 130%;}

    75% {width: 120%; height: 120%;}

    100% {width: 100%; height: 100%;}
}
/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/

/* booking form */


.booking-page-layout {
    height: 100vh;
}
.booking-video-panel {
    position: relative;
    height: 100%;
}
.booking-video-panel video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.booking-video-dimmer {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}
.booking-form-panel {
    background: #111;
    color: white;
    padding: 40px;
}
.booking-form-container {
    background: rgba(0, 0, 0, 0.85);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(255, 193, 7, 0.5);
    width: 100%;
    max-width: 450px;
}
.booking-form-heading {
    color: #ffc107;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
}
.booking-form-subheading {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 20px;
}
.form-group {
    position: relative;
    margin-bottom: 20px;
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 10px 10px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid #ffc107;
    color: #fff;
    font-size: 16px;
    outline: none;
}
.form-group label {
    position: absolute;
    left: 0;
    top: 10px;
    color: #aaa;
    font-size: 14px;
    transition: 0.3s;
}
.form-group input:focus,
.form-group select:focus {
    border-color: #ffeb3b;
}
.form-group input:focus + label,
.form-group input:valid + label,
.form-group select:focus + label,
.form-group select:valid + label {
    top: -10px;
    font-size: 12px;
    color: #ffc107;
}
.submit-booking-button {
    width: 100%;
    background: #ffc107;
    border: none;
    padding: 12px;
    font-weight: bold;
    color: #000;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.submit-booking-button:hover {
    background: #ffeb3b;
    transform: scale(1.05);
    box-shadow: 0 0 15px #ffc107;
}

/* process */
.how-it-works-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  max-width: 1000px;
  margin: 50px auto;
}

.flow-step-item {
  text-align: center;
  flex: 1;
  position: relative;
}

.flow-step-item .flow-step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.flow-step-item .flow-step-icon img {
  width: 40px;
  height: 40px;
}

.flow-step-item h2 {
  font-size: 20px;
  color: #2a2a2a;
  margin-bottom: 5px;
  font-weight: bold;
}

.flow-step-item p {
  font-size: 14px;
  color: #555;
  max-width: 150px;
  margin: auto;
}

.flow-connector-line {
  flex: 0 0 60px;
  height: 4px;
  background: #ddd;
  position: relative;
}

.flow-connector-line::before,
.flow-connector-line::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 4px solid #ddd;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  background: white;
}

.flow-connector-line::before {
  left: -12px;
}

.flow-connector-line::after {
  right: -12px;
}

.company-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    justify-items: center;
    padding-top: 20px;
}

/* Circle Stat Box */
.stat-circle {
    width: 160px;
    height: 160px;
    background: #ffc107;
    border-radius: 50%;
    /* border: 1px solid black; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.5);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover Glow Effect */
.stat-circle:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.7);
}

/* Number Styling */
.stat-circle h3 {
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(0,0,0,0.2);
    padding-top: 20px;
}

/* Label Styling */
.stat-circle p {
    font-size: 0.95em;
    font-weight: 500;
}

/* Responsive for Mobile */
@media (max-width: 480px) {
    .company-stats-grid {
        grid-template-columns: 1fr;
    }
}
/* ================= Experience Section Styles ================= */
.customer-perks-section {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    padding: 2rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin: 50px auto;
}

.perks-section-heading {
    margin-bottom: 2rem;
}

.perks-section-heading h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
}

.perks-section-heading p {
    font-size: 1rem;
    color: var(--text-color-secondary);
}

.perks-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    align-items: center;
    justify-items: center;
    position: relative;
    width: 100%;
    max-width: 900px;
}

.perks-center-car-img {
    grid-column: 2 / 3;
    grid-row: 1 / 4;
    width: 100%;
    max-width: 350px;
    z-index: 1;
    transform: translateY(-20px);
}

.perk-item-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--box-bg-color);
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    max-width: 250px;
}

.perk-item-box .flow-step-icon {
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    border-radius: 8px;
}

.perk-item-label {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
    text-align: left;
    margin: 0;
}

.perk-item-box::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: var(--accent-color);
    z-index: -1;
}

.perk-item-box::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: var(--accent-color);
    z-index: -1;
}

.left-top {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    justify-self: flex-end;
}

.left-top::before {
    left: calc(100% - 1px);
    top: 50%;
    height: 35px;
}

.left-top::after {
    left: calc(100% - 1px);
    top: 50%;
    width: 20px;
}

.right-top {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    justify-self: flex-start;
}

.right-top::before {
    right: calc(100% - 1px);
    top: 50%;
    height: 35px;
}

.right-top::after {
    right: calc(100% - 1px);
    top: 50%;
    width: 20px;
}

.left-middle {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    justify-self: flex-end;
}

.left-middle::before {
    left: calc(100% - 1px);
    top: 50%;
    height: 50px;
}

.left-middle::after {
    left: calc(100% - 1px);
    top: 50%;
    width: 30px;
}

.right-middle {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    justify-self: flex-start;
}

.right-middle::before {
    right: calc(100% - 1px);
    top: 50%;
    height: 50px;
}

.right-middle::after {
    right: calc(100% - 1px);
    top: 50%;
    width: 30px;
}

.left-bottom {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    justify-self: flex-end;
}

.left-bottom::before {
    left: calc(100% - 1px);
    top: 50%;
    height: 35px;
}

.left-bottom::after {
    left: calc(100% - 1px);
    top: 50%;
    width: 20px;
}

.right-bottom {
    grid-column: 3 / 4;
    grid-row: 3 / 4;
    justify-self: flex-start;
}

.right-bottom::before {
    right: calc(100% - 1px);
    top: 50%;
    height: 35px;
}

.right-bottom::after {
    right: calc(100% - 1px);
    top: 50%;
    width: 20px;
}

.included-features-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    background-color: var(--box-bg-color);
    padding: 15px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.included-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color-primary);
}

.included-feature img {
    width: 25px;
    height: 25px;
}

.checkmark {
    color: #4CAF50;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .customer-perks-section {
        padding: 1rem;
        gap: 2rem;
    }
    .perks-section-heading h1 {
        font-size: 1.8rem;
    }
    .perks-section-heading p {
        font-size: 0.9rem;
    }
    .perks-grid-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 2rem;
    }
    .perks-center-car-img {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        max-width: 250px;
        transform: translateY(0);
        margin-bottom: 2rem;
    }
    .perk-item-box {
        grid-column: 1 / 2;
        justify-self: center;
    }
    .perk-item-box::before,
    .perk-item-box::after {
        display: none;
    }
    .included-features-bar {
        flex-wrap: wrap;
        padding: 10px 20px;
        gap: 15px;
    }
}


/* right side social */

.floating-action-buttons {
  position: fixed;
  left: 20px;
  bottom: 10px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.floating-action-button {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.18), 0 0 0 0 transparent;
  transition: all 0.2s, box-shadow 0.4s;
  font-size: 1.4rem;
  padding: 0;
  position: relative;
  outline: none;
}
.floating-action-button.whatsapp-contact-btn {
  background: #25d366;
  color: #fff;
  box-shadow: 0 0 12px 2px #25d36655;
}
.floating-action-button.phone-contact-btn {
  background: #007bff;
  color: #fff;
  box-shadow: 0 0 12px 2px #007bff55;
}