/*
Theme Name: Boka Travel
Theme URI: https://cmc-agency.me
Author: CMC AGENCY
Author URI: https://cmc-agency.me
Description: Boka Travel is a custom ultra-minimalist theme for travel services, transfers, and tours in Montenegro.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: boka-travel
Tags: travel, transport, tours, 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;
    background: rgba(26, 26, 26, 0.7);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    height: 70px;
    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: 150%;
  margin-bottom: -8px;
}

.logo-link {
    width: 160px;
}

.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: #f47229;
}

.contact-widget, .hero-subtext {
    display: flex;
    align-items: center;
    color: #f47229;
    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: #f47229;
}

.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: #f47229;
  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, #f47229, #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;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 10%;
    overflow: hidden;
}


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

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.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: #f47229;
    font-weight: 300;
    margin-bottom: -5px;
}

.hero-phone {
    font-size: 110px;
    font-weight: bold;
    background: linear-gradient(to right, #f47229, #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: #f47229;
    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: #f47229;
    text-align: center;
}

.plus-sign {
    font-size: 120px;
    font-weight: 700;
    color: #f47229;
    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%;
}



.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, #f47229, #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;
}

.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, #f47229, #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 #f47229;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.card-button:hover {
    background-color: #f47229;
    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: #f47229;
}

.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, #f47229, #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 #f47229;
  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: #000000;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Features Grid for Excursions Page */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-card .feature-icon {
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card .feature-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
    background-color: #f47229;
    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: 60px 10%;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo .logo-link {
    display: block;
    width: 160px;
}

.footer-logo .logo {
    height: auto;
    max-height: 80px;
    width: 100%;
    object-fit: contain;
}

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

.contact-title {
    color: #f47229;
    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: #f47229;
    text-decoration: none;
}

/* TripAdvisor Container in Footer */
.tripadvisor-container {
    max-width: 300px;
    margin-top: 0;
}

.tripadvisor-widget {
    background: #ffffff;
    border: 1px solid #00a680;
    border-radius: 4px;
    padding: 20px;
    font-family: Arial, sans-serif;
    color: #000000;
}

.tripadvisor-header {
    margin-bottom: 15px;
    text-align: right;
}

.tripadvisor-logo {
    height: 24px;
    width: auto;
    display: inline-block;
}

.tripadvisor-content {
    text-align: left;
}

.tripadvisor-business-name {
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.tripadvisor-business-name a {
    color: #000000;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.tripadvisor-business-name a:hover {
    color: #00a680;
}

.tripadvisor-rating {
    margin-bottom: 15px;
}

.tripadvisor-rating-label {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #000000;
}

.tripadvisor-stars {
    display: inline-block;
    margin-right: 8px;
}

.tripadvisor-stars .star {
    color: #00a680;
    font-size: 18px;
    margin-right: 2px;
}

.tripadvisor-stars .star.filled {
    color: #00a680;
}

.tripadvisor-reviews-count {
    display: inline-block;
    font-size: 12px;
    color: #000000;
}

.tripadvisor-ranking {
    margin-bottom: 15px;
}

.tripadvisor-ranking-label {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #000000;
}

.tripadvisor-ranking-value {
    font-size: 12px;
    color: #000000;
}

.tripadvisor-links {
    font-size: 12px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.tripadvisor-link {
    color: #000000;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.tripadvisor-link:hover {
    color: #00a680;
}

.tripadvisor-separator {
    margin: 0 8px;
    color: #000000;
}

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

    .logo-link {
        width: 100px;
    }

    .logo {
        height: 120%;
        margin-bottom: 0;
        object-fit: contain;
    }

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

    .main-navigation {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #1A1A1A;
        border-radius: 20px;
        margin-top: 10px;
        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 !important;
    }

    .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 MOBILE ===== */
    .hero-section {
        padding: 80px 5% 40px 5%;
        height: auto;
        min-height: 100vh;
        min-height: 100dvh;
        overflow: visible;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center;
        padding: 0 10px;
        z-index: 3;
    }

    .hero-text {
        width: 100%;
        margin-bottom: 30px;
    }

    .hero-headline {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero-subheadline {
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 20px;
    }

    .hero-intro {
        margin-bottom: 25px;
    }

    .hero-intro p {
        font-size: 14px;
        line-height: 1.6;
        padding: 0 5px;
    }

    .hero-subtext {
        justify-content: center;
        flex-wrap: wrap;
    }

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

    .hero-phone-icon svg {
        width: 50px;
        height: 50px;
    }

    .hero-label {
        font-size: 12px;
    }

    .hero-cta-button,
    .book-now-btn {
        width: 100%;
        max-width: 280px;
        padding: 15px 30px;
        font-size: 16px;
    }

    .key-points {
        gap: 10px;
    }

    .key-point {
        padding: 8px 12px;
        font-size: 13px;
    }

    .hero-testimonial-small {
        position: relative;
        margin-top: 25px;
        max-width: 100%;
        right: auto;
        bottom: auto;
    }

    .hero-car {
        display: none;
    }

    .hero-visual::after {
        background: rgba(0, 0, 0, 0.5);
    }

    .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;
    }

    .tripadvisor-container {
        margin-top: 20px;
        max-width: 100%;
        width: 100%;
    }

    .tripadvisor-widget {
        padding: 15px;
    }

    .tripadvisor-business-name {
        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: #f47229;
}

/* 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;
    }
}


/* 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;
    }
}


/* ===== FLOATING RIDE BUBBLE STYLES ===== */
.floating-ride-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #f47229 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: #f47229;
    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 #1A1A1A;
}

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

.modal-phone-btn.primary:hover {
    background: #1A1A1A;
    color: white;
    transform: translateY(-2px);
}

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

.modal-phone-btn.secondary:hover {
    background: #1A1A1A;
    color: white;
    transform: translateY(-2px);
}

.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;
    }
}

