



body {
    margin: 0;
    padding: 0;
    background-color: black !important;
    box-sizing: border-box;
    overflow-x: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;


}


:root {
    /* Kept for legacy CSS elements like the Nav */
    --color-black: #000000;
    --color-dark-bg: #000000;
    --color-text-light: #F0F0F0;
    --color-rich-gold: #FFD700;
}

video::-webkit-media-controls {
    display: none;
}


.vid-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    border-bottom: 3px solid #D4AF37;
    border-radius: 0px 0px 80px 80px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.bgvid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.vid-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.65);
    z-index: -1;
}

.inner-container {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 1;
    padding: 40px 60px;
    background: none;
    border-radius: 10px;
}

.inner-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    letter-spacing: 5px;
    font-style: italic;
    margin-bottom: 20px;
    color: #D4AF37;
    text-shadow:
        0 0 15px rgba(255, 255, 255, 0.4),
        0 0 30px rgba(0, 0, 0, 1),
        2px 2px 5px rgba(212, 175, 55, 1);
    font-weight: 900;
}

/* .inner-text p {
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 850px;
    margin: 0 auto 40px auto;
    color: #FFFFFF;
    font-style: italic;
    line-height: 1.6;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 1);
}
 */


.inner-text p {
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 850px;
    margin: 0 auto 40px auto;
    color: #FFFFFF;
    font-style: italic;
    line-height: 1.6;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 1);
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 30%, transparent 50%);
    padding: 25px 40px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow:
        0 0 30px rgba(212, 175, 55, 0.2),
        inset 0 0 20px rgba(212, 175, 55, 0.1);
    position: relative;
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
}

.inner-text p::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.2);
    z-index: -1;
    animation: rotate 20s linear infinite;
}

.inner-text p::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    z-index: -2;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotateX(5deg);
    }

    50% {
        transform: translateY(-10px) rotateX(5deg);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* bar */
.vsslogo {
    width: 85px;
    height: 85px;
    border-radius: 100%;
    border-bottom: 3px solid #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}
.site-title {
    width: auto;
    height: 100%;
    font-size: 35px;
    font-weight: bold;
    font-family: "Racing Sans One", sans-serif;
    color: white;
    /* background-color: pink; */
    position: relative;
    top: 10px;
    /* background-color: purple; */

}


nav a {
    color: white !important;
    text-decoration: none;
}

:root {
    --color-rich-gold: #FFD700;

}

#sidebar {
    transform: translateX(-100%);
    transition: transform 2s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: none;
    background-color: black;
    z-index: 999;


}

#sidebar a{
    color: white;
    text-decoration: none;
}



#sidebar.active {
    transform: translateX(0);
    box-shadow: 3px 0 5px #FFD700, 3px 0 10px #000000 !important;


}

#sidebar ul li {
    border-bottom: 1px solid gold;
    padding: 10px 0;
}

/* Hamburger bar animation (optional) */
.menu-toggler .bar {
    transition: 0.3s;
}

/* Mobile optimization */

/* Add to your existing CSS */
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

nav {
    width: 100%;
    max-width: 100vw;
    left: 0;
    right: 0;
    border-bottom: 4px solid var(--color-rich-gold);
    box-shadow: 0 4px 15px rgba(255, 217, 0, 0.877);
    border-radius: 0px 0px 80px 80px;
}

/* Force all nav children to stay within bounds */
nav>* {
    max-width: 100%;
}

nav ul {
    margin-right: 25px;
    font-family: serif;
}






.logo {
    width: 70px;
    height: 70px;
    border-radius: 100%;
    border-bottom: 3px solid var(--color-rich-gold);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);


}

.site-title {
    font-size: 35px;
    font-family: "Racing Sans One", sans-serif;
    color: white;
    display: flex;
    align-items: center;
    font-weight: bold;
    white-space: nowrap;
}

/* Hero Section */
.hero-section {
    /* Offset for fixed navbar */
    width: 100%;
    height: auto;
    float: left;
    background-color: black;
    /* background-color: blue; */

}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    /* border-top: 10px solid gold; */
    /* border-bottom: 10px solid gold; */
    justify-content: center;
}


.second {
    width: 100%;
    height: 350px;
    /* background-color: purple !important; */
    /* float: left; */
    display: flex;
    justify-content: center;
    /* z-index: 2; */


    /* margin-top: 10px; */
    background-color: black;
}

.group {
    width: 90%;
    height: 300px;
    float: left;
    background-color: black;
    padding-top: 150px;

    /* display: flex;
    justify-content: center; */
    /* gap: 100px; */
    /* margin-left: 5% */
}

.groupA {
    width: 35%;
    height: 200px;
    float: left;

    /* background-color: purple; */
}

.groupA h1 {
    width: 98%;
    height: 150px;
    float: left;
    /* background-color: blue; */
    color: white;
    font-family: sans-serif;
    font-style: italic;
    font-weight: bold;
    margin-left: 2%;
    font-size: 40px;
}



.groupB {
    width: 43%;
    height: 200px;
    float: right;

    /* background-color: pink; */
    margin-right: 5%;
}

.groupB h4 {
    width: 100%;
    height: 100px;
    line-height: 1.5;
    float: left;
    font-family: serif;
    font-style: italic;
    color: white;

    /* background-color: aqua; */
}

.headcall {
    width: 35px;
    height: 40px;
    position: relative;
    top: 20%;
    /* background-color: pink; */

}

.dial {
    color: burlywood;
    margin-left: 50px;
    /* background-color: orange; */
    font-size: 17px;
    line-height: 1;
}



.col-lg-4 {
    opacity: 0;
    /* background-color: green; */

    transform: translateY(60px);
    transition: opacity 1s ease-out, transform 2s ease-out;
}

.col-lg-4.visible {
    opacity: 1;
    transform: translateY(0);
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 5px;
}

.hover-darken {
    transition: filter 0.3s ease;
}

.hover-darken:hover {
    filter: brightness(50%);
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 100px;
}

