/*********************************
 * GENERAL STYLING
 *********************************/

/* Removes underline and inherits color for all links */
a {
    text-decoration: none;
    color: inherit;
}

/* Keeps link styling consistent on hover */
a:hover {
    text-decoration: none;
}

/* Body background color */
.body {
    background-color: #d1d9dd !important;
}

.hero {
    padding-top: 130px !important;
}

/*********************************
 * HEADER & FOOTER STYLES
 *********************************/

                     /***** HEADER SECTION *****/

/* General Link Styling */
a {
    text-decoration: none;
    color: inherit;
}

/* General Link Hover Styling */
a:hover {
    text-decoration: none;
}

/* Top Bar Styling */
.top-bar {
    background-color: #262A2B;
    color: #FFFFFF;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 15px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/* Contact Info Section in Top Bar */
.top-bar .contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Contact Info Link Styling */
.top-bar .contact-info a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Contact Info Link Hover Effect */
.top-bar .contact-info a:hover {
    color: #F2BA1E;
}

/* Social Icons Styling */
.social-icons {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Social Icon Link Styling */
.social-icons a {
    color: #FFFFFF;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

/* Social Icon Hover Effect */
.social-icons a:hover {
    color: #F2BA1E;
}

/* Navbar Styling */
.navbar {
    background-color: #F9F9F9;
    border-bottom: 8px solid #F2BA1E;
    padding: 10px 15px;
    position: fixed;
    top: 40px;
    width: 100%;
    z-index: 999;
}

/* Navbar Brand Logo Styling */
.navbar-brand img {
    height: 55px;
    transition: transform 0.3s ease;
    margin-left: 10px;
}

/* Navbar Brand Logo Hover Effect */
.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Navbar Link Styling */
.navbar-nav .nav-link {
    color: #333;
    font-size: 1rem;
    transition: color 0.3s ease;
}

/* Navbar Link Hover Effect */
.navbar-nav .nav-link:hover {
    color: #F2BA1E;
}

/* Navbar Toggler Button Styling */
.navbar-toggler {
    margin-right: 10px;
}

/* Navbar Toggler Icon Styling */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

                    /***** HEADER RESPONSIVE STYLES *****/

/* Extra Small Screens (Mobile, less than 576px) */
@media (max-width: 575.98px) {
    /* Top Bar Adjustments for Mobile */
    .top-bar {
        font-size: 0.8rem;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 10px;
    }

    /* Contact Info Styling for Mobile */
    .top-bar .contact-info {
        flex: 1;
        justify-content: flex-start;
    }

    /* Social Icons Styling for Mobile */
    .top-bar .social-icons {
        flex: 0;
        justify-content: flex-end;
    }

    /* Navbar Brand Logo Size for Mobile */
    .navbar-brand img {
        height: 40px;
    }

    /* Navbar Link Styling for Mobile */
    .navbar-nav .nav-link {
        font-size: 0.9rem;
        text-align: center;
    }

    /* Navbar Layout for Mobile */
    .navbar-nav {
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: center;
    }
}

/* Small Screens (Tablets, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    /* Top Bar Adjustments for Tablets */
    .top-bar {
        font-size: 0.85rem;
        align-items: center;
    }

    /* Navbar Brand Logo Size for Tablets */
    .navbar-brand img {
        height: 45px;
    }

    /* Navbar Link Styling for Tablets */
    .navbar-nav .nav-link {
        font-size: 0.95rem;
        text-align: center;
    }
}

/* Medium Screens (Tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    /* Top Bar Adjustments for Tablets */
    .top-bar {
        align-items: center;
    }

    /* Navbar Brand Logo Size for Medium Screens */
    .navbar-brand img {
        height: 50px;
    }

    /* Navbar Link Styling for Medium Screens */
    .navbar-nav .nav-link {
        font-size: 0.95rem;
        text-align: center;
    }
}

                    /***** FOOTER SECTION *****/

/* Footer Container Styling */
footer {
    background-color: #262A2B;
    color: #FFFFFF;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

/* Footer Logo Styling */
.footer-logo {
    height: 60px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

/* Footer Logo Hover Effect */
.footer-logo:hover {
    transform: scale(1.05);
}

/* Footer Text Styling */
.footer-text {
    font-size: 1rem;
    margin: 0;
}

                    /***** FOOTER RESPONSIVE STYLES *****/

/* Footer Adjustments for Mobile (less than 576px) */
@media (max-width: 575.98px) {
    /* Footer Logo Size for Mobile */
    .footer-logo {
        height: 50px;
    }

    /* Footer Text Size for Mobile */
    .footer-text {
        font-size: 0.9rem;
    }
}

/* Footer Adjustments for Tablets (576px to 991px) */
@media (min-width: 576px) and (max-width: 991.98px) {
    /* Footer Logo Size for Tablets */
    .footer-logo {
        height: 55px;
    }

    /* Footer Text Size for Tablets */
    .footer-text {
        font-size: 0.95rem;
    }
}

/*********************************
 * HOME STYLING
 *********************************/

                     /***** BODY STYLING *****/

/* Background color for the entire page */
body {
    background-color: #d1d9dd !important;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

                     /***** HERO SECTION *****/

/* General Hero Section Styling */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* Background slideshow for the hero section */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    animation: slideShow 20s infinite;
}

/* Images inside the background slideshow */
.hero-background img {
    flex: 1;
    object-fit: cover;
    opacity: 0.8;
}

/* Animation for the background slideshow */
@keyframes slideShow {
    0% { transform: translateX(0); }
    25% { transform: translateX(-100%); }
    50% { transform: translateX(-200%); }
    75% { transform: translateX(-300%); }
    100% { transform: translateX(0); }
}

/* Hero content layout */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    text-shadow: 0 0 15px #ffffff, 0 0 30px #ffffff;
}

/* Styling for the hero title */
.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: wheat;
    text-shadow: 0 0 15px #F2BA1E, 0 0 30px black;
    white-space: nowrap;
}

/* Styling for the hero description text */
.hero-description {
    font-size: 1.5rem;
    margin-top: 20px;
    color: black;
    font-weight: bold;
}

/* Styling for the hero button */
.hero-button {
    display: inline-block;
    width: 75px;
    height: 50px;
    background-color: #F2BA1E;
    border-radius: 20%;
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 50px;
    animation: glowGrow 2s infinite;
    margin-top: 30px;
}

/* Animation for the glow and grow effect on the button */
@keyframes glowGrow {
    0%, 100% { transform: scale(1); box-shadow: 0 0 10px #FFD700; }
    50% { transform: scale(1.1); box-shadow: 0 0 20px #FFD700; }
}

                     /***** WELCOME SECTION *****/

/* General styling for the welcome section */
.welcome-section {
    background-color: #d1d9dd;
    padding: 50px 15px;
    text-align: left;
}

/* Container layout for the welcome section */
.container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Styling for the welcome text */
.welcome-text {
    max-width: 50%;
}

/* Styling for the welcome title */
.welcome-title {
    font-size: 3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

/* Styling for the welcome subtitle */
.welcome-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: #5a5a5a;
    margin-bottom: 20px;
}

/* Styling for the welcome description */
.welcome-description {
    font-size: 1rem;
    color: #5a5a5a;
    line-height: 1.6;
    text-align: justify;
}

/* Styling for the media section */
.welcome-media {
    text-align: center;
    max-width: 40%;
}

/* Styling for the video container */
.welcome-video-container {
    width: 500px;
    max-width: 600px;
    height: auto;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 15px;
    margin: 0 auto 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    background: none;
}

/* Styling for the video inside the container */
.welcome-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transform: scale(1.5);
}

/* Styling for the welcome button */
.welcome-button {
    display: inline-block;
    padding: 15px 25px;
    background-color: #5a5a5a;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
}

/* Hover effect for the welcome button */
.welcome-button:hover {
    background-color: #F2BA1E;
    transform: scale(1.05);
}

                     /***** WHY CHOOSE US SECTION *****/

/* General styling for the "Why Choose Us" section */
.why-choose-us {
    background-color: #d1d9dd;
    padding: 50px 15px;
    text-align: center;
    color: #5a5a5a;
}

/* Styling for the section title */
.why-choose-us h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: bold;
    color: #333;
}

/* Styling for individual service cards */
.why-choose-us .service {
    text-align: center;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #d1d9dd;
    border-radius: 15px;
    box-shadow: 0 4px 8px d1d9dd(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    color: #333;
}

/* Hover effect for service cards */
.why-choose-us .service:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

/* Styling for service icons */
.why-choose-us .service i {
    font-size: 2.5rem;
    color: #F2BA1E;
    margin-bottom: 10px;
}

/* Styling for service titles */
.why-choose-us .service h3 {
    font-size: 1.5rem;
    color: #333;
}

/* Styling for service descriptions */
.why-choose-us .service p {
    font-size: 1rem;
    color: #5a5a5a;
}
                     /***** HOME PAGE RESPONSIVE STYLES *****/

/* Extra Small Screens (Mobile, less than 576px) */
@media (max-width: 575.98px) {
    /* Hero Title Adjustments */
    .hero-title {
        font-size: 1.5rem;
    }

    /* Hero Description Adjustments */
    .hero-description {
        font-size: 1rem;
    }

    /* Hero Button Adjustments */
    .hero-button {
        width: 65px;
        height: 40px;
        line-height: 40px;
        font-size: 1rem;
    }

    /* Welcome Section Text Adjustments */
    .welcome-text, .welcome-media {
        max-width: 100%;
        text-align: center;
    }

    /* Welcome Section Title Adjustments */
    .welcome-title {
        font-size: 2.5rem;
    }

    /* Welcome Section SUbtitle Adjustments */
    .welcome-subtitle {
        font-size: 1.2rem;
    }

    /* Welcome Section Video Container Adjustments */
    .welcome-video-container {
        width: 100%;
        height: 200px;
        margin: 20px auto;
    }

    /* Styling for the video inside the container */
    .welcome-video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 15px;
        transform: scale(1.8);
    }

    /* Why Choose Us Service Adjustments */
    .why-choose-us .service {
        margin-bottom: 15px;
        padding: 15px;
    }

    /* Why Choose Us Service Size Adjustments */
    .why-choose-us .service i {
        font-size: 2rem;
    }

    /* Why Choose Us H2 Adjustments */
    .why-choose-us h2 {
        font-size: 2.2rem;
    }
}

/* Small Screens (Tablets, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    /* Hero Title Adjustments */
    .hero-title {
        font-size: 3rem;
    }

    /* Hero Description Adjustments */
    .hero-description {
        font-size: 1.2rem;
    }

    /* Welcome Title Adjustments */
    .welcome-title {
        font-size: 2.8rem;
    }

    /* Welcome Subtitle Adjustments */
    .welcome-subtitle {
        font-size: 1.5rem;
    }

    /* Welcome Video Adjustments */
    .welcome-video-container {
        width: 100%;
        height: 250px;
        margin: 20px auto;
    }

    /* Styling for the video inside the container */
    .welcome-video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 15px;
        transform: scale(1.5);
    }

    /* Why Choose Us Section Adjustments */
    .why-choose-us .service {
        margin-bottom: 20px;
    }

    /* Why Choose Adjustments */
    .why-choose-us h2 {
        font-size: 2.5rem;
    }
}