/* ===== SECTION SEPARATORS ===== */
.section-separator {
    position: relative;
    width: 100%;
    height: 80px;
    overflow: hidden;
    margin-top: -1px; /* To prevent any gap */
}

.section-separator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: inherit;
    clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
    transform: translateY(1px); /* Slight adjustment to prevent visual gaps */
}

/* Specific separator colors for each section */
.main-services-section .section-separator::before {
    background-color: #F8F8F8; /* Color of booking-section */
}

.booking-section .section-separator::before {
    background-color: #f8f8f8; /* Color of popular-transfers-section */
}

.popular-transfers-section .section-separator::before {
    background-color: #F8F8F8; /* Color of popular-excursions-section */
}

.popular-excursions-section .section-separator::before {
    background-color: #1a1a1a; /* Color of contact-section */
}

/* ===== DIAGONAL SECTION SEPARATORS ===== */

/* Diagonal tilt class for sections with sloping top edge */
.section-tilt {
    /* The diagonal cut using clip-path */
    clip-path: polygon(0 5vw, 100% 0, 100% 100%, 0 100%);

    /* Move section up to overlap with previous section */
    margin-top: -5.1vw; /* 0.1vw extra to prevent visual gaps */

    /* Add padding to protect content from being cut by the diagonal */
    padding-top: 10vw;
    padding-bottom: 5vw;

    /* Ensure proper stacking and positioning */
    position: relative;
    z-index: 10;
}

/* Alternative tilt direction (descending slope) */
.section-tilt-reverse {
    clip-path: polygon(0 0, 100% 5vw, 100% 100%, 0 100%);
    margin-top: -5.1vw;
    padding-top: 10vw;
    padding-bottom: 5vw;
    position: relative;
    z-index: 10;
}

/* Special tilt colors for different sections */
.section-tilt-orange.section-tilt {
    background-color: #f47229;
    color: white;
}

/* ===== BOKA TRAVEL STYLES ===== */

/* Modern Highlight Style */
.modern-highlight {
  color: #ffffff !important;
  position: relative;
  display: inline-block;
  padding: 2px 6px;
  font-weight: 700;
  z-index: 1;
}

.modern-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f47229 !important;
  border-radius: 4px;
  transform: rotate(-2deg);
  z-index: -1;
}

/* Large Titles */
.services-header h1 {
  font-size: 3.5rem !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  color: #1a1a1a !important;
  padding-top: 70px;
}

.booking-header h2 {
  font-size: 2.8rem !important;
  font-weight: 900 !important;
  color: #1a1a1a !important;
  padding-top: 70px;
}

