/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 08 2025 | 12:02:18 */
:root {
            --gold: #c9a64d;
            --gold-light: #e4d4a6;
            --dark: #1a1a1a;
            --dark-light: #2a2a2a;
            --gray: #777;
            --gray-light: #f7f7f7;
            --white: #ffffff;
        }
#ast-scroll-top {
    background-color: #c9a64d;
    font-size: 15px;
}
.feature-text {
   font-size: 14px;           
    font-weight: 400;             
    color: #000;                 
    line-height: 1.5;
    transition: color 0.3s, transform 0.3s;
}

.fg-item-title{display:none;}
.car-name{            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 8px;
            position: relative;
            display: inline-block;}
.luxurycar-extras {
    margin-top:10px;
}

.luxurycar-extras h3.luxurycar-section-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.luxurycar-extras label {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e3e3e3;
    padding: 10px 14px;
    margin-bottom: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.25s ease;
    font-size: 13px;
    color: #333;
}

.luxurycar-extras label:hover {
    border-color: #c1c1c1;
    background: #f1f1f1;
}

.luxurycar-extras input[type="checkbox"] {
    width: 14px;
    height: 14px;
    margin-right: 12px;
    accent-color: #000;
    cursor: pointer;
}

.terms-divider{  width: 100%;
	height:1px;
    background-image: linear-gradient(to right, transparent, grey, transparent);}
/* Remove dotted border */
.ast-builder-menu-1 .menu-link:focus,
.ast-builder-menu-1 .menu-link:active {
    outline: none !important;
    box-shadow: none !important;
}

/* Active menu highlight */
.ast-builder-menu-1 .menu-item.current-menu-item > .menu-link,
.ast-builder-menu-1 .menu-item.current_page_item > .menu-link,
.ast-builder-menu-1 .menu-item.current-menu-ancestor > .menu-link,
.ast-builder-menu-1 .menu-item.current_page_ancestor > .menu-link {
    color: #c9a64d !important;
}
        .luxurycar-container {
            width: 100%;
            max-width: 850px;
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .luxurycar-box {
            display: flex;
            height: 380px;
        }

        /* Premium Badge */
        .luxurycar-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--gold);
            color: var(--white);
            padding: 6px 12px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            z-index: 10;
            box-shadow: 0 4px 12px rgba(201, 166, 77, 0.3);
        }
/* Left Section - Car Image */
.luxurycar-left {
    flex: 1;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    display: flex;
    flex-direction: column; /* stack main image + thumbnails vertically */
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    z-index: 2; /* above radial gradient */
}

/* Radial gradient glow */
.luxurycar-left::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(
        circle,
        rgb(215 230 255 / 20%) 60%,
        rgba(201, 166, 77, 0.15) 25%,
        rgba(201, 166, 77, 0.05) 50%,
        transparent 80%
    );
    transform: translate(-50%, -50%);
    filter: blur(20px);
    z-index: 1; /* behind main content */
    pointer-events: none;
}

/* Main Image */
.luxurycar-main-image {
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
    margin-bottom: 12px;
    z-index: 2;
    position: relative;
}

/* Thumbnail Gallery */
.luxurycar-gallery {
    display: flex;
    gap: 8px;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.luxurycar-gallery img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.3s, box-shadow 0.3s, border 0.3s;
}

.luxurycar-gallery img.active {
    border: 2px solid #f39c12; /* highlight selected thumbnail */
}

.luxurycar-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}


        /* Right Section - Details with Scroll */
        .luxurycar-right {
            flex: 1.2;
            padding: 30px;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }
.luxurycar-details h3 {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.luxurycar-details p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
  font-weight: 400;
}
        .luxurycar-scrollable {
            flex: 1;
            overflow-y: auto;
            padding-right: 10px;
            max-height: 320px;
        }
        /* Custom scrollbar styling */
        .luxurycar-scrollable::-webkit-scrollbar {
            width: 6px;
        }

        .luxurycar-scrollable::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .luxurycar-scrollable::-webkit-scrollbar-thumb {
            background: var(--gold);
            border-radius: 10px;
        }

        .luxurycar-scrollable::-webkit-scrollbar-thumb:hover {
            background: #b38c3c;
        }

        .luxurycar-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 8px;
            position: relative;
            display: inline-block;
        }

        .luxurycar-title::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--gold);
        }

        .luxurycar-tagline {
            color: var(--gray);
            font-size: 0.95rem;
            margin-bottom: 20px;
            line-height: 1.4;
			font-weight:400;
        }

        /* Compact Info Section */
        .luxurycar-info {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 12px;
            margin-bottom: 20px;
            background: var(--gray-light);
            padding: 15px;
            border-radius: 10px;
        }
.passenger-value {
    color: #ac9345; /* Example color */
    font-weight: bold;
}

.luggage-value {
    color: #ac9345;
    font-weight: bold;
}

        .luxurycar-info-item {
            display: flex;
            align-items: center;
            font-size: 0.85rem;
        }

        .luxurycar-info-item i {
            color: var(--gold);
            margin-right: 8px;
            font-size: 1rem;
            width: 16px;
            text-align: center;
        }
.info-value {
  font-weight: 700;
  color: #000;
}
        .luxurycar-features {
   margin-bottom: 15px;
}

        .luxurycar-feature {
            display: flex;
            align-items: center;
            font-size: 0.85rem;
            padding: 6px 0;
			font-weight:400;
        }

        .luxurycar-feature img {
            width: 16px;
            margin-right: 8px;
        }

        /* Premium Badges */
        .luxurycar-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }

        .luxurycar-badge-item {
            background: var(--gold-light);
            color: var(--dark);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 500;
        }

        /* Pricing & Action Section */
        .luxurycar-action {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            margin-top: 15px;
            flex-shrink: 0;
        }

        .luxurycar-price {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--dark);
        }

        .luxurycar-price span {
            font-size: 0.9rem;
            font-weight: 400;
            color: var(--gray);
        }
        .luxurycar-buttons {
            display: flex;
            gap: 10px;
        }

        .luxurycar-btn {
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            text-align: center;
            display: inline-block;
        }

        .luxurycar-btn-primary {
            background: var(--gold);
            color: var(--white);
            border: none;
            box-shadow: 0 4px 10px rgba(201, 166, 77, 0.3);
        }

        .luxurycar-btn-primary:hover {
            background: #b38c3c;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(201, 166, 77, 0.4);
        }

        .luxurycar-btn-secondary {
            background: transparent;
            color: var(--dark);
            border: 1px solid var(--gold);
        }

        .luxurycar-btn-secondary:hover {
            background: var(--gold);
            color: var(--white);
        }

        /* Scroll indicator for small screens */
        .luxurycar-scroll-indicator {
            display: none;
            text-align: center;
            color: var(--gold);
            font-size: 0.8rem;
            margin-top: 5px;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-5px);
            }
            60% {
                transform: translateY(-3px);
            }
        }