/* Medium Screens (Tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    /* Hero Title Adjustments */
    .hero-title {
        font-size: 2.5rem;
    }

    /* Hero Description Adjustments */
    .hero-description {
        font-size: 1.3rem;
    }

    /* Welcome Section Adjustments */
    .welcome-title {
        font-size: 3rem;
    }

    /* Welcome Subtitle Adjustments */
    .welcome-subtitle {
        font-size: 1.6rem;
    }

    /* Welcome Video Adjustments */
    .welcome-video-container {
        width: 100%;
        height: 200px;
        margin: 20px auto;
    }

    /* Styling for the video inside the container */
    .welcome-video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 15px;
        transform: scale(1.8);
}

    /* Why Choose Us Section Adjustments */
    .why-choose-us h2 {
        font-size: 2.8rem;
    }

    /* Why Choose Adjustments */
    .why-choose-us .service {
        margin-bottom: 20px;
        padding: 20px;
    }
}

/* Large Screens (Desktop, 992px and up) */
@media (min-width: 992px) {
    /* Hero Title Adjustments */
    .hero-title {
        font-size: 3.5rem;
    }

    /* Hero Description Adjustments */
    .hero-description {
        font-size: 1.5rem;
    }

    /* Welcome Title Adjustments */
    .welcome-title {
        font-size: 3rem;
    }

    /* Welcome Subtitle Adjustments */
    .welcome-subtitle {
        font-size: 2rem;
    }

    /* Welcome Video Adjustments */
    .welcome-video-container {
        width: 500px;
    }

    /* Why Choose Us Section Adjustments */
    .why-choose-us h2 {
        font-size: 3rem;
    }
}