.section-header h2 {
  font-size: 3.2rem !important;
  font-weight: 900 !important;
  color: #1a1a1a !important;
  padding-top: 70px;
}

.contact-info h2 {
  font-size: 3rem !important;
  font-weight: 900 !important;
  color: #ffffff !important;
}



.site-logo img {
    height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

/* Header Contact Widget */
.contact-info-header {
    display: flex;
    gap: 15px;
}

.contact-info-header .contact-item {
    margin: 0;
}

.contact-info-header .contact-item a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.contact-info-header .contact-item a:hover {
    color: #f47229;
}

.main-navigation {
    display: flex;
    gap: 30px;
}

.main-navigation a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

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

.language-switcher {
    background-color: #f47229;
    color: #1A1A1A;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    color: white;
    padding: 100px 5% 80px;
    display: flex;
    align-items: center;
    min-height: 60vh;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    max-width: 50%;
    margin-right: auto;
}

.testimonial-quote {
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 15px;
    font-weight: 400;
}

.testimonial-author {
    font-style: italic;
    color: #f47229;
    margin-bottom: 30px;
}

.hero-cta-button {
    background: #f47229;
    color: #ffffff;
    padding: 18px 50px;
    border: none;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(244, 114, 41, 0.3);
}

.hero-cta-button:hover {
    background: #e55a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(244, 114, 41, 0.4);
}

/* New Hero Content Styles */
.hero-headline {
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0px 4px 8px rgba(0,0,0,0.5);
}

.hero-subheadline {
    font-size: 24px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 30px;
    line-height: 1.3;
    text-shadow: 0px 2px 4px rgba(0,0,0,0.3);
    opacity: 0.9;
}

.hero-intro {
    margin-bottom: 40px;
}

.hero-intro p {
    font-size: 18px;
    line-height: 1.6;
    color: #FFFFFF;
    margin-bottom: 0;
    text-shadow: 0px 2px 4px rgba(0,0,0,0.3);
}


/* Small testimonial in absolute position */
.hero-testimonial-small {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 60;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.4);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.testimonial-quote-small {
    margin-bottom: 10px;
}

.testimonial-quote-small svg {
    opacity: 0.8;
    fill: #f47229;
}

.testimonial-text-small {
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    margin-bottom: 8px;
    font-style: italic;
}

.testimonial-author-small {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    margin-bottom: 0;
    text-align: right;
}

/* Main Services Section */
.main-services-section {
    padding: 80px 5%;
    background: #ffffff;
    color: #1A1A1A;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.services-header h1 {
    font-size: 36px;
    font-weight: 900;
    color: #1A1A1A;
    text-align: center;
    margin-bottom: 40px;
}

.services-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.services-content {
    flex: 1;
    text-align: left;
    line-height: 1.6;
}

.services-content p {
    margin-bottom: 20px;
    font-size: 16px;
}

.services-image {
    flex: 0 0 400px;
}

.services-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}


/* Booking Section */
.booking-section {
    padding: 80px 5%;
    background-color: #F8F8F8;
}

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

.booking-header h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 900;
    color: #1A1A1A;
    margin-bottom: 40px;
}

.booking-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.trip-type {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.trip-btn {
    padding: 12px 30px;
    border: 2px solid #1A1A1A;
    background: white;
    color: #1A1A1A;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.trip-btn.active {
    background-color: #1A1A1A;
    color: white;
}

.trip-btn:hover {
    background-color: #1A1A1A;
    color: white;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #1A1A1A;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Mont', sans-serif;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #f47229;
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

.book-now-btn {
    background-color: #f47229;
    color: #1A1A1A;
    padding: 15px 50px;
    border: 2px solid #1A1A1A;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.book-now-btn:hover {
    background-color: #1A1A1A;
    color: white;
    transform: translateY(-2px);
}

/* Popular Transfers Section */
.popular-transfers-section {
    padding: 80px 5%;
    background: #ffffff;
}

.section-header h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 900;
    color: inherit;
    margin-bottom: 50px;
    padding-top: 70px;
}

.transfers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.transfer-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    /* Initial state for GSAP animations */
    opacity: 0;
    transform: translateY(50px);
    width: 100%;
    display: block;
}

.transfer-image {
    height: 200px;
    background-color: #F8F8F8;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.location-icon {
    font-size: 48px;
    font-weight: 900;
    color: #f47229;
    text-transform: uppercase;
}

