/*
Theme Name: MB Taxi Tivat
Theme URI: https://cmc-agency.me
Author: CMC AGENCY
Author URI: https://cmc-agency.me
Description: MB Taxi Tivat is a custom ultra-minimalist theme for taxi services.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mb-taxi-tivat
Tags: taxi, transport, minimal, business
*/

/* ===== FONTS ===== */
@font-face {
    font-family: 'Mont';
    src: url('./Mont-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Mont';
    src: url('./Mont-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Mont';
    src: url('./Mont-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Mont', sans-serif;
    color: #1A1A1A;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

.hide, .hidden {
    display: none !important;
}

/* ===== HEADER STYLES ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #1A1A1A;
    height: 80px;
    z-index: 1000;
    width: 80%;
    margin: auto;
    
    border-radius: 0px 0px 50px 50px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 5%;
    margin: 0 auto;
    border-radius: 0px 0px 50px 50px;
    position: relative;
}

.logo-container {
    height: 100%;
    display: flex;
    align-items: center;
}

.logo {
  height: 123%;
  margin-bottom: -8px;
}

.logo-link {
    width: 110px;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: #ffffffb7;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 400;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: #FFCC00;
}

.contact-widget, .hero-subtext {
    display: flex;
    align-items: center;
    color: #FFCC00;
    gap: 0px;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
    text-decoration: none;
}

.contact-widget:hover, .hero-subtext:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    text-decoration: none;
    color: #FFCC00;
}

.contact-widget:hover .phone-icon svg {
    transform: rotate(29deg);
}

.phone-icon-column {
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-icon svg {
  width: 40px;
  height: 40px;
  transform: rotate(19deg);
  transition: transform 0.3s ease;
}

.contact-text-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.contact-label {
  font-size: 8px;
  text-transform: uppercase;
  color: #FFCC00;
  font-weight: 300;
  margin-bottom: -5px;
}

/* ===== WPML LANGUAGE FLAGS ===== */
.language-flags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
}


.language-flag {
    display: inline-block;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.language-flag:hover {
    transform: scale(1.1);
    opacity: 1;
}

.language-flag.active {
    opacity: 1;
    transform: scale(1.05);
}


.contact-number {
    font-size: 44px;
    font-weight: bold;
    background: linear-gradient(to right, #FFCC00, #FFF8E7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 800px;
    background-image: url('./images/background-hero-tivat-taxi.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 10%;

}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(200, 160, 0, 0) 80%);
    z-index: 1;
}

.hero-content,
.hero-car {
    position: relative;
    z-index: 2;
}

.hero-text {
    margin-bottom: 50px;
    width: fit-content;
}

.hero-headline {
    color: #FFFFFF;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 0px 2px 4px rgba(0,0,0,0.3);
}


.hero-subtext:hover .hero-phone-icon svg {
    transform: rotate(29deg);
}

.hero-phone-icon-column {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-phone-icon svg {
    width: 90px;
    height: 90px;
    transform: rotate(19deg);
    transition: transform 0.3s ease;
}

.hero-contact-text-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.hero-label {
    font-size: 16px;
    text-transform: uppercase;
    color: #FFCC00;
    font-weight: 300;
    margin-bottom: -5px;
}

.hero-phone {
    font-size: 110px;
    font-weight: bold;
    background: linear-gradient(to right, #FFCC00, #FFF8E7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.hero-car {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 100%;
    pointer-events: none;

}

.hero-car img {
    width: 100%;
    filter: drop-shadow(0px 10px 30px rgba(0,0,0,0.5));
    pointer-events: none;

}

/* ===== ABOUT STATS SECTION ===== */
.about-stats-section {
    background-color: #FFFFFF;
    padding: 100px 10% 80px 10%;
}

.stats-container {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.stats-left {
    flex: 1;
}

.big-number {
    color: #FFCC00;
    font-size: 220px;
    line-height: 1;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.number-scroll {
    position: relative;
    height: 220px;
    overflow: hidden;
    display: inline-block;
}

.number-list {
    display: flex;
    flex-direction: column;
    animation: scrollNumbers 3s ease-in-out forwards;
}

.number-list span {
    display: block;
    height: 220px;
    line-height: 220px;
    font-size: 220px;
    font-weight: 700;
    color: #FFCC00;
    text-align: center;
}

.plus-sign {
    font-size: 120px;
    font-weight: 700;
    color: #FFCC00;
    line-height: 1;
    margin-left: -10px;
}

@keyframes scrollNumbers {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-2200px);
    }
}

.stats-right {
    flex: 2;
}

.stats-right h2 {
  color: #1A1A1A;
  font-size: 46px;
  line-height: 47px;
  font-weight: bold;
  text-transform: uppercase;
}

.about-content {
    margin: 0 auto;
}

.about-content p {
    color: #444444;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ===== AIRPORT TRANSFERS SECTION ===== */
.airport-transfers-section {
    background-image: url('/wp-content/uploads/2025/12/airport-tivat.jpg');
    background-size: cover;
    position: relative;
    padding: 80px 5%;
}

.airport-transfers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.5) 0%, 
        rgba(0, 0, 0, 0) 50%, 
        rgba(0, 0, 0, 0) 50%, 
        rgb(255, 255, 255) 80%);
    z-index: 1;
    pointer-events: none;
}


.transfers-header,
.transfers-cards {
    position: relative;
    z-index: 2;
}

.transfers-header {
    text-align: center;
    margin-bottom: 50px;
}

.transfers-header h2 {
    color: #FFFFFF;
    font-size: 24px;
    margin-bottom: 10px;
    text-shadow: 0px 2px 4px rgba(0,0,0,0.1);
}

.transfers-header h3 {
  font-size: 66px;
  font-weight: bold;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  background: linear-gradient(to right, #FFCC00, #FFFFFF);
  -webkit-background-clip: text;
  width: fit-content;
  margin: auto;
  background-clip: text;
  color: transparent;
}

.transfers-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.transfer-card {
    background: #1A1A1A;
    border-radius: 20px;
    overflow: hidden;
    color: #FFFFFF;
    transition: transform 0.3s ease;
}

.transfer-card:hover {
    transform: translateY(-5px);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

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

.card-content {
    padding: 30px 20px;
}

.card-content h4 {
    font-size: 35px;
    margin-bottom: 5px;
    background: linear-gradient(to right, #FFCC00, #FFFFFF);
    -webkit-background-clip: text;
    background-clip: text;
    width: fit-content;
    color: transparent;

}

.card-content p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.card-button {
    border: 1px solid #FFCC00;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.card-button:hover {
    background-color: #FFCC00;
    color: #1A1A1A;
}

/* ===== TEXT BANNER SECTION ===== */
.text-banner-section {
    background-color: #FFFFFF;
    padding: 80px 10%;
    text-align: center;
}

.banner-content {
    max-width: 80%;
    margin: 0 auto;
}

.banner-content h2 {
  font-size: 35px;
  line-height: 40px;
  font-weight: bold;
  color: #1A1A1A;
  margin-bottom: 46px;
}

.banner-content h2 span {
    color: #FFCC00;
}

.banner-content p {
    color: #444444;
    font-size: 16px;
    line-height: 1.6;
}

/* ===== LIMO SERVICES SECTION ===== */
.limo-services-section {
    background-color: #131313;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    padding: 100px 5% 50px 5%;
    position: relative;
    z-index: 5;
}

.limo-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.limo-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}




.limo-content {
    flex: 1;
    color: #FFFFFF;
    padding-left: 50px;
}

.limo-content h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    background: linear-gradient(to right, #FFCC00, #FFFFFF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    width: fit-content
    ;
}

.limo-content h3 {
  font-size: 35px;
  line-height: 40px;
  font-weight: bold;
  margin-bottom: 20px;
}

.limo-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.limo-button {
  border: 1px solid #FFCC00;
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 18px;
  transition: all 0.3s ease;
}

.limo-button:hover {
    background-color: #FFFFFF;
    color: #111111;
}

/* ===== FEATURES GRID SECTION ===== */
.features-grid-section {
    background-color: #131313;
    padding: 20px 10% 80px 10%;
    border-bottom: 1px solid #333333;
}

.features-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 80px;
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    color: #FFFFFF;
    font-size: 20px;
    gap: 15px;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ffcc00;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    margin-right: 15px;
    flex-shrink: 0;
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
    background-color: #FFCC00;
    padding: 40px 10%;
}

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

.partner-logo {
    height: 40px;
    object-fit: contain;
}

/* ===== SHOWCASE IMAGE SECTION ===== */
.showcase-image-section {
    width: 100%;
    height: 45vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.showcase-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== FOOTER SECTION ===== */
.site-footer {
    background-color: #000000;
    padding: 40px 10%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    color: #FFFFFF;
}

.footer-logo {
    background-color: #FFCC00;
    padding: 10px;
}

.logo-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-text {
    font-weight: bold;
    font-size: 24px;
    color: #000000;
    line-height: 1;
}

.footer-contact {
    text-align: left;
}

.contact-title {
    color: #FFCC00;
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-info div {
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 1.8;
}

.contact-info a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #FFCC00;
    text-decoration: none;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .site-header {
        width: 95%;
    }

    .logo-link {
        width: 57px;
    }

    .header-container {
        padding: 0 20px;
    }

    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #1A1A1A;
        border-radius: 50px;
        margin-top: 20px;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }

.main-navigation .language-flags {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

    .main-navigation.active {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .main-navigation a {
        font-size: 14px;
        padding: 10px 0;
        display: block;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .main-navigation a:last-child {
        border-bottom: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .hero-section {
        padding-left: 5%;
        height: 400px;
        overflow: hidden;
    }

    .hero-headline {
        font-size: 32px;
    }

    .hero-phone {
        font-size: 50px;
    }

    .hero-car {
        width: 155%;
        right: -20px;
        bottom: -20px;
    }

    .stats-container {
        flex-direction: column;
        gap: 20px;
    }

    .big-number {
        font-size: 100px;
        text-align: center;
    }

    .stats-right h2 {
        font-size: 24px;
        text-align: center;
    }

    .transfers-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .limo-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .yellow-circle {
        width: 300px;
        height: 300px;
    }

    .limo-content {
        padding-left: 0;
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .partners-container {
        flex-direction: column;
        gap: 20px;
    }

    .partner-logo {
        height: 30px;
    }

    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-contact {
        text-align: center;
    }
}

/* ===== ABOUT PAGE STYLES ===== */

/* About Hero Section */
.about-hero-section {
    background-color: #1A1A1A;
    padding: 120px 10% 80px 10%;
    text-align: center;
    color: #FFFFFF;
}

.about-hero-title {
    font-size: 60px;
    font-weight: 900;
    color: #FFCC00;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.about-hero-text p {
    font-size: 24px;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Main About Section */
.main-about-section {
    background-color: #FFFFFF;
    padding: 80px 10%;
    text-align: center;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text-content {
    font-size: 20px;
    line-height: 1.6;
    color: #1A1A1A;
    max-width: 800px;
    margin: 0 auto;
}

.about-text-content p {
    margin-bottom: 30px;
}

.about-text-content p:last-child {
    margin-bottom: 0;
}

/* More Than Taxi Section */
.more-than-taxi-section {
    background-color: #1A1A1A;
    padding: 80px 10%;
}

.more-than-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.more-than-header {
    margin-bottom: 60px;
}

.more-than-header h2 {
    font-size: 40px;
    font-weight: 900;
    color: #FFCC00;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.more-than-header p {
    font-size: 18px;
    line-height: 1.6;
    color: #FFFFFF;
    max-width: 800px;
    margin: 0 auto;
}

.fleet-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.fleet-card {
    background-color: #FFFFFF;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.fleet-card-icon {
    font-size: 50px;
    color: #FFCC00;
    margin-bottom: 20px;
    display: block;
}

.fleet-card-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.fleet-card-content p {
    font-size: 16px;
    line-height: 1.5;
    color: #666666;
    margin: 0;
}

/* Services Standards Section */
.standards-section {
    background-color: #FFFFFF;
    padding: 80px 10%;
}

.standards-container {
    max-width: 1000px;
    margin: 0 auto;
}

.standards-container h2 {
    font-size: 40px;
    font-weight: 900;
    color: #1A1A1A;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.standard-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background-color: #F8F8F8;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.standard-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.standard-icon {
    color: #FFCC00;
    font-size: 24px;
    margin-top: 5px;
    flex-shrink: 0;
}

.standard-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    line-height: 1.4;
    margin: 0;
}

/* Call to Action Section */
.about-cta-section {
    background: linear-gradient(135deg, #FFCC00 0%, #F4B942 100%);
    padding: 80px 10%;
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 900;
    color: #1A1A1A;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cta-content p {
    font-size: 20px;
    color: #1A1A1A;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: #1A1A1A;
    color: #FFCC00;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background-color: #2A2A2A;
}

.cta-phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-phone-icon svg {
    width: 24px;
    height: 24px;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero-section {
        padding: 100px 5% 60px 5%;
    }

    .about-hero-title {
        font-size: 40px;
    }

    .about-hero-text p {
        font-size: 18px;
    }

    .main-about-section {
        padding: 60px 5%;
    }

    .about-text-content {
        font-size: 16px;
    }

    .more-than-taxi-section {
        padding: 60px 5%;
    }

    .more-than-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .more-than-content h2 {
        font-size: 30px;
    }

    .standards-section {
        padding: 60px 5%;
    }

    .standards-container h2 {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .standards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .standard-item {
        padding: 15px;
    }

    .about-cta-section {
        padding: 60px 5%;
    }

    .cta-content h2 {
        font-size: 30px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }
}

/* ===== GALLERY PAGE STYLES ===== */

/* Gallery Hero Section */
.gallery-hero-section {
    background-color: #1A1A1A;
    padding: 120px 10% 80px 10%;
    text-align: center;
    color: #FFFFFF;
}

.gallery-hero-title {
    font-size: 60px;
    font-weight: 900;
    color: #FFCC00;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.gallery-hero-text p {
    font-size: 24px;
    line-height: 1.4;
    opacity: 0.9;
}

/* Gallery Section */
.gallery-section {
    background-color: #FFFFFF;
    padding: 80px 10%;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.no-gallery {
    text-align: center;
    font-size: 18px;
    color: #666666;
    padding: 40px;
}

/* Lightbox Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    cursor: zoom-out;
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #FFFFFF;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #FFCC00;
}

#lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    cursor: default;
}

.lightbox-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.lightbox-prev, .lightbox-next {
    background-color: rgba(0, 0, 0, 0.5);
    color: #FFFFFF;
    border: none;
    padding: 15px 20px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background-color: #FFCC00;
    color: #1A1A1A;
}

/* Responsive Design for Gallery */
@media (max-width: 768px) {
    .gallery-hero-section {
        padding: 100px 5% 60px 5%;
    }

    .gallery-hero-title {
        font-size: 40px;
    }

    .gallery-hero-text p {
        font-size: 18px;
    }

    .gallery-section {
        padding: 60px 5%;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }

    .gallery-item img {
        height: 200px;
    }

    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }

    #lightbox-image {
        max-width: 95%;
        max-height: 80%;
    }

    .lightbox-navigation {
        padding: 0 10px;
    }

    .lightbox-prev, .lightbox-next {
        padding: 10px 15px;
        font-size: 18px;
    }
}

/* ===== FOOTER NAVIGATION STYLES ===== */

.footer-navigation {
    flex: 1;
    margin: 0 40px;
    display: flex;
    justify-content: center;
}

.footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 300px;
}

.footer-nav-column {
    display: flex;
    flex-direction: column;
}

.footer-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav-menu li {
    margin: 0;
}

.footer-nav-menu a {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    transition: color 0.3s ease;
    padding: 4px 0;
    display: inline-block;
}

.footer-nav-menu a:hover {
    color: #FFCC00;
}

/* Responsive footer navigation */
@media (max-width: 768px) {
    .footer-navigation {
        margin: 30px 0;
        order: 2;
        width: 100%;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: none;
    }

    .footer-nav-menu {
        gap: 6px;
    }

    .footer-nav-menu a {
        font-size: 12px;
    }
}

/* ===== CONTACT TEMPLATE STYLES ===== */

.contact-hero-section {
    background-color: #1A1A1A;
    padding: 120px 10% 80px 10%;
    text-align: center;
    color: #FFFFFF;
}

.contact-hero-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-hero-text p {
    font-size: 18px;
    opacity: 0.8;
    font-weight: 400;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 10%;
    background-color: #FFFFFF;
}

.contact-info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-info-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.contact-info-header p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.contact-info-card {
    background-color: #FFFFFF;
    border: 2px solid #F0F0F0;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #FFCC00;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFCC00 0%, #F4B942 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 18px;
    color: #1A1A1A;
}

.contact-info-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.contact-info-content p {
    color: #666;
    margin: 5px 0;
}

.contact-info-content a {
    color: #FFCC00;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: #F4B942;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 10%;
    background-color: #F8F8F8;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-form-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.contact-form-header p {
    font-size: 16px;
    color: #666;
}

.contact-form {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Mont', sans-serif;
    transition: all 0.3s ease;
    background-color: #FFFFFF;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFCC00;
    box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    background: linear-gradient(135deg, #FFCC00 0%, #F4B942 100%);
    color: #1A1A1A;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Mont', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.3);
}

/* Emergency Contact Section */
.emergency-contact-section {
    padding: 60px 10%;
    background-color: #1A1A1A;
    color: #FFFFFF;
}

.emergency-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
}

.emergency-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.emergency-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF4444 0%, #FF6666 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #FFFFFF;
}

.emergency-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.emergency-text p {
    color: #CCCCCC;
    font-size: 16px;
}

.emergency-button {
    background: linear-gradient(135deg, #FF4444 0%, #FF6666 100%);
    color: #FFFFFF;
    padding: 20px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.emergency-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.3);
}

/* Contact CTA Section */
.contact-cta-section {
    background: linear-gradient(135deg, #FFCC00 0%, #F4B942 100%);
    padding: 80px 10%;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 900;
    color: #1A1A1A;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-content p {
    font-size: 18px;
    color: #1A1A1A;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    background-color: #1A1A1A;
    color: #FFCC00;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cta-phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-phone-icon svg {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero-section,
    .contact-info-section,
    .contact-form-section,
    .emergency-contact-section,
    .contact-cta-section {
        padding-left: 5%;
        padding-right: 5%;
    }

    .contact-hero-title {
        font-size: 36px;
    }

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .contact-info-card {
        padding: 20px;
    }

    .contact-info-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
        margin-bottom: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .emergency-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .emergency-content {
        justify-content: center;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .contact-info-header h2,
    .contact-form-header h2,
    .cta-content h2 {
        font-size: 28px;
    }
}

/* ===== LIMO PAGE STYLES ===== */

/* Limo Hero Section */
.limo-hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 200px 10% 120px 10%;
    text-align: center;
    color: #FFFFFF;
    position: relative;
}

.limo-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.limo-hero-content {
    position: relative;
    z-index: 2;
}

.limo-hero-title {
    font-size: 60px;
    font-weight: 900;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.limo-hero-text p {
    font-size: 24px;
    opacity: 0.9;
    font-weight: 400;
    margin-bottom: 10px;
}

.limo-hero-subtitle {
    font-size: 18px !important;
    opacity: 0.8 !important;
    font-weight: 300 !important;
}

/* VIP Intro Section */
.vip-intro-section {
    padding: 80px 10%;
    background-color: #FFFFFF;
}

.vip-intro-container {
    max-width: 1200px;
    margin: 0 auto;
}

.vip-intro-header {
    text-align: center;
    margin-bottom: 60px;
}

.vip-intro-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 20px;
}

.vip-intro-header p {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Fleet Section */
.fleet-section {
    padding: 80px 10%;
    background-color: #F8F9FA;
}

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

.fleet-header {
    text-align: center;
    margin-bottom: 60px;
}

.fleet-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.fleet-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.fleet-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.fleet-image-container {
    height: 300px;
    overflow: hidden;
}

.fleet-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fleet-card:hover .fleet-image {
    transform: scale(1.05);
}

.fleet-content {
    padding: 40px 30px;
}

.fleet-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.fleet-subtitle {
    font-size: 16px;
    color: #FFCC00;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.fleet-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.fleet-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fleet-feature i {
    color: #FFCC00;
    font-size: 16px;
    width: 20px;
}

.fleet-feature span {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.fleet-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* VIP Services Section */
.vip-services-section {
    padding: 80px 10%;
    background-color: #FFFFFF;
}

.vip-services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.vip-services-header {
    text-align: center;
    margin-bottom: 60px;
}

.vip-services-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.vip-services-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.vip-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.vip-service-card {
    background-color: #F8F9FA;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #E9ECEF;
}

.vip-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #FFCC00;
}

.vip-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FFCC00 0%, #F4B942 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    font-size: 24px;
    color: #FFFFFF;
}

.vip-service-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.vip-service-content p {
    font-size: 16px;
    line-height: 1.5;
    color: #666;
}

/* Limo CTA Section */
.limo-cta-section {
    padding: 80px 10%;
    background-color: #1A1A1A;
    text-align: center;
    color: #FFFFFF;
}

.limo-cta-section .cta-content h2 {
    color: #FFFFFF;
    margin-bottom: 20px;
}

.limo-cta-section .cta-content p {
    color: #CCCCCC;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design for Limo Page */
@media (max-width: 768px) {
    .limo-hero-section {
        padding: 150px 5% 80px 5%;
    }

    .limo-hero-title {
        font-size: 40px;
    }

    .limo-hero-text p {
        font-size: 18px;
    }

    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .fleet-content {
        padding: 30px 20px;
    }

    .fleet-image-container {
        height: 200px; /* Plus court pour un format rectangulaire */
        border-radius: 8px; /* Bordures arrondies légères */
        overflow: hidden;
    }

    .fleet-image {
        border-radius: 8px; /* Bordures arrondies légères sur l'image aussi */
    }

    .fleet-features {
        grid-template-columns: 1fr;
    }

    .vip-services-grid {
        grid-template-columns: 1fr;
    }

    @media (min-width: 769px) and (max-width: 1024px) {
        .vip-services-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    .vip-intro-header h2,
    .fleet-header h2,
    .vip-services-header h2 {
        font-size: 28px;
    }
}

/* ===== FLOATING RIDE BUBBLE STYLES ===== */
.floating-ride-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #FFCC00 0%, #FFAA00 100%);
    color: #1A1A1A;
    border-radius: 50px;
    padding: 15px 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    border: none;
    animation: pulse 2s infinite;
}

.floating-ride-bubble:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.floating-ride-bubble:active {
    transform: scale(0.95);
}

.bubble-icon {
    font-size: 20px;
    display: flex;
    align-items: center;
}

.bubble-text {
    font-family: 'Mont', sans-serif;
    white-space: nowrap;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 8px 35px rgba(255, 204, 0, 0.5);
    }
    100% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
}

/* ===== RIDE MODAL STYLES ===== */
.ride-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ride-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.ride-modal {
    background: white;
    border-radius: 20px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.ride-modal-overlay.active .ride-modal {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px 20px;
    border-bottom: 1px solid #eee;
}

.modal-header h3 {
    font-family: 'Mont', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #1A1A1A;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.modal-content {
    padding: 30px;
    text-align: center;
}

.modal-icon {
    font-size: 60px;
    color: #FFCC00;
    margin-bottom: 20px;
}

.modal-description {
    font-family: 'Mont', sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.modal-contacts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-phone-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.modal-phone-btn.primary {
    background: linear-gradient(135deg, #FFCC00 0%, #FFAA00 100%);
    color: #1A1A1A;
}

.modal-phone-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.4);
}

.modal-phone-btn.secondary {
    background: white;
    color: #1A1A1A;
    border-color: #FFCC00;
}

.modal-phone-btn.secondary:hover {
    background: #FFCC00;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.3);
}

.phone-icon {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.modal-phone-btn.secondary .phone-icon {
    background: rgba(26, 26, 26, 0.1);
}

.phone-info {
    text-align: left;
    flex: 1;
}

.phone-label {
    display: block;
    font-family: 'Mont', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    opacity: 0.8;
}

.phone-number {
    display: block;
    font-family: 'Mont', sans-serif;
    font-weight: 700;
    font-size: 18px;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    .floating-ride-bubble {
        bottom: 20px;
        right: 20px;
        padding: 12px 18px;
        font-size: 13px;
    }

    .bubble-icon {
        font-size: 18px;
    }

    .ride-modal {
        margin: 20px;
        width: calc(100% - 40px);
    }

    .modal-header {
        padding: 20px 25px 15px;
    }

    .modal-header h3 {
        font-size: 20px;
    }

    .modal-content {
        padding: 25px 20px;
    }

    .modal-icon {
        font-size: 50px;
    }

    .modal-description {
        font-size: 15px;
    }

    .modal-phone-btn {
        padding: 15px 20px;
    }

    .phone-number {
        font-size: 16px;
    }
}