/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Space Grotesk", sans-serif;
}

/* Header and Nav */
.main-header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem 2rem;
    background: transparent;
    color: #fff;
    transition: background 0.5s ease, color 0.5s ease;
}

.main-nav.scrolled {
    position: fixed;
    background: #000;
    color: #fff;
}

.nav-logo {
    width: 100px;
}

.nav-logo img{
    height: 50%;
    width: 50%;
}

.nav-links{
    display: flex;
    gap: 1.5rem;
    font-weight: 600;
}

.logo, .nav-links a {
    color: #fff;
    text-decoration: none;
}

.booking-button {
    background-color: #db3535;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    font-weight: 700;
    font-family: "Space Grotesk", sans-serif;
    
}

.booking-button button, a{
    text-decoration: none;
    color: #fff;
}

.booking-button:hover {
    padding: 0.75rem 1.25rem;
    background-color: #c71f1f;
    cursor: pointer;
    font-weight: 700;
    border: 2px solid #fff;
    transition: 0.5s ease, color 0.5s;
}

.nav-toggle {
    display: none;
    border: none;
    cursor: pointer;
    opacity: 1;
}

.nav-logo:hover .nav-toggle,
.nav-logo.logo-hidden .nav-toggle {
    opacity: 1;
}

.hamburger {
    display: block;
    width: 24px;
    height: 3px;
    background: #fff;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 3px;
    background: #fff;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Full-Page Menu */
.full-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 20;
    transform: translateY(-100%);
    transition: transform 0.7s ease, opacity 0.7s ease;
    opacity: 0;
}

.full-menu.active {
    display: flex;
    transform: translateX(0);
    opacity: 1;
}

.menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

.menu-columns {
    display: flex;
    justify-content: center;
    width: 80%;
    max-width: 1200px;
}

.menu-columns ul{
    list-style: none;
}

.menu-columns a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    line-height: 2;
}

.menu-columns a:hover {
    text-decoration: underline;
}

/* Main Footer */
.main-footer {
    background: #000;
    padding: 2rem 2rem;
    text-align: center;
    display: flex;
    justify-content: space-between;
    color: #fff;
    cursor: pointer;
    gap: 2rem;
}

.footer-logo {
    text-align: left;
    padding: 2rem;
    text-align: center;
    width: 25%;
}

.footer-logo img{
    width: 35%;
    height: auto;
}

.footer-logo p{
    text-align: left;
    padding-top: 1rem;
}

.footer-links{
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: .75rem;
    width: 25%;
    padding: 2rem;
}

.footer-links a{
    text-decoration: none;
    color: #fff;
    font-size: small;
}

.footer-links a:hover{
    text-decoration: underline;
}

.footer-links h5{
    font-size: large;
}

.footer-social {
    width: 25%;
    padding: 2rem;
    text-align: center;
    flex-direction: column;
}

.footer-social h5{
    font-size: medium;
    padding-bottom: 1rem;
}

.footer-social i{
    padding: .75rem;
    font-size: x-large;
    color: #db3535;
}

.footer-social a:hover{
    color: #db3535;
}

.sub-footer {
    background-color: #1b1b1b;
    padding: 1rem 2rem;
    border-top: 1px solid #919191;
    color: #fff;
}