@media (max-width: 768px) {
      .luxurycar-box {
        display: flex;
        flex-direction: column; /* stack vertically */
        height: auto;
    }

    .luxurycar-left {
        order: 1; /* image first */
        width: 100%;
        padding: 15px 10px;
    }

    .luxurycar-right {
        order: 2; /* info below */
        width: 100%;
        padding: 15px 10px;
    }
	.luxurycar-main-image {
        width: 50%;
        max-width: 400px;   
        border-radius: 16px;
        margin: 0 auto -55px auto;
        display: block;      
        z-index: 2;
        position: relative;
    }
}

       
.ti-footer.ti-footer-grid.source-Google strong, .ti-footer.ti-footer-grid.source-Google span {
	color: #000 !important;
}
.pum-overlay {
  background-color: rgba(0, 0, 0, 0.5) !important;
}
.pum-overlay p { 
    margin-bottom: 0.5em;
}
.pum-theme-10435 .pum-container,
.pum-theme-enterprise-blue .pum-container {
  background-color: transparent !important;
  box-shadow: none !important; 
  border: none !important;
}
.pum-theme-10435 .pum-content + .pum-close, .pum-theme-enterprise-blue .pum-content + .pum-close{
	background-color:#ac9345;
}
.luxury-title {
  font-size: 26px;
  color: #c9a64d;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

/* Info */
.luxury-info p {
  font-size: 16px;
  color: #333;
  margin: 6px 0;
}

.icon-user, .icon-suitcase {
  color: #c9a64d;
  margin-right: 6px;
}

.luxury-features-box h3 {
  color: #c9a64d;
  font-size: 20px;
  margin-bottom: 10px;
  text-align: center;
}

/* Scroll area */
.luxury-scroll {
  max-height: 180px;
  overflow-y: auto;
  padding-right: 10px;
}

.luxury-scroll::-webkit-scrollbar {
  width: 5px;
}

.luxury-scroll::-webkit-scrollbar-thumb {
  background-color: #c9a64d;
  border-radius: 10px;
}

.luxury-scroll::-webkit-scrollbar-track {
  background-color: #f2f2f2;
}

.luxury-scroll p {
  display: flex;
  align-items: center;
  margin: 8px 0;
  gap: 6px;
}

/* Check icons */
.check-icon {
  width: 18px;
  height: 18px;
}
.fleet-gallery .fg-item-category span {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}
.icon-user {
  color: #ac9455;
  margin-top: 15px;
  margin-right: 6px;
}
.icon-suitcase {
  color: #ac9455;
  margin-right: 6px;
}
.luxury-features-box {
  text-align: left;
  display: inline-block;
  color: #000;
  width: 300px;
}
.luxury-features-box h3 {
  color: #ac9455;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
  font-size: 22px;
}
.luxury-scroll {
  max-height: 100px;
  overflow-y: auto;    
  padding-right: 6px;
}
/* Custom scrollbar style */
.luxury-scroll::-webkit-scrollbar {
  width: 6px;
}

.luxury-scroll::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}

.luxury-scroll::-webkit-scrollbar-thumb {
  background: #ac9455;
  border-radius: 10px;
}