.transfer-content {
    padding: 25px;
}

.transfer-content h3 {
    font-size: 20px;
    font-weight: 900;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.transfer-price {
    margin: 20px 0;
}

.price {
    font-size: 24px;
    font-weight: 900;
    color: #f47229;
}

.transfer-btn {
    background: #f47229;
    color: #1A1A1A;
    padding: 14px 35px;
    border: 2px solid #1A1A1A;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.transfer-btn:hover {
    background: #1A1A1A;
    color: white;
    transform: translateY(-2px);
}

/* Popular Excursions Section */
.popular-excursions-section {
    padding: 80px 5%;
    background-color: #F8F8F8;
    color: #1A1A1A;
}

.excursions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.excursion-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    /* Initial state for GSAP animations */
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    width: 100%;
    display: block;
}

.excursion-image {
    height: 200px;
    background-color: #F8F8F8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.excursion-content {
    padding: 25px;
}

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

.excursion-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.excursion-price {
    margin: 20px 0;
}

.excursion-btn {
    background-color: #f47229;
    color: #1A1A1A;
    padding: 12px 30px;
    border: 2px solid #1A1A1A;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
}

.excursion-btn:hover {
    background-color: #1A1A1A;
    color: white;
    transform: translateY(-2px);
}

.excursion-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.excursion-btn-info {
    background-color: transparent;
    color: #f47229;
    padding: 10px 25px;
    border: 2px solid #f47229;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.excursion-btn-info:hover {
    background-color: #f47229;
    color: white;
    transform: translateY(-2px);
}

.excursion-btn-book {
    text-align: center;
}

/* Excursion Modal Styles */
.excursion-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.excursion-modal {
    background: white;
    border-radius: 15px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.excursion-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f47229;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.excursion-modal-close:hover {
    background: #1A1A1A;
    transform: rotate(90deg);
}

.excursion-modal-content {
    display: flex;
    flex-direction: row;
    min-height: 400px;
}

.excursion-modal-image {
    flex: 0 0 50%;
    background-color: #F8F8F8;
    overflow: hidden;
}

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

.excursion-modal-info {
    flex: 0 0 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.excursion-modal-info h2 {
    font-size: 28px;
    font-weight: 900;
    color: #1A1A1A;
    margin-bottom: 10px;
}

.modal-tour-category {
    display: inline-block;
    background: #f47229;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 20px;
    width: fit-content;
}

.modal-tour-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}

.modal-tour-itinerary {
    margin-bottom: 25px;
}

.modal-tour-itinerary h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 15px;
}

#modal-tour-itinerary-content {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Itinerary timeline styles for modal (reuse from booking-forms.css) */
#modal-tour-itinerary-content .mtb-itinerary-timeline {
    position: relative;
    padding: 20px 0;
}

#modal-tour-itinerary-content .mtb-itinerary-step {
    position: relative;
    padding-left: 50px;
    margin-bottom: 25px;
    animation: fadeInUp 0.4s ease-out;
}

#modal-tour-itinerary-content .mtb-itinerary-step:last-child {
    margin-bottom: 0;
}

#modal-tour-itinerary-content .mtb-itinerary-step:last-child .mtb-step-marker::after {
    display: none;
}

#modal-tour-itinerary-content .mtb-step-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #f47229 0%, #ff8c42 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(244, 114, 41, 0.3);
    z-index: 2;
}

#modal-tour-itinerary-content .mtb-step-marker::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 36px;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% + 10px);
    background: linear-gradient(to bottom, #f47229 0%, rgba(244, 114, 41, 0.3) 100%);
    z-index: 1;
}

#modal-tour-itinerary-content .mtb-step-number {
    color: white;
    font-weight: bold;
    font-size: 14px;
    line-height: 1;
}

#modal-tour-itinerary-content .mtb-step-content {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 3px solid #f47229;
    transition: all 0.3s ease;
}

#modal-tour-itinerary-content .mtb-step-content:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

#modal-tour-itinerary-content .mtb-step-content p {
    margin: 0;
    color: #333;
    line-height: 1.6;
}

.modal-tour-price {
    margin-bottom: 25px;
    font-size: 20px;
    color: #1A1A1A;
}

