/*!
Theme Name: dad-fu-sa
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: dad-fu-sa
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

dad-fu-sa is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
/* ==================== 1. Base Reset & Layout ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0c0c0c;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden; /* Avoid horizontal scrolls */
}

/* Global Responsive Image Handling Rule */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header Main Style */
/* Normal Header State */
.site-header {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  width: 100%;
  padding: 0px 40px;
  border-bottom: 1px solid #1e293b;
  position: relative;
  z-index: 999;
  transition: all 0.3s ease; /* Smooth transition effects ke liye */
}

/* Sticky State (Jab user scroll karega) */
.site-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); /* Scroll hone par shadow */
  animation: slideDown 0.35s ease-out; /* Smooth slide-in effect */
}

/* Header thoda smooth niche sliding effect ke sath aaye */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ==================== 2. Logo Branding ==================== */
.logo-area {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-box-1 {
   
    padding: 8px 12px;
    border-radius: 4px;
    display: flex;
    align-items: center;
}
.logo-box-1 img{
	width:130px;
}

.logo-text-yellow {
    color: #F8AC06;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
}

.logo-box-2 {
    border: 1px solid #F8AC06;
    padding: 8px 24px;
    display: flex;
    align-items: center;
}

.logo-text-white {
    color: #FFFFFF;
    font-weight: 400;
    font-size: 16px;
}

/* ==================== 3. Navigation Links ==================== */
.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 16px;
    font-weight: 400;
    line-height: 25.92px;
    color: #FFFFFF;
    text-decoration: none;
    vertical-align: middle;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: #E6C638;
}

/* Dropdown Setup */
.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.arrow {
    font-size: 10px;
    vertical-align: middle;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #111111;
    list-style: none;
    padding: 10px 0;
    min-width: 160px;
    border: 1px solid #222222;
    z-index: 100;
}