.sub-footer a{
    text-decoration: none;
    color: #fff;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.popup-content {
    background-color: white;
    width: 60vw;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.popup-inner {
    display: flex;
}

.popup-image {
    width: 50%;
}

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

.popup-form {
    width: 50%;
    padding: 20px;
    text-align: left;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

.popup-content h2 {
    font-size: 24px;
    margin: 0 0 10px;
}

.popup-content p {
    font-size: large;
    margin: 0 0 20px;
    color: #555;
}

.popup-content input[type="tel"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 2rem;
}

.popup-error-text {
    color: red;
    font-size: 12px;
    margin: 5px 0;
    min-height: 20px;
    display: none;
}

.popup-content button {
    background-color: #db3535;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.popup-content button:hover {
    background-color: #891203;
}

/* Contact-hero */
.contact-hero {
    background-image: url('../assets/contact-us.avif');
    background-size: cover;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    height: 70vh;
    width: 100%;
    object-fit: contain;
}

.contact-hero-overlay{
    background: rgba(0, 0, 0, 0.6);
    height: 70vh;
    width: 100%;
    color: #fff;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-hero-content{
    font-size: xx-large;
    display: flex;
}

.contact-hero-content h1{
    font-size: xx-large;
}

.contact{
    padding: 2rem 10rem;
}

.contact-header h2{
    font-size: larger;
    color: #db3535;
}

.contact-header h3{
    font-size: xx-large;
    text-align: center;
    padding-top: 4rem;
}

.contact-details{
    display: flex;
    gap: 2rem;
    font-size: x-large;
    padding-top: 2rem;
}

.contact-details i{
    color: #c71f1f;
}

.contact-heading{
    font-weight: 600;
}

.contact-location{
    width: 50%;
}

.contact-location span{
    display: block;
    padding-left: 2rem;
    padding-bottom: 0.5rem;
    padding-top: 1rem;
}

.contact-email{
    padding-bottom: 2rem;
}

.contact-email span{
    padding-left: 2rem;
}

.contact-phone{
    padding-bottom: 2rem;
}

.contact-phone span{
    padding-left: 2rem;
}

.contact-social{
    padding-bottom: 2rem;
}

.contact-social div{
    padding-left: 2rem;
    padding-top: 1rem;
}

.divide{
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
}

/* Contact Form */
.contact-form{
    padding: 2rem 10rem;
    padding-bottom: 10rem;
}

.contact-form-header h2{
    font-size: larger;
    color: #db3535;
}

.contact-form-header h3{
    font-size: xx-large;
    text-align: center;
    padding-top: 4rem;
}

.contact-form-group{
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.contact-form-group input{
    width: 100%;
    height: 50px;
    line-height: 22px;
    padding: 8px 20px;
    font-size: large;
    font-family: "Space Grotesk", sans-serif;
}

.contact-form-message{
    width: 100%;
    line-height: 22px;
    padding: 8px 20px;
    font-size: large;
    font-family: "Space Grotesk", sans-serif;
}

.contact-form button{
    background-color: #db3535;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    font-weight: 700;
    margin-top: 2rem;
    font-size: large;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
}

.contact-form button:hover{
    background-color: #fff;
    color: #db3535;
}

/* Our Process */
.process-hero {
    background-image: url('../assets/how-we-work.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 70vh;
    width: 100%;
    object-fit: contain;
}

.process-hero-overlay{
    background: rgba(0, 0, 0, 0.6);
    height: 70vh;
    width: 100%;
    color: #fff;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-hero-content{
    font-size: xx-large;
    display: flex;
}

.process-hero-content h1{
    font-size: xx-large;
}

.process{
    padding: 4rem 10rem;
}

.process-header{
    font-size: xx-large;
    text-align: center;
}

.process-details{
    padding-top: 2rem;
}

.process-steps{
    font-size: xx-large;
    padding-top: 1rem;
}

.process-steps i{
    color: #db3535;
}

.process-step-detail{
    padding-top: 1rem;
    font-size: large;
}

.process-step{
    font-weight: 600;
    color: #db3535;
    padding-top: 2rem;
}

.process-buttons{
    display: flex; 
    gap: 1rem;
    justify-content: center;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.contact-button{
    padding: 0 1rem;
    background-color: #fff;
    font-family: "Space Grotesk", sans-serif;
}

.contact-button a{
    color: #000;
    font-weight: 600;
    font-size: larger;
}

/* FAQ Section */
.faq-hero {
    background-image: url('../assets/faq.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 70vh;
    width: 100%;
    object-fit: contain;
}

.faq-hero-overlay{
    background: rgba(0, 0, 0, 0.6);
    height: 70vh;
    width: 100%;
    color: #fff;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-hero-content{
    font-size: xx-large;
    display: flex;
}

.faq-hero-content h1{
    font-size: xx-large;
}

.faq-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 2rem;
    text-align: center;
}

.faq-container {
    border-top: 1px solid #ddd;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    margin-bottom: 1rem;
}

/* Question Styling */
.faq-question {
    width: 100%;
    background: #fff;
    color: #000;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 1rem;
    text-align: left;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: flex-start; 
    padding: 1rem 1rem 1rem 0.5rem;
    transition: background 0.3s, color 0.3s;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-question[aria-expanded="true"] {
    background: #db3535;
    color: #fff;
}

.faq-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    line-height: 24px;
    background: #db3535;
    color: #fff;
    border-radius: 50%;
    margin-right: 0.75rem;
    font-weight: bold;
    text-align: center;
}

.faq-question[aria-expanded="true"] .faq-icon {
    background: #fff;
    color: #db3535;
}

/* Answer Styling */
.faq-answer {
    display: none;
    padding: 1rem 2rem;
    background: #fff;
    font-size: 1rem;
    color: #000;
}

.faq-answer[style*="block"] {
    display: block; /* Show answer when expanded */
}

.faq-answer a {
    color: #db3535;
    text-decoration: underline;
}

.faq-answer a:hover {
    text-decoration: none;
}

/* About Sction */
.about-hero {
    background-image: url('../assets/about.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 70vh;
    width: 100%;
    object-fit: contain;
}

.about-hero-overlay{
    background: rgba(0, 0, 0, 0.6);
    height: 70vh;
    width: 100%;
    color: #fff;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hero-content{
    font-size: xx-large;
    display: flex;
}

.about-hero-content h1{
    font-size: xx-large;
}

.about-section {
    padding: 2rem 10rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.about-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
}

.about-left{
    width: 55%;
}

.about-right{
    width: 45%;
}

.about-right img{
    width: 100%;
}

.about-subheading{
    color: #db3535;
    padding-top: 2rem;
    padding-bottom: 2rem;
    font-weight: bold;
    font-size: x-large;
}

.about-content{
    padding-bottom: 2rem;
    font-size: larger;
    color: #282727;
    line-height: 1.56rem;
}

.about-buttons{
    display: flex; 
    gap: 1rem;
    justify-content: left;
    padding-top: 2rem;
    padding-bottom: 5rem;
}

/* Testimonial Section */
.testimonial-section {
    /* padding: 3rem 1rem; */
    background: url('../assets/faq.webp') no-repeat center center;
    background-size: cover;
    position: relative;
}

.testimonial-overlay{
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
}

.testimonial-header {
    padding: 3rem 1rem;
    text-align: center;
    margin-bottom: 2rem;
}

.testimonial-header h3 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
}

.testimonial-header .highlight {
    color: #db3535;
    font-size: 1rem;
    display: block;
}

.testimonial-header .highlight:last-child {
    display: inline;
    font-size: 2.5rem;
}

/* Testimonial Cards */
.testimonial-card {
    background: #db3535;
    color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 500px;
}

.testimonial-card p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-card .client-name {
    display: block;
    font-size: 0.9rem;
    font-style: italic;
}

/* Swiper Carousel */
.testimonial-carousel {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Navigation Arrows */
.swiper-button-prev,
.swiper-button-next {
    color: #db3535;
    width: 40px;
    height: 40px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 20px;
}

/* Pagination Dots */
.swiper-pagination-bullet {
    background: #ccc;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: #db3535;
    opacity: 1;
}

/* Service Page */
.service-booking {
    padding: 2rem 10rem;
    display: flex;
    align-content: center;
    justify-content: center;
}

.service-booking h2 {
    font-size: 2.5rem;
    color: #db3535;
}

.booking-container {
    width: 100%;
    background: #1b1b1b;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #f0f0f0;
    font-size: larger;
}

.booking-group {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    padding-top: 2rem;
}

.booking-left {
    width: 34%;
}

.booking-right {
    width: 65%;
}

.vehicle-type {
    margin-bottom: 20px;
}

.vehicle-btn {
    padding: 10px 20px;
    margin: 0 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background: #ccc;
    color: white;
    font-size: larger;
    font-family: "Space Grotesk", sans-serif;
}

.vehicle-btn.active {
    background: #db3535;
    color: #f0f0f0;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.dropdown, input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* Custom Dropdown for Brands */
.custom-dropdown {
    position: relative;
    width: 100%;
}

.dropdown-selected {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #db3535;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.dropdown-selected::after {
    content: "▼";
    position: absolute;
    right: 10px;
    font-size: 12px;
}

.dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
}

.dropdown-options li {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    transition: background 0.2s;
    color: #1b1b1b;
    font-family: "Space Grotesk", sans-serif;
}

.dropdown-options li:hover {
    background: #db3535;
    color: #f0f0f0;
}

.dropdown-options img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    object-fit: contain;
}

.vehicle-image {
    padding: auto;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.vehicle-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.transmission-type{
    padding-bottom: 1rem;
}

/* CC Range Buttons */
.cc-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Max 3 per row */
    gap: 10px;
    margin-top: 10px;
}

.cc-btn {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: white;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    transition: background 0.2s, color 0.2s;
    font-size: large;
    font-family: "Space Grotesk", sans-serif;
}

.cc-btn.active {
    background: #db3535;
    color: #f0f0f0;
    border-color: #db3535;
}

.cc-btn:hover:not(.active) {
    background: #db3535;
    color: #f0f0f0;
}

/* Service Package Cards */
.package-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.package-card {
    background: #f0f0f0;
    color: #1b1b1b;
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.package-card:hover {
    background: #db3535;
    color: #f0f0f0;
}

.package-card.selected {
    border: 2px solid #ffffff;
    background: #db3535;
    color: #f0f0f0;
}

.package-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.package-header img {
    width: 80px;
    height: 80px;
    margin-right: 10px;
}

.package-header h3 {
    font-size: 24px;
}

.package-meta {
    font-size: 18px;
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    color: #333;
}

.package-meta span::before {
    content: "•";
    margin: 0 5px;
}

.package-meta span:last-child::after {
    content: "";
}

.package-meta .duration {
    margin-left: auto;
}

.package-meta .duration::before {
    content: "⏰";
    margin-right: 5px;
}

.package-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.package-features span {
    flex: 1 1 30%;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.package-features span::before {
    content: "✔";
    color: #28a745;
    margin-right: 5px;
}

.package-price-group{
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.package-discount{
    margin-top: 10px;
    font-size: 18px;
    text-decoration: line-through;
}

.package-price {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}

form {
    text-align: left;
}

form h2 {
    margin-bottom: 20px;
}

form button {
    width: 100%;
    padding: 10px;
    background: #db3535;
    color: #f0f0f0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-family: "Space Grotesk", sans-serif;
}

form button:hover {
    background: #f0f0f0;
    color: #db3535;
}

.form-group input[type="date"],
.form-group input[type="time"] {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.confirmation {
    margin-top: 20px;
    padding: 15px;
    background: #e6f4ea;
    border: 1px solid #28a745;
    border-radius: 5px;
    color: #333;
}

.why-us-section {
    padding: 2rem 10rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.why-us-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
}

.why-us-left{
    width: 45%;
}

.why-us-right{
    width: 55%;
}

.why-us-right img{
    width: 100%;
}

.date-time{
    display: flex; 
    gap: 10px
}

/* Home Page */
.home-hero {
    background-image: url('../assets/r2r-hero.webp');
    background-size: cover;
    background-repeat: no-repeat;
    height: 90vh;
    width: 100%;
    object-fit: contain;
}

.home-hero-overlay{
    background: rgba(0, 0, 0, 0.6);
    height: 90vh;
    width: 100%;
    color: #fff;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.home-hero-content{
    display: flex;
    max-width: 70%;
}

.home-hero-content h1{
    font-size: 4rem;
    text-align: center;
}

.home-booking-button{
    font-size: xx-large;
    font-weight: 500;
    margin-top: 1rem;
}

/* Refund Page */
.refund-section{
    padding: 2rem 10rem;
    display: flex;
    flex-direction: column;
}

.refund-section h2{
    font-size: xx-large;
}

.refund-details{
    text-align: left;
    padding-top: 2rem;
}

.refund-details h3{
    padding-top: 2rem;
    font-size: x-large;
}

.refund-details h4{
    padding-top: 2rem;
    font-size: larger;
}

.refund-details p{
    font-size: larger;
    padding-top: 0.5rem;
    line-height: 1.9rem;
}

.refund-details a{
    color: #db3535;
}

.refund-subpoints{
    font-size: larger;
    padding-top: 0.5rem;
    line-height: 1.9rem;
    margin-left: 2rem;
}

.subpoints{
    padding-top: 0.5rem;
    line-height: 1.9rem;
    margin-left: 2rem;
}

.home-section {
    padding: 4rem 10rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    background: #f0f0f0
}

.home-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 2rem;
    text-align: center;
}

.home-section p {
    font-size: large;
    line-height: 1.9rem;
}

.home-section span {
    font-size: 2.5rem;
    line-height: 1.9rem;
    text-align: center;
    margin-top: 3rem;
    color: #db3535;
    font-weight: 900;
}

/* Floating Buttons Container */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

/* Floating Buttons Container */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

/* Common Styles for Floating Buttons */
.floating-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.floating-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.floating-button:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* WhatsApp Button */
.whatsapp-button {
    background: #25D366; /* WhatsApp green */
}

.whatsapp-button .bi-whatsapp {
    font-size: 30px;
    color: #fff;
}

/* Call Button */
.call-button {
    background: #0078D4; /* A blue color for the call button */
}

.call-button .bi-telephone {
    font-size: 30px;
    color: #fff;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .main-nav{
        padding: 1rem 1rem;
        justify-content: space-between;
    }

    .nav-logo img{
        height: 25%;
        width: 25%;
    }

    .full-menu-logo img{
        height: 75%;
        width: 100%;
    }
    
    .nav-links{
        display: none;
    }

    .nav-toggle{
        display: block;
        position: relative;
        margin-right: 1rem;
    }

    .full-menu.active {
        padding: 2rem;
    }

    .main-footer{
        flex-direction: column;
    }

    .footer-logo{
        width: 100%;
    }

    .footer-logo img{
        height: 100%;
        width: 40%;
    }

    .footer-social{
        width: 100%;
    }

    .contact-hero {
        background-size: cover;
        background-position: center;
        height: 40vh;
        width: 100%;
    }

    .contact-hero-overlay{
        height: 40vh;
        width: 100%;
    }
    
    .contact-hero-content{
        height: 40vh;
        align-items: center;
    }

    .contact{
        padding: 1rem;
    }

    .contact-details{
        flex-direction: column;
        padding: 0;
        padding-top: 2rem;
    }

    .contact-email span{
        padding-left: 2rem;
        font-size: large;
    }

    .contact-phone span{
        padding-left: 2rem;
        font-size: large;
    }

    .contact-form{
        padding: 1rem;
    }

    .contact-form-group{
        flex-direction: column;
        padding-bottom: 2rem;
    }

    .process{
        padding: 2rem;
    }

    .testimonial-header h2 {
        font-size: 2rem;
    }

    .about-section {
        padding: 2rem;
        flex-direction: column;
        gap: 0;
    }

    .about-right{
        width: 100%;
    }

    .about-left{
        width: 100%;
    }

    .testimonial-header .highlight {
        font-size: 0.8rem;
    }

    .testimonial-header .highlight:last-child {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 1.5rem;
        max-width: 90%;
    }

    .service-booking {
        padding: 2rem;
    }

    .booking-group {
        flex-direction: column;
    }

    .booking-left, .booking-right {
        width: 100%;
    }

    .vehicle-btn {
        padding: 8px 15px;
        font-size: 14px;
    }

    .dropdown, input, .dropdown-selected {
        font-size: 14px;
    }

    .vehicle-image img {
        height: auto;
        width: 100%;
    }

    .dropdown-options img {
        width: 20px;
        height: 20px;
    }

    .cc-buttons {
        grid-template-columns: repeat(2, 1fr); /* 2 per row on mobile */
    }

    .package-features span {
        flex: 1 1 45%;
    }

    .why-us-section {
        padding: 2rem;
        flex-direction: column;
    }

    .why-us-left, .why-us-right{
        width: 100%;
    }

    .form-group input[type="date"],
    .form-group input[type="time"] {
        font-size: 14px;
    }

    .home-hero {
        background-size: cover;
        background-position: center;
        height: 40vh;
        width: 100%;
    }

    .home-hero-overlay{
        height: 40vh;
        width: 100%;
    }
    
    .home-hero-content{
        height: 40vh;
        align-items: center;
        max-width: 100%;
    }

    .home-hero-content h1{
        font-size: 2rem;
        text-align: center;
    }

    .home-booking-button{
        font-size: large;
        font-weight: 500;
        margin-top: 0.5rem;
    }

    .refund-section{
        padding: 2rem;
    }

    .popup-content{
        width: 80vw;
    }

    .popup-inner{
        flex-direction: column;
    }

    .popup-form, .popup-image{
        width: 100%;
    }

    .popup-form h2{
        font-size: large;
        text-align: center;
    }

    .popup-close {
        z-index: 10;
        padding: .25rem 0.5rem;
        background-color: white;
        border-radius: 100%;
    }

    .home-section {
        padding: 2rem;
    }

    .home-section h2{
        font-size: 1.5rem;
    }

    .home-section span{
        font-size: 1rem;
    }

    .faq-section h2 {
        font-size: 1.5rem;
    }

    .footer-links{
        width: 100%;
    }

    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .floating-button {
        width: 50px;
        height: 50px;
    }

    .whatsapp-button .bi-whatsapp,
    .call-button .bi-telephone {
        font-size: 25px;
    }
}