.modal-tour-price strong {
    font-weight: 700;
}

.excursion-btn-book-modal {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .excursion-modal-content {
        flex-direction: column;
    }

    .excursion-modal-image {
        flex: 0 0 auto;
        height: 250px;
    }

    .excursion-modal-info {
        flex: 1 1 auto;
        padding: 25px;
    }

    .excursion-modal {
        max-height: 95vh;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 5%;
    background: #1a1a1a;
    color: white;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 900;
    color: white;
    margin-bottom: 30px;
    padding-top: 70px;
}

.contact-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    transition: all 0.4s ease;
    text-shadow: 0 0 10px rgba(244, 114, 41, 0.5);
}

.contact-link:hover {
    color: #f47229;
    transform: translateX(10px);
    text-shadow: 0 0 20px rgba(244, 114, 41, 0.8);
}

.contact-address {
    margin-top: 30px;
}

.contact-address p {
    color: #cccccc;
    font-size: 18px;
    font-weight: 500;
}

.contact-form {
    background: #F8F8F8;
    padding: 40px;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Mont', sans-serif;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f47229;
}

.send-btn {
    background-color: #f47229;
    color: #1A1A1A;
    padding: 15px 40px;
    border: 2px solid #1A1A1A;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-decoration: none;
}

.send-btn:hover {
    background-color: #1A1A1A;
    color: white;
    transform: translateY(-2px);
}

/* TripAdvisor Reviews Carousel */
.tripadvisor-reviews-section {
    background: #ffffff;
    color: #1A1A1A;
}

.reviews-container {
    width: 100%;
    max-width: none;
}

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

.reviews-header h2 {
    font-size: 36px;
    font-weight: 900;
    color: #1A1A1A;
    margin-bottom: 10px;
    padding-top: 70px;
}

.reviews-header p {
    font-size: 18px;
    color: #666;
    margin: 0;
}

/* Marquee Reviews Carousel */
.reviews-marquee {
    position: relative;
    height: auto;
    padding: 30px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.marquee-row {
    position: relative;
    min-height: 280px;
    overflow: hidden;
    padding: 15px 0;
}

.marquee-row-1 {
    border-bottom: 2px solid rgba(244, 114, 41, 0.1);
}

.marquee-row-2 {
    margin-top: 20px;
}

.marquee-content {
    display: flex;
    gap: 30px;
    animation: scroll-left 80s linear infinite;
}

.marquee-row-2 .marquee-content {
    animation: scroll-right 80s linear infinite;
}

.review-card {
    flex: 0 0 350px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(244, 114, 41, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.review-stars {
    margin-bottom: 15px;
    text-align: center;
}

.review-stars .star {
    color: #f47229;
    font-size: 16px;
    margin: 0 1px;
}

.review-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 12px;
    line-height: 1.3;
    text-align: center;
}

.review-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 15px;
    font-style: italic;
    text-align: center;
}

.review-meta {
    font-size: 12px;
    color: #999;
    text-align: center;
    font-weight: 500;
}

/* Gradient fade effect on edges */
.reviews-marquee::before,
.reviews-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 10;
    pointer-events: none;
}

.reviews-marquee::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95), transparent);
}

.reviews-marquee::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.95), transparent);
}

