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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Adjusts anchor target offset */
}

/* Variables */
:root {
    /* --background-gradient: linear-gradient(135deg, #080808 0%, #0a0f0d 100%);
    --primary-color: #ECBA82;
    --title-color: #eee;
    --secondary-color: #183937;
    --secondary-color: #0C3A37;
    --accent-color: #FBAF29;
    --hover-color: #ff7b00; */
    --background-gradient: linear-gradient(#fff 0%, #fff 100%);
    --primary-color: #ECBA82;
    --title-color: #101010;
    --text-color: #333;
    --secondary-color: #183937;
    --secondary-color: #0C3A37;
    --accent-color: #FBAF29;
    --hover-color: #ff7b00;
    --contact-color: #0d1f1a;
    --font-family: 'Poppins', sans-serif;
    --text-family: 'Inter', sans-serif;
}

/* Body */
body {
    margin: 0;
    font-family: var(--font-family);
    font-weight: 300;
    font-optical-sizing: auto;
    font-style: normal;
    background: var(--background-gradient);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
    font-family: var(--font-family);
}

p, li, details, figcaption {
    font-family: var(--text-family);
    line-height: 1.5;
    text-wrap: pretty;
    max-width: 65ch;
}

/* Headings */
h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 20px;
    text-align: left;
}

h3 {
    font-size: 1.2rem;
}

/* Links */
a {
    text-decoration: none;
    color: var(--accent-color);
}

/* Navbar */
.navbar {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    background-color: var(--secondary-color);
    border-bottom: 2px solid var(--accent-color);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    padding: 10px 20px;
}

.navbar-logo {
    margin-top: 10px;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 1001;
}

.navbar-menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar-menu li {
    display: inline;
}

.navbar-menu a {
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.navbar-menu a:hover,
.navbar-menu a.active {
    color: #eee;
    border-bottom: 2px solid #eee;
}

.navbar-toggle {
    display: none;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
}

@media (max-width: 1150px) {
  .navbar .container {
    justify-content: space-between;
    margin: 10px 0 0 0;
    padding-left: 0;
    padding-right: 0;
}

.navbar-menu {
    flex-direction: column;
    align-items: start;
    gap: 20px;
    width: 130px;
    display: none;
    position: absolute;
    top: 90px;
    right: 5px;
    background-color: var(--secondary-color);
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--accent-color);
}

.navbar-menu.active {
    display: flex;
    align-items: left;
}

.navbar-toggle {
    display: block;
}

.navbar-menu a {
    padding: 10px 0;
    width: 100%;
}

.navbar-sub-menu{
    right: 20px;
    width: 120px;
}
}

@media (max-width: 768px) {
    .navbar .container {
        justify-content: space-between;
        margin: 10px 0 0 0;
    }

    .navbar-menu {
        gap: 10px;
        width: 110px;
        padding: 15px;
        top: 90px;
    }
    .navbar-toggle {
        display: block;
    }

    .navbar-menu a {
        font-size: 0.9rem;
    }
}

.navbar-sub-menu{
    width: 150px;
    display: none;
    position: absolute;
    background-color: var(--secondary-color);
    padding: 0 1rem 0 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--accent-color);
}

.navbar-sub-menu ul {
    position: relative;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
    padding: 10px 0 10px 0;
}

.navbar-menu li:hover .navbar-sub-menu {
    display: block;
}

.navbar-sub-menu:hover {
    display: block;
}

/* Hero */
.new-hero {
    width: 100%;
    height: 100vh;
    padding: 40px;
    display: flex;
    justify-content: left;
    align-items: center;
    background-image: url(media/bg_cancun4.jpg);
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    color: #eee;
    padding: 20px;
    border-radius: 12px;
}

.hero-content h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.6rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    font-family: 'Cormorant Garamond', serif;
}