/*********************************
 * EXPLORE UK STYLING
 *********************************/

/* Styling for the main container */
main {
    padding-top: 100px;
    margin-bottom: 0px;
}

/* Styling for page heading */
main h1 {
    text-align: center  !important;
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

                    /***** CITY CARDS STYLING *****/

/* Container for city cards */
#cityCardsContainer {
    margin-top: 5px;
}

/* Styling for individual city cards */
.city-card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

/* Hover effects for city cards */
.city-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

/* Styling for the image in city cards */
.city-card .card-img-top {
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

/* Content styling inside city cards */
.city-card .card-body {
    padding: 15px;
    text-align: center;
    background-color: #fff;
}

/* Title styling for city cards */
.city-card .card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin: 0;
}

                    /***** MODAL STYLING *****/

/* Styling for modal container */
.modal-content {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Styling for modal header */
.modal-header {
    background-color: #262A2B;
    color: #fff;
    border-bottom: 2px solid #F2BA1E;
    border-radius: 10px 10px 0 0;
}

/* Title styling inside modal */
.modal-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

/* Styling for modal body */
.modal-body {
    padding: 20px;
    background-color: #fff;
    text-align: center;
}

/* Attraction Name Styling */
.modal-body h5 {
    text-transform: uppercase;
    font-weight: bold;
    color: #F2BA1E;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Description Text Styling */
.modal-body p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 15px;
}

/* Styling for links in the modal */
.modal-body a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

/* Hover effects for modal links */
.modal-body a:hover {
    text-decoration: underline;
}

/* Styling for the Learn More Button */
.btn-primary {
    display: inline-block;
    background-color: #5a5a5a;
    color: #FFFFFF !important;
    padding: 5px 10px;
    font-size: 0.85rem;
    font-weight: bold;
    text-decoration: none;
    border: none;
    border-radius: 3px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Hover Effect for Learn More Button */
.btn-primary:hover {
    background-color: #F2BA1E;
    transform: scale(00.95);
    text-decoration: none !important;
}

/* Styling for the Close Button */
.btn-close {
    background-color: #F2BA1E;
    border: none;
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

/* Hover Effect for Close Button */
.btn-close:hover {
    transform: scale(1.2);
}

                    /***** MAIN CONTENT RESPONSIVE STYLES *****/

/* Adjustments for screens smaller than 768px */
@media (max-width: 767px) {
    /* Adjust city card image height for small screens */
    .city-card .card-img-top {
        height: 150px;
    }

    /* Adjust modal title size for small screens */
    .modal-title {
        font-size: 1.25rem;
    }

    /* Adjust modal body padding for small screens */
    .modal-body {
        padding: 15px;
    }
}

/* Adjustments for screens between 768px and 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    /* Adjust city card image height for tablets */
    .city-card .card-img-top {
        height: 180px;
    }

    /* Adjust modal title size for tablets */
    .modal-title {
        font-size: 1.4rem;
    }

    /* Adjust modal body padding for tablets */
    .modal-body {
        padding: 20px;
    }
}

/*********************************
 * BOOKING STYLING
 *********************************/

/* General body styling */
body {
    background-color: #d1d9dd;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

                    /***** VIDEO BACKGROUND STYLING *****/

/* Fullscreen video background container */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

/* Video background iframe */
.video-background iframe {
    width: 120vw;
    height: 120vh;
    position: absolute;
    top: -10vh;
    left: -10vw;
    pointer-events: none;
}

/* Removes any border */
iframe {
    border: none;
}

                    /***** BOOKING TOOL STYLING *****/

/* Booking tool container */
.quote-book-tool {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    margin: auto;
    max-width: 900px;
    margin-top: 200px;
    margin-bottom: 50px;
}

/* Booking tool heading */
.quote-book-tool h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

                    /***** NAVIGATION TAB STYLING *****/


/* Navigation tabs */
.nav-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

/* Navigation tab links */
.nav-tabs .nav-link {
    color: #333;
    font-weight: bold;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    text-align: center;
    text-transform: uppercase;
    flex: 1;
}

/* Navigation tab hover effect */
.nav-tabs .nav-link:hover {
    background-color: #f2f2f2;
}

/* Active navigation tab */
.nav-tabs .nav-link.active {
    background-color: #F2BA1E;
    color: white;
    border-radius: 5px;
}

                    /***** TAB CONTENT STYLING *****/

/* Tab content container */
.tab-content {
    margin-top: 20px;
}

                    /***** FORM STYLING *****/

/* Form label styling */
.form-label {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

/* Form input and select styling */
.form-control,
.form-select {
    border-radius: 6px;
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 0.9rem;
}

/* Highlight invalid form fields */
.is-invalid {
    border-color: red;
}

                    /***** BUTTON STYLING *****/

/* General button styling */
.btn {
    border-radius: 6px;
    font-weight: bold;
    text-transform: uppercase;
    color: #FFFFFF;
    background-color: #5a5a5a;
}

/* General button hover effect */
.btn:hover {
    background-color: #F2BA1E;
    color: #FFFFFF;
}

/* Success button styling */
.btn-success {
    background-color: #5a5a5a;
    color: #FFFFFF;
}

/* Success button hover effect */
.btn-success:hover {
    background-color: #F2BA1E;
}

/* Primary button styling */
.btn-primary {
    background-color: #5a5a5a;
    color: #FFFFFF;
}

/* Primary button hover effect */
.btn-primary:hover {
    background-color: #F2BA1E;
}

/* Secondary button styling */
.btn-secondary {
    background-color: #5a5a5a;
    color: #FFFFFF;
}

/* Secondary button hover effect */
.btn-secondary:hover {
    background-color: #F2BA1E;
}

                    /***** MAP SECTION STYLING *****/

/* Map sections */
#flight-map,
#hotel-map,
#chauffeur-map,
#tour-map {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 6px;
    height: 300px;
    margin-top: 20px;
}

                    /***** POPUP STYLING *****/

/* Popup overlay */
#popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

/* Hidden popup overlay */
#popup-overlay.d-none {
    display: none;
}

/* Popup message container */
#popup-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white !important;
    padding: 0;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    z-index: 1000;
    width: 90%;
    max-width: 500px;
}

/* Popup container */
.popup-container {
    box-shadow: none !important;
    background-color: transparent !important;
}

/* Popup content */
#popup-message .popup-content {
    position: relative;
    text-align: center;
}

