:root {
    --primary-orange: #FFA500;
    --light-orange: #FFF5E6;
    --dark-orange: #FF8C00;
    --text-dark: #333;
}

body {
    font-family: 'Arial', sans-serif;
}

.custom-list-indent {
  padding-left: 2em; /* Adjust this value as needed */
  /* Or if you prefer margin: */
  /* margin-left: 2em; */
}

.navbar-brand {
    font-weight: bold;
    color: var(--primary-orange) !important;
}

.nav-link:hover {
    color: var(--primary-orange) !important;
}

/* Make navbar transparent */
.navbar {
    background-color: transparent !important;
    transition: background-color 0.4s ease-in-out;
}

/* Add a dark background to the navbar when the user scrolls */
.navbar.scrolled {
    background-color: #212529 !important; /* A dark color */
}

.navbar-dark .navbar-brand {
    color: #fff;
    font-weight: bold;
}

.navbar-dark .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

.navbar-dark .nav-link:hover,
.navbar-dark .nav-link.active {
    color: #fff;
}

/* Custom orange toggler icon */
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,165,0,1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Style for the toggler button itself - Make it more prominent on mobile */
.navbar-toggler {
    border-color: var(--primary-orange); /* Ensure toggler border is visible */
    background-color: rgba(33, 37, 41, 0.7); /* Give the button a dark background to contrast the icon */
    z-index: 1050; /* Ensure it's above other content */
}


.hero-section {
    background: url('https://via.placeholder.com/1920x1080') no-repeat center center;
    background-size: cover;
    min-height: 80vh;
    position: relative;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.booking-form-container {
    max-width: 800px;
    margin: 2rem auto 0;
    color: var(--text-dark);
}

.btn-primary {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.btn-primary:hover {
    background-color: var(--dark-orange);
    border-color: var(--dark-orange);
}

#services .card {
    border: 1px solid var(--light-orange);
    transition: transform 0.3s;
}

#services .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

#about h2, #fleet h2, #contact h2, #services h2, #dashboard h2 {
    color: var(--primary-orange);
}

/* --- Hero Section with Chauffeur Background --- */

.hero-section-chauffeur {
    position: relative;
    height: 85vh; /* You can adjust the height */
    min-height: 500px;
    background-image: url('../img/chauffeur-background.jpg'); /* Make sure the path is correct */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Add a dark overlay for better text readability */
.hero-section-chauffeur::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

/* Ensure the content is above the overlay */
.hero-section-chauffeur .container {
    position: relative;
    z-index: 2;
}

.hero-section-chauffeur .display-3 {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/* --- Phone Link at the bottom of the header --- */

.header-phone-contact {
    position: absolute;
    bottom: 40px; /* Adjust vertical position from the bottom */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 50px; /* Pill shape */
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.phone-link:hover {
    background-color: var(--primary-orange); /* Uses the orange from your theme */
    color: #000;
    border-color: var(--dark-orange);
}

.phone-link i {
    margin-right: 12px; /* Space between icon and number */
    font-size: 1rem;
    
    /* Optional: Customize the animation speed */
    --fa-animation-duration: 2s; 
}

/* --- Language Switcher in Navbar --- */
.language-switcher .lang-link {
    margin: 0 5px;
    transition: opacity 0.3s ease;
}

.language-switcher .lang-link .flag-icon {
    font-size: 1.2rem; /* Adjust size of flags */
    border-radius: 50%;
    /* Keep a subtle border for all screens, but enhance for mobile below */
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 3px rgba(0,0,0,0.5);
}

/* Style for the non-selected language */
.language-switcher .lang-link:not(.active) {
    opacity: 0.5;
}

.language-switcher .lang-link:not(.active):hover {
    opacity: 1;
}

/* Media query for smaller screens - ENHANCED VISIBILITY */
@media (max-width: 991.98px) { /* Bootstrap's 'lg' breakpoint */
    .navbar {
        /* Force a solid background on mobile when not scrolled, so elements are visible */
        background-color: rgba(33, 37, 41, 0.95) !important; /* Darker, slightly less transparent background */
        z-index: 1040; /* Ensure navbar itself is above most content */
    }

    /* Toggler already has a dark background and orange icon */
    /* .navbar-dark .navbar-toggler {
        border-color: var(--primary-orange);
    } */

    .language-switcher {
        /* On mobile, when the menu is collapsed, flags might still be against transparent.
           Give them a contrasting background or strong border. */
        padding-left: 1rem; /* Add some padding if needed */
        padding-right: 1rem;
        /* Optional: Add a subtle background behind the flags if they are outside the collapsed menu area */
        /* background-color: rgba(0, 0, 0, 0.3); */
        /* border-radius: 0.5rem; */
    }

    .language-switcher .lang-link .flag-icon {
        /* Make flags highly visible on mobile */
        border: 2px solid var(--primary-orange); /* More prominent orange border */
        box-shadow: 0 0 8px rgba(255, 165, 0, 0.9); /* Stronger orange glow */
    }
}