/* Animations */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Pause animation on hover */
.marquee-row:hover .marquee-content {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
    .reviews-marquee {
        height: auto;
        padding: 20px;
    }

    .marquee-row {
        min-height: 240px;
    }

    .review-card {
        flex: 0 0 280px;
        padding: 20px;
    }

    .marquee-content {
        gap: 20px;
        animation-duration: 60s;
    }

    .marquee-row-2 .marquee-content {
        animation-duration: 60s;
    }

    .reviews-marquee::before,
    .reviews-marquee::after {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .reviews-marquee {
        height: auto;
        padding: 15px;
    }

    .marquee-row {
        min-height: 220px;
    }

    .review-card {
        flex: 0 0 250px;
        padding: 15px;
    }

    .review-card h4 {
        font-size: 14px;
    }

    .review-card p {
        font-size: 13px;
    }
}

/* TripAdvisor Section */
.tripadvisor-section {
    padding: 60px 5%;
    background-color: #F8F8F8;
    text-align: center;
}

.tripadvisor-container {
    max-width: 300px;
    margin: 0 auto;
}

/* Footer */
.site-footer {
    background-color: #1A1A1A;
    color: white;
    padding: 40px 5% 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 900;
    color: #f47229;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f47229;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #f47229;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #999;
    font-size: 14px;
}

/* Responsive Design for Boka Travel */
@media (max-width: 768px) {
    .header-contact-bar {
        padding: 15px 5%;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .header-actions {
        flex-direction: column;
        gap: 15px;
    }

    .main-navigation {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-content {
        text-align: center;
    }

    .testimonial-text {
        font-size: 20px;
    }

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

    .hero-subheadline {
        font-size: 20px;
    }

    .hero-intro p {
        font-size: 16px;
    }

    .key-point {
        padding: 10px 15px;
        gap: 10px;
    }

    .key-point-icon {
        font-size: 18px;
        min-width: 25px;
    }

    .key-point-text {
        font-size: 14px;
    }

    .hero-testimonial-small {
        position: static;
        margin-top: 30px;
        max-width: 100%;
        right: auto;
        bottom: auto;
    }


    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .trip-type {
        justify-content: center;
    }

    .transfers-grid,
    .excursions-grid {
        grid-template-columns: 1fr;
    }

    .services-layout {
        flex-direction: column;
        gap: 30px;
    }

    .services-content {
        text-align: center;
    }

    .services-image {
        flex: none;
        max-width: 100%;
    }

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

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== AVAILABLE ROUTES TABLE STYLES ===== */
.available-routes-section {
    padding: 80px 5%;
    background: #ffffff;
}

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

.routes-table-container {
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.mtb-routes-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-family: 'Mont', sans-serif;
}

.mtb-routes-table thead {
    background: linear-gradient(135deg, #f47229 0%, #FFAA00 100%);
    color: white;
}

.mtb-routes-table th,
.mtb-routes-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.mtb-routes-table th {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mtb-routes-table td {
    font-size: 16px;
    color: #1A1A1A;
}

.mtb-routes-table tbody tr:hover {
    background-color: #f8f9fa;
    transition: background-color 0.3s ease;
}

.mtb-routes-table tbody tr:last-child td {
    border-bottom: none;
}

.route-book-btn {
    background-color: #f47229;
    color: white;
    border: 2px solid #f47229;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.route-book-btn:hover {
    background-color: #1A1A1A;
    border-color: #1A1A1A;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(244, 114, 41, 0.3);
}

.no-routes {
    text-align: center;
    font-size: 18px;
    color: #666;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 10px;
    margin: 40px 0;
}

/* Responsive table */
@media (max-width: 768px) {
    .mtb-routes-table th,
    .mtb-routes-table td {
        padding: 10px 8px;
        font-size: 14px;
    }

    .mtb-routes-table th:nth-child(3),
    .mtb-routes-table th:nth-child(4) {
        font-size: 12px;
    }

    .route-book-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
}

/* ===== END RESPONSIVE DESIGN ===== */

/* ===== TRIPADVISOR STYLES ===== */
a {
    background-color: transparent;
    margin: 0;
    padding: 0;
}

a, a:active, a:hover {
    outline: 0;
}

::after, ::before {
    box-sizing: border-box;
}

a:focus {
    color: #23527c;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
    text-decoration: none;
}

* {
    box-sizing: border-box !important;
}

.inherited-styles-for-exported-element {
    font-family: "Trip Sans VF", "Trip Sans", Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 0;
    line-height: normal;
    text-align: left;
}

a, a:hover {
    border-style: none;
    color: #002b11;
    font-weight: 400;
    text-decoration: none;
}

a:hover {
    background-color: transparent;
}

.widSSPClickWrap {
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 1;
}

/* ===== MTB BOOKING FORM INTEGRATION ===== */

/* Override default MTB form styles to match theme design */
.mtb-booking-form {
    max-width: 100% !important;
    margin: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
}

.mtb-form-section {
    padding: 20px 0 !important;
    border-bottom: 1px solid #eee !important;
}

.mtb-form-section:last-child {
    border-bottom: none !important;
}

.mtb-form-section h3 {
    margin: 0 0 20px 0 !important;
    font-size: 20px !important;
    color: #f47229 !important;
    border-bottom: 2px solid #f47229 !important;
    padding-bottom: 10px !important;
    font-weight: 600 !important;
}

.mtb-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.mtb-form-row:last-child {
    margin-bottom: 0;
}

.mtb-form-group {
    flex: 1;
    margin-bottom: 20px;
}

.mtb-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 16px;
}

.mtb-form-group input,
.mtb-form-group select,
.mtb-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: #fff;
}

.mtb-form-group input:focus,
.mtb-form-group select:focus,
.mtb-form-group textarea:focus {
    outline: none;
    border-color: #f47229;
    box-shadow: 0 0 0 3px rgba(244, 114, 41, 0.1);
}

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

/* ===== MULTI-STEP FORM STYLES ===== */

/* Progress Indicator */
.mtb-progress-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    padding: 0 20px;
}

.mtb-progress-indicator::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.mtb-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 150px;
}

.mtb-progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    right: -50%;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
    transition: background-color 0.3s ease;
}

.mtb-progress-step.completed::after {
    background: #f47229;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    position: relative;
    z-index: 2;
}

.mtb-progress-step.active .step-number {
    background: #f47229;
    color: white;
    border-color: #f47229;
    box-shadow: 0 2px 8px rgba(244, 114, 41, 0.3);
}

.mtb-progress-step.completed .step-number {
    background: #1A1A1A;
    color: white;
    border-color: #1A1A1A;
}

.step-label {
    font-size: 12px;
    color: #666;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mtb-progress-step.active .step-label {
    color: #f47229;
    font-weight: 700;
}

.mtb-progress-step.completed .step-label {
    color: #1A1A1A;
    font-weight: 600;
}

/* Form Steps */
.mtb-form-step {
    display: none;
    animation: fadeIn 0.3s ease-out;
}

.mtb-form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Step Navigation */
.mtb-step-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #eee;
    gap: 15px;
}