/* Popup close button */
#popup-message .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.2rem;
    color: #333;
    cursor: pointer;
}

/* Popup heading styling */
#popup-message h5 {
    font-size: 1.6rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

/* Popup message text */
#popup-message p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

/* Popup button styling */
#popup-message .btn {
    font-size: 1rem;
    padding: 8px 20px;
    white-space: nowrap;
    width: auto;
    text-align: center;
}

                    /***** BOOKING SUMMARY STYLING *****/

/* Booking summary list */
#summary-list {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

/* Individual summary item */
#summary-list li {
    padding: 15px;
    border-bottom: 1px solid #ccc;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Last summary item */
#summary-list li:last-child {
    border-bottom: none;
}

/* Remove button styling */
#summary-list .remove-item {
    background-color: red;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-left: 10px;
}

/* Hover effect for remove button */
#summary-list .remove-item:hover {
    background-color: darkred;
}

/* Text in summary items */
#summary-list li strong {
    display: inline-block;
    margin-right: 10px;
}

/* Summary item details */
#summary-list li div {
    flex-grow: 1;
}

                    /***** RESPONSIVE STYLING *****/

/* Adjustments for screens smaller than 768px */
@media (max-width: 768px) {
    .quote-book-tool {
        padding: 20px;
    }

    /* Styling for form labels */
    .form-label {
        font-size: 0.9rem;
    }
 
    /* Styling for form input and select elements */
    .form-control,
    .form-select {
        font-size: 0.8rem;
    }

    /* Popup message container width adjustment */
    #popup-message {
        width: 90%;
    }

    /* Font size adjustment for navigation tab links */
    .nav-tabs .nav-link {
        font-size: 0.85rem;
        flex: 1 1 calc(50% - 10px);
        text-align: center;
        margin-bottom: 10px;
    }
}