.bring {
    border: 20px !important;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    border: 20px !important;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.overlay-text {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    /* light black overlay */
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 2s ease;
    border-radius: 10px;
}

.image-wrapper:hover .overlay-text {
    opacity: 1;
    transform: translateY(0);
}

.stars {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    width: 100%; /* Use full width */
    margin-top: 30px;
}

.stars i {
    color: burlywood;
    margin: 0 5px; 
}

.nav-link {
    margin: 20px !important;
    float: left;
    width: 100%;
    height: 50px;
    font-size: 20px !important;
    font-style: bold;
    /* border-right: 1px solid gold !important; */

    /* text-align: center; */
    /* background-color: green !important; */
}

/* .content {
    height: 500px;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
} */

.parallax {
    background-image: url('images/hover1.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 1000px;
    position: relative;
    display: flex;
    flex-direction: column;
    /* opacity: 0.4; */
    justify-content: center;
    /* This line was changed */
    align-items: center;
    /* padding-top: 100px !important;  */
    /* This line was added */
}

.parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.sends {
    color: white;
    width: 50%;
    height: 150px;
    /* background-color: purple; */
    /* padding-left: 15%; */
    display: flex;
    padding-top: 3%;
    flex-direction: column;
    top: 800px;
    right: 100px;
    display: flex;
    justify-content: center;
    transform: translateY(80px);
    /* opacity: 0; */
    /* background-color: rgba(233, 213, 213, 0.434); */
    /* background-color: #555; */
    background-color: transparent;

    border-radius: 20px;

    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.6);
    ;
    opacity: 0;
    /* Add this if it's not already there */
    transform: translateY(80px);
    /* Add this if it's not already there */
    transition: opacity 4s ease, transform 5s ease;
    /* Keep this for the smooth animation */
}

.sends.is-visible {
    opacity: 1;
    transform: translateY(0);
}

input::placeholder {
    color: white !important;
}

.input-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
    margin-top: 70px !important;
    flex-wrap: wrap;

}

.sends h3 {
    color: #FFFFFF;
    z-index: 1;
    font-size: 2.5em;
    font-weight: bolder;
    display: flex;
    justify-content: center;
    font-family: sans-serif;
    font-style: oblique;
}

.request {
    color: white;
    z-index: 1;
    font-size: 20px;
    display: flex;
    justify-content: center;
    font-family: sans-serif;
    font-style: italic;
    padding-top: 1%;


}


/* Container for date/time input and icon */
.date-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.date-input-wrapper input {
    padding-right: 35px;
    /* Add space for the icon */
}

.date-input-wrapper .calendar-icon {
    position: absolute;
    right: 10px;
    /* Adjust this value to position the icon */
    color: gold;
    cursor: pointer;
    font-size: 0.8em;
    z-index: 2;
    /* Ensure the icon is above the input */
}

.date-input-wrapper .calendar-icon:hover {
    color: #f8c000;
}

/* General input styling */
.input-container input {
    width: 300px;
    padding: 15px 0;
    border: none;
    border-bottom: 2px solid white;
    background: transparent;
    color: gold;
    /* font-size: 1em; */
    font-size: 14px;
    text-align: center;

    outline: none;
}

.input-container input::placeholder {
    /* color: rgba(255, 255, 255, 0.4); */
    color: gold !important;
}

.input-container input:focus {
    border-bottom-color: #f8c000;
}

.tap {
    width: 15%;
    height: 55px;
    background-color: transparent;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    border: 1px solid burlywood;

    /* word-spacing: 10px; */
    /* margin-left: 20px; */
}

.below {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    /* background-color: pink; */
    font-size: 17px;
    align-items: center;
    color: #FFFFFF;

    z-index: 1;
    opacity: 0.4;
}

.container2 {
    width: 100%;
    height: 1500px;
    background-color: black;
    float: left;
    padding-top: 150px;
    /* position: relative;
    bottom: 10px; */
}

.comfort {
    width: 100%;
    height: 200px;
    float: left;
    /* background-color: blue; */
    border-bottom: 1px solid gold;
    /* border: 2px solid white; */
}

.comfort2 {
    width: 70%;
    height: 100%;
    /* background-color: orange; */
    color: white;
    font-size: 40px;
    font-weight: bolder;
    font-style: italic;
    padding-left: 15%;
    /* margin-top: 100px; */
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.comfort2 p {
    font-size: 20px;
    font-weight: lighter;
    margin-top: 10px;
    padding-left: 5px;
}

/* .line3 {
    width: 70%;
    height: 5px;
    float: left;
    margin-top: 0px;
    background-color: green;
    margin-left: 15%;
    border-bottom: 10px solid white;
} */

/* Luxury Typography & Styling */
.container2 .groupE {
    font-family: 'Montserrat', sans-serif !important;
}

.container2 .groupG,
.container2 .groupI,
.container2 .groupJ {
    background: linear-gradient(135deg, #0a0a0a 0%, #2c2a2a 70%, #e9d4a4 95%, #0a0a0a 100%) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    border-radius: 1rem !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    transition: all 0.3s ease !important;
}

.container2 .groupG:hover,
.container2 .groupI:hover,
.container2 .groupJ:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3) !important;
    border-color: rgba(212, 175, 55, 0.4) !important;
}

/* Para1 Gradient Text */
.para1 {
    font-family: 'Playfair Display', serif !important;
    font-weight: 700 !important;
    font-size: 1.75rem !important;
    background-image: linear-gradient(to right, #e6c200 0%, #ffeb99 50%, #d4af37 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    letter-spacing: 1px !important;
    padding-bottom: 10px !important;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3) !important;
    margin-bottom: 1.5rem !important;
}

/* Paragraph Text Styling */
.container2 .fs-5 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 300 !important;
    line-height: 1.8 !important;
    color: #e0e0e0 !important;
    font-size: 1.1rem !important;
}

/* Main Heading Styling */
.container2 h2.display-3 {
    font-family: 'Playfair Display', serif !important;
    letter-spacing: 1px !important;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3) !important;
}