.mtb-nav-btn {
    padding: 14px 32px;
    border: 2px solid #f47229;
    background: #f47229;
    color: white;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Mont', sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 150px;
}

.mtb-nav-btn:hover {
    background: #1A1A1A;
    border-color: #1A1A1A;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 26, 26, 0.2);
}

.mtb-prev-btn {
    background: white;
    color: #f47229;
    border-color: #f47229;
}

.mtb-prev-btn:hover {
    background: #f47229;
    color: white;
    border-color: #f47229;
}

.mtb-submit-btn {
    background: #f47229;
    color: white;
    border: 2px solid #f47229;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Mont', sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 200px;
}

.mtb-submit-btn:hover {
    background: #1A1A1A;
    border-color: #1A1A1A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 26, 26, 0.2);
}

.mtb-submit-btn:disabled {
    background: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Enhanced Price Display */
.mtb-price-display {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #f47229;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin: 30px 0;
    box-shadow: 0 2px 10px rgba(244, 114, 41, 0.1);
}

.mtb-price-display strong {
    font-size: 18px;
    color: #f47229;
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

#mtb-calculated-price {
    font-size: 28px;
    font-weight: 900;
    color: #1A1A1A;
}

/* Responsive Multi-Step */
@media (max-width: 768px) {
    .mtb-progress-indicator {
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .mtb-progress-indicator::before {
        left: 5%;
        right: 5%;
    }

    .mtb-progress-step {
        max-width: 90px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
        margin-bottom: 8px;
    }

    .step-label {
        font-size: 10px;
        line-height: 1.2;
    }

    .mtb-step-navigation {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
        padding-top: 25px;
    }

    .mtb-nav-btn,
    .mtb-submit-btn {
        width: 100%;
        padding: 14px 24px;
        min-width: auto;
    }

    .mtb-price-display {
        padding: 15px;
        margin: 20px 0;
    }

    .mtb-price-display strong {
        font-size: 16px;
    }

    #mtb-calculated-price {
        font-size: 24px;
    }
}

/* Tours Grid Integration */
.mtb-tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.mtb-tour-card {
    border: 2px solid #e0e0e0 !important;
    border-radius: 12px !important;
    padding: 25px !important;
    transition: all 0.3s ease !important;
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}

.mtb-tour-card:hover {
    border-color: #f47229 !important;
    box-shadow: 0 4px 20px rgba(244, 114, 41, 0.15) !important;
    transform: translateY(-2px);
}

.mtb-tour-card input[type="radio"] {
    display: none !important;
}

.mtb-tour-card input[type="radio"]:checked + .mtb-tour-select {
    background: #f47229 !important;
    color: white !important;
    border-color: #f47229 !important;
}

.mtb-tour-header {
    text-align: center;
    margin-bottom: 15px;
}

.mtb-tour-header h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 600;
}