/* Adjustments for screens smaller than 576px */
@media (max-width: 576px) {
    #popup-message {
        padding: 20px;
        width: 95%;
    }

    /* Styling for popup message headings */
    #popup-message h5 {
        font-size: 1.4rem;
    }

    /* Styling for buttons inside popup messages */
    #popup-message .btn {
        font-size: 0.85rem;
    }
    
    /* Adjustment for navigation */
    .nav-tabs {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0px;
    }
    
    /* Adjustment for navigation tab links */
    .nav-tabs .nav-link {
        flex: 1 1 calc(25% - 5px);
        text-align: center;
        font-size: 0.5rem;
        margin-bottom: 1px;
    }

    /* Adjustment for navigation and links */
    .nav-tabs .nav-link:nth-child(5) { 
        flex: 1 1 100%;
        margin-top: 10px;
    }
}

/*********************************
 * CONTACT US PAGE STYLING
 *********************************/

/* Styling for the container */
 .container-fluid {
    margin-top: 150px;
}

                    /***** FORM STYLING *****/

 /* Styling for the contact form container */
.contact-form {
    background-color: #F9F9F9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

/* Input and textarea styling */
.contact-form input,
.contact-form textarea {
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
    width: 100%;
    margin-bottom: 15px;
}

/* Styling for the submit button */
.contact-form button {
    background-color: #5a5a5a;
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    padding: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%;
}

/* Hover effect for the submit button */
.contact-form button:hover {
    background-color: #F2BA1E;
    transform: scale(1.05);
}

                    /***** FAQ STYLING *****/

/* FAQ container styling */
.faq-container {
    margin-top: 20px;
}

/* Dropdown styling with an icon on the right */
.faq-container select {
    font-size: 1rem;
    border: 2px solid #ccc;
    border-radius: 6px;
    padding: 10px;
    padding-right: 40px;
    width: 100%;
    margin-bottom: 15px;
    background: #fff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23333" viewBox="0 0 16 16"><path d="M1.5 6.5a.5.5 0 0 1 .5-.5h12a.5.5 0 0 1 .4.8l-6 7a.5.5 0 0 1-.8 0l-6-7a.5.5 0 0 1-.1-.3z"/></svg>') no-repeat right 10px center;
    background-size: 15px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Adjust the hover state for dropdown */
.faq-container select:hover {
    border-color: #999;
}

/* FAQ answers styling */
.faq-answer {
    display: none;
    font-size: 1rem;
    margin-top: 10px;
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 6px;
}

/* FAQ answer when active */
.faq-answer.active {
    display: block !important;
}

                    /***** MODAL STYLING *****/

/* Modal styling */
.modal-content {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Modal header styling */
.modal-header {
    background-color: #262A2B;
    color: #fff;
    border-bottom: 2px solid #F2BA1E;
    border-radius: 10px 10px 0 0;
}

/* Modal body styling */
.modal-body {
    padding: 20px;
    background-color: #fff;
    text-align: center;
    font-size: 1.1rem;
}

/* Modal links styling */
.modal-body a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

/* Modal links hover effect */
.modal-body a:hover {
    text-decoration: underline;
}

/* Close button styling in modal */
.modal-content .btn-close {
    background-color: #F2BA1E;
    border: none;
    color: #FFFFFF;
    font-size: 1.2rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

/* Close button hover effect */
.modal-content .btn-close:hover {
    transform: scale(1.2);
}

                    /***** MAP STYLING *****/

/* Map Container Styling */
.map {
    max-width: 600px;
    margin: auto;
}

/* Map Styling */
.map iframe {
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 200px;
}

                    /***** RESPONSIVE STYLING *****/
                    
/* Adjustments for screens smaller than 768px */
@media (max-width: 767px) {
    .contact-form {
        padding: 15px;
    }

    /* Add space below the FAQ answers */
    #faqAnswers {
        margin-bottom: 30px;
    }

    /* Styling for the submit button in the contact form for smaller screens */
    .contact-form button {
        font-size: 1rem;
    }

    /* Styling for the modal body for smaller screens */
    .modal-body {
        padding: 15px;
        font-size: 1rem;
    }
}

/* Adjustments for screens between 768px and 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .contact-form {
        padding: 20px;
    }

    /* Add space below the FAQ answers */
    #faqAnswers {
        margin-bottom: 30px;
    }    

    /* Styling for the submit button in the contact form */
    .contact-form button {
        font-size: 1.1rem;
    }

    /* Styling for the modal body */
    .modal-body {
        padding: 20px;
        font-size: 1.05rem;
    }
}
