/* Start Variables */
:root{
    --primary-color: rgb(0, 97, 115);
    --main-transition: 0.3s ease-in-out;
    --contact-bar-h: 43px;
    --header-h: 85px;
    --chat-widget-clearance: 80px;
}
/* End Variables */

/* Start Global Rules */
*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html{ 
    scroll-behavior: smooth;
    scrollbar-color: var(--primary-color) var(--secondary-color);
}

body{
    font-family: "Roboto", 'Merriweather', serif;
    padding: 0;
    margin: 0;
}

a{ text-decoration: none; }

ul{
	list-style: none;
	padding: 0;
    margin: 0;
}

.container{
	padding-left: 15px;
	padding-right: 15px;
	margin-left: auto;
	margin-right: auto;
}

/* Small Screens */
@media (min-width: 768px) {
	.container {
		width: 750px;
	}
}

/* Medium Screens */
@media (min-width: 992px) {
	.container {
		width: 970px;
	}
}

/* Large Screens */
@media (min-width: 1200px) {
	.container {
		width: 1170px;
	}
}

.spikes::before{
    content: "";
    position: absolute;
    right: 0;
    width: 100%;
    height: 20px;
    z-index: 1;
    background-image: linear-gradient(135deg, #FFF 25%, transparent 25%),
                      linear-gradient(225deg, #FFF 25%, transparent 25%);
    background-size: 20px 20px;
}
/* End Global Rules */

/* Start Top Bar For Contact Info */
.contact-bar{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    min-height: var(--contact-bar-h);
    z-index: 60;
    background-color: #d7d7d7;
    color: #000;
}

.contact-bar__ltr{
    direction: ltr;
    unicode-bidi: isolate;
}

.contact-bar div .whatsapp-link{  
    background-color: transparent;
    padding: 5px;
    border-radius: 50%;
    font-size: 18px;
    transition: background-color var(--main-transition);
}

.contact-bar div .whatsapp-link:hover{ background-color: #8ba9ab; }

.lang-dropdown{  position: relative; }

.lang-dropdown__toggle{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border: 1px solid #bec8cc;
    border-radius: 9999px;
    background: #fff;
    color: #181c1d;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: var(--main-transition);
}

.lang-dropdown__toggle:hover,
.lang-dropdown__toggle.is-open{
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.lang-dropdown__flag{
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid #d9e2e5;
    display: inline-block;
    flex-shrink: 0;
}

.lang-dropdown__chevron{
    font-size: 10px;
    transition: transform var(--main-transition);
}

.lang-dropdown__toggle.is-open .lang-dropdown__chevron{ transform: rotate(180deg); }

.lang-dropdown__menu{
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 190px;
    max-height: 320px;
    overflow-y: auto;
    margin: 0;
    padding: 4px 0;
    list-style: none;
    background: #fff;
    border: 1px solid #bec8cc;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 70;
}

.lang-dropdown__menu.hidden{  display: none; }

.lang-dropdown__option{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    color: #181c1d;
    font-size: 13px;
    transition: background-color var(--main-transition);
}

.lang-dropdown__option:hover,
.lang-dropdown__option.is-active{
    background: #e8f2f4;
    color: var(--primary-color);
}

.lang-dropdown__label{
    flex: 1;
    min-width: 0;
}

.lang-dropdown__code-sm{
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #6e797c;
}

@media (max-width: 768px){
    .contact-bar__email-text,
    .contact-bar__phone-text{ display: none; }

    .contact-bar__start{ gap: 6px;  }

    .contact-bar__start > a{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        padding: 0;
        border-radius: 50%;
        flex-shrink: 0;
        transition: background-color var(--main-transition);
    }

    .contact-bar__start > a:hover{ background-color: rgba(0, 96, 115, 0.12); }

    .contact-bar__start > a i{ font-size: 18px; }

    .contact-bar div .whatsapp-link{ padding: 0; }

    .contact-bar .max-w-container-max{ font-size: 12px; }
}
/* End Top Bar For Contact Info */

/* Start Header */
.site-header{
    top: 43px;
    background-color: var(--primary-color);
    color: #FFF;
}

@media (max-width: 768px){
    .site-header{ top: var(--contact-bar-h); }
}

.site-header__inner{  min-height: 72px; }

.site-header__menu-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease;
}

.site-header__menu-btn:hover{ background: rgba(255, 255, 255, 0.22); }

.site-header__menu-btn.is-open{
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.site-header__menu-icon{
    font-size: 20px;
    line-height: 1;
}

.site-header__menu-icon--close{  display: none; }

.site-header__menu-btn.is-open .site-header__menu-icon--open{ display: none; }

.site-header__menu-btn.is-open .site-header__menu-icon--close{ display: block; }

.mobile-nav{
    position: fixed;
    inset: 0;
    z-index: 65;
    pointer-events: none;
}

.mobile-nav.is-open{ pointer-events: auto; }

.mobile-nav__backdrop{
    position: absolute;
    inset: 0;
    background: rgba(15, 34, 40, 0.55);
    opacity: 0;
    transition: opacity 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.is-open .mobile-nav__backdrop{ opacity: 1; }

.mobile-nav__panel{
    position: absolute;
    top: var(--mobile-chrome-h, calc(var(--contact-bar-h) + var(--header-h)));
    right: 0;
    width: min(300px, 88vw);
    height: calc(100dvh - var(--mobile-chrome-h, calc(var(--contact-bar-h) + var(--header-h))));
    padding: 4px 20px 28px;
    display: flex;
    flex-direction: column;
    background: var(--primary-color);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.22);
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-nav.is-open .mobile-nav__panel{ transform: translateX(0); }

.mobile-nav__list{
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.mobile-nav__link{
    display: block;
    padding: 15px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: background 0.2s ease, color 0.2s ease, padding-inline-start 0.2s ease;
}

.mobile-nav__list li:last-child .mobile-nav__link{ border-bottom: none; }

.mobile-nav__link:hover,
.mobile-nav__link:focus-visible{
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding-inline-start: 16px;
}

.mobile-nav__call{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    padding: 14px 18px;
    border-radius: 9999px;
    background: #fff;
    color: #181c1d;
    font-family: Roboto, sans-serif;
    font-size: 15px;
    font-weight: 700;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.mobile-nav__call:hover{
    background: rgb(119, 159, 38);
    color: #fff;
}

body.mobile-nav-open{ overflow: hidden; }

.site-header.is-menu-open{  z-index: 70; }

header{
    top: 43px;
    background-color: var(--primary-color);
    color: #FFF;
}

header div .logo-container{
    width: 230px;
    height: 85px;
    overflow: hidden;
}

@media (max-width: 768px){
    header div .logo-container{
        width: 150px;
        height: 56px;
    }
}

header div nav a{ 
    font-family: 'Merriweather';
    font-size: 17px !important;
    transition: var(--main-transition); 
}

header div nav a::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: rgb(119, 159, 38);
    transition: var(--main-transition);
}

header div nav a:hover{ color: yellowgreen; }

header div nav a:hover::before{ width: 100%; }

header div .call a{
    background-color: #FFF;
    color: #000;
    transition: var(--main-transition);
}

header div .call a:hover{
    background-color: rgb(119, 159, 38);
    color: #FFF;
}
/* End Header */

/* Start Landing */
.landing{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh + 120px);
    padding-top: calc(var(--contact-bar-h) + var(--header-h) + 32px);
    padding-bottom: 64px;
    overflow-x: hidden;
}

.landing__media{
    position: absolute;
    inset: 0;
    z-index: 0;
}

.landing__image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
}

.landing__overlay{
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(100, 175, 219, 0.37);
}

.landing__content{
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding-left: 24px;
    padding-right: 24px;
    margin-left: auto;
    margin-right: auto;
}

.landing__grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 1024px){
    .landing__grid{
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px){
    :root{
        --contact-bar-h: 50px;
        --header-h: 64px;
    }

    .landing{
        display: block;
        align-items: stretch;
        justify-content: flex-start;
        min-height: auto;
        padding-top: calc(var(--contact-bar-h) + var(--header-h) + 20px);
        padding-bottom: 40px;
    }

}

.landing__image{ object-position: center 25%; }

.landing__grid{  gap: 20px; }

.hero-title{
    font-size: 50px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    margin-bottom: 12px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero-subtitle{
    font-size: 20px !important;
    line-height: 1.55 !important;
    margin-bottom: 8px;
    max-width: 22rem;
    text-align: justify;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3); 
}

@media (max-width: 768px){
    .landing__copy{ 
        margin-top: 32px;
        color: #000;
        max-width: 95%;
    }

    .hero-title{ font-size: 25px !important; }

    .hero-subtitle{ font-size: 16px !important;  }
}

.landing .booking-card{
    margin-top: 0 !important;
    padding: 18px 16px;
}

.site-header__inner{ min-height: 64px; }

#landing,
#routes,
#services,
#contact{ scroll-margin-top: 108px; }

.landing #booking{ scroll-margin-top: 120px; }

.landing .booking-card{
    padding: 20px 25px;
    overflow: visible;
}

.booking-date-field{ overflow: visible; }

#landing,
#routes,
#services,
#contact{ scroll-margin-top: calc(var(--contact-bar-h) + var(--header-h) + 12px); }

.landing #booking{ scroll-margin-top: calc(var(--contact-bar-h) + var(--header-h) + 24px); }

/* Start Booking location autocomplete */
.location-autocomplete__list{
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 4px);
    z-index: 30;
    max-height: 280px;
    overflow-y: auto;
    margin: 0;
    padding: 4px 0;
    list-style: none;
    background: #fff;
    border: 1px solid #c2c8cc;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.location-autocomplete__list.hidden{  display: none; }

.location-autocomplete__option,
.location-autocomplete__empty{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 14px;
    color: #181c1d;
}

.location-autocomplete__option:hover,
.location-autocomplete__option.is-active{ background: #e8f2f4; }

.location-autocomplete__option--custom .location-autocomplete__type{
    background: #f1f4f5;
    color: #4d5a5c;
}

.location-autocomplete__empty{
    cursor: default;
    color: #5c6669;
    font-size: 13px;
}

.location-autocomplete__type{
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 2px 8px;
    border-radius: 4px;
    background: #e8f2f4;
    color: var(--primary-color);
}

.location-autocomplete__label{
    flex: 1;
    min-width: 0;
    line-height: 1.35;
}
/* End Booking location autocomplete */

.booking-trip-row .booking-time-control{
    padding-left: 2.5rem;
    padding-right: 0.5rem;
    gap: 4px;
}

.booking-trip-row .booking-time-select{
    width: 38%;
    font-size: 14px;
    padding-right: 10px;
}

.booking-trip-row .booking-time-separator{
    font-size: 16px;
    margin: 0;
}

.booking-trip-row .booking-date-trigger{ font-size: 14px; }

.booking-trip-row .booking-date-trigger__text{
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.booking-time-control{
    display: flex;
    align-items: center;
    gap: 7px;
    transition: border-color 0.2s ease;
}

.booking-time-select{
    flex: 0 0 auto;
    width: 30%;
    height: 100%;
    border: none;
    background-color: transparent;
    font-family: "Roboto", system-ui, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #181c1d;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    padding: 0 14px 0 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 12 8'%3E%3Cpath fill='%23006073' d='M1.41 0 6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 10px 6px;
    text-align: left;
}

.booking-time-select:invalid{ color: #6e797c; }

.booking-time-separator{
    font-size: 18px;
    font-weight: 700;
    color: #006073;
    line-height: 1;
    flex-shrink: 0;
    margin: 0 2px;
}

/* Booking date picker */
.booking-date-trigger{
    font-family: "Roboto", system-ui, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #181c1d;
    cursor: pointer;
    transition: border-color 0.2s ease, border-width 0.2s ease;
}

.booking-date-trigger:hover,
.booking-date-field.is-open .booking-date-trigger{
    border-width: 2px;
    border-color: var(--primary-color);
}

.booking-date-trigger__text.is-empty{ color: #6e797c; }

.booking-date-picker{
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(100% + 6px);
    top: auto;
    z-index: 40;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #e6e9ea;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0, 97, 115, 0.08), 0 10px 28px rgba(0, 97, 115, 0.12);
}

.booking-date-picker.hidden{ display: none; }

.booking-date-picker__header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e6e9ea;
}

.booking-date-picker__nav{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #e6e9ea;
    border-radius: 8px;
    background: #f7fafb;
    color: var(--primary-color);
    font-size: 12px;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.booking-date-picker__nav:hover{
    background: #e8f2f4;
    border-color: #bec8cc;
}

.booking-date-picker__title{
    flex: 1;
    font-family: "Merriweather", Georgia, serif;
    font-size: 16px;
    font-weight: 600;
    color: #181c1d;
    text-align: center;
    line-height: 1.3;
}

.booking-date-picker__weekdays{
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.booking-date-picker__weekday{
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: center;
    color: #6e797c;
    padding: 4px 0;
}

.booking-date-picker__grid{
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.booking-date-picker__day{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1;
    max-height: 40px;
    border: 2px solid transparent;
    border-radius: 8px;
    background: transparent;
    font-family: "Roboto", system-ui, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #181c1d;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.booking-date-picker__day:hover:not(:disabled){ background: #e8f2f4; }

.booking-date-picker__day.is-outside{ color: #9aa3a6; }

.booking-date-picker__day.is-today{
    border-color: #bec8cc;
    font-weight: 700;
}

.booking-date-picker__day.is-selected{
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    font-weight: 600;
}

.booking-date-picker__day.is-selected:hover{
    background: #007b92;
    border-color: #007b92;
}

.booking-date-picker__day:disabled{
    color: #bec8cc;
    cursor: not-allowed;
}

.booking-date-picker__day:disabled:hover{  background: transparent; }

.booking-date-picker__footer{
    display: flex;
    justify-content: flex-end;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e6e9ea;
}

.booking-date-picker__clear{
    padding: 8px 16px;
    border: 1px solid #bec8cc;
    border-radius: 8px;
    background: #ffffff;
    font-family: "Roboto", system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.booking-date-picker__clear:hover{
    background: #f1f4f5;
    border-color: var(--primary-color);
}

.phone-field{
    position: relative;
    width: 100%;
}

.phone-field__box{
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 56px;
    border: 1px solid #c4c7c9;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.phone-field--surface .phone-field__box{ background: #f7fafb; }

.phone-field:focus-within .phone-field__box,
.phone-field.is-open .phone-field__box{
    border-color: #006073;
    box-shadow: 0 0 0 3px rgba(0, 96, 115, 0.12);
}

.phone-field__country{
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    min-width: 100px;
    max-width: 42%;
    padding: 0 14px;
    border: none;
    background: linear-gradient(135deg, #e8f2f4 0%, #dceef2 100%);
    color: #181c1d;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s ease;
}

.phone-field__country:hover{  background: linear-gradient(135deg, #dceef2 0%, #cfe6eb 100%); }

.phone-field__flag{
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid #d9e2e5;
    display: inline-block;
    flex-shrink: 0;
}

.phone-field__dial{
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #006073;
}

.phone-field__chevron{
    margin-left: auto;
    font-size: 11px;
    color: #6e797c;
    transition: transform 0.2s ease;
}

.phone-field.is-open .phone-field__chevron{transform: rotate(180deg); }

.phone-field__divider{
    width: 1px;
    background: #e0e3e4;
    flex-shrink: 0;
}

.phone-field__number-wrap{
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.phone-field__number{
    flex: 1;
    min-width: 0;
    width: 100%;
    height: 54px;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    line-height: 1.4;
    color: #181c1d;
    -webkit-appearance: none;
    appearance: none;
}

.phone-field__number::placeholder{  color: #6e797c; }

.phone-field__dropdown{
    position: absolute;
    bottom: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 80;
    background: #fff;
    border: 1px solid #e0e3e4;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(0, 48, 58, 0.14);
    overflow: hidden;
    animation: phoneFieldDropIn 0.2s ease;
}

@keyframes phoneFieldDropIn{
    from{
        opacity: 0;
        transform: translateY(-6px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

.phone-field__search-wrap{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid #eef1f2;
    background: #f7fafb;
}

.phone-field__search-icon{
    flex-shrink: 0;
    font-size: 14px;
    color: #6e797c;
}

.phone-field__search{
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    font-size: 15px;
    color: #181c1d;
}

.phone-field__search::placeholder{
    color: #6e797c;
    font-size: 15px;
}

.phone-field__list{
    max-height: 240px;
    overflow-y: auto;
    margin: 0;
    padding: 6px;
    list-style: none;
}

.phone-field__option{ margin: 0; }

.phone-field__option.is-hidden{ display: none; }

.phone-field__option-btn{
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border: none;
    border-radius: 10px;
    background: transparent;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s ease;
}

.phone-field__option-btn:hover,
.phone-field__option.is-selected .phone-field__option-btn{  background: #e8f2f4; }

.phone-field__option-flag{
    flex-shrink: 0;
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid #d9e2e5;
    display: inline-block;
}

.phone-field__option-name{
    flex: 1;
    min-width: 0;
    font-size: 14px;
    font-weight: 500;
    color: #181c1d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.phone-field__option-code{
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 700;
    color: #006073;
}

.phone-field__native-select{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 768px){
    .phone-field__country{
        min-width: 108px;
        padding: 0 10px;
    }

    .phone-field__number-wrap{ padding: 0 10px; }
}

/* Success popup (toast / modal) */
.flash-popup{
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.flash-popup.is-visible{
    opacity: 1;
    visibility: visible;
}

.flash-popup.is-hiding{
    opacity: 0;
    visibility: hidden;
}

.flash-popup.is-hiding .flash-popup__dialog{
    transform: scale(0.92) translateY(12px);
    opacity: 0;
}

.flash-popup__backdrop{
    position: absolute;
    inset: 0;
    background: rgba(24, 28, 29, 0.45);
    backdrop-filter: blur(2px);
}

.flash-popup__dialog{
    position: relative;
    z-index: 1;
    width: min(100%, 420px);
    padding: 32px 28px 28px;
    text-align: center;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
    transform: scale(0.92) translateY(12px);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.flash-popup.is-visible .flash-popup__dialog{
    transform: scale(1) translateY(0);
    opacity: 1;
}

.flash-popup__close{
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 9999px;
    background: #f1f4f5;
    color: #4d5a5c;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.flash-popup__close:hover{
    background: #e8f2f4;
    color: var(--primary-color);
}

.flash-popup__icon{
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: #e8f2f4;
    color: var(--primary-color);
    font-size: 32px;
}

.flash-popup__title{
    margin: 0 0 8px;
    font-family: "Merriweather", Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: #181c1d;
}

.flash-popup__text{
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #4d5a5c;
}
/* End Landing */

/* Start Popular Routes Section */
@media (max-width: 768px){
    #routes .title{ margin-right: auto;  }

    #routes h2,
    #services h2,
    #contact h2{ font-size: 25px;  }

    #routes .box-route{ font-size: 14px; }

    #routes .box-route i{ font-size: 20px; }

    #routes button{
        height: 40px;
        padding: 0 20px !important;
    }
}
/* End Popular Routes Section */

/* Start Contact Section */
@media (max-width: 768px){
    #contact p{ font-size: 16px;  }
}
/* End Contact Section */

/* Start FAQ page */
section .faq-list .faq-box .faq-box__title{
    display: flex;
    align-items: center;
    gap: 6px;
    color: #C13383;
}

section .faq-list .faq-box .faq-box__img{
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    font-size: 22px;
    line-height: 1;
}

section .faq-list .faq-box .faq-item{
    background: #ffffff;
    border: 1px solid #e6e9ea !important;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0, 97, 115, 0.08);
    overflow: hidden;
}

section .faq-list .faq-box .faq-item .faq-item__trigger{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 18px 22px;
    border: none;
    background: #ffffff;
    text-align: start;
    cursor: pointer;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.45;
    transition: background-color 0.2s ease;
}

section .faq-list .faq-box .faq-item .faq-item__trigger:hover,
section .faq-list .faq-box .faq-item .faq-item__trigger[aria-expanded="true"]{  background: #f7fafb; }

section .faq-list .faq-box .faq-item .faq-item__icon{
    flex-shrink: 0;
    font-size: 14px;
    color: #C13383;
    transition: transform 0.25s ease;
}

section .faq-list .faq-box .faq-item .faq-item__trigger[aria-expanded="true"] .faq-item__icon{ transform: rotate(180deg); }

section .faq-list .faq-box .faq-item .faq-item__panel{
    display: none;
    padding: 0 22px 20px;
    background: #ffffff;
    border-top: 1px solid #e6e9ea;
}

section .faq-list .faq-box .faq-item .faq-item__panel.is-open{ display: block; }

section .faq-list .faq-box .faq-item .faq-item__answer{
    margin: 0;
    padding-top: 16px;
    line-height: 1.65;
    font-weight: 400;
}

section .faq-cta__inner{
    padding: 28px 24px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e6e9ea;
    box-shadow: 0 1px 4px rgba(0, 97, 115, 0.08);
}

section .faq-cta__text{
    margin: 0 0 20px;
    color: #3d4f55;
}
/* End FAQ page */

/* Start Terms page */
section.terms-page .terms-page__header{
    background: none;
    margin-bottom: 48px;
}

section.terms-page .terms-page__hero{
    position: relative;
    padding: 32px 28px;
    border-radius: 16px;
    border: 2px solid transparent;
    background:
        linear-gradient(145deg, #ffffff 0%, #f4f9fa 100%) padding-box,
        linear-gradient(135deg, var(--primary-color) 0%, #5eb4c6 42%, #c13383 100%) border-box;
    box-shadow:
        0 10px 36px rgba(0, 97, 115, 0.12),
        0 2px 8px rgba(0, 97, 115, 0.06);
}

section.terms-page .terms-page__hero-layout{
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

section.terms-page .terms-page__hero-icon{
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(0, 97, 115, 0.14) 0%, rgba(193, 51, 131, 0.08) 100%);
    border: 1px solid rgba(0, 97, 115, 0.18);
    box-shadow: 0 2px 10px rgba(0, 97, 115, 0.1);
    color: var(--primary-color);
    font-size: 22px;
}

section.terms-page .terms-page__title{
    margin: 0 0 14px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.25;
    color: #181c1d;
}

section.terms-page .terms-page__intro{
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    text-align: justify;
    color: #000;
}

section.terms-page .terms-section{
    position: relative;
    padding: 28px 24px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e3eaec;
    box-shadow: 0 2px 12px rgba(0, 97, 115, 0.06);
    overflow: hidden;
}

section.terms-page .terms-section::before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color) 0%, #c13383 100%);
}

section.terms-page .terms-section + .terms-section{ margin-top: 24px; }

section.terms-page .terms-section__title{
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eef1f2;
    color: #c13383;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.35;
}

section.terms-page .terms-section__text{
    margin: 0 0 16px;
    font-size: 17px;
    line-height: 1.65;
    text-align: justify;
    color: #000;
}

section.terms-page .terms-section__text:last-child{  margin-bottom: 0; }

@media (max-width: 768px){
    section.terms-page .terms-page__hero{ padding: 24px 20px; }

    section.terms-page .terms-page__hero-layout{
        flex-direction: column;
        gap: 16px;
    }

    section.terms-page .terms-page__title{ font-size: 26px; }

    section.terms-page .terms-section{ padding: 22px 18px; }
}
/* End Terms page */

/* Start Prices page */
.sr-only{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

section.prices-page .prices-page__header{ margin-bottom: 40px; }

section.prices-page .prices-page__hero{
    position: relative;
    padding: 32px 28px;
    border-radius: 16px;
    border: 2px solid transparent;
    background:
        linear-gradient(145deg, #ffffff 0%, #f4f9fa 100%) padding-box,
        linear-gradient(135deg, var(--primary-color) 0%, #5eb4c6 42%, #c13383 100%) border-box;
    box-shadow:
        0 10px 36px rgba(0, 97, 115, 0.12),
        0 2px 8px rgba(0, 97, 115, 0.06);
}

section.prices-page .prices-page__hero-layout{
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

section.prices-page .prices-page__hero-icon{
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #007b92 100%);
    color: #fff;
    font-size: 22px;
    box-shadow: 0 6px 18px rgba(0, 97, 115, 0.25);
}

section.prices-page .prices-page__title{
    margin: 0 0 12px;
    font-family: var(--font-headline);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
    color: #1a2b30;
}

section.prices-page .prices-page__intro{
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
    color: #3d4f55;
    max-width: 720px;
}

section.prices-page .prices-page__content{
    max-width: 880px;
    margin: 0 auto;
}

section.prices-page .prices-group + .prices-group{ margin-top: 36px; }

section.prices-page .prices-group__title{
    margin: 0 0 14px;
    padding-bottom: 10px;
    font-family: var(--font-headline);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    border-bottom: 2px solid rgba(0, 97, 115, 0.12);
}

section.prices-page .prices-table{
    border-radius: 14px;
    border: 1px solid #dbe4e7;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 40, 50, 0.06);
}

section.prices-page .prices-table__row{
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 12px 16px;
    padding: 16px 20px;
    border-top: 1px solid #e8eef0;
}

section.prices-page .prices-table__row:first-child{ border-top: none; }

section.prices-page .prices-table__row--head{
    background: linear-gradient(180deg, #f3f8f9 0%, #eef4f5 100%);
    border-top: none;
    padding: 12px 20px;
}

section.prices-page .prices-table__row--head .prices-table__cell{
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #5a6b72;
}

section.prices-page .prices-table__row:not(.prices-table__row--head):hover{ background: #f8fbfc; }

section.prices-page .prices-table__cell--route{
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

section.prices-page .prices-row__icon{
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(0, 97, 115, 0.08);
    color: var(--primary-color);
    font-size: 14px;
}

section.prices-page .prices-row__label{
    font-size: 15px;
    font-weight: 500;
    color: #1f2d32;
    line-height: 1.4;
}

section.prices-page .prices-row__price{
    font-family: var(--font-headline);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

section.prices-page .prices-row__book{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    background: var(--primary-color);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.15s ease;
}

section.prices-page .prices-row__book:hover{ background: #007b92; }

section.prices-page .prices-row__book:active{ transform: scale(0.97); }

section.prices-page .prices-row__book-icon{ font-size: 11px; }

section.prices-page .prices-page__note{
    margin: 32px 0 0;
    padding: 16px 18px;
    border-radius: 12px;
    background: #eef6f8;
    border: 1px solid rgba(0, 97, 115, 0.12);
    font-size: 14px;
    line-height: 1.55;
    color: #4a5c62;
}

@media (max-width: 767px){
    section.prices-page .prices-page__hero{ padding: 24px 20px; }

    section.prices-page .prices-page__hero-layout{
        flex-direction: column;
        gap: 16px;
    }

    section.prices-page .prices-page__title{ font-size: 26px; }

    section.prices-page .prices-table__head{ display: none; }

    section.prices-page .prices-table__row:not(.prices-table__row--head){
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 18px 16px;
    }

    section.prices-page .prices-table__cell--price{ padding-left: 46px; }

    section.prices-page .prices-table__cell--action .prices-row__book{ width: 100%; }
}
/* End Prices page */

/* Start Footer */
.site-footer{
    position: relative;
    overflow: hidden;
    background: linear-gradient(165deg, #0f2228 0%, #1a3239 42%, #14282e 100%);
    color: #d8e8ec;
    border-top: 1px solid rgba(122, 211, 236, 0.18);
    padding: 56px 0 0;
}

.site-footer__glow{
    position: absolute;
    top: -120px;
    right: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 123, 146, 0.35) 0%, rgba(0, 123, 146, 0) 68%);
    pointer-events: none;
}

.site-footer__inner{
    position: relative;
    z-index: 1;
}

.site-footer__grid{
    display: grid;
    grid-template-columns: 1.35fr 1fr 1.15fr 1.1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.site-footer__brand{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.site-footer__logo-link{
    display: inline-block;
    width: fit-content;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-footer__logo-link:hover{
    transform: translateY(-2px);
    opacity: 0.92;
}

.site-footer__logo{
    display: block;
    width: 190px;
    max-width: 100%;
    height: auto;
}

.site-footer__desc{
    margin: 0;
    max-width: 22rem;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(216, 232, 236, 0.82);
}

.site-footer__badge{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 9999px;
    background: rgba(122, 211, 236, 0.12);
    border: 1px solid rgba(122, 211, 236, 0.22);
    color: #afecff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.site-footer__title{
    margin: 0 0 18px;
    font-family: "Merriweather", Georgia, serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.site-footer__links{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer__links a{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(216, 232, 236, 0.78);
    font-size: 15px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer__links a:hover{
    color: #afecff;
    transform: translateX(4px);
}

.site-footer__link-icon{
    font-size: 10px;
    color: #7ad3ec;
    transition: transform 0.2s ease;
}

.site-footer__links a:hover .site-footer__link-icon{ transform: translateX(2px); }

.site-footer__contact{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-footer__contact-item{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: inherit;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site-footer__contact-item:hover{
    background: rgba(122, 211, 236, 0.1);
    border-color: rgba(122, 211, 236, 0.24);
    transform: translateY(-1px);
}

.site-footer__contact-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #006073 0%, #007b92 100%);
    color: #fff;
    font-size: 14px;
}

.site-footer__contact-label{
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(216, 232, 236, 0.58);
    margin-bottom: 2px;
}

.site-footer__contact-body{
    flex: 1;
    min-width: 0;
}

.site-footer__contact-value{
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #f7fafb;
    line-height: 1.4;
}

.site-footer__ltr-value{
    direction: ltr;
    unicode-bidi: isolate;
    display: inline-block;
    white-space: nowrap;
}

.site-footer__cta-card{
    height: 100%;
    padding: 24px 22px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(0, 96, 115, 0.55) 0%, rgba(0, 123, 146, 0.28) 100%);
    border: 1px solid rgba(122, 211, 236, 0.28);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(8px);
}

.site-footer__cta-icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.14);
    color: #afecff;
    font-size: 20px;
}

.site-footer__cta-title{
    margin: 0 0 8px;
    font-family: "Merriweather", Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.site-footer__cta-text{
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(247, 250, 251, 0.82);
}

.site-footer__cta-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ffffff 0%, #e8f2f4 100%);
    color: #006073;
    font-size: 15px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-footer__cta-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.site-footer__cta-arrow{
    font-size: 13px;
    transition: transform 0.2s ease;
}

.site-footer__cta-btn:hover .site-footer__cta-arrow{  transform: translateX(3px); }

.site-footer__bottom{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 24px;
    padding: 20px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__copyright{
    margin: 0;
    font-size: 13px;
    color: rgba(216, 232, 236, 0.55);
}

.site-footer__bottom-links{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.site-footer__bottom-links a{
    color: rgba(216, 232, 236, 0.62);
    transition: color 0.2s ease;
}

.site-footer__bottom-links a:hover{ color: #afecff; }

.site-footer__dot{ color: rgba(216, 232, 236, 0.35); }

.float-actions{
    position: fixed;
    right: 24px;
    bottom: calc(24px + var(--chat-widget-clearance));
    z-index: 55;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.float-actions__btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.float-actions__btn:hover{ transform: translateY(-2px) scale(1.05); }

.float-actions__btn:focus-visible{
    outline: 2px solid #afecff;
    outline-offset: 3px;
}

.float-actions__btn--whatsapp{
    background: linear-gradient(145deg, #2bd366 0%, #1da851 100%);
    animation: float-glow-whatsapp 2.4s ease-in-out infinite;
}

.float-actions__btn--telegram{
    background: linear-gradient(145deg, #37aee2 0%, #229ed9 100%);
    animation: float-glow-telegram 2.4s ease-in-out infinite;
    animation-delay: 0.4s;
}

.float-actions__btn--top{
    background: linear-gradient(135deg, #006073 0%, #007b92 100%);
    box-shadow: 0 8px 24px rgba(0, 96, 115, 0.35);
}

@keyframes float-glow-whatsapp{
    0%, 100%{
        box-shadow:
            0 4px 14px rgba(37, 211, 102, 0.45),
            0 0 18px rgba(37, 211, 102, 0.35);
    }
    50%{
        box-shadow:
            0 6px 22px rgba(37, 211, 102, 0.65),
            0 0 36px rgba(37, 211, 102, 0.55),
            0 0 48px rgba(37, 211, 102, 0.25);
    }
}

@keyframes float-glow-telegram{
    0%, 100%{
        box-shadow:
            0 4px 14px rgba(34, 158, 217, 0.45),
            0 0 18px rgba(34, 158, 217, 0.35);
    }
    50%{
        box-shadow:
            0 6px 22px rgba(34, 158, 217, 0.65),
            0 0 36px rgba(34, 158, 217, 0.55),
            0 0 48px rgba(34, 158, 217, 0.25);
    }
}

.back-to-top{
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.85);
    width: 0;
    height: 0;
    min-width: 0;
    min-height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, box-shadow 0.2s ease, width 0.2s ease, height 0.2s ease;
}

.back-to-top.is-visible{
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    width: 48px;
    height: 48px;
    pointer-events: auto;
}

.back-to-top:hover{  box-shadow: 0 10px 28px rgba(0, 96, 115, 0.45); }

.back-to-top:focus-visible{
    outline: 2px solid #afecff;
    outline-offset: 2px;
}

@media (max-width: 768px){
    :root{ --chat-widget-clearance: 92px; }

    .float-actions{
        right: 16px;
        bottom: calc(16px + var(--chat-widget-clearance));
        gap: 10px;
    }

    .float-actions__btn{
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .back-to-top.is-visible{
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 1024px){
    .site-footer__grid{
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .site-footer__brand{ grid-column: 1 / -1; }

    .site-footer__cta{ grid-column: 1 / -1; }
}

@media (max-width: 768px){
    .site-footer{ padding-top: 40px; }

    .site-footer__grid{
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .site-footer__bottom{
        flex-direction: column;
        align-items: flex-start;
    }
}
/* End Footer */

/* Start Booking confirmation */
.booking-receipt{ overflow: hidden; }

.booking-confirm-hero__icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: #e8f2f4;
    color: var(--primary-color);
    font-size: 28px;
}

.booking-receipt__header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 28px;
    background: linear-gradient(135deg, #006073 0%, #007b92 100%);
    color: #fff;
}

.booking-receipt__logo{
    display: block;
    max-width: 140px;
    height: auto;
    filter: brightness(0) invert(1);
}

.booking-receipt__ref{ text-align: end; }

.booking-receipt__ref-label{
    display: block;
    font-size: 12px;
    font-weight: 500;
    opacity: 0.85;
}

.booking-receipt__ref-value{
    display: block;
    font-family: "Merriweather", Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    margin-top: 4px;
}

.booking-receipt__body{ padding: 24px 28px 20px; }

.booking-receipt__section + .booking-receipt__section{
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e6e9ea;
}

.booking-receipt__section-title{
    margin: 0 0 16px;
    font-family: "Merriweather", Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    color: #181c1d;
}

.booking-receipt__grid{ margin: 0; }

.booking-receipt__row{
    display: grid;
    grid-template-columns: minmax(120px, 34%) 1fr;
    gap: 8px 16px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f4f5;
}

.booking-receipt__row:last-child{ border-bottom: none; }

.booking-receipt__row dt{
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #6e797c;
}

.booking-receipt__row dd{
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: #181c1d;
    line-height: 1.45;
}

.booking-receipt__ltr-value{
    direction: ltr;
    unicode-bidi: isolate;
    display: inline-block;
}

.booking-receipt__row--split{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    border-bottom: none;
    padding-top: 0;
}

.booking-receipt__row--split > div{
    padding: 12px 14px;
    background: #f7fafb;
    border: 1px solid #e6e9ea;
    border-radius: 8px;
}

.booking-receipt__badge{
    display: inline-block;
    margin-inline-start: 8px;
    padding: 2px 8px;
    border-radius: 4px;
    background: #e8f2f4;
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 600;
    vertical-align: middle;
}

.booking-receipt__arabic-text{
    font-family: "Noto Sans Arabic", "Roboto", system-ui, sans-serif;
    text-transform: none;
    letter-spacing: normal;
}

.booking-receipt__submitted{
    margin: 20px 0 0;
    font-size: 13px;
    color: #6e797c;
}

.booking-receipt__note{
    margin: 16px 0 0;
    padding: 14px 16px;
    border-radius: 8px;
    background: #e8f2f4;
    font-size: 14px;
    line-height: 1.5;
    color: #286674;
}

.booking-receipt__footer{
    padding: 14px 28px;
    border-top: 1px solid #e6e9ea;
    background: #f7fafb;
    font-size: 13px;
    font-weight: 500;
    color: #4d5a5c;
    text-align: center;
}

.booking-confirm-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 8px;
    font-family: "Roboto", system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease;
    text-decoration: none;
    border: none;
}

.booking-confirm-btn:active{ transform: scale(0.98); }

.booking-confirm-btn--primary{
    background: var(--primary-color);
    color: #fff;
}

.booking-confirm-btn--primary:hover{ background: #007b92; }

.booking-confirm-btn--secondary{
    background: #fff;
    color: var(--primary-color);
    border: 1px solid #bec8cc;
}

.booking-confirm-btn--secondary:hover{ background: #f1f4f5; }

.booking-confirm-btn--ghost{
    background: transparent;
    color: var(--primary-color);
    border: 1px solid #bec8cc;
}

.booking-confirm-btn--ghost:hover{ background: #f7fafb; }

.booking-confirm-btn:disabled{
    opacity: 0.65;
    cursor: wait;
}

.booking-confirm-toast{
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    background: #e8f2f4;
    color: #286674;
    font-size: 14px;
    text-align: center;
}

@media (max-width: 768px){
    .booking-receipt__header{
        flex-direction: column;
        align-items: flex-start;
    }

    .booking-receipt__ref{ text-align: start; }

    .booking-receipt__row{
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .booking-receipt__row--split{ grid-template-columns: 1fr; }
}

@media print{
    .booking-confirm-no-print{ display: none !important; }
    .back-to-top{ display: none !important; }
    .float-actions{ display: none !important; }
    .mobile-nav{ display: none !important; }

    body.booking-confirm-page{
        background: #fff;
        color: #000;
    }

    main{
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .booking-receipt{
        box-shadow: none !important;
        border: 1px solid #ccc !important;
        break-inside: avoid;
    }

    .booking-confirm-actions,
    .booking-confirm-toast{ display: none !important; }
}
/* End Booking confirmation */