.luxury-scroll::-webkit-scrollbar-thumb:hover {
  background: #8b7a3f;
}
.check-icon {
  width: 16px;
  vertical-align: middle;
  margin-right: 8px;
}
.btn-row {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;

    flex-wrap: nowrap !important;  /* keep side-by-side */
    width: auto !important;
    max-width: 100% !important;    /* prevent overflow */
}
.book-btn1 {
  background-color: #ac9455;
  color: #fff;
  text-decoration: none !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.book-btn1:hover {
  background-color: #000;
  color: #ac9455;
}

/* Outline Buttons (works for view-more-btn2, view-more-btn3, etc.) */
.view-btn, 
[class^="view-more-btn"], 
[class*=" view-more-btn"] {
  background: transparent;
  border: 2px solid #ac9455;
  color: #ac9455;
  text-decoration: none !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}
.view-btn:hover,
[class^="view-more-btn"]:hover,
[class*=" view-more-btn"]:hover {
  background: #ac9455;
  color: #fff;
}
.view-btn:focus,
.view-btn:active,
[class^="view-more-btn"]:focus,
[class^="view-more-btn"]:active,
[class*=" view-more-btn"]:focus,
[class*=" view-more-btn"]:active {
  background-color: #fff;
  color: #ac9345 !important;
  outline: none;
}
.popup-full-content {
    width: 100% !important;
    max-width: 1200px; /* match your card design width */
    padding: 0 !important;
    margin: 0 auto;
}

.popup-full-content .luxurycar-container {
    width: 100%;
}

.popup-full-content .luxurycar-right .luxurycar-scrollable {
    max-height: 80vh; /* prevents popup from being too tall */
    overflow-y: auto;
}

.elementor-element[data-id="bb691ac"] img { max-width: 160px; }
.e-n-tabs-heading {
  display: flex !important;
  justify-content: left !important;
  align-items: left !important;
  flex-wrap: wrap !important;22%
  padding: 10px 0 !important;
 gap:15px !important;
}
.e-n-tab-title {
  position: relative !important;
  background: #f9f9f9 !important;
  color: #333 !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  letter-spacing: 0.5px !important;
  border: 1px solid #ac9455 !important;
  outline: none !important;
  padding: 12px 24px !important;
  border-radius: 8px!important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}
.e-n-tab-title:hover {
  background: #f1f1f1 !important;
  color: #000 !important;https://www.linkedin.com/company/platinum-luxury-fleet
}
.e-n-tab-title[aria-selected="true"] {
  background: #ac9455 !important; 
  color: #fff !important;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15) !important;
}
.e-n-tab-title-text {
  display: block !important;
  white-space: nowrap !important;
}
.custom-tabs .e-n-tabs-heading {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 15px !important;
  flex-wrap: wrap !important;
  padding: 10px 0 !important;
}
.contact-hr {
  height: 2px;
  width: 90%;
  background: linear-gradient(to right, #ac9455, transparent) !important;
}
.luxury-contact-form {
  max-width: 700px !important;
  margin: 0 auto !important;
  color: #333 !important;
  font-weight: 300 !important;
}
.luxury-contact-form .form-group {
  flex: 1 !important;
  min-width: 250px !important;
}
.luxury-contact-form input,
.luxury-contact-form textarea {
  width: 100% !important;
  padding: 12px 14px !important;
  border: 1px solid #ac9455 !important;
  border-radius: 3px !important;
  font-size: 15px !important;
  font-weight: 300 !important;
  outline: none !important;
  background: #fff !important;
}
.luxury-contact-form textarea {
  max-height: 195px !important;
  resize: vertical !important;
}
.luxury-contact-form input[type="submit"] {
  background: #ac9455 !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  border: none !important;
  padding: 14px 20px !important;
  border-radius: 3px !important;
  cursor: pointer !important;
  width: 100% !important;
  transition: background 0.3s ease !important;
  text-transform: uppercase !important;
}
.luxury-contact-form input[type="submit"]:hover {
  background: #9d7a33 !important;https://www.linkedin.com/company/platinum-luxury-fleet
}
#topbar {
  display: flex;
  align-items: center;
  font-size: 10px;
  gap: 10px;
  flex-wrap: wrap;
}
.topbar-item {
  display: flex;
  align-items: center;
}
.topbar-icon {
  width: 16px;
  height: 16px;
  margin-right: 6px;
}
.topbar-separator {
  margin: 0 8px;
  color: white;
}
.topbar-text {
  color: white;
  font-weight: 400;
}
.main-header-menu a {
  color: #333;
  font-weight: 600;
  padding-top: 25px !important;
}
.main-header-menu a:hover {
  color: black;
}
.ast-site-identity {
  padding: 4px !important;
}
.ast-primary-header-bar::after {
  content: url(https://dev.platinumluxuryfleet.com/wp-content/uploads/2025/09/phone.png) " (770) 954-6761";
  position: absolute;
  right: 90px;
  top: 35%;
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: bold;
  color: #e9e9e9;
}
.main-header-menu .sub-menu {
  border-top: 5px solid #a28b50;
  background-color: white !important;
}
.main-header-menu .sub-menu a {
  font-size: 15px;
  color: black !important;
  padding: 10px 20px;
  display: block;
}
.custom-cta-section {
  background-color: #111;
  
  padding: 30px;
}
.cta-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
}
.e-lazyloaded {
  padding: 0px !important;
}
.e-con-inner {
  padding: 0 !important;
}
.e-con {
  padding-top: 0px !important;
}
:root {
  --float-speed: 3.5s;
}
.two-col-wrap {
  display: flex;
}

.right-column {
  flex: 1;
  display: flex;
}
.float-images {
  position: relative;
  width: 460px; 
  height: 420px; 
}
.float-image {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.img1 { top: 0; left: 10px; width: 180px; }
.img2 { top: 70%; left: 5%; width: 165px; height: 140px; }
.img3 { 
  top: 20%; left: 55%; width: 250px;
  transform: translate(-50%, -50%);
  animation: floatY var(--float-speed) ease-in-out infinite;
}
@keyframes floatY {
  0%   { transform: translateY(-20px); }
  50%  { transform: translateY(18px); }
  100% { transform: translateY(-20px); }
}
.facts-section {
  text-align: center;
  padding: 0px 20px; 
  width: 100%;
}
.facts-counters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1080px;
  margin: 0px auto 10px;
  justify-items: center;
}
.counter-box {
  background: #fff;
  color: #111;
  border-radius: 10px;
  padding: 20px;
  width: 100%;
  max-width: 240px;
  min-height: 120px;
  margin-top: 10px;margin-bottom:10px;
  transition: all 0.3s ease;
}
.counter-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}
.counter-box .icon {
  background: #111;
  color: #fff;
  font-size: 28px;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.counter-box:hover .icon {
  background: #ac9455;
  color: #fff; 
}
.counter-box span {
  font-size: 1rem;
  font-weight: 600;     
  color:#555555;       
}
.counter-box .counter {
  font-size: 2rem;
  font-weight: 900;
  color: #C9A64D;
}
.counter-box p {
  margin-top: 8px;
  margin-bottom: 0px;
  font-size: 1rem;
  font-weight: 700;
  color: #333;
}
.ride-search-form {
  display: flex !important;
  align-items: flex-start !important;
  gap: 15px !important;
  background: #1c1c1c !important;
  padding: 30px 20px 0px !important;
  width: 100% !important;
  margin: 0 auto !important;
  color: #ac9455 !important;
  box-sizing: border-box !important;
}
.ride-search-form .form-row {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 190px !important;
  font-size: 14px !important;
  color: #ac9455 !important;
}
.ride-search-form input,
.ride-search-form select {
  padding: 10px 12px !important;
  border: 1px solid #ac9455 !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  background: #111 !important;
  color: #fff !important;
  transition: 0.3s !important;
  box-sizing: border-box !important;
}
.ride-search-form input:focus,
.ride-search-form select:focus {
  outline: none !important;
}
.ride-search-form .form-submit {
  flex: 1 1 auto !important;
  padding-top: 32px !important;
}
.ride-search-form input[type="submit"] {
  background: #ac9455 !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  border: none !important;10%
  border-radius: 6px !important;
  padding: 12px 28px !important;
  cursor: pointer !important;
  margin-top: 14px !important;
  transition: 0.3s !important;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(66%) sepia(25%) saturate(925%) hue-rotate(11deg) brightness(92%) contrast(91%) !important;
  cursor: pointer !important;
}
.elementor-heading-title {
  padding-top: 60px;
  padding-bottom: 35px;
}
.elementor-image-box-wrapper {
  position: relative;
  text-align: center;
  overflow: hidden;
}
.elementor-image-box-img {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.elementor-image-box-img img {
  display: block;
  width: 100%;
  height: auto;
  cursor: pointer;
  filter: brightness(60%) !important;
}
.elementor-image-box-wrapper:hover .elementor-image-box-img img {
  transform: scale(1.1);
  filter: brightness(90%) !important;
}
.elementor-image-box-content .10%elementor-image-box-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
 text-decoration:none !important;
}
.ast-single-post .entry-content a{text-decoration:none !important;}
.elementor-image-box-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff !important;
  font-size: 20px;
  font-weight: 700;
 font-family: 'Playfair Display', serif !important;
  text-align: center;
  z-index: 2;
  pointer-events: none;
}
.rid-image-custom .elementor-image-box-img img {
  max-height: 300px;
}
.custom-footer {
  color: white;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}