.hero-content a {
    display: inline-block;
    padding: 0.8rem 1.4rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.hero-content a:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .new-hero {
        padding: 20px;
    }

    .hero-content {
        bottom: 0;
        padding: 10px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-content a {
        padding: 10px 20px;
        font-size: 1rem;
    }
}
/* About Us */

.about-us-section {
    margin: 1rem 0;
    text-align: left;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
}

.about-us-content {
    padding: 20px;
    text-align: left;
}

.about-us-content h2 {
    margin-top: 0px;
}

.about-us-content p {
    font-size: 1.2rem;
    margin: 1rem 0;
    color: #333;
}

.about-video {
    padding: 20px 0;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.eventvideo {
    padding-bottom: 1rem;
}

@media (max-width: 900px) {
    .about-us-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-us-content {
        padding-bottom: 0;
    }

    .about-us-content p {
        font-size: 1rem;
    }

    .about-video {
        padding-top: 0;
        order: 2;
    }
}

.ourServices-content {
    width: 100%;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--secondary-color);
}

.lines {
    width: 100%;
    padding: 3rem;
    border-top: 1px solid var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ourServices-content p{
    color: #ccc;
    text-align: center;
}

.ourServices-content h2{
    color: #fff;
    margin: 0 0 0.5rem 0;
}

.servicesMenu {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.serviceMenu-card {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    text-align: center;
}

.card-content {
  display: flex;
  flex-direction: column;
  position: relative;
}

.image-wrapper {
    position: relative;
    display: inline-block;
}

.image-wrapper img {
  display: block;
  max-width: 100%;
  height: auto;
}

.hover-description {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    color: #505050;
    font-size: 0.8rem;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    width: 80%;
    text-align: left;
}

.hover-description h4{
    margin-top: 0.4rem;
    text-align: left;
    transition: all 0.3s ease;
}

.hover-description h4:hover{
    color: #000;
}

.image-wrapper:hover .hover-description {
    opacity: 1;
    pointer-events: auto;
}

.serviceMenu-card h3{
    color: #0a0f0d;
    font-size: 1.3rem;
    margin-bottom: -0.5rem;
}

.serviceMenu-card img{
    padding: 1rem;
    width: 250px;
    height: 250px;
    border-radius: 1.5rem;
    object-fit: cover;
}

.serviceMenu-card .small-button {
    background-color: rgba(0, 0, 0, 0.4);
}

.serviceMenu-card .small-button:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.nav-logo {
    width: 150px;
    object-fit: cover;
}

.container {
    max-width: 1200px;
    width: 90%;
}

.section-title {
    color: var(--title-color);
    margin: 20px 0 0 0;
}

.profile-section {
    padding-bottom: 20px;
    border-bottom: 2px solid var(--accent-color);
}

.profile-section img {
    margin-top: 20px;
    width: 600px;
    max-width: 80%;
    object-fit: cover;
}

.profile-section h1 {
    margin: 0 0 5px;
    color: #eee;
}

.social-icons {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px 0 0 0;
}

.social-icons i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-icons i:hover {
    color: var(--hover-color);
} 

/* Swiper */

.swiper {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.swiper-wrapper {
    width: 30px;
}

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

.swiper-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 2rem;
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
}

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

/* Carousel */
.carousel-container {
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 20px;
}

.no-border-no-padding-bottom {
    border-bottom: 0;
    padding-bottom: 0;
}

.carousel-container .section-title {
    margin: 20px 0 10px 0;
}

.carousel-wrapper {
    width: 100%;
    /* padding-bottom: 20px;
    border-bottom: 2px solid var(--accent-color); */
    position: relative;
}

.carousel-wrapper i {
    font-size: 2rem;
    color: var(--secondary-color);
    height: 50px;
    width: 50px;
    background-color: #eee;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
    transition: all 0.3s ease;
}

.carousel-wrapper i:first-child {
    left: -25px;
}

.carousel-wrapper i:last-child {
    right: -25px;
}

.carousel-wrapper i:first-child:hover {
    color: #0d1f1a;
    left: -30px;
}

.carousel-wrapper i:last-child:hover {
    color: #0d1f1a;
    right: -30px;
}

.carousel,
.rentals-carousel,
.restaurants-carousel,
.tours-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 2.5) - 20px);
    gap: 20px;
    border-radius: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.restaurants-carousel {
    padding-bottom: 20px;
}

.carousel.dragging,
.rentals-carousel.dragging,
.restaurants-carousel.dragging,
.tours-carousel.dragging {
    scroll-snap-type: none;
    cursor: grabbing;
    scroll-behavior: auto;
    user-select: none;
}

.carousel-card,
.rentals-carousel-card,
.restaurants-carousel-card,
.tours-carousel-card {
    list-style: none;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    flex: 0 0 auto;
    cursor: pointer;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}

.carousel-card {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.rentals-carousel-card,
.restaurants-carousel-card,
.tours-carousel-card {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.carousel-card img,
.rentals-carousel-card img,
.restaurants-carousel-card img,
.tours-carousel-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.carousel-card h3,
.rentals-carousel-card h3,
.restaurants-carousel-card h3,
.tours-carousel-card h3 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.card-content p {
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.small-button {
    display: inline-block;
    text-decoration: none;
    color: var(--accent-color);
    background-color: var(--secondary-color);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    user-select: none;
    align-self: flex-start;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.small-button:hover {
    background-color: #0d1f1a;
    transform: scale(1.06);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dark-button {
    background-color: #0d1f1a;
    border: none;
    outline: none;
    
}

.dark-button:hover {
    background-color: #0a0f0d;
}

.border-bottom {
    border-bottom: 2px solid var(--accent-color);
}

.onerem-padding-bottom {
    padding-bottom: 1rem;
}

/* Services Sections */
.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 10px 0 20px 0;
    border-bottom: 2px solid var(--accent-color);
}

.service {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}

.service img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service h3 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Drivers */

.driver-container {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

.driver-card {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}

.driver-card img {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    object-position: top;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.driver-card h3 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.driver-card a:hover {
    background-color: #0d1f1a;
}

/* Contact */
.contact-section {
    width: 100%;
    padding: 20px 0 50px 0;
    text-align: left;
}

.contact-section .section-title {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.contact-section p {
    color: var(--contact-color);
    margin-bottom: 20px;
}

.contact-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

.contact-info-column {
    flex: 1;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    color: var(--contact-color);
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    align-self: flex-start;
}

.social-icons-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.social-icons-column .social-icons {
    padding: 0;
    margin: 0;
}

.social-icons-column .social-icons i {
    font-size: 2rem;
}

.contact-form-container {
    background-color: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.required {
    color: #E53935;
    margin-left: 2px;
}

input,
textarea,
select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--contact-color);
    border-radius: 5px;
    transition: all 0.3s ease;
}

select {
    background-color: var(--white);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234A90E2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1em;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--hover-color);
    box-shadow: 0 0 0 2px rgba(255, 196, 0, 0.2);
}

textarea {
    height: 120px;
    resize: vertical;
}

/* Footer */
.footer {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(media/bg_cancun.webp);
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 4rem 0 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-grid {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    width: 150px;
    margin-top: 0.3rem;
    grid-column: 1;
}

.footer-section h4 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 6rem 0 1rem;
}

.footer-social a {
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-bottom p i {
    color: var(--accent-color);
}

.copyright {
    margin-bottom: 0.5rem;
}

.copyright-line {
    display: inline;
}

.developer-signature {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    font-size: 0.85rem;
}

.developer-signature a {
    text-decoration: none;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, var(--accent-color), #dbb22c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
    position: relative;
    display: inline-block;
    font-style: normal;
}

.developer-signature a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(90deg, var(--accent-color), #dbb22c);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.developer-signature a:hover {
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(74, 144, 226, 0.2);
}

.developer-signature a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.developer-signature a {
    animation: gradientFlow 3s ease infinite;
    background-size: 200% auto;
}

.footer-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}


/* Whatsapp Floating Button */

.float-button {
    position: fixed;
    transform: translate(108px, 0px);
    bottom: 4%;
    right: 0;
    width: 160px;
    padding: 5px 0;
    padding-left: 4px;
    overflow: hidden;
    background-color: #25d366;
    color: #fff;
    border-radius: 40px 0 0 40px;
    z-index: 10;
    transition: all 0.5s ease-in-out;
    vertical-align: middle;
  }
  
  .float-button:hover {
    transform: translate(0px, 0px);
  }
  
  .float-button span {
    color: white;
    font-size: 13px;
    position: absolute;
    line-height: 16px;
    font-weight: bolder;
  }
  
  .float-button i {
    font-size: 30px;
    color: white;
    line-height: 30px;
    padding: 10px;
    transform: rotate(0deg);
    transition: all 0.5s ease-in-out;
    text-align: center;
  }

@media (max-width: 768px) {
    body {
        margin: 0;
    }

    h1 {
        font-size: 1rem;
    }

    h2 {
        font-size: 1rem;
        letter-spacing: normal;
    }

    h3 {
        font-size: 0.8rem;
    }

    .card-content p {
        font-size: 0.8rem;
        margin-bottom: 0;
    }

    .section-title {
        margin: 0 0 10px 0;
        padding: 10px 0 0 0;
    }

    .social-icons i {
        font-size: 1.5rem;
    }

    .container {
        padding: 10px;
        margin-top: 20px;
    }

    .profile-section img {
        width: 100%;
        margin: 0;
    }

    .carousel-wrapper {
        padding-bottom: 20px;
    }

    .carousel-wrapper i {
        display: none;
    }

    .carousel,
    .rentals-carousel,
    .restaurants-carousel,
    .tours-carousel {
        grid-auto-columns: calc((100% / 1.5) - 20px);
    }

    .carousel-card,
    .rentals-carousel-card,
    .restaurants-carousel-card,
    .tours-carousel-card {
        padding: 10px;
    }

    .carousel-card img,
    .rentals-carousel-card img,
    .restaurants-carousel-card img,
    .tours-carousel-card img {
        height: 200px;
    }

    .driver-card {
        padding: 10px;
    }

    .small-button {
        padding: 6px 10px;
        font-size: 0.7rem;
    }

    .footer .footer-content {
        flex-direction: column;
        align-items: center;
        font-size: 0.8rem;
    }

    .spacer {
        height: 80px;
    }

    .services {
        grid-template-columns: repeat(2, 1fr);
    }

    .service {
        padding: 10px;
    }

    .service img {
        height: 150px;
    }

    .contact-columns {
        display: inline-block;
        width: 100%;
    }

    .social-icons-column {
        align-items: flex-start;
        padding-top: 20px;
    }
}