.dropdown-menu li a {
    color: #ffffff;
    padding: 8px 16px;
    display: block;
    text-decoration: none;
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background-color: #F8AC06;
    color: #000000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* ==================== 4. CTA Button (Gradient) ==================== */
.btn-book {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg, #F8AC06 0%, #E6C638 100%);
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 0px;
    transition: transform 0.2s ease, opacity 0.3s ease;
}

.btn-book:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-arrow {
    font-size: 16px;
    font-weight: bold;
}

/* Mobile Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
}

/* ==================== 5. Hero Section Styles ==================== */
.hero-section {
    position: relative;
    min-height: calc(100vh - 82px);
    background-image: linear-gradient(to right, rgb(0 0 0 / 25%) 30%, rgba(0, 0, 0, 0.3) 100%), url("/wp-content/uploads/2026/07/baner-hero.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 80px 40px;
}

.hero-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

/* Left Side Content */
.hero-left {
    max-width: 650px;
}

.hero-subtext {
    color: #e0e0e0;
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
    margin-bottom: 24px;
    padding-left: 15px;
    border-left: 2px solid #F8AC06;
}

.hero-title {
    color: #FFFFFF;
    font-size: 70px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero-title span {
    color: #F8AC06;
    font-weight: 500;
}

/* Right Side Links */
.hero-right {
    min-width: 270px;
    margin-bottom: 20px;
}

.hero-link-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #FFFFFF;
    transition: border-color 0.3s ease;
}

.hero-link-item:hover {
    border-bottom-color: #E6C638;
}

.hero-link-text {
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.hero-link-item:hover .hero-link-text {
    color: #E6C638;
}

.hero-link-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.hero-link-item:hover .hero-link-icon {
    transform: translate(3px, -3px);
    color: #E6C638;
}

/* ==================== 3rd Section (Mission & Stats) Styles ==================== */
.mission-section {
    background-color: #000;
    padding: 100px 40px;
    width: 100%;
}

.mission-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

/* --- Left Side: Stats Grid --- */
.stats-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
/*     border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 1px solid rgba(255, 255, 255, 0.08); */
}

.stat-card {
    padding: 100px 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


.stat-title {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 25px;
}

.stat-value {
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;
    font-size: 70px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 20px;
}

.accent-text {
    color: #F8AC06;
}

.rating-value {
    display: flex;
    align-items: center;
    gap: 10px;
}

.star {
    color: #F8AC06;
    font-size: 36px;
}

.stat-desc {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
}

/* --- Right Side: Content Area --- */
.mission-content-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.mission-text-wrapper {
    max-width: 580px;
}

.mission-tag {
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 400;
    display: block;
    margin-bottom: 30px;
    padding-left: 12px;
    border-left: 2px solid #F8AC06;
}

.mission-heading {
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;
    font-size: 46px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.mission-para {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 20px;
    font-weight: 400;
}

.btn-reserve {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg, #F8AC06 0%, #E6C638 100%);
    color: #000000;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 32px;
    margin-top: 15px;
    transition: transform 0.2s ease, opacity 0.3s ease;
}

.btn-reserve:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Vehicle Image Fix */
.mission-image-wrapper {
    width: 100%;
    max-height: 400px; /* Rigid constraint prevents blowouts */
    overflow: hidden;
    border-radius: 4px;
}

.mission-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Centers & scales responsibly */
}

/* ==================== 4th Section (Why Choose Us) Styles ==================== */
.features-section {
    background-color: #000000;
    padding: 0px 40px 70px 40px;
    width: 100%;
}

.features-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.features-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.top-left-content {
    flex: 1.2;
    max-width: 580px;
}

.top-right-content {
    flex: 1;
    max-width: 520px;
    padding-top: 50px;
}

.features-tag {
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 400;
    display: block;
    margin-bottom: 25px;
    padding-left: 12px;
    border-left: 2px solid #F8AC06;
}

.features-heading {
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;
    font-size: 44px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.features-subpara {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 18px;
    line-height: 30px;
}

.features-desc-text {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 30px;
}

.badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.badge {
    font-family: 'Poppins', sans-serif;
    background-color:#FF4D241A;;
    border: 1px solid rgba(248, 172, 6, 0.15);
    color: #F8AC06;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.badge-icon {
    font-size: 10px;
}

.features-bottom-row {
    display: flex;
    gap: 60px;
    align-items: center; /* Aligns better with features text */
}

/* Feature Row Left Image Fix */
.feature-image-block {
    flex: 1;
    overflow: hidden;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-list-block {
    flex: 1.2;
    display: flex;
    flex-direction: column;
}

.feature-item {
    display: flex;
    gap: 25px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: flex-start;
    position: relative;
    transition: border-color 0.3s ease;
    margin-bottom: 10px;
}

.feature-item:first-child {
    padding-top: 0;
}

.feature-item:hover {
    border-bottom-color: rgba(248, 172, 6, 0.4);
}

.feature-icon-box {
    margin-top: 4px;
    min-width: 40px;
}

.feature-content {
    flex: 1;
}

.feature-item-title {
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
}

.feature-item-desc {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 16px;
    line-height: 30px;
}

.arrow-circle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
	
    border: 1px solid #FFFFFF80;
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 25px;
    transition: all 0.3s ease;
}

.feature-item:hover .arrow-circle {
    background-color: #F8AC06;
    border-color: #F8AC06;
    color: #000000;
    transform: translate(2px, -2px);
}

/* ==================== 5th Section (Fleet Experience) Styles ==================== */
.fleet-experience-section {
    background-color: #f4f4f4;
    padding: 100px 40px;
    width: 100%;
}

.fleet-container {
    max-width: 1440px;
    margin: 0 auto;
}

.fleet-header {
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 25px;
    margin-bottom: 60px;
}

.fleet-main-heading {
    font-family: 'Poppins', sans-serif;
    color: #000000;
    font-size: 80px;
    font-weight: 400;
    letter-spacing: -0.5px;
}

/* Gallery Grid Image Safety Fixes */
.fleet-gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 40px;
    align-items: start;
}

.fleet-card {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.grid-col-wide { grid-column: span 7; }
.grid-row-tall { grid-column: span 5; }
.grid-col-normal { grid-column: span 4; }
.fleet-gallery-grid .grid-col-wide:last-child { grid-column: span 8; }

.align-self-bottom {
    margin-top: 50px;
}

.fleet-image-box {
    width: 100%;
    height: 100%; /* Restricts row boxes from stretching on image height mismatches */
    overflow: hidden;
    background-color: #e6e6e6;
    border-radius: 4px;
}

/* Force specific height constraint for portrait card to maintain grid layout consistency */
.grid-row-tall .fleet-image-box {
    height: 520px;
}

.fleet-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Absolutely maintains the ratio without breaking wrappers */
}

.fleet-card-tag {
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a;
    font-size:30px;
    font-weight: 500;
}

.top-tag { margin-bottom: 15px; }
.bottom-tag { margin-top: 20px; }
.fleet-cta-wrapper { margin-top: 80px; }

.btn-reserve-fleet {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg, #F8AC06 0%, #E6C638 100%);
    color: #000000;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 24px;
    transition: transform 0.2s ease, opacity 0.3s ease;
}

.btn-reserve-fleet:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* ==================== 6th Section: Fleet Services & Testimonials ==================== */
.fleet-services-section {
    background-color: #000;
    padding: 100px 40px 60px 40px;
    width: 100%;
}

.services-upper-container {
    max-width: 1440px;
    margin: 0 auto 100px auto;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.service-intro-col {
    flex: 1.2;
    display: flex;
    flex-direction: column;
}

.service-links-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-left: 50px;
}

.divider-left {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.service-tag {
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 400;
    display: block;
    margin-bottom: 25px;
    padding-left: 12px;
    border-left: 2px solid #F8AC06;
}

.service-main-heading {
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.service-intro-para {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 20px;
}

/* Intro Quote Area Fix */
.image-quote-block {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-top: 30px;
}

.intro-block-img {
    width: 240px;
    height: 150px; /* Constrains aspect size from bleeding downwards */
    object-fit: cover;
    border-radius: 4px;
}

/* .side-quote-wrapper {
    flex: 1;
} */

/* .inline-quote-icon {
    font-family: 'Poppins', sans-serif;
    color: #F8AC06;
    font-size: 64px;
    line-height: 1;
    display: block;
    height: 40px;
    margin-bottom: 10px;
} */

.side-quote-text {
    font-family: 'Poppins', sans-serif;
    color: #aeaeae;
    font-size: 13px;
    line-height: 18px;
}

.service-card-item {
    padding-bottom: 50px;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-number {
    font-family: 'Poppins', sans-serif;
    color: #F8AC06;
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-bottom: 25px;
}

.service-item-title {
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 18px;
}

.service-item-desc {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 14px;
    line-height: 25px;
}
.set-margin{
	margin-top:150px;
}

/* --- Testimonials Slider --- */
.testimonials-slider-container {
    max-width: 1440px;
    margin: 0 auto;
    background-color: #000;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* .bg-quote-mark {
    position: absolute;
    top: -20px;
    left: 40px;
    font-family: 'Poppins', sans-serif;
    color: rgba(248, 172, 6, 0.12);
    font-size: 180px;
    line-height: 1;
    pointer-events: none;
}
 */
.testimonial-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1100px;
}
.bg-quote-mark{
	display: flex;
	column-gap:50px;
	margin-bottom:50px;
}

.testimonial-pill {
    font-family: 'Poppins', sans-serif;
   display: flex;
	  color: #F8AC06;
	  background-color: #FF4D241A;
	  font-size: 14px;
	  font-weight: 400;
	  letter-spacing: 0.5px;
	  padding: 10px 16px;
	  border-radius: 50px;
	  text-transform: uppercase;
	  margin-bottom: 40px;
	  margin: 20px;
}

.testimonial-main-quote {
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.35;
    margin-bottom: 50px;
    transition: opacity 0.25s ease-in-out;
}

.testimonial-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: opacity 0.25s ease-in-out;
}

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

.author-name {
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
}

.author-role {
    font-family: 'Poppins', sans-serif;
    color: #7c7c7c;
    font-size: 13px;
}

.slider-arrows {
    display: flex;
    gap: 25px;
}

.nav-arrow-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.nav-arrow-btn:hover {
    color: #FFFFFF;
}

/* ==================== 7th Section: Coverage Areas Styles ==================== */
.coverage-section {
    background-color: #000;
    padding: 100px 40px;
    width: 100%;
	padding-top:0px;
}

.coverage-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.coverage-main-title {
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;
    font-size: 72px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: -0.5px;
}

.counties-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

.county-card {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 30px;
    display: flex;
    flex-direction: column;
}

.county-name {
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cities-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cities-list li {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.4;
}

.cities-list li.desc-li {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
}

.check-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 3px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F8AC06' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}

/* ==================== 8th Section: Ready to Ride CTA Banner ==================== */
.cta-banner-section {
    position: relative;
    width: 100%;
    min-height: 550px;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-image: url("/wp-content/uploads/2026/07/readyride.webp");
	background-size: cover;
}

/* Frosted Glass Overlay Asset Control Fixes */
.cta-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-backdrop-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: flex-end;
}

.glass-cta-box {
    position: relative;
    width: 100%;
    max-width: 490px;
    background: rgba(22, 22, 22, 0.45);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.corner-bracket {
    position: absolute;
    width: 8px;
    height: 8px;
    border-color: #F8AC06;
    border-style: solid;
    pointer-events: none;
}
.top-left { top: -2px; left: -2px; border-width: 2px 0 0 2px; }
.top-right { top: -2px; right: -2px; border-width: 2px 2px 0 0; }
.bottom-left { bottom: -2px; left: -2px; border-width: 0 0 2px 2px; }
.bottom-right { bottom: -2px; right: -2px; border-width: 0 2px 2px 0; }

.cta-mini-tag {
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 400;
    display: block;
    margin-bottom: 10px;
    padding-left: 10px;
    border-left: 2px solid #F8AC06;
}

.cta-heading {
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;
    font-size: 35px;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.cta-description {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 15px;
}

.cta-lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.input-field-group {
    position: relative;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-input-control {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    padding: 12px 0;
}

.floating-label {
    position: absolute;
    left: 0;
    top: 12px;
    font-family: 'Poppins', sans-serif;
    color: #aaaaaa;
    font-size: 13px;
    pointer-events: none;
    transition: all 0.25s ease;
}

.cta-input-control:focus ~ .floating-label,
.cta-input-control:not(:placeholder-shown) ~ .floating-label {
    top: -12px;
    font-size: 11px;
    color: #F8AC06;
}

.btn-submit-cta {
    width: 100%;
    background: linear-gradient(90deg, #F8AC06 0%, #E6C638 100%);
    border: none;
    outline: none;
    color: #000000;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 15px 0;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn-submit-cta:hover { opacity: 0.92; }

/* ==================== 9th Section: Premium Footer & App Banner ==================== */
.main-footer-section {
    background-color: #0c0c0c;
    padding: 60px 40px 20px 40px;
    width: 100%;
    border-bottom: 4px solid #F8AC06;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.app-download-banner {
    width: 100%;
    border: 1px solid rgba(248, 172, 6, 0.65) !important;
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    margin-bottom: 100px;
	border-image-source: linear-gradient(90deg, rgba(248, 172, 6, 0.3) 0%, rgba(230, 198, 56, 0.3) 100%);
  background: radial-gradient(58.58% 191.9% at 50% 0%, rgba(250, 183, 0, 0.25) 0%, rgba(250, 183, 0, 0) 60%);

}

.app-banner-title {
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;
    font-size: 60px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin-bottom: 45px;
}

.gold-text {
    color: #F8AC06;
    font-style: italic;
}

.app-stores-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 30px;
}

.store-link-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-size: 37px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.store-link-btn:hover { color: #F8AC06; }
.store-svg { width: 40px; height: 40px; }
.store-divider { color: rgba(255, 255, 255, 0.2); font-size: 24px; font-weight: 300; }

.footer-directory-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 30px;
}

.brand-summary-col { display: flex; flex-direction: column; }

.footer-logo-box {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    max-width: max-content;
    margin-bottom: 30px;
}

.brand-desc-text {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 13px;
    line-height: 24px;
    margin-bottom: 25px;
    max-width: 320px;
}

.serving-accent-text {
    font-family: 'Poppins', sans-serif;
    color: #F8AC06;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
}

.btn-footer-trip {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg, #F8AC06 0%, #E6C638 100%);
    color: #000000;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 24px;
    transition: opacity 0.3s ease;
}

.btn-footer-trip:hover { opacity: 0.9; }
.dir-heading { font-family: 'Poppins', sans-serif; color: #FFFFFF; font-size: 20px; font-weight: 500; margin-bottom: 30px; }
.margin-top-stamp { margin-top: 35px; }

.dir-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dir-links-list a {
    font-family: 'Poppins', sans-serif;
    color: #FFFFFFB2;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dir-links-list a:hover { color: #FFFFFF; }
.info-static-text { font-family: 'Poppins', sans-serif; color: #FFFFFFB2; font-size: 16px; line-height: 30px; margin: 0; }
.info-static-text a{
	color: #FFFFFFB2; font-size: 16px;
}
.font-dim { color: #FFFFFFB2; }
.footer-mail-link { color: #888888; text-decoration: none; }

.footer-base-bar { display: flex; justify-content: space-between; align-items: center; padding-bottom: 10px; }
.copyright-txt { font-family: 'Poppins', sans-serif; color: #666666; font-size: 13px; }
.social-links-row { display: flex; gap: 25px; }
.social-links-row a { color: #FFFFFF; font-size: 14px; text-decoration: none; transition: color 0.3s ease; }
.social-links-row a:hover { color: #F8AC06; }

  /* Hero Header Section */
        .terms-header {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); /* Dark Elegant Slate */
            color: #ffffff;
            padding: 80px 0 60px 0;
            border-bottom: 4px solid #C8A020; /* Direct Main Gold Accent Color */
            text-align: center;
        }

        .terms-header h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 15px;
            letter-spacing: 1.5px;
        }

        .terms-header p {
            font-size: 1.1rem;
			text-align: center;
            font-weight: 300;
            opacity: 0.85;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Content Container */
        .terms-container {
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            padding: 50px;
            margin-top: -40px;
            margin-bottom: 80px;
        }

        .meta-info {
            border-bottom: 1px solid #e2e8f0;
            padding-bottom: 25px;
            margin-bottom: 40px;
        }

        .effective-date {
            font-weight: 600;
            color: #C8A020; /* Direct Main Gold Accent Color */
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1.5px;
        }

        .terms-intro {
            font-size: 1.05rem;
            color: #475569;
            font-weight: 400;
        }

        /* Terms Sections styling */
        .section-title {
            color: #0f172a; /* Dark Elegant Slate */
            font-weight: 600;
            font-size: 1.4rem;
            margin-top: 45px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            border-bottom: 2px solid #f1f5f9;
            padding-bottom: 10px;
        }

        .section-title span {
            color: #C8A020; /* Direct Main Gold Accent Color */
            margin-right: 12px;
            font-size: 1.6rem;
            font-weight: 700;
        }

        /* Special Highlights */
        .highlight-box {
            background-color: #fffbeb;
            border-left: 4px solid #C8A020; /* Direct Main Gold Accent Color */
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }

        /* Contact Details Section */
        .contact-box {
            background-color: #f1f5f9;
            border-radius: 8px;
            padding: 30px;
            margin-top: 50px;
            border: 1px solid #e2e8f0;
        }

        .contact-box h3 {
            color: #0f172a; /* Dark Elegant Slate */
            font-weight: 600;
            margin-bottom: 20px;
        }

        .contact-details p {
            margin-bottom: 8px;
            font-size: 0.9rem;
        }

        .contact-details strong {
            color: #0f172a; /* Dark Elegant Slate */
            font-weight: 600;
        }

        /* Back to top button style */
        .btn-scroll-top {
            background-color: #0f172a; /* Dark Elegant Slate */
            color: #ffffff;
            border: none;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .btn-scroll-top:hover {
            background-color: #C8A020; /* Direct Main Gold Accent Color */
            color: #ffffff;
        }
.main-terms{
	max-width:1200px;
	margin: auto;
}

        /* Hero Header Section - Unique Class */
        .pp-header {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); /* Dark Elegant Slate */
            color: #ffffff;
            padding: 80px 0 60px 0;
            border-bottom: 4px solid #C8A020; /* Direct Main Gold Accent Color */
            text-align: center;
        }

        .pp-header h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 15px;
            letter-spacing: 1.5px;
        }

        .pp-header p {
            font-size: 1.1rem;
            font-weight: 300;
			text-align: center;
            opacity: 0.85;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Content Container - Unique Class */
        .pp-container {
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            padding: 50px;
            margin-top: -40px;
            margin-bottom: 80px;
        }

        .pp-meta-info {
            border-bottom: 1px solid #e2e8f0;
            padding-bottom: 25px;
            margin-bottom: 40px;
        }

        .pp-effective-date {
            font-weight: 600;
            color: #C8A020; /* Direct Main Gold Accent Color */
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1.5px;
        }

        .pp-intro {
            font-size: 1.05rem;
            color: #475569;
            font-weight: 400;
        }

        /* Privacy Sections styling - Unique Class */
        .pp-section-title {
            color: #0f172a; /* Dark Elegant Slate */
            font-weight: 600;
            font-size: 1.4rem;
            margin-top: 45px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            border-bottom: 2px solid #f1f5f9;
            padding-bottom: 10px;
        }

        .pp-section-title span {
            color: #C8A020; /* Direct Main Gold Accent Color */
            margin-right: 12px;
            font-size: 1.6rem;
            font-weight: 700;
        }

        .pp-page-wrapper p, 
        .pp-page-wrapper ul {
            margin-bottom: 20px;
            font-size: 0.95rem;
            text-align: justify;
            font-weight: 400;
        }

        /* Custom Responsive Table Styling - Unique Class */
        .pp-table-responsive {
            margin: 30px 0;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid #e2e8f0;
        }

        .pp-table {
            width: 100%;
            margin-bottom: 0;
            vertical-align: top;
            border-color: #e2e8f0;
        }

        .pp-table th {
            background-color: #0f172a;
            color: #ffffff;
            font-weight: 600;
            padding: 15px 20px;
            font-size: 1rem;
        }

        .pp-table td {
            padding: 15px 20px;
            font-size: 0.9rem;
            background-color: #ffffff;
        }

        .pp-table tr:nth-child(even) td {
            background-color: #f8fafc;
        }

        /* Special Highlights Box - Unique Class */
        .pp-highlight-box {
            background-color: #fffbeb;
            border-left: 4px solid #C8A020; /* Direct Main Gold Accent Color */
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }

        /* Contact Details Section - Unique Class */
        .pp-contact-box {
            background-color: #f1f5f9;
            border-radius: 8px;
            padding: 30px;
            margin-top: 50px;
            border: 1px solid #e2e8f0;
        }

        .pp-contact-box h3 {
            color: #0f172a; /* Dark Elegant Slate */
            font-weight: 600;
            margin-bottom: 20px;
        }

        .pp-contact-details p {
            margin-bottom: 8px;
            font-size: 0.9rem;
        }

        .pp-contact-details strong {
            color: #0f172a; /* Dark Elegant Slate */
            font-weight: 600;
        }

        /* Back to top button style - Unique Class */
        .pp-btn-scroll-top {
            background-color: #0f172a; /* Dark Elegant Slate */
            color: #ffffff;
            border: none;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .pp-btn-scroll-top:hover {
            background-color: #C8A020; /* Direct Main Gold Accent Color */
            color: #ffffff;
        }
.wrap{width:100%;max-width:800px;margin: auto;
padding-top:50px}

  .badge-row{
    display:flex;align-items:center;justify-content:center;gap:10px;
    margin-bottom:28px;
  }
  .badge-row .dash{width:28px;height:1px;background: #8f7420;}
  .eyebrow{
    font-family:'IBM Plex Mono',monospace;
    font-size:25px;letter-spacing:.1em;text-transform:uppercase;
    color: #c9a227;
  }

  .sheet{
    background: #15171a;
    border:1px solid #2a2d32;
    border-radius:2px;
    position:relative;
    padding:44px 40px 40px;
    overflow:hidden;
  }
  .sheet::before{
    content:"";
    position:absolute; top:0; left:0; right:0; height:4px;
    background:repeating-linear-gradient(90deg, #2a2d32 0 8px, transparent 8px 16px);
  }
  .sheet-header{
    display:flex;justify-content:space-between;align-items:flex-start;
    border-bottom:1px solid #2a2d32;
    padding-bottom:22px;margin-bottom:28px;
  }
  .brand-mark{
    font-family:'Oswald',sans-serif;
    font-size:14px;letter-spacing:.14em;text-transform:uppercase;
    color: #9a9da3;
  }
  .record-id{
    font-family:'IBM Plex Mono',monospace;
    font-size:11px;color: #9a9da3;text-align:right;line-height:1.6;
  }
  .record-id span{color: #c9a227;}

/* Inhe nest kar diya hai taake WordPress theme ya builder ke sath conflict na ho */
  .sheet h1 {
    font-family:'Oswald',sans-serif;
    font-weight:600;
    font-size:24px;
    line-height:1.15;
	  color:#fff;
    margin:0 0 12px;
    letter-spacing:.01em;
  }
  .sheet .lede {
    color: #9a9da3;
    font-size:14.5px;
    line-height:1.65;
    margin:0 0 34px;
   
  }

  .field-block{margin-bottom:30px;}
  .q-label{
    display:flex;gap:10px;align-items:baseline;
    font-family:'IBM Plex Mono',monospace;
    font-size:11px;letter-spacing:.12em;text-transform:uppercase;
    color: #c9a227;
    margin-bottom:14px;
  }
  .q-num{color: #9a9da3;}
  .q-text{
    display:block;
    font-family:'Inter',sans-serif;
    font-size:15.5px;font-weight:500;letter-spacing:0;
    color: #f1efe9;
    text-transform:none;
    margin-top:2px;
  }

  .options{display:flex;flex-direction:column;gap:8px;}
  .opt{
    position:relative;
  }
  .opt input{position:absolute;opacity:0;inset:0;cursor:pointer;margin:0;}
  .opt label{
    display:flex;align-items:center;gap:12px;
    border:1px solid #2a2d32;
    background: #1b1e22;
    border-radius:2px;
    padding:12px 14px;
    font-size:14px;
    color: #9a9da3;
    cursor:pointer;
    transition:border-color .15s ease, color .15s ease, background .15s ease;
  }
  .opt label::before{
    content:"";
    width:14px;height:14px;flex:0 0 auto;
    border:1px solid #9a9da3;
    border-radius:50%;
    transition:border-color .15s ease, box-shadow .15s ease;
  }
  .opt input:checked + label{
    border-color: #8f7420;
    color: #f1efe9;
    background:#1d1a10;
  }
  .opt input:checked + label::before{
    border-color: #c9a227;
    box-shadow:inset 0 0 0 3px #c9a227;
  }
  .opt input:focus-visible + label{
    outline:2px solid #c9a227;
    outline-offset:2px;
  }

  .scale-row{display:flex;gap:8px;}
  .scale-opt{flex:1;}
  .scale-opt input{position:absolute;opacity:0;}
  .scale-opt label{
    display:flex;flex-direction:column;align-items:center;gap:6px;
    border:1px solid #2a2d32;
    background: #1b1e22;
    border-radius:2px;
    padding:12px 4px 10px;
    cursor:pointer;
    font-family:'IBM Plex Mono',monospace;
    font-size:13px;
    color: #9a9da3;
    transition:border-color .15s ease, color .15s ease, background .15s ease;
  }
  .scale-opt input:checked + label{
    border-color: #8f7420;
    color: #c9a227;
    background:#1d1a10;
  }
  .scale-opt input:focus-visible + label{outline:2px solid #c9a227;outline-offset:2px;}
  .scale-caption{
    display:flex;justify-content:space-between;
    font-size:10.5px;color: #9a9da3;opacity:.7;margin-top:6px;
    font-family:'IBM Plex Mono',monospace;
  }

  .email-input{
    width:100%;
    background: #1b1e22;
    border:1px solid #2a2d32;
    border-radius:2px;
    color: #f1efe9;
    font-family:'Inter',sans-serif;
    font-size:15px;
    padding:13px 14px;
    outline:none;
    transition:border-color .15s ease;
  }
  .email-input::placeholder{color:#5c5f66;}
  .email-input:focus{border-color: #c9a227;}
  .email-hint{font-size:12px;color: #9a9da3;margin-top:8px;}

  .divider{height:1px;background: #2a2d32;margin:34px 0 28px;}

  .actions{display:flex;flex-direction:column;gap:12px;}
  .btn-delete{
    width:100%;
    background: #8b2e2e;
    color:#f5e9e9;
    border:1px solid #b23c3c;
    border-radius:2px;
    padding:15px 18px;
    font-family:'Oswald',sans-serif;
    font-size:14px;letter-spacing:.08em;text-transform:uppercase;
    font-weight:600;
    cursor:pointer;
    transition:background .15s ease, opacity .15s ease;
  }
  .btn-delete:hover:not(:disabled){background: #b23c3c;}
  .btn-delete:disabled{opacity:.35;cursor:not-allowed;}
  .btn-cancel{
    width:100%;
    background:transparent;
    color: #9a9da3;
    border:1px solid #2a2d32;
    border-radius:2px;
    padding:13px 18px;
    font-family:'Inter',sans-serif;
    font-size:13.5px;
    cursor:pointer;
    transition:color .15s ease, border-color .15s ease;
  }
  .btn-cancel:hover{color: #f1efe9;border-color:#454850;}

  .fineprint{
    font-family:'IBM Plex Mono',monospace;
    font-size:10.5px;color: #9a9da3;opacity:.65;
    text-align:center;margin-top:22px;line-height:1.6;
  }

  /* Success state */
  .success{display:none;text-align:center;}
  .success.show{display:block;}
  .stamp{
    width:120px;height:120px;
    border:3px solid #c9a227;
    border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    margin:6px auto 26px;
    transform:rotate(-8deg);
    position:relative;
    animation:stampIn .45s cubic-bezier(.2,1.4,.4,1) both;
  }
  .stamp::before{
    content:"";
    position:absolute;inset:8px;
    border:1px solid #c9a227;
    border-radius:50%;
  }
  .stamp-text{
    font-family:'Oswald',sans-serif;
    font-size:12px;font-weight:600;letter-spacing:.1em;
    color: #c9a227;text-transform:uppercase;line-height:1.4;
  }
  @keyframes stampIn{
    0%{opacity:0;transform:rotate(-8deg) scale(1.6);}
    100%{opacity:1;transform:rotate(-8deg) scale(1);}
  }
  .success h2{
    font-family:'Oswald',sans-serif;font-size:24px;font-weight:600;
    margin:0 0 12px;
  }
  .success p{
    color: #9a9da3;font-size:14.5px;line-height:1.7;
    max-width:40ch;margin:0 auto 6px;
  }
  .success .email-echo{
    color: #c9a227;font-family:'IBM Plex Mono',monospace;font-size:13px;
  }
  .success .btn-cancel{margin-top:30px;max-width:260px;margin-left:auto;margin-right:auto;}

  .form-live{display:block;}
  .form-live.hide{display:none;}

 
/* ==================== MEDIA QUERIES (RESPONSIVE) ==================== */
@media (max-width: 1200px) {
    .app-banner-title { font-size: 34px; }
    .footer-directory-grid { grid-template-columns: repeat(2, 1fr); gap: 50px; }
    .features-top-row { gap: 40px; }
    .features-heading { font-size: 38px; }
    .features-bottom-row { gap: 40px; }
    .services-upper-container { gap: 30px; }
    .service-links-col { padding-left: 30px; }
    .service-main-heading { font-size: 34px; }
    .testimonial-main-quote { font-size: 28px; }
    .coverage-main-title { font-size: 42px; margin-bottom: 60px; }
    .counties-grid { gap: 20px; }
    .mission-container { gap: 40px; }
    .mission-heading { font-size: 38px; }
    .stat-card { padding: 40px 25px; }
    .stat-value { font-size: 52px; }
    .fleet-main-heading { font-size: 38px; }
    .fleet-gallery-grid { gap: 30px; }
}

@media (max-width: 1024px) {
    .header-container { position: relative; }
    .menu-toggle { display: flex; }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #000000;
        padding: 20px;
        display: none;
        flex-direction: column;
        border-top: 1px solid #1a1a1a;
        z-index: 99;
    }
    .nav-menu.open { display: flex; }
    .nav-list { flex-direction: column; align-items: flex-start; gap: 20px; width: 100%; }
    .dropdown-menu { position: static; background-color: #080808; width: 100%; border: none; padding-left: 15px; }
    .header-cta { display: none; }

    .menu-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    .hero-section { padding: 60px 30px; align-items: center; }
    .hero-container { flex-direction: column; align-items: flex-start; justify-content: center; gap: 50px; }
    .hero-right { width: 100%; max-width: 400px; }
}

@media (max-width: 992px) {
    .features-top-row { flex-direction: column; gap: 20px; }
    .top-right-content { padding-top: 0; max-width: 100%; }
    .features-bottom-row { flex-direction: column; gap: 50px; }
    .feature-image-block { width: 100%; max-width: 600px; margin: 0 auto; }
    .feature-list-block { width: 100%; }
    .services-upper-container { flex-direction: column; gap: 60px; }
    .service-links-col {
        padding-left: 0;
        border-left: none;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .service-card-item { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
    .counties-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .coverage-main-title { font-size: 36px; }
    .cta-banner-section { height: auto; padding: 80px 0; }
    .cta-content-container { justify-content: center; padding: 0 30px; }
    .cta-heading { font-size: 32px; }
    .mission-container { flex-direction: column; gap: 60px; }
    .stats-grid { width: 100%; }
    .mission-content-area { width: 100%; }
    .mission-text-wrapper { max-width: 100%; }
    
    .grid-col-wide, .grid-row-tall, .grid-col-normal, .fleet-gallery-grid .grid-col-wide:last-child {
        grid-column: span 6;
    }
    .align-self-bottom { margin-top: 0; }
    .fleet-card { margin-bottom: 20px; }
    .fleet-image-box { height: 260px; }
    .grid-row-tall .fleet-image-box { height: 380px; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 42px; }
    .fleet-experience-section { padding: 60px 20px; }
    .fleet-main-heading { font-size: 32px; }
    
    .grid-col-wide, .grid-row-tall, .grid-col-normal, .fleet-gallery-grid .grid-col-wide:last-child {
        grid-column: span 12;
    }
    .fleet-image-box, .grid-row-tall .fleet-image-box { height: 240px; }
    .top-tag { order: 2; margin-top: 15px; margin-bottom: 0; }
    .fleet-image-box { order: 1; }
    .bottom-tag { order: 2; }
    .fleet-cta-wrapper { order: 3; margin-top: 20px; }
    
    .fleet-services-section { padding: 60px 20px; }
    .service-links-col { grid-template-columns: 1fr; gap: 50px; }
    .image-quote-block { flex-direction: column; align-items: flex-start; }
    .intro-block-img { width: 100%; max-height: 250px; }
    .testimonials-slider-container { padding: 50px 30px; }
    .testimonial-main-quote { font-size: 22px; line-height: 1.4; }
    .testimonial-footer-row { flex-direction: column; align-items: flex-start; gap: 30px; }
    
    .main-footer-section { padding: 40px 20px 20px 20px; }
    .app-download-banner { padding: 50px 20px; margin-bottom: 60px; }
    .app-banner-title { font-size: 26px; }
    .app-stores-wrapper { flex-direction: column; gap: 20px; }
    .store-divider { display: none; }
    .footer-directory-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-base-bar { flex-direction: column-reverse; align-items: flex-start; gap: 20px; }
	   .terms-header {
                padding: 60px 20px 80px 20px;
            }
            .terms-header h1 {
                font-size: 2.2rem;
            }
            .terms-container {
                padding: 25px;
                margin-top: -30px;
            }
            .section-title {
                font-size: 1.25rem;
            }
	   .pp-header {
                padding: 60px 20px 80px 20px;
            }
            .pp-header h1 {
                font-size: 2.2rem;
            }
            .pp-container {
                padding: 25px;
                margin-top: -30px;
            }
            .pp-section-title {
                font-size: 1.25rem;
            }
}

@media (max-width: 576px) {
    .features-section { padding: 60px 20px; }
    .features-heading { font-size: 30px; }
    .feature-item { flex-direction: column; gap: 15px; padding: 25px 0; }
    .feature-icon-box { margin-top: 0; }
    .feature-action-arrow { align-self: flex-start; margin-top: 10px; }
    .mission-section { padding: 60px 20px; }
    .stats-grid { grid-template-columns: 1fr; border-left: none; }
    .stat-card { padding: 30px 10px; border-right: none; }
    .mission-heading { font-size: 32px; }
    .coverage-section { padding: 60px 20px; }
    .coverage-main-title { font-size: 28px; margin-bottom: 40px; }
    .counties-grid { grid-template-columns: 1fr; gap: 35px; }
    .county-card { padding-top: 20px; }
    .cta-content-container { padding: 0 15px; }
    .glass-cta-box { padding: 40px 25px; }
    .cta-heading { font-size: 26px; }
}

@media (max-width: 480px) {
    .site-header { padding: 15px 20px; }
    .logo-box-2 { display: none; }
    .hero-section { padding: 40px 20px; }
    .hero-title { font-size: 34px; }
    .hero-subtext { font-size: 14px; line-height: 22px; }
	 .sheet{padding:32px 22px 30px;}
    h1{font-size:25px;}
    .scale-row{gap:6px;}
    .scale-opt label{padding:10px 2px 8px;font-size:12px;}
}