.footer-col p {10%
  color: #9a9a9a;
  font-size: 0.8rem;
  margin-bottom: 0.25em;
}
.footer-col h3 {
  color: white;
  margin-bottom: 15px;
  position: relative;
}
.heading {
  color: #fff;
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-family: 'Cormorant Garamond', serif;
  text-align: left;
}
.line-container {
  display: flex;
  align-items: end;
  margin-bottom: 1.5rem;
}
.golden-line {
  height: 4px;
  width: 110px;
  background-color: #a28b50;
}
.white-line {
  height: 1px;
  width: 180px;
  background-color: #9a9a9a;
  top: 1px;
}
.footer-links {
  display: flex;
  gap: 3rem;
}
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-column a {
  position: relative;
  text-decoration: none;
  color: #9a9a9a;
  font-size: 0.8rem;
  transition: color 0.3s ease-in-out;
  padding-left: 5px;
}
.footer-column a::before {
  content: "›";
  position: relative;
  right: 5px;
  color: #c9b17d;
  font-size: 1rem;
}
.footer-column a:hover {
  color: #a28b50;
}
.footer-logo {
  width: 218px;
  height: 120px;
  margin-left: 10px;
}
.app-buttons {
  display: flex;
  margin-top: 35px;
}
.app-buttons .appstore {
  width: 150px;
  padding-top: 4px;
  height: auto;
  transition: transform 0.3s ease;
}
.app-buttons .playstore {
  width: 150px;
  height: auto;
  transition: transform 0.3s ease;
}
.app-buttons .appstore:hover,
.app-buttons .playstore:hover {
  transform: scale(1.05);
}
.social-icons a img {
  height: 20px; 
  margin-right: 15px;
}
.social-icons a img:hover {
  transform: scale(1.09);
  filter: brightness(1.2) saturate(120%);
}
.contact-info li {
  margin-bottom: 10px;
  color: #717171;
  display: flex;
  align-items: center;
}
.footer-col .contact-info li {
  text-decoration: none;
  color: #9a9a9a;
  font-size: 0.8rem;
}
.contact-info li img {
  width: 30px;
  height: 40px;
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #717171;
  align-self: stretch;
  object-fit: contain;
}
.contact-header {
  color: #fff;
  font-size: 42px;
  font-family: playfair;
  margin: 0 auto !important;
}
.contact-info {
  color: white;
  font-family: sandybrown;
  font-size: 26px;
  margin: 5px auto !important;
}
.contact-hd {
  font-size: 16px;
  margin: 0 auto !important;
}
.booking-form {
  width: 100%;
  background: linear-gradient(145deg, #111, #1c1c1c);
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
  color: #fff;
}
.form-heading {
  font-size: 26px;
  font-weight: 700;
  color: #ac9455;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.form-error {
  text-align: center;
  color: #b3261e;
  font-size: 12px;
  margin-bottom: 10px;
  display: none;
}
.booking-form .wpcf7-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.booking-form .form-group {
  display: flex;
  flex-direction: column;
  flex: 1 1 110px;
}
.booking-form .form-group label {
  font-size: 14px;768
  color: #C9A64D;
  font-weight: 600;
  margin-bottom: 6px;
}
.booking-form .wpcf7-form-control {
  height: 48px;
  padding: 0 10px;
  border: 1px solid #444;
  border-radius: 8px;
  font-size: 14px;
  background: #222;
  color: #fff;
  transition: 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}
.booking-form .wpcf7-form-control::placeholder {
  color: #aaa;
}
.booking-form .wpcf7-form-control:focus {
  border-color: #ff9c1a;
  background-color: #1A1A1A;
  color: #F9F6F2;
  box-shadow: 0 0 8px rgba(255,156,26,0.5);
  outline: none;
}
.booking-form .wpcf7-submit {
  height: 50px;
  padding: 0 30px;
  border: none;
  border-radius: 8px;
  background: #ac9455;
  color: #111;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-end;
}
.booking-form .wpcf7-submit:hover {
  background: #C9A64D;
  box-shadow: 0 4px 15px rgba(255,156,26,0.4);
  transform: translateY(-2px);
}
.booking-form input[type="date"]::-webkit-calendar-picker-indicator,
.booking-form input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(66%) sepia(25%) saturate(925%) hue-rotate(11deg) brightness(92%) contrast(91%);
  cursor: pointer;
}.adv-tab .eael-advance-tabs:not(.eael-tabs-vertical) > .eael-tabs-nav > ul li:hover > a:after,
.adv-tab .eael-advance-tabs:not(.eael-tabs-vertical) > .eael-tabs-nav > ul li:hover:after {
    border-top-color: #000 !important;
}
.adv-tab .eael-advance-tabs:not(.eael-tabs-vertical) > .eael-tabs-nav > ul li:after,
.adv-tab .eael-advance-tabs:not(.eael-tabs-vertical) > .eael-tabs-nav > ul li > a:after {
    transition: border-top-color 0.3s ease;
}
.fleet-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.fleet-container {
  display: flex;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.fleet-card {
  flex: 0 0 23%;
  background: #fff;
  margin: 10px;
  border: 1px solid #e6e6e6;
  border-radius: 12px;9px auto 10px
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 1px 3px 5px rgba(0,0,0,0.3);
}

.fleet-card img {
  height: 190px;
  width: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.fleet-card:hover img { transform: scale(1.1); }

.card-body
{ padding: 15px;
text-align:center;}
.fleet-info {
  display: flex;
  justify-content: space-around;
  font-size: 14px;
  font-weight: 600;
  color: #444;
  margin: 10px 0;
}
.fleet-info i { margin-right: 5px; color: #C9A64D; }

.btn {
  display: block;
  padding: 8px;
  background: #000;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  text-align:center;
  text-decoration: none !important;
  transition: background 0.3s ease;
}
.btn:hover { background: #C9A64D; color: #fff; }

.fleet-arrows {
  display: flex;
  justify-content: space-around;
  margin: 15px 0 40px;
 gap: 10px;
}
.arrow {
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  padding: 12px 14px;
  cursor: pointer;
  border-radius: 50%;768
  font-size: 16px;
  transition: background 0.3s ease;
}
.arrow:hover { background: #C9A64D; }
.fleet-filter {
  display: flex;
  align-items: center;
  justify-content:flex-end;
  gap: 10px;
  padding:0 14px;
}
.fleet-filter-compact {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  margin-bottom: 15px;
  width: 100%; 
}
.fleet-filter-compact select {
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 13px;
  cursor: pointer;
  background: #fff;
  color: #333;
  width: auto; 
}
.filter-title {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.5px;
}
.filter-title i {
  font-size: 14px;
  color: #a88b5b;
}
.filter-select select {
  appearance: none;
  -webkit-appearance: none;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 30px;
  padding: 6px 30px 6px 12px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='%23333' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.filter-select select:hover {
  border-color: #a88b5b;
}
.filter-select select:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(168, 139, 91, 0.25);
  border-color: #a88b5b;
}
.fleet-modal { display:none; position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.7); z-index:9999; overflow:auto;}
.fleet-modal-content { display:flex; max-width:1000px; margin:50px auto; background:#fff; border-radius:10px; position:relative; flex-wrap:wrap; padding:20px; }
.fleet-modal .close { position:absolute; top:10px; right:15px; font-size:28px; cursor:pointer;}
.fleet-modal h2 { text-align:center; width:100%; margin-bottom:15px; }
.modal-left { flex:1 1 50%; padding:10px; text-align:center; }
.modal-left img.main-img { width:100%; border-radius:10px; margin-bottom:10px; }
.modal-left .gallery { display:flex; justify-content:center; gap:10px; }
.modal-left .gallery img.thumb { width:70px; height:50px; object-fit:cover; cursor:pointer; border:2px solid #ccc; border-radius:5px; }
.modal-left .gallery img.thumb:hover { border-color:#C9A64D; }
.modal-right { flex:1 1 50%; padding:10px; }
.modal-right h4 { margin:10px 0 5px 0; }
.modal-right ul { padding-left:20px; margin-bottom:10px; }
.modal-right .modal-extras label { display:block; margin-bottom:5px; }
.modal-right .modal-book { margin-top:10px; padding:10px 20px; background:#000;color:#fff;border:none;border-radius:5px; cursor:pointer;}
.modal-right .modal-book:hover { background:#C9A64D; }
@media(max-width: 1900px){.fleet-card { flex: 0 0 31.6%; }}
@media(max-width: 1600px){.fleet-card { flex: 0 0 31.6%; }}
@media(max-width: 1400px){.fleet-card { flex: 0 0 31.6%; }}
@media(max-width: 1200px){.fleet-card { flex: 0 0 31.5%; }}
@media(max-width: 1025px){.fleet-card { flex: 0 0 48%; }
.fleet-modal-content {
  width: 95%;}}
@media(max-width: 991px){.fleet-card { flex: 0 0 48%; }}
@media(max-width: 768px){.fleet-card { flex: 0 0 47%; }
..fleet-modal-content {
    flex-direction: column;
    margin: 30px auto;
    padding: 15px;
  }
  .modal-left, .modal-right {
    flex: 1 1 100%;
    padding: 5px;
  }
  .modal-left .gallery {
    justify-content: flex-start;
  }
}
@media(max-width: 767px){.fleet-card{ flex: 0 0 47%; }}
@media(max-width: 575px){.fleet-card { flex: 0 0 95%; }}
@media(max-width: 480px){.fleet-card { flex: 0 0 95%}}
@media(max-width: 360px){.fleet-card { flex: 0 0 95%}
.fleet-modal-content {
    width: 98%;
    margin: 20px auto;
    padding: 10px;
  }
  .modal-left img.main-img {
    max-height: 200px; 
    object-fit: contain;
  }
  .modal-left .gallery img.thumb {
    width: 50px;
    height: 35px;
  }
  .modal-right .modal-book {
    width: 100%;
    padding: 12px 0;
    font-size: 14px;
  }
}
.elementor-element[data-id="9c48ee5"] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 40px;
}
.elementor-element[data-id="52fcd6e"] {
  flex: 1;
  max-width: 600px;
}
.elementor-element[data-id="31a8df3"] {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.elementor-element[data-id="31a8df3"] img {
  max-width: 200px;
  height: auto;
  cursor: pointer;
}
.elementor-element[data-id="bb691ac"] img {
  max-width: 100%;
  height: auto;
  display: block;
}
.pricing-table {
  color: #000;
  text-align: left;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  height: 320px;
  overflow-y: auto; 
  scrollbar-width: thin; 
  scrollbar-color: #ac9455 #f4f4f4; 
}
.pricing-table::-webkit-scrollbar {
  width: 6px;
}

.pricing-table::-webkit-scrollbar-thumb {
  background-color: #ac9455;
  border-radius: 4px;
}

.pricing-table::-webkit-scrollbar-track {
  background: #f4f4f4;
}
.pricing-table h6 {
  color: #ac9455;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
}

.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.pricing-table th,
.pricing-table td {
  padding: 8px;
  text-align: left;
}
.pricing-table tr {
  border-bottom: 1px solid #ccc;
}
.pricing-snapshot {
  background: #ffffff;
  color: #111; 
  padding: 20px 10px;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
}
.pricing-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #C9A64D;
}
.pricing-sub {
  font-size: 16px;
  font-family:roboto;
  color: #111; 
  font-weight:400;
}
.pricing-list {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  padding-top:30px;
  flex-direction: column;
  gap: 15px;
  padding-bottom: 20px;
}
.pricing-item {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr auto;
  align-items: center;
  background: #f9f9f9; 
  padding: 15px;
  border: 1px solid #e0e0e0; 
  border-radius: 12px;
  transition: all 0.3s ease;
}
.pricing-item:hover {
  transform: translateY(-5px);
  border: 1px solid #d4af37;
  box-shadow: 0 8px 22px rgba(212,175,55,0.2); 
}
.vehicle-info {
  display: flex;
  gap: 10px;
  align-items: center;
  text-align: left;
}
.vehicle-img {
  width: 190px;
  height: 60px;
}
.vehicle-info h1 {
	font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  color: #111;
  margin: 0;
}

.vehicle-info .meta {
font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight:700;
  color: #555;
  margin: 5px 0;
}
.features {
  font-size: 12px;
font-family: 'Open Sans', sans-serif;
  color: #555;
  margin: 0;
 padding-left: 0px !important;  
 list-style: none;
}
.features li {
  margin: 2px 0;
}
.price-col {
  text-align: center;
}
.price-col .label {
  font-size: 12px;
  text-transform: uppercase;
  color: #555;
	font-family: 'Open Sans', sans-serif;
  font-weight:700;
  display: block;
  margin-bottom: 4px;
} 
.price-col .price {
	font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #d4af37;
}
.book-btn {
  background: linear-gradient(135deg, #d4af37, #b9972d);
  color: #fff;
	font-family: 'Open Sans', sans-serif;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none !important;
  font-size: 14px;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(212,175,55,0.3);
}
.book-btn:hover {
  color: #fff;
  transform: scale(1.05);
}
.ti-widget.ti-goog .ti-rating-text{
	color:black !important;
}
.ti-widget.ti-goog .ti-rating-text span{
	color:black !important;
}
.ti-widget.ti-goog .ti-rating-text span strong{
 color:black !important;
}
.tag {
  font-size: 10px;
  background: #d4af37;
  color: #000;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 4px;
  text-transform: uppercase;
  font-weight: bold;
}
.popular {
  border: 1px solid #d4af37;
}
.cf7-form-wrapper * {
  all: unset;
  display: revert;
  box-sizing: border-box;
}
.cf7-form-wrapper,
.cf7-form-wrapper form,
.cf7-form-container {
  all: revert;
  box-sizing: border-box;
}
/* FORM CONTAINER */
.cf7-form-wrapper .cf7-form-container {
  font-family: 'Arial', sans-serif !important;
  padding: 50px 45px 0 !important;
  background-color: #fff !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
  width: 100% !important;
  max-width: 800px !important;
  margin: 0 auto 40px !important;
  display: flex !important;
  flex-direction: column !important;
}
/*LAYOUT */
.cf7-form-wrapper .cf7-row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  flex-wrap: wrap !important;
  margin: 0 -10px 20px !important;
}
.cf7-form-wrapper .cf7-column {
  flex: 1 !important;
  padding: 0 10px !important;
}
.cf7-form-wrapper .cf7-column.full-width {
  flex: 0 0 100% !important;
}
.cf7-form-wrapper .cf7-custom-label {
  display: block !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  margin-bottom: 6px !important; 
  color: #333 !important;
  line-height: 1.4 !important;
}
.cf7-form-wrapper .cf7-custom-input,
.cf7-form-wrapper .cf7-custom-select {
  width: 100% !important;
  padding: 12px 14px !important;
  border: 2px solid #ccc !important;
  border-radius: 5px !important;
  font-size: 15px !important;
  color: #333 !important;
  box-sizing: border-box !important;
  transition: border-color 0.3s ease !important;
  background: #fff !important;
  margin: 0 !important; 
}
.cf7-form-wrapper .cf7-custom-input:focus,
.cf7-form-wrapper .cf7-custom-select:focus {
  border: 2px solid !important;
  border-color: #f4b400 !important;
  outline: none !important;
}
.cf7-column input[type="text"],
.cf7-column input[type="date"],
.walcf7-datepicker {
	border: 2px solid #ccc !important;
  border-radius: 5px !important;
  font-size: 15px !important;
  color: #333 !important;
}
.cf7-column input[type="text"]:focus,
.cf7-column input[type="date"]:focus,
.walcf7-datepicker:focus {
  border: 2px solid !important;
  border-color: #f4b400 !important;
  outline: none !important;
}

.cf7-form-wrapper .cf7-custom-input::placeholder {
  color: #aaa !important;
}
.cf7-custom-checkbox-input input[type="checkbox"] {
    -webkit-appearance: checkbox !important;
    appearance: checkbox !important;
    width: 18px !important;
    height: 18px !important;
    margin: 0 4px 4px 0;
    cursor: pointer;
}

/* Optional: spacing */
.cf7-custom-checkbox-input input[type="checkbox"] + span {
    margin-left: 6px;
}

/* SUBMIT BUTTON */
.cf7-form-wrapper input[type="submit"] {
  display: block !important;
  margin: 25px auto 10px !important;
  background: #ac9455 !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  border: none !important;
  padding: 16px 32px !important;
  border-radius: 5px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.cf7-form-wrapper input[type="submit"]:hover {
  background: #b8962e !important;
  color: #fff !important;
}
/* REMOVE EXTRA CF7 DEFAULTS */
.cf7-form-wrapper p,
.cf7-form-wrapper br,
.cf7-form-wrapper span.wpcf7-form-control-wrap {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #ac9345;
}
.wpcf7 form .wpcf7-response-output {
    text-align: center;
		color:#fff;
    margin: 2em 2.5em 1em;
    border: 0px;
}
.sms-terms {
    font-size: 14px;
    margin-top: 8px;
    line-height: 1.5;
}

.sms-terms a {
    color: #0073e6;    
    text-decoration: underline; 
	cursor: pointer;
}
.sms-terms a:hover {
    color: #005bb5;    
}
.faq-container .e-n-accordion-item-title {
background: linear-gradient(135deg, #AC9345 0%, #C7B46D 100%);
color: #fff;
  border-radius: 8px;
  padding: 25px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid #e8e8e8;
}
.faq-container .e-n-accordion-item[aria-expanded="true"] .e-n-accordion-item-title {
  background: #F8F6F1;
  color: #AC9345;
  border-color: #AC9345;
}
.faq-container .e-n-accordion-item[aria-expanded="true"] .e-n-accordion-item-content {
  background: #fffdf8;
  border-radius: 12px;
  margin-top: 10px;
  border: 1px solid #D6C89A;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}

.faq-content {
  background: #fff;
  border: 1px solid #e6e6e6;
  margin-top: 10px;
  padding: 18px 22px;
  border-radius: 8px;
  color: #333;
  font-size: 15px;
  line-height: 1.7;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}
.faq-content p {
  margin-top: 20px;
  margin-bottom: 0;
  font-family: "Inter", sans-serif;
}
.info-card-section {
  display: flex;
  justify-content: center;
}
.info-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  padding:15px;
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #d4af37;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.info-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.info-row {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: background 0.3s ease;
}

.info-row:last-child {
  border-bottom: none;
}

.info-row:hover {
  background: rgba(212, 175, 55, 0.05);
  border-radius: 12px;
}
.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background:#ff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.info-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}
.info-text p {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.map-container iframe {
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
  .info-top {
    flex-direction: column;
    align-items: center;
  }
  .info-card {
    padding: 20px;
  }
  .info-icon {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 480px) {
  .info-card {
    width: 100%;
  }
  .info-text p {
    font-size: 0.9rem;
  }
}
@media (max-width: 1900px) {
  .ride-search-form .form-row { flex: 1 1 20% !important; }
  .app-car{width:60%;}
	.facts-counters {
    grid-template-columns: repeat(4, 1fr);
  }

}
@media (max-width: 1600px) {
  .ride-search-form .form-row { flex: 1 1 22% !important; }
  .elementor-element[data-id="9c48ee5"] { gap: 30px; padding: 50px 30px; }
  .app-car{width:70%;}
	.elementor-heading-title {
  padding-top: 60px;
  padding-bottom: 30px;
}
  .facts-counters {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
}
@media (max-width: 1400px) {
  .ride-search-form .form-row { flex: 1 1 25% !important; }
  .elementor-element[data-id="52fcd6e"] { max-width: 500px; }
  .elementor-element[data-id="31a8df3"] img { max-width: 180px; }
	.elementor-heading-title {
    padding-top: 60px;
    padding-bottom: 35px;
} 
  .app-car{width:75%;}
  .facts-counters {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
@media (max-width: 1200px) {
  .ride-search-form { flex-wrap: wrap !important; }
  .ride-search-form .form-submit { flex: 1 1 100% !important; padding-top: 10px !important; }
  .ride-search-form input[type="submit"] { width: 100% !important; }
  .footer-container { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer-col h3, .heading { text-align: center; }
  .line-container { justify-content: center; }
  .footer-links { flex-direction: column; gap: 1.5rem; align-items: center; }
  .footer-column { align-items: center; }
  .footer-logo { margin: 0 auto 20px; width: 200px; height: auto; }
  .app-buttons { justify-content: center; gap: 20px; }
  .social-icons { justify-content: center; display: flex; margin-top: 20px; }
  .contact-info { display: flex; flex-direction: column; align-items: center; }
  .contact-info li img { display: none; }
  .footer-col p { display: flex; flex-direction: column; align-items: center; }
  .elementor-element[data-id="9c48ee5"] { gap: 25px; padding: 40px 25px; }
  .elementor-element[data-i10%d="52fcd6e"] { max-width: 450px; }
  .app-car{width:90%;}
 .float-images {
    width: 400px;
    height: 350px;
    margin-left: 15px;
  }
  .img1 { width: 160px; }
  .img2 { width: 155px; }
  .img3 { width: 230px; top: 15%; left: 50%; }
}
  .facts-counters {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
@media only screen and (max-width: 1111px) {
  .luxury-features-box {
    width: 100%;
  }

@media (max-width: 1024px) {
  .ride-search-form .form-row { flex: 1 1 45% !important; }
  .ast-primary-header-bar::after { display: none; }
  .banner-content {left: 10%;max-width: 70%;}
  .banner-heading {font-size: 36px;}
  .banner-btn {font-size: 15px; padding: 10px 20px;}
  .pricing-item {grid-template-columns: 2fr 1fr 1fr auto;padding: 12px; }
  .vehicle-img {width: 140px; height: auto;}
  .vehicle-info h3 {font-size: 18px;}
  .vehicle-info .meta,
  .features {font-size: 11px;}
.elementor-heading-title {
    padding-top: 60px;
    padding-bottom: 35px;
}
  .price-col .label { font-size: 10px; }
  .price-col .price {font-size: 16px;}
  .book-btn {
   padding: 8px 16px;
   font-size: 12px;}
  .tag {font-size: 9px; background: #d4af37; color: #000; border-radius: 20px; margin-left:2px;      text-transform: uppercase; font-weight: bold;}
    .two-col-wrap { flex-direction: column; } 
	  .float-images {
    width: 100%;
    height: 260px;
  }
  .img1 { width: 140px; left: 5%; }
  .img2 { width: 130px; top: 90%; left: 8%; }
  .img3 { width: 160px; top: 30%; left: 50%; }
}
  .facts-counters {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
   .counter-box {
    max-width: 80%;
  }
	 .airport-fleet-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .airport-fleet-card {
        flex: 0 0 45%;
        max-width: 45%;
    }
    .fleet-card-top h3 {
        font-size: 22px;
    }
	.cf7-form-wrapper {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 15px !important;
    width: 100% !important;
  }
}
@media (max-width: 991px) {
  .ride-search-form { flex-wrap: wrap !important; }
  .ride-search-form .form-row { flex: 1 1 25% !important; }
  .ride-search-form input[type="submit"] { width: 100% !important; }
 .entry-content p {margin-bottom: 0.6em;}
  .elementor-element-6d6d1ac img {width: 100% !important;padding-top: 150px;}
  .facts-counters {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
  .counter-box {
    max-width: 100%;
  }
	.img3 {
    width: 180px;
    top: 15%;
    left: 45%;
	}
	.luxurycar-gallery {
    gap: 0px;
	}
}
@media (max-width: 768px) {
  .luxury-contact-form .form-row { flex-direction: column !important; }
  .elementor-element[data-id="9c48ee5"] { flex-direction: row; gap: 15px; padding: 20px 15px; }
  .elementor-element[data-id="52fcd6e"] { max-width: 280px; }
  .elementor-element[data-id="31a8df3"] img { max-width: 140px; }
  .elementor-element[data-id="bb691ac"] img { max-width: 220px; }
	.elementor-heading-title {padding-top: 60px;padding-bottom: 40px;}
  .app-car{width:100%;}
  .ride-search-form .form-row { flex: 1 1 25% !important; }
  .ride-search-form .form-row,
  .ride-search-form input,
  .ride-search-form select,
  .ride-search-form input[type="submit"] {
    width: 100% !important;
    font-size: 14px !important;}
  .ride-search-form .form-submit { padding-top: 0 !important; }    
.elementor-3740 .elementor-element.elementor-element-bee3ff9 {
	--e-con-grid-template-columns: repeat(2, 1fr);}
}
@media (max-width: 767px) {
	   .btn-row {
		gap:0px;
        flex-direction: column !important; 
        width: 100% !important;
    }
  .luxury-contact-form .form-row { flex-direction: column !important; }	
  .elementor-element[data-id="9c48ee5"] { flex-direction: row; gap: 15px; padding: 20px 15px; }
  .elementor-element[data-id="52fcd6e"] { max-width: 280px; }
  .elementor-element[data-id="31a8df3"] img { max-width: 140px; }
  .elementor-element[data-id="bb691ac"] img { max-width: 220px; }
  .app-car { display:none; }
	.elementor-heading-title {padding-top: 60px;padding-bottom: 40px;}
  .ride-search-form .form-row { flex: 1 1 25% !important; }
  .ride-search-form .form-row,
  .ride-search-form input,
  .ride-search-form select,
  .ride-search-form input[type="submit"] {width: 100% !important;font-size: 14px !important; }
  .about-us-card .e-n-tabs-heading { display: flex !important;justify-content: center !important;
   align-items: center !important;gap: 15px !important;flex-wrap: wrap !important;
   padding: 10px 0 !important;}
  .pricing-item {grid-template-columns: 4fr 1fr 1fr auto; padding: 12px;}
  .vehicle-img {width: 140px;height: auto;}
  .vehicle-info h3 {font-size: 18px;}
  .vehicle-info .meta,.features { font-size: 12px;}
  .price-col .label {font-size: 10px;}
  .price-col .price {font-size: 16px;}
  .book-btn {padding: 8px 16px;font-size: 12px;}
  .tag {font-size: 9px;background: #d4af37;color: #000;border-radius: 20px;margin-left:-6px; text-    transform: uppercase;font-weight: bold; }
    .float-images {
    width: 100%;
    max-width: 500px;
    height: 220px;
    margin: 10px auto 40px;
  }
  .img1 { width: 160px; top: -10px; left: 10px; }
  .img2 { width: 115px; height: 170px; top: 5%; left: 48%; transform: translateX(-50%); }
  .img3 { width: 178px; top: auto; bottom: 5px; left: 80%; transform: translateX(-50%); animation: none; }
}
  .facts-counters {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .counter-box {
    max-width: 95%;
    padding: 15px;
  }
  .counter-box .counter {
    font-size: 1.8rem;
  }
.airport-fleet-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 20px auto;
    }
    .airport-fleet-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .fleet-card-top {
        padding: 24px 16px 0;
    }
    .fleet-card-body {
        padding: 16px;
    }
    .fleet-fare-list li {
        font-size: 14px;
        padding: 10px 0;
    }
    .fleet-btn {
        font-size: 15px;
    }
.cf7-form-wrapper {
	    padding: 0 20px !important; 
  }

  .cf7-form-wrapper .cf7-form-container {
    padding: 30px 20px 0 !important;
	  margin: 0 auto !important; 
    width: 100% !important;
    max-width: 100% !important;
    box-shadow: none !important;
    border-radius: 8 !important;
  }

  .cf7-form-wrapper .cf7-custom-label {
    font-size: 14px !important;
  }

  .cf7-form-wrapper .cf7-custom-input,
  .cf7-form-wrapper .cf7-custom-select {
    font-size: 14px !important;
    padding: 10px 12px !important;
  }
  .cf7-form-wrapper input[type="submit"] {
	text-align:center;
    margin-top: 0px !important;
    font-size: 15px !important;
    padding: 20px !important;
  }
  .cf7-form-wrapper .cf7-custom-checkbox {
    font-size: 13px !important;
    flex-wrap: wrap !important;
    line-height: 1.3 !important;
  }
  .cf7-form-wrapper .cf7-custom-checkbox input[type="checkbox"] {
    width: 16px !important;
    height: 16px !important;
    margin-top: 2px !important;
  }
.luxury-features-box {
    width: 100%;
    text-align:left;
	}
  .luxury-scroll {
    max-height: 100px; 
    padding-right: 4px;
  }

  .luxury-features-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .check-icon {
    width: 14px;
    margin-right: 6px;
  }
  .book-btn1 {
    width: 100%; 
    font-size: 13px;
    padding: 12px 0;
  }
  .icon-user,
  .icon-suitcase {
    margin-top: 10px;
    margin-right: 4px;
  }
.about-head{padding-top:0px !important;}
}
@media only screen and (max-width: 650px) {
.ti-widget.ti-goog .ti-widget-container {
    margin-top: -10px;
    max-width: 100%;
	}
		.fleet-p-head{
	margin-top:-30px !important;	
	}
}
@media (max-width: 605px) {
  .ride-search-form { flex-wrap: wrap !important; }
  .ride-search-form .form-row { flex: 1 1 25% !important; }
  .ride-search-form input[type="submit"] { width: 100% !important; }  
	.footer-container { grid-template-columns: 1fr; gap: 15px; padding: 0 15px; text-align: center; }
    .footer-container { gap: 12px; padding: 0 10px; grid-template-columns: 1fr; }
  .footer-col h3, .heading { font-size: 1.1rem; }
  .footer-logo { width: 130px; }
  .app-buttons .appstore, .app-buttons .playstore { width: 120px; }
  .social-icons a img { height: 18px; margin-right: 10px; }
  .footer-logo { width: 150px; height: auto; margin: 0 auto 15px; }
  .app-buttons { flex-direction: column; gap: 12px; align-items: center; }
  .social-icons { margin-top: 15px; justify-content: center; }
  .contact-header { font-size: 24px; }
  .contact-info { font-size: 14px; }
  .contact-text { font-size: 13px; }
 .pricing-item {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr;
  justify-items:center;
  grid-template-rows: auto auto auto;
  grid-template-areas:
    "vehicle vehicle vehicle"
    "airport hourly ."
    "book book book";
  gap: 10px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
}
.vehicle-info { grid-area: vehicle; display: flex; flex-direction: row-reverse; gap: 0px; align-items: center; }
.price-col:nth-of-type(1) { grid-area: airport; text-align: left; }
.price-col:nth-of-type(2) { grid-area: hourly; text-align: right; }
.book-btn { grid-area: book; justify-self: center; }
.vehicle-img { width:50%; }
.price-col .label { font-size: 12px; color: #777; }
.price-col .price { font-size: 16px; font-weight: 600; color: #d4af37; }
.book-btn {
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 6px;
  background: #d4af37;
  color: #fff;
  text-decoration: none;
  }
}
@media only screen and (max-width: 500px) {
  .elementor-element.elementor-element-d01db73 .eael-filterable-gallery-item-wrap {
    width: 100% !important;
  }
}
@media (max-width: 575px) {
  .vehicle-info h3 {font-size: 14px;}
  .book-btn {font-size: 12px;padding: 7px 12px;}
  .ride-search-form { padding: 25px 15px 1px!important; gap: 10px !important; }
  .ride-search-form input,
  .ride-search-form select{ font-size: 13px !important; padding:5px 5px!important; }
  .ride-search-form input[type="submit"] { font-size: 13px !important; padding:15px !important; }
  .elementor-element[data-id="9c48ee5"] { padding: 15px 10px; }
  .elementor-element[data-id="52fcd6e"] { max-width: 240px; }
  .elementor-element[data-id="31a8df3"] img { max-width: 120px; }
  .elementor-element[data-id="bb691ac"] img { max-width: 200px; }
  .facts-counters {
    grid-template-columns: repeat(2, 1fr); /* stack */
    gap: 15px;
  }
  .counter-box {
    max-width: 100%;
    padding: 14px;
  }
    .footer-container { gap: 12px; padding: 0 10px; grid-template-columns: 1fr; }
  .footer-col h3, .heading { font-size: 1.1rem; }
  .footer-logo { width: 130px; }
  .app-buttons .appstore, .app-buttons .playstore { width: 120px; }
  .social-icons a img { height: 18px; margin-right: 10px; 
	}
}
@media (max-width: 480px) {
  .vehicle-img {max-width: 130px !important;}
  .price-col .price {font-size: 14px;}
  .book-btn {width: 100%;max-width: 180px;}
  .entry-content p{margin-bottom:0.6em !important}
  .footer-container { gap: 12px; padding: 0 10px; grid-template-columns: 1fr; }
  .footer-col h3, .heading { font-size: 1.1rem; }
  .footer-logo { width: 130px; }
  .app-buttons .appstore, .app-buttons .playstore { width: 120px; }
  .social-icons a img { height: 18px; margin-right: 10px; }
  .contact-header { font-size: 20px; }
  .contact-info { font-size: 12px; }
  .contact-text { font-size: 12px; }
  .ast-primary-header-bar::after { display: none; }
  .cta-headline { font-size: 18px; }
  .cta-subheadline { font-size: 8px; }
  .cta-btn1 { padding: 5px 15px; font-weight: 400; font-size: 14px; }
  .cta-btn1:hover { background-color: #c9a64d; border: 1px solid #c9a64d; color: #fff; }
  .Trust-bar { padding-top: 90px !important; }
  .elementor-image-box-content .elementor-image-box-title { white-space: wrap; }
  .elementor-element[data-id="52fcd6e"] { max-width: 200px; }
  .elementor-element[data-id="31a8df3"] img { max-width: 110px; }
  .ride-search-form { flex-wrap: wrap !important; }
  .ride-search-form .form-row { flex: 1 1 35% !important; }
  .ride-search-form input[type="submit"] { width: 100% !important; margin-top: 0px !important; } 
  .tag {font-size: 10px}
.book-btn {
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 6px;
  background: #d4af37;
  color: #fff;
  text-decoration: none;
  }
  .float-images {
    width: 100%;
    max-width: 400px;
    height: 220px;
    margin: 10px auto -10px;
    position: relative;
  }
  .img1 {
    width: 110px;
    left: 8px;
    top: -11px;
    position: absolute;
  }

  .img2 {
    width: 95px;
    height: 140px;
    top: 10%;
    left: 48%;
    transform: translateX(-50%);
    position: absolute;
  }
  .img3 {
    width: 125px;
    height: 155px;
    top: -10px;
    bottom: auto;
    left: 81%;
    transform: translateX(-50%);
    animation: none;
    position: absolute;
  }
 .cf7-form-wrapper {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 15px !important; 
    width: 100% !important;
  }
  .cf7-form-wrapper .cf7-form-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
	padding: 20px 15px 0px 15px !important;    
	box-shadow: none !important;
    border-radius: 6px !important;
    background: #fff !important;
  }
  .cf7-form-wrapper .cf7-row {
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 0 5px !important;
  }
  .cf7-form-wrapper .cf7-column {
    width: 100% !important;
    padding: 0 !important;
    margin-bottom: 5px !important;
  }
  .cf7-form-wrapper .cf7-custom-label {
    display: block !important;
    text-align: left !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #333 !important;
    margin-bottom: 5px !important;
  }
  .cf7-form-wrapper .cf7-custom-input,
  .cf7-form-wrapper .cf7-custom-select {
width:100% !important;
	  padding: 12px !important;
    font-size: 15px !important;
    border: 1.8px solid #ccc !important;
    border-radius: 5px !important;
    color: #333 !important;
    background: #fff !important;
    margin: 0 auto 10px !important;
    display:block !important;
  }
  .cf7-form-wrapper .cf7-custom-checkbox {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    text-align: left !important;
    font-size: 12.5px !important;
    color: #333 !important;
    line-height: 1.4 !important;
    margin-top: 10px !important;
  }
  .cf7-form-wrapper .cf7-custom-checkbox input[type="checkbox"] {
    width: 16px !important;
    height: 16px !important;
    margin-right: 8px !important;
    margin-top: 2px !important;
  }
  .cf7-form-wrapper input[type="submit"] {
    display: block !important;
    text-align: center !important;
    background: #ac9455 !important;
    color: #fff !important;
    font-weight: 800 !important;
    font-size: 15px !important;
    padding: 14px !important;
    border-radius: 5px !important;
    margin: 0 auto 0 !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
  }

  .cf7-form-wrapper input[type="submit"]:hover {
    background: #b8962e !important;
    color: #fff !important;
  }
  .counter-box .counter {
    font-size: 1.6rem;
  }
.elementor-4392 .elementor-element.elementor-element-c990504 {
    --e-con-grid-template-columns: repeat(1, 1fr);
    --e-con-grid-template-rows: repeat(1, 1fr);
  }
	.elementor-4721 .elementor-element.elementor-element-48a9986 {
    --e-con-grid-template-columns: repeat(1, 1fr);
  }
	.elementor-3740 .elementor-element.elementor-element-37c9784 img {
    width: 100%;
    max-width: 32% !important;
	}
	.facts-header{
    margin-top: 65px!important;
	}
.elementor-3591 .elementor-element.elementor-element-2cb058c,
.elementor-3591 .elementor-element.elementor-element-be937c3,
.elementor-4493 .elementor-element.elementor-element-2fe73ba,
.elementor-4392 .elementor-element.elementor-element-6341feb,
.elementor-4127 .elementor-element.elementor-element-cacdd8f,
.elementor-4127 .elementor-element.elementor-element-b41f35a,
.elementor-4186 .elementor-element.elementor-element-d340271,
.elementor-4186 .elementor-element.elementor-element-48cd826,
.elementor-4681 .elementor-element.elementor-element-cacb53a,
.elementor-4721 .elementor-element.elementor-element-e197285,
.elementor-4801 .elementor-element.elementor-element-555670a,
.elementor-4645 .elementor-element.elementor-element-f8e32b5 {
  --e-con-grid-template-columns: repeat(1, 1fr);
  --e-con-grid-template-rows: repeat(1, 1fr);
	}
}
@media (max-width: 360px) {
	.facts-header{
    margin-top: 70px!important;
	}
	 .img1 {
    width: 100px !important;
    height: 125px !important;
    top: 0 !important;
    left: 3% !important;
  }
  .img2 {
    width: 105px !important;
    height: 155px !important;
    top: 10% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  .img3 {
    width: 100px !important;
    height: 125px !important;
    top: 0 !important;
    left: 82% !important;
    transform: translateX(-50%) !important;
    animation: none !important;
  }
	  .tag {font-size: 8px}
}