/* Subheading Gradient */
.container2 .h5 {
    font-family: 'Montserrat', sans-serif !important;
    background-image: linear-gradient(to right, #e6c200 0%, #ffeb99 50%, #d4af37 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
}

/* Border Styling */
.border-gold {
    border-color: rgba(212, 175, 55, 0.3) !important;
}







.contains {
    width: 100%;
    height: 850px;
    float: left;
    background-color: black;
    padding-top: 50px;
    /* position: relative;
    bottom: 10px; */
}

.convinence {
    width: 50%;
    height: 650px;
    float: left;
    /* background-color: blue; */

}

.convinence h3 {

    color: white;
    font-size: 45px;
    font-weight: bolder;
    font-family: serif;
    /* font-style: italic; */
    padding-left: 25%;
    margin-top: 15%;
}

.convinence h4 {
    color: white;
    padding-left: 25%;
    font-size: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.convinence p {
    color: white;
    margin-top: 20px;
    padding-left: 25%;
    text-align: justify;
}

.book-now {
    width: 200px;
    height: 70px;
    /* background-color: purple; */
    margin-left: 25%;
    margin-top: 30px;
    border: 1px solid burlywood;
    text-align: center;
}

.book-link {
    font-size: 17px;
    font-weight: bold;
    color: white;

    line-height: 4;
    text-align: center;
    /* padding-left: 35px; */
}

.book-now a {
    color: white;
    text-decoration: none;
}

.convinence2 {
    width: 50%;
    height: 650px;
    /* float: right; */
    /* background-color: aqua; */
    margin-top: 50px;
    display: flex;
    gap: 30px;
}

.carkey {
    width: 50%;
    height: 650px;
    /* float: left; */

    /* background-color: olive; */
}


.carkey2 {
    width: 50%;
    height: 650px;
    /* float: right; */
    border: 20px;
    /* background-color: orangered; */
}

.key {
    border-radius: 20px;
    width: 100%;
}

.image-section {
    width: 100%;
    position: relative;
    height: 700px;
    background-color: black;
    overflow: hidden;
}

.text-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.terms {
    width: 100%;
    height: 500px;
    background-color: purple;
    float: left;
}

.terms h3 {
    width: 100%;
    height: 100px;
    float: left;
    /* background-color: green; */
    color: white;
    font-size: 40px;
    font-weight: bolder;
    font-family: serif;
    text-align: center;
    margin-top: 30px;
    line-height: 3;
}

.condition {
    width: 100%;
    height: 1000px;
    float: left;
    color: white;
    background-color: #1E1E1E;
}

.condition2 {
    width: 50%;
    height: 600px;
    float: left;

    background-color: black;
    margin-left: 20px;
    margin-top: 30px;
}

.condition2 h2 {
    width: 100%;
    height: 100px;
    color: white;
    /* background-color: pink; */
    text-align: center;
    box-shadow: rgba(3, 1, 1, 0.921);
    font-size: 40px;
    font-weight: bolder;
    font-family: serif;
    margin-top: 20px;
    line-height: 2.5;
}

/* Custom CSS to fix responsiveness and sizing */

/* Custom CSS to fix responsiveness and sizing */



.parallax-container {
    height: 600px;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    /* background-color: purple; */

}


.background-image {
    background-image: url('images/pexel.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100%;
    width: 100%;
    position: absolute;
    border-radius: 20px;

    opacity: 0.4;
    top: 0;
    left: 0;
    z-index: -1;

}

.scrolling-content {
    background-color: white;
    /* Or any solid color */
    z-index: 1;
    /* To ensure it sits on top of the parallax section */
    position: relative;
    /* other styles... */
}

/* .counters-section */

.content-container {
    /* Position the content on top of the background */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* Center the content */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    /* Style your text */
    color: white;
    /* Make sure the text is visible */
    text-align: center;
    padding: 20px;
    z-index: 1;
    /* Ensure this is a higher z-index than the background */
}

.content-container h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
    /* background-color: green; */

    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    /* Optional: Adds a shadow for better readability */
}

.content-container p {
    font-size: 1.2em;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.scrolling-content {
    background-color: white;
    /* The color that will cover the image */
    min-height: 100vh;
    /* Ensure it has enough height to scroll */
    padding-top: 50px;
    z-index: 1;
    /* Ensure it is on top of the image */
    position: relative;
}



/* --- Section Container (.num) --- */
.num {
    /* background-color: var(--color-background-light); */
    background-color: #1E1E1E;
    height: 550px !important;
    padding: 100px 0;
    /* More padding */
    overflow: hidden;
    /* border-bottom: 1px solid #E0E0E0;  */
}

/* --- Image Column Wrapper (.three) --- */
.three {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.three img {
    width: 100%;
    height: auto;
    object-fit: cover;
    /* border: 4px solid #1E1E1E; */
    border-radius: 20px;
    /* box-shadow: 10px 10px 0px var(--color-accent);  */
    box-shadow: 10px 10px 0px #FFD700;
    transition: all 0.4s ease-in-out;
    max-width: 90%;
    display: block;
}

.three img:hover {
    box-shadow: 0px 0px 0px var(--color-accent);
    /* Shadow retracts on hover */
    transform: translate(10px, 10px);
}

/* --- Text/Stats Column (.figure) --- */
.figure {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 60px;
    /* Increased side padding */
}

/* --- Heading Block (.fig) --- */
.fig {
    margin-bottom: 50px;
    border-left: 5px solid var(--color-accent);
    /* Subtle accent line */
    padding-left: 25px;
}

.figss {
    text-align: left;
}

.figss h2 {
    /* color: var(--color-primary-dark); */
    color: white;
    font-family: sans-serif;
    font-size: 35px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    text-transform: none;
    /* Less aggressive caps */
    letter-spacing: -0.5px;
    /* Tighter spacing */
    margin-bottom: 8px;
}

.figss p {
    font-family: var(--font-body);
    /* color: #7f8c8d;  */
    color: gold;
    display: flex;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.1px;
    font-style: italic;
}

/* --- Counters Section --- */
.counters-section {
    display: flex;
    justify-content: flex-start;
    gap: 70px;
    /* More generous spacing */
    margin-top: 20px;
}

.counter-container {
    text-align: left;
}

.counter {
    /* Clean, bold, and high-contrast numbers */
    /* color: var(--color-primary-dark);  */
    color: white;
    font-family: var(--font-body);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.label {
    /* Structured, uppercase label with accent color */
    /* color: var(--color-accent);  */
    color: gold;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 0;
}

.serve {

    max-width: 1200px;
    width: 100%;
    height: auto;
    padding: 40px;
    background-color: #0c0c0c;
    border-radius: 25px;
    box-shadow: 0 10px 80px rgba(0, 50, 50, 0.4), 0 0 15px rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
    margin: 40px auto;
}

/* Title Area */
.serve .serve1 {
    /* Notice the .serve prefix on every rule */
    height: 100px;
    color: #d4af37;
    /* color: white; */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-top: 20px;
    margin-bottom: 60px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    letter-spacing: 4px;
    text-transform: uppercase;
}


.serve .row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

/* Universal Card Styling for all service items */
.serve .serve2,
.serve .serve3,
.serve .serve5,
.serve .serve7 {
    /* Notice the .serve prefix on every rule */
    /* Flex basis to create a two-column layout on desktop */
    flex: 1 1 calc(50% - 40px);
    min-width: 300px;
    /* Ensure readability on smaller side-by-side cards */
    padding: 30px;
    background-color: #1a1a1a;
    /* Slightly lighter inner card background */
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    z-index: 2;
    height: auto;
    /* Let content define height */
    color: #E0E0E0;
}

/* Hover Effect for ultimate luxury feel */
.serve .serve2:hover,
.serve .serve3:hover,
.serve .serve5:hover,
.serve .serve7:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25), 0 0 10px rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.5);
    background-color: #212121;
}

/* Card Header Styling */
.serve h4 {
    /* Select all h4s inside the section, but you can be more specific: */
    /* .serve .serve2 h4, .serve .serve4 h4, etc. */
    font-size: 1.7rem;
    font-weight: 700;
    color: #f7e6a5;
    /* Champagne color for elegance */
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    /* Underline effect using border */
    padding-bottom: 5px;
    border-bottom: 2px solid #d4af37;
    width: fit-content;
}

/* Card Body Text */
.serve p {
    /* Select all p tags inside the section. If you have other p tags you want unaffected, be more specific: */
    /* .serve .serve2 p, .serve .serve4 p, etc. */
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: #B0B0B0;
    /* Softer text color */
    font-family: 'Montserrat', sans-serif;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
}

/* Internal structure adjustments (cleanup of original structure) */
.serve .serve4,
.serve .serve6,
.serve .serve8 {
    width: 100%;
    display: block;
}




.counters-section {
    display: flex;
    justify-content: space-around;
    width: 80%;
    max-width: 800px;
    margin: 50px auto;
    /* Centered with top/bottom margin */
    padding: 40px 20px;
    /* background-color: black; */
    border-radius: 10px;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.5);
    opacity: 0;
    /* Initially hidden */
    transform: translateY(20px);
    /* Initially slightly down */
    transition: opacity 1s ease, transform 1s ease;
}

/* Class to make the section visible */
.counters-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Individual counter container */
.counter-container {
    text-align: center;
    flex: 1;
    padding: 10px;
    margin: 0 15px;
    /* Use flexbox to align number and suffix */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Style for the counter number */
.counter {
    font-size: 4rem;
    font-weight: bold;
    color: #FFFFFF;
    /* A nice blue color */
    transition: color 0.3s ease;
    position: relative;
    /* Needed for positioning the '+' */
}


.counter[data-target="21"]::after {
    content: '+';
    font-size: 1em;

    position: absolute;
    top: 0;
    right: -0.5em;

}

footer {
    width: 100%;
    height: 600px;
    /* background-color: black !important; */
    background-color: #1E1E1E;
    float: left;
}

.fit {
    height: 300px;

    display: flex;
    background-image: linear-gradient(to right,
            #0D0D0D 0%,
            #332D1C 15%,
            #A87B2E 50%,
            #332D1C 85%,
            #0D0D0D 100%);


    box-shadow: 0 0 15px rgba(168, 123, 46, 0.4);
}

.footer-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px 15px;
}

/* * INDIVIDUAL ITEM STYLES (Location, Call, Time) */
.footer-item {
    display: flex;
    /* flex-direction: row; */
    /* Icon and text side-by-side */
    align-items: center;
    justify-content: center;
    /* padding-top: 20px !important; */
    /* flex: 1; */
    /* Allows columns to take up equal space */
    /* min-width: 250px; */
    /* Ensures items don't get too narrow */
}

.item-icon {
    width: 25px;
    /* Slightly larger icon */
    height: auto;
    margin-right: 15px;
    margin-top: 25px;
    transform: translateY(3px);
    /* Align icon with text block */
}

.item-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.item-title {
    display: flex;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    /* Semi-bold for title */
    /* GOLD accent color for luxury */
    /* color: #FFD700;  */
    color: white;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.item-text {
    font-size: 0.95rem;
    font-weight: 300;
    /* Lighter weight for content */
    line-height: 1.5;
    color: #E0E0E0;
}

/* * FOOTER BOTTOM (Separator and Copyright) */
.footer-separator {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto 15px;
    height: 1px;
    /* Subtle gold glow effect */
    background-color: rgba(255, 215, 0, 0.2);
}

.copyright-text {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-top: 20px;
    font-weight: 300;
}

/* * RESPONSIVENESS */


.page-container {
    width: 100%;
    /* Full width for the fluid background */
    padding: 40px 0;
    /* Padding is now vertical only for the fluid effect */
    background-color: #0d0d0d;
    /* Inner dark layer */

    /* FLEX PROPERTIES FOR CENTERING INNER CONTENT */
    display: flex;
    flex-direction: column;
    /* Temporarily set to column to wrap the inner content */
    align-items: center;
    /* Centers the content block horizontally */
    justify-content: center;
}

/* NEW INNER WRAPPER FOR FLEX COLUMNS */
.content-wrapper {
    width: 90%;
    max-width: 1200px;
    /* Max width constraint for readability */
    display: flex;
    /* Activate flex for the columns */
    gap: 20px;

    /* Apply center justification/alignment to the columns inside the wrapper */
    justify-content: center;
    align-items: flex-start;
    /* Aligns items to the top of the container */
}


/* COLUMN STYLES */
.column {
    padding: 15px;
}

/* SPECIAL STYLING FOR THE FIRST DIV (ABOUT US) */
.about-us-column {
    flex: 2;
    padding-right: 30px;
    border-right: 1px solid rgba(255, 215, 0, 0.1);
    /* Subtle gold separator */
}

/* STYLING FOR THE SECOND AND THIRD DIVS (e.g., Services and Contact) */
.info-columns {
    flex: 1;
    color: white;
    font-family: 'Days One', sans-serif;
    font-size: 13px;
}

/* ABOUT US TEXT STYLES */
.about-title {
    font-family: sans-serif;

    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    /* Gold Accent */
    margin-bottom: 25px;
    letter-spacing: 1.5px;
}

.about-text {
    font-family: 'Days One', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #C0C0C0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-text .line {
    display: block;
}

/* GENERAL SUBHEADINGS (for the smaller columns) */
.sub-heading {
    font-family: sans-serif;
    font-size: 1.4rem;
    color: #FFD700;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    padding-bottom: 5px;
}


/* List styles */
.info-columns ul {
    list-style: none;
    padding: 0;
}

.info-columns ul li {
    margin-bottom: 5px;
    list-style: disc;
}


.foot4 {
    width: 100%;
    height: 50px;
    float: left;

    background-color: black;
}

.foot5 {
    width: 20%;
    height: 20px;
    float: left;
    background-color: black;
    /* margin-left: 10%; */
    color: white;
    font-family: serif;
    margin-top: 10px;
    
}

.privacy {
    width: 40%;
    height: 30px;
    float: right;
    color: white;
    /* background-color: pink; */
    margin-top: 10px;
    margin-right: 5%;
    padding-left: 15%;
    font-family: serif;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    background-color: black;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
    border-bottom: 4px solid rgba(255, 215, 0, 0.1);
    padding: 10px 0;
    border-radius: 5px;
}

.marquee-text {
    white-space: nowrap;
    display: inline-block;
    animation: marquee 80s linear infinite;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: white;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
    padding: 0 20px;
}

/* Custom styles for the flag icons */
.marquee-text .fi {
    height: 1.2em;
    width: 1.3em;
    margin: 0 10px;
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
    border-radius: 10px;
}

/* New CSS rule for the vertical Spanish flag */
.fi-es.vertical {
    transform: rotate(90deg);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.luxury-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 5%;
    background-color: #0a0a0a;
    box-shadow: 0 0 60px rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    background-image: radial-gradient(circle at center, rgba(255, 215, 0, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}

.luxury-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: containerShine 30s linear infinite;
    pointer-events: none;
}

@keyframes containerShine {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    gap: 40px;
}

.luxury-text-card {
    flex: 1 1 45%;
    min-width: 350px;
    color: white;
    padding-bottom: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.luxury-text-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;

    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);

}

.luxury-text-card p {
    font-family: inherit;
    font-size: 14px;
    line-height: 1.8;
    /* text-align: justify; */
    margin-bottom: 30px;
    padding-right: 33px;
    color: #b0b0b0;
}

.luxury-text-card ul {
    list-style: none;
    padding-left: 0;
    margin-top: 0;
}

.luxury-text-card li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    font-size: 1.1rem;
    color: #ccc;
    transition: color 0.3s ease;
}

.luxury-text-card li:last-child {
    border-bottom: none;
}

.luxury-text-card li:hover {
    color: #ffd700;
    cursor: default;
}

.luxury-text-card li::before {
    content: '✨';
    margin-right: 10px;
    color: #ffd700;
}

/* --- IMAGE SECTION STYLING (The key changes are here) --- */
.luxury-image-card {
    /* 1. Adjusted width to be 50% for a cleaner division with the 45% text card, 
          and used flex-grow: 1 to ensure it fills remaining space */
    flex: 1 1 50%;
    /* 2. Reduced height for a more elegant, less imposing visual. 
          A 16:9 or 4:3 aspect ratio often looks better than a square. */
    height: 400px;
    /* Reduced from 500px */
    max-width: 600px;
    /* Capped max width for better proportion */
    border-radius: 15px;
    /* Slightly smaller radius for refinement */
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    align-self: center;
    position: relative;
    transition: box-shadow 0.5s ease-out, transform 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
    /* Subtle gold border */
}

.luxury-image-card img {
    /* 3. Ensure the image always fills the container without distortion */
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* This is crucial for maintaining aspect ratio and filling the space */
    display: block;
    transition: transform 5s ease-out;
    /* Slow zoom effect */
}


/* Added: subtle zoom on image for dynamic luxury feel */
.luxury-image-card:hover img {
    transform: scale(1.05);
}

.carousel-inner .carousel-item-end.active,
.carousel-inner .carousel-item-next {
    transform: translateX(33.333%) !important;
    /* Move by 1/3 of the row */
}

/* Ensure controls are visible and correctly positioned */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    /* Adjust width to not cover the slides too much */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    /* Use a contrasting color for visibility */
    background-color: #333;
    border-radius: 50%;
    padding: 10px;
}


/* Custom CSS to fix responsiveness and sizing */

.change {
    display: flex;
    /* Removed fixed height for responsiveness */
    /* height: 620px; */
    min-height: 620px;
    /* Use min-height if you need a minimum vertical space */
    border-bottom: 4px solid rgba(255, 215, 0, 0.1);
    padding: 30px 0;
    /* margin-top: 50px; */
    /* Add top/bottom padding for mobile */
}

/* Make the heading responsive */
.trive {
    width: 100%;
    /* Replaced fixed height with margin for flexibility */
    /* height: 200px; */
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;

    /* Make text smaller on small screens */
    font-size: 35px !important;
}

/* Swiper container adjustments */
.swiper-container {
    width: 100%;
    height: 350px;
}

.star-rating i {
    color: #e6c200
}

.star-rating {
    margin-top: 30px;
  
}

.swiper-slide {
    display: flex;
    justify-content: center;
    height: 350px !important;
    align-items: center;

}

.card title {
    font-weight: 900;

}

.card-text {
    margin-top: 10px;
    font-size: 14px;
}

.card {
    /* Use 90% width on small screens to prevent touching edges */
    width: 90%;
    height: 250px !important;
    border-left: 1px solid white !important;
    background-color: black !important;
    color: #fff !important;

    /* Ensure card title and paragraph text are responsive */
}

.refund-policies-section {
    background-color: #000000;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.refund-policies-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.policy-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, transparent);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.policy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3) !important;
}

.policy-card:hover::after {
    transform: translateX(0);
}

.policy-icon {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.policy-card:hover .policy-icon {
    transform: scale(1.1);
    background: rgba(212, 175, 55, 0.15) !important;
}

.btn-outline-gold:hover {
    background: #D4AF37 !important;
    color: #000000 !important;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4) !important;
}

/* Corner animations */
.corner-decoration {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.refund-content:hover .corner-decoration {
    opacity: 1;
}


/* ==================== */
/* MEDIA QUERIES (4 BREAKPOINTS) */
/* ==================== */

/* BREAKPOINT 1: Large Tablets & Small Desktops (max-width: 1200px) */
/* ==================== */
/* MEDIA QUERIES - RESPONSIVE DESIGN */
/* ==================== */

/* BREAKPOINT 1: Large Tablets & Small Desktops (max-width: 1200px) */
@media screen and (max-width: 1200px) {

    /* Footer adjustments */
    .footer-container {
        flex-wrap: wrap;
        gap: 30px;
    }

    .footer-item {
        flex: 1 1 45%;
        min-width: 200px;
    }

    /* Luxury container */
    .luxury-container {
        width: 95%;
        padding: 40px 4%;
    }

    /* Service cards */
    .serve .serve2,
    .serve .serve3,
    .serve .serve5,
    .serve .serve7 {
        flex: 1 1 100%;
    }

    /* Parallax content */
    .sends {
        width: 70%;
    }

    /* Counter section */
    .counter {
        font-size: 3.5rem;
    }

    /* Image cards */
    .convinence2 {
        gap: 20px;
    }

    .input-container {
        /* background-color: pink; */
        display: flex;
        justify-content: center;
        align-items: center;
    }





}

/* BREAKPOINT 2: Tablets (max-width: 992px) */
@media screen and (max-width: 992px) {

    /* Navigation */
    .site-title {
        font-size: 28px !important;
    }

    .input-container {
        /* background-color: pink; */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Hero section */
    .inner-text h1 {
        font-size: 3rem;
    }

    .inner-text p {
        font-size: 1.1rem;
        padding: 20px 30px;
    }

    /* What we provide section */
    .group {
        flex-direction: column;
        align-items: center;
        padding-top: 100px;
    }

   
    .groupB {
        width: 80%;
        text-align: center;
    }

    .groupA {
        text-align: center !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .groupA h1 {
        text-align: center !important;
        margin-left: 0 !important;
        width: 100% !important;
        font-size: 11px !important;
    }

    .groupB h4 {
        font-size: 18px;
        line-height: 1.6;
    }

    /* Safety & convenience */
    .convinence,
    .convinence2 {
        width: 100%;
        text-align: center;
    }

    .convinence h3 {
        padding-left: 0;
        font-size: 36px;
    }

    .convinence p {
        padding-left: 0;
        text-align: center;
    }

    .book-now {
        margin-left: auto;
        margin-right: auto;
    }

    /* Stats section */
    .roll {
        flex-direction: column-reverse;
    }

    .three,
    .figure {
        width: 80%;
        margin: 0 auto;
    }

    .three img {
        max-width: 100%;
    }

    .headcall {
        display: none;
    }

    .refund-policies-section {
        padding: 60px 0;
    }
    
    .refund-header h2 {
        font-size: 2.5rem !important;
    }



    /* ========== END CONTENT-WRAPPER FIX ========== */

    /* Fleet section */
    .grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-container {
        flex-direction: column;
        /* align-items: center; */
        /* text-align: center; */
        gap: 25px;
    }



    .item-icon {
        margin-right: 10px;
        margin-top: 20px;
    }
}

/* BREAKPOINT 3: Mobile Landscape & Small Tablets (max-width: 768px) */
@media screen and (max-width: 768px) {

    /* General */
    body {
        overflow-x: hidden;
    }

    /* Navigation */
    .site-title {
        font-size: 20px !important;
        margin-top: 10px;
    }

    .logo {
        width: 50px;
        height: 50px;
        margin-top: 15px;
    }



    /* Hero section */
    .vid-container {
        height: 75vh;
        border-radius: 0px 0px 40px 40px;
    }

    .inner-container {
        padding: 20px;
    }

    .inner-text h1 {
        font-size: 2.5rem;
        letter-spacing: 3px;
        margin-bottom: 15px;
    }

    .inner-text p {
        font-size: 1rem;
        padding: 15px 25px;
        margin: 0 auto 20px;
    }

    /* Parallax form section */
    .parallax {
        height: 850px;
    }

    .sends {
        width: 85%;
        margin-top: 50px;
    }

    .sends h3 {
        font-size: 1.8em;
    }

    .input-container {
        flex-direction: column;
        gap: 15px;
        margin-top: 40px;
    }

    .input-container input {
        width: 280px;
        padding: 12px 0;
    }

    .tap {
        width: 280px;
        margin-top: 10px;
    }

    .below {
        font-size: 14px;
        padding: 0 20px;
    }

    .groupA {
        text-align: center !important;
        display: flex;
        justify-content: center;
        align-items: center;
        float: none !important;
        width: 100% !important;
    }
    
    .groupA h1 {
        text-align: center !important;
        margin-left: 0 !important;
        width: 100% !important;
        font-size: 26px !important;
    }



    .groupB h4 {
        font-size: 16px;
        line-height: 1.5;
    }

    .headcall {
        display: none;
    }

    .dial {
        display: block;
        margin-top: 15px;
        margin-left: 0;
        font-size: 14px;
    }

    /* Car images */
    .col-lg-4 {
        margin-bottom: 30px;
    }

    .stars {
        width: 100%;
        /* margin-left: 30%; */
        margin-top: 15px;
        justify-content: center;
    }

    /* Comfort section */
    .container2 {
        padding-top: 80px;
        height: auto;
    }

    .comfort2 {
        font-size: 24px;
        padding-left: 5%;
        width: 90%;
        text-align: center;
    }

    .comfort2 p {
        font-size: 16px;
        margin-top: 10px;
    }

    .container2 .para1 {
        font-size: 1.5rem !important;
    }

    .container2 .fs-5 {
        font-size: 1rem !important;
    }

    .container2 h2.display-3 {
        font-size: 2rem !important;
    }

    /* Safety section */
    .convinence h3 {
        font-size: 28px;
    }

    .convinence p {
        font-size: 15px;
    }

    .convinence2 {
        display: none;
    }

    /* Travel section */
    .parallax-container {
        height: 500px;
    }

    .content-container h1 {
        font-size: 2.2em;
    }

    .content-container p {
        font-size: 1.1em;
    }

    /* Stats section */
    .num {
        padding: 50px 0;
    }

    .figss h2 {
        font-size: 28px;
    }

    .figss p {
        font-size: 1rem;
    }

    .counters-section {
        flex-direction: row;
        gap: 30px;
        justify-content: center;
    }

    .counter {
        font-size: 2.5rem;
    }

    .label {
        font-size: 12px;
    }

    /* Swiper cards */
    .change {
        min-height: 550px;
        padding: 30px 0;
    }

    .trive {
        font-size: 28px !important;
        margin-bottom: 20px;
        padding: 0 15px;
    }

    .swiper-container {
        height: 320px;
    }

    .swiper-slide {
        height: 280px !important;
    }

    .card {
        height: 250px !important;
        padding: 15px;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .card-text {
        font-size: 13px;
    }

    /* Luxury container */
    .luxury-container {
        padding: 30px 20px;
    }

    .luxury-text-card h3 {
        font-size: 2.2rem;
    }

    .luxury-text-card p {
        font-size: 1rem;
    }

    .luxury-image-card {
        height: 300px;
        margin-top: 25px;
    }
     

    .refund-policies-section {
        padding: 40px 0;
    }
    
    .refund-header h2 {
        font-size: 2rem !important;
    }
    
    .refund-content {
        padding: 25px !important;
    }
    
    .policy-card {
        padding: 20px !important;
        margin-bottom: 15px;
    }
    
    .policy-title {
        font-size: 1.3rem !important;
    }
    
    .policy-desc {
        font-size: 0.95rem !important;
    }
    
    .contact-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-buttons .btn {
        width: 100%;
        max-width: 250px;
        margin: 0 auto !important;
    }


    /* Services */
    .serve {
        padding: 30px 20px;
        margin: 30px auto;
    }

    .serve .serve1 {
        font-size: 2.5rem !important;
        margin-bottom: 40px;
    }

    /* Footer */

    footer {
        height: auto;
        padding-bottom: 30px;
    }

    .tem {
        display: none !important;
    }


    .page-container {
        padding: 30px 25px;
    }

    .content-wrapper {
        flex-direction: column;
        gap: 35px;
    }

    .about-us-column,
    .info-columns {
        width: 100%;
        padding: 0;
        border-right: none;
    }

    .about-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .about-text {
        font-size: 15px;
    }



    footer .foot4 {
        display: flex;

        align-items: center !important;
        /* vertically center text */
        gap: 10px;
        /* padding: 10px 15px; */
        width: 100%;
        height: 32px;


        box-sizing: border-box;
        /* background-color: pink !important; */
        /* optional for debugging */
    }

    /* Left side - copyright */
    footer .foot5 {
        flex: 0 0 100%;
        align-items: center !important;
        font-size: 12px;
        /* background-color: purple; */
        height: auto;
        /* optional for debugging */
        position: relative;
        bottom: 5px;
        word-wrap: break-word;
        /* padding-right: 60px; */
        text-align: center;
    }

    /* Right side - privacy/cookie links */
    footer .privacy {

        display: none;
    }


}

/* BREAKPOINT 4: Small Mobile Devices (max-width: 576px) */
@media screen and (max-width: 576px) {

   

    .footer-container {
        gap: 15px;
    }

    .footer-item {
        padding: 10px 0;
    }

    .item-title {
        font-size: 16px;
    }

    .item-text {
        font-size: 11px;

    }

    .sends h3 {
        font-size: 15px;
    }

    .sends p {
        font-size: 10px;
    }

    .groupA {
        text-align: center !important;
        display: flex;
        justify-content: center;
        align-items: center;
        float: none !important;
        width: 100% !important;
    }
    
    .groupA h1 {
        text-align: center !important;
        margin-left: 0 !important;
        width: 100% !important;
        left: 0 !important;
        padding-left: 0 !important;
        position: static !important;
    }

    .refund-header h2 {
        font-size: 1.8rem !important;
        letter-spacing: 1px !important;
    }
    
    .refund-intro p {
        font-size: 1rem !important;
        padding: 0 10px !important;
    }
    
    .policy-card {
        padding: 15px !important;
    }
    
    .policy-icon {
        width: 50px !important;
        height: 50px !important;
        margin-bottom: 15px !important;
    }
    
    .policy-icon i {
        font-size: 1.5rem !important;
    }
    
    .refund-contact h5 {
        font-size: 1.2rem !important;
    }

   

    
    .stars i {
        margin-left: 7%;
        font-size: 14px;
    }

    .foot5 {
        position: relative;
        text-align: center;
    }

}

/* BREAKPOINT 5: Mobile Portrait (max-width: 480px) */
@media screen and (max-width: 480px) {

    /* Navigation */
    .site-title {
        font-size: 16px !important;
        line-height: 1.2;
    }

    /* Hero section */
    .vid-container {
        height: 70vh;
    }

    .inner-text h1 {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .inner-text p {
        font-size: 0.9rem;
        padding: 12px 20px;
    }

    .sends h3 {
        font-size: 13px;
    }

    .sends p {
        font-size: 10px;
    }

    .input-container input {
        width: 250px;
        font-size: 14px;
    }

    .tap {
        width: 250px;
        height: 45px;
        font-size: 14px;
    }

    .below {
        font-size: 12px;
    }
    
    .groupA {
        text-align: center !important;
        display: flex;
        justify-content: center;
        align-items: center;
        float: none !important;
        width: 100% !important;
    }
    
    .groupA h1 {
        text-align: center !important;
        margin-left: 0 !important;
        width: 100% !important;
        font-size: 22px !important;
        left: 0 !important;
        padding-left: 0 !important;
        position: static !important;
    }

    .groupB h4 {
        font-size: 14px;
    }

    /* Comfort section */
    .comfort2 {
        font-size: 20px;
    }

    .comfort2 p {
        font-size: 14px;
    }

    .para1 {
        font-size: 1.3em;
    }

    .para {
        font-size: 13px;
    }

    /* Safety section */
    .convinence h3 {
        font-size: 24px;
    }

    .convinence p {
        font-size: 14px;
    }

    /* Travel section */
    .content-container h1 {
        font-size: 1.8em;
    }

    .content-container p {
        font-size: 1em;
    }

    /* Stats section */
    .figss h2 {
        font-size: 24px;
    }

    .counters-section {
        flex-direction: column;
        gap: 20px;
    }

    .counter {
        font-size: 2.2rem;
    }

    /* Swiper cards */
    .trive {
        font-size: 24px !important;
    }

    .swiper-container {
        height: 300px;
    }

    .swiper-slide {
        height: 260px !important;
    }

    .card {
        height: 230px !important;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .card-text {
        font-size: 12px;
    }

    /* Luxury container */
    .luxury-text-card h3 {
        font-size: 1.8rem;
    }

    .luxury-image-card {
        height: 250px;
    }

    /* Services */
    .serve .serve1 {
        font-size: 2rem !important;
    }

    /* Footer */
    .about-title {
        font-size: 1.8rem;
    }

    /* Contact Us under Our Services adjustments */
    .page-container .info-columns:nth-child(2)::after {
        font-size: 1.3rem;
        margin: 20px 0 12px 0;
    }

    .page-container .info-columns:nth-child(2)::before {
        font-size: 12px;
        line-height: 1.5;
    }


    .marquee-text {
        font-size: 0.9rem;
    }

    .fi {
        margin: 0 5px;
    }
}

/* BREAKPOINT 6: Extra Small Mobile (max-width: 400px) */
@media screen and (max-width: 400px) {

    .site-title {
        font-size: 14px !important;
    }

    .logo {
        width: 50px !important;
        height: 50px !important;
        margin-top: 30px !important;
    }

    #sidebar ul li a {
        font-size: 16px !important;
    }
    .groupA {
        text-align: center !important;
        display: flex;
        justify-content: center;
        align-items: center;
        float: none !important;
        width: 100% !important;
    }
    
    .groupA h1 {
        text-align: center !important;
        margin-left: 0 !important;
        width: 100% !important;
        font-size: 17px !important;
        left: 0 !important;
        padding-left: 0 !important;
        position: static !important;
        margin-top: 20px !important;
    }

    .sends {
        font-size: 10px;
    }

    .request {
        font-size: 9.5px;
    }

    /* .luxury-text-card p {

    padding-right: 17px;
   } */



    /* .page-container {
        background-color: blue;
    } */

    footer {
        height: auto;
        padding-bottom: 30px;
    }

    .page-container {
        padding: 30px 25px;
    }

    .content-wrapper {
        flex-direction: column;
        gap: 35px;
    }

    .about-us-column,
    .info-columns {
        width: 100%;
        padding: 0;
        border-right: none;
    }

    .about-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .about-text {
        font-size: 15px;
    }





    footer .column {
        width: 100%;
        text-align: left;
    }

    footer .column h2,
    footer .column h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    footer .column p,
    footer .column ul li {
        font-size: 14px;
    }

    /* Footer contact/info section */






    footer .footer-item .item-content {
        display: flex;
        flex-direction: column;
    }

    footer .footer-item .item-title {
        font-size: 14px;
        font-weight: bold;
    }

    footer .footer-item .item-text {
        font-size: 12px;
    }



    footer .foot4 {
        display: flex;

        align-items: center !important;
        /* vertically center text */
        gap: 10px;
        /* padding: 10px 15px; */
        width: 100%;
        height: 32px;


        box-sizing: border-box;
        /* background-color: pink !important; */
        /* optional for debugging */
    }

    /* Left side - copyright */
    footer .foot5 {
        flex: 0 0 100%;
        align-items: center !important;
        font-size: 12px;
        /* background-color: purple; */
        height: auto;
        /* optional for debugging */
        position: relative;
        bottom: 5px;
        word-wrap: break-word;
        padding-left: 60px;
    }

    /* Right side - privacy/cookie links */
    footer .privacy {

        display: none;
    }


    /* Responsive footer for screens <= 400px */

}

/* BREAKPOINT 7: iPhone Small (max-width: 375px) */
@media screen and (max-width: 375px) {

    .site-title {
        font-size: 11px;
    }


    .inner-text h1 {
        font-size: 1.6rem;
    }

    .input-container input {
        width: 220px;
    }

    .tap {
        width: 220px;
    }

    .sends h3 {
        font-size: 13px;
    }
    
    .foot5 {
        font-size: 10px;
        padding-left: 1px;
    }

 

}

/* BREAKPOINT 8: Landscape Orientation Fix */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .vid-container {
        height: 120vh;
    }

    .inner-container {
        padding-top: 80px;
    }

    .inner-text h1 {
        font-size: 2rem;
    }

    .inner-text p {
        font-size: 1rem;
    }
}

/* Media Query for 320px-360px screens */
@media screen and (min-width: 320px) and (max-width: 360px) {

    /* Navigation */
    .site-title {
        font-size: 11px !important;
        white-space: normal;
        line-height: 1.2;
        margin-top: 5px;
    }

    .logo {
        width: 40px !important;
        height: 40px !important;
        margin-top: 15px !important;
    }

    /* Hero Section */
    .vid-container {
        height: 60vh;
        border-radius: 0px 0px 30px 30px;
    }

    .inner-container {
        padding: 15px;
    }

    .inner-text h1 {
        font-size: 1.5rem;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .inner-text p {
        font-size: 0.8rem;
        padding: 10px 15px;
        margin: 0 auto 15px;
    }

    /* Parallax Form Section */
    .parallax {
        height: 750px;
    }

    .sends {
        width: 90%;
        margin-top: 30px;
    }

    .sends h3 {
        font-size: 1.2em;
    }

    .input-container input {
        width: 220px;
        padding: 10px 0;
        font-size: 12px;
    }

    .tap {
        width: 220px;
        height: 40px;
        font-size: 12px;
        margin-top: 5px;
    }

    .below {
        font-size: 11px;
        padding: 0 15px;
    }

    /* What We Provide Section */
    .group {
        padding-top: 60px;
    }

    .groupA {
        text-align: center !important;
        display: flex;
        justify-content: center;
        align-items: center;
        float: none !important;
        width: 100% !important;
    }
    
    .groupA h1 {
        text-align: center !important;
        margin-left: 0 !important;
        width: 100% !important;
        font-size: 13px !important;
        left: 0 !important;
        padding-left: 0 !important;
        position: static !important;
    }

    .groupB h4 {
        font-size: 12px;
        line-height: 1.4;
        text-align: center;
    }

    .dial {
        font-size: 11px;
        display: block;
        margin: 10px auto;
        text-align: center;
    }

    /* Car Images */
    .col-lg-4 {
        margin-bottom: 20px;
    }

    .stars i {
        margin-left: 15px;
        font-size: 14px;
    }

    /* Comfort Section */
    .container2 {
        padding-top: 60px;
    }

    .container2 h2.display-3 {
        font-size: 1.5rem !important;
    }

    .container2 .h5 {
        font-size: 0.9rem;
    }

    /* Stats Section */
    .num {
        padding: 30px 0;
    }

    .figss h2 {
        font-size: 20px;
    }

    .figss p {
        font-size: 0.9rem;
    }

    .counters-section {
        flex-direction: column;
        gap: 15px;
    }

    .counter {
        font-size: 2rem;
    }

    .label {
        font-size: 10px;
    }

    /* Swiper Cards */
    .trive {
        font-size: 20px !important;
        padding: 0 10px;
    }

    .swiper-container {
        height: 280px;
    }

    .card {
        padding: 10px;
        height: 220px !important;
    }

    .card-title {
        font-size: 1rem;
    }

    .card-text {
        font-size: 11px;
    }

    /* Footer */
    .page-container {
        padding: 20px 15px;
    }

    .about-title {
        font-size: 1.5rem;
    }

    .about-text {
        font-size: 12px;
    }

    .sub-heading {
        font-size: 1.2rem;
    }

    .footer-item {
        padding: 5px 0;
    }

    .item-title {
        font-size: 12px;
    }

    .item-text {
        font-size: 10px;
    }

    .item-icon {
        display: none;
    }

    .pull {
        font-size: 10px !important;
    }

    .foot5 {
        font-size: 10px;
        padding-left: 20px;
    }

    /* Luxury Container */
    .luxury-text-card h3 {
        font-size: 1.5rem;
    }

    .luxury-text-card p {
        font-size: 14px;
        padding-right: 55px;
    }

    .luxury-image-card {
        height: 200px;
        position: relative;
        right: 50px;

    }



    .luxury-text-card ul {
        margin-right: 70px;

    }

    /* Services */
    .serve .serve1 {
        font-size: 1.8rem !important;
    }

    /* Marquee */
    .marquee-text {
        font-size: 0.8rem;
    }

    .fi {
        width: 1em;
        height: 1em;
        margin: 0 3px;
    }

    /* Hide elements on very small screens */
    .headcall,
    .convinence2 {
        display: none;
    }
}