.mtb-tour-category {
    display: inline-block;
    background: #f47229;
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
}

.mtb-tour-price {
    font-size: 16px;
    font-weight: bold;
    color: #f47229;
    margin-top: 8px;
}

.mtb-tour-details {
    margin-bottom: 15px;
}

.mtb-tour-description p {
    margin: 0 0 10px 0;
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

.mtb-tour-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.mtb-tour-itinerary-toggle {
    text-align: center;
    margin-bottom: 10px;
}

.mtb-itinerary-btn {
    background: #f8f8f8;
    color: #f47229;
    border: 1px solid #f47229;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.mtb-itinerary-btn:hover {
    background: #f47229;
    color: white;
}

.mtb-tour-itinerary {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.mtb-itinerary-content {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.mtb-tour-select {
    text-align: center;
    padding: 12px;
    background: #f8f8f8;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #ddd;
}

/* Guest Info and Price Display */
.mtb-guest-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-top: 10px;
}

.mtb-guest-limits {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

.mtb-price-display {
    text-align: center;
    font-size: 18px;
    color: #f47229;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    font-weight: 600;
}

/* Form Actions */
.mtb-form-actions {
    text-align: center;
    padding: 30px 0;
    background: #f8f8f8;
    margin-top: 30px;
}

.mtb-submit-btn {
    background: #f47229 !important;
    color: white !important;
    border: none !important;
    padding: 15px 40px !important;
    font-size: 18px !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    min-width: 200px !important;
    font-weight: 600 !important;
}

.mtb-submit-btn:hover {
    background: #e55a1a !important;
    transform: translateY(-1px);
}

.mtb-submit-btn:disabled {
    background: #ccc !important;
    cursor: not-allowed !important;
    transform: none !important;
}

.mtb-loading {
    display: inline-block;
    margin-left: 10px;
    font-style: italic;
    color: #666;
}

/* Messages */
.mtb-message {
    padding: 15px 20px;
    margin: 15px 0;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.mtb-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.mtb-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design for Booking Forms */
@media (max-width: 768px) {
    .mtb-form-row {
        flex-direction: column;
        gap: 0;
    }

    .mtb-tours-grid {
        grid-template-columns: 1fr;
    }

    .mtb-form-section {
        padding: 20px 0;
    }

    .mtb-form-title {
        font-size: 24px;
    }

    .mtb-form-actions {
        padding: 20px 0;
    }

    .mtb-submit-btn {
        width: 100%;
        padding: 14px;
        font-size: 16px;
    }
}

/* ===== GALLERY STYLES ===== */
.gallery-section {
    padding: 80px 5%;
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.gallery-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

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

.gallery-image-container {
    height: 250px;
    background-color: #F8F8F8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

/* ===== RESPONSIVE GALLERY ===== */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }

    .gallery-image-container {
        height: 200px;
    }

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

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-image-container {
        height: 250px;
    }
}

/* ===== GALLERY LIGHTBOX ===== */
.gallery-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.gallery-lightbox {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.gallery-lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 10001;
    padding: 10px;
    transition: color 0.3s ease;
}

.gallery-lightbox-close:hover {
    color: #f47229;
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    z-index: 10001;
    transition: all 0.3s ease;
}

.gallery-lightbox-prev {
    left: -70px;
}

.gallery-lightbox-next {
    right: -70px;
}

.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
    background: rgba(244, 114, 41, 0.8);
    transform: translateY(-50%) scale(1.1);
}

/* ===== RESPONSIVE LIGHTBOX ===== */
@media (max-width: 768px) {
    .gallery-lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 30px;
    }

    .gallery-lightbox-prev,
    .gallery-lightbox-next {
        display: none; /* Hide navigation buttons on mobile for better UX */
    }

    .gallery-lightbox img {
        max-width: 95vw;
        max-height: 80vh;
    }
}
