:root {
    --primary: #1a1a1a;
    --secondary: #c9a961;
    --accent: #8b7355;
    --light: #f8f5f0;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);

    --container: 1400px;
    --header-h: 80px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: "Montserrat", sans-serif;
    color: var(--primary);
    line-height: 1.6;
    overflow-x: hidden; /* This is important! */
}

/* Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    transition: all 0.3s ease;
}

.nav {
    max-width: var(--container);
    margin: 0 auto;
    padding: 1.2rem 2rem;
    min-height: var(--header-h);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
    text-decoration: none;
}
.logo span { color: var(--secondary); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.2rem;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}
.nav a:hover { color: var(--secondary); }

.cta-button {
    background: var(--secondary);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.cta-button:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.3);
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0.5rem;
}
.nav-toggle__bar {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--primary);
    margin: 6px 0;
}

/* Hero */
.hero {
    height: calc(100vh - var(--header-h));
    margin-top: var(--header-h);
    background:
            linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(139, 115, 85, 0.6)),
            url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 800'><rect fill='%23f8f5f0' width='1200' height='800'/><g fill='%23c9a961' opacity='0.1'><circle cx='200' cy='150' r='80'/><circle cx='900' cy='600' r='120'/><circle cx='600' cy='400' r='100'/></g></svg>");
    background-size: cover;
    background-position: center;
    display: grid;
    place-items: center;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

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

.hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 4.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    line-height: 1.2;
}
.hero h1 strong { font-weight: 700; color: var(--secondary); }

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    font-size: 1rem;
    display: inline-block;
}
.btn-primary { background: var(--secondary); color: var(--white); }
.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.4);
}
.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.btn-secondary:hover { background: var(--white); color: var(--primary); }

/* Trust */
.trust-section {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}
.trust-section h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}
.trust-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}
.trust-logo {
    opacity: 0.7;
    transition: opacity 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}
.trust-logo:hover { opacity: 1; }

/* Sections common */
.services, .destinations, .fleet, .contact { padding: 6rem 2rem; }
.services { background: var(--light); }
.destinations { background: var(--white); }
.fleet { background: var(--light); }

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-header h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}
.section-header h2 strong { font-weight: 700; color: var(--secondary); }
.section-header p {
    font-size: 1.1rem;
    color: var(--accent);
    max-width: 700px;
    margin: 0 auto;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.service-icon { font-size: 3rem; margin-bottom: 1.5rem; }
.service-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.service-card p { color: var(--accent); line-height: 1.8; }

/* Destinations */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: var(--container);
    margin: 0 auto;
}
.destination-card {
    position: relative;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 25px var(--shadow);
}
.destination-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.8));
    z-index: 1;
}
.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.destination-card:hover img { transform: scale(1.1); }
.destination-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 2;
    color: var(--white);
}
.destination-info h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Contact */
.contact { background: var(--primary); color: var(--white); }
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.contact-info h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}
.contact-info p { font-size: 1.1rem; margin-bottom: 2rem; line-height: 1.8; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; font-size: 1.1rem; }
.contact-item span { color: var(--secondary); font-size: 1.5rem; }
.contact-link { color: rgba(255,255,255,0.9); text-decoration: none; }
.contact-link:hover { color: var(--secondary); }

.booking-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; letter-spacing: 0.5px; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 10px;
    font-family: "Montserrat", sans-serif;
    transition: all 0.3s ease;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255, 255, 255, 0.5); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.15);
}

.submit-btn {
    width: 100%;
    background: var(--secondary);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}
.submit-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.3);
}
.form-note { margin-top: 1rem; min-height: 1.2em; opacity: 0.9; }

/* Footer */
.site-footer {
    background: #0a0a0a;
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 2rem 1.5rem;
    text-align: center;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
    text-align: left;
}
.footer-section h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}
.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}
.footer-section a:hover { color: var(--secondary); }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    font-size: 0.9rem;
}

/* Scroll animations */
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* =========================================
   Airport Feature Section (like screenshot)
========================================= */
.feature {
    padding: 6rem 2rem;
    background: var(--light);
}
.feature__container { max-width: var(--container); margin: 0 auto; }
.feature__stack {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 2rem;
    align-items: center;
    min-height: 520px;
}
.feature__textCard {
    background: var(--white);
    border-radius: 18px;
    padding: 3.2rem 3rem;
    box-shadow: 0 12px 35px var(--shadow);
    max-width: 720px;
    z-index: 2;
}
.feature__kicker {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(26, 26, 26, 0.65);
    margin-bottom: 1.5rem;
}
.feature__title {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    font-size: 3rem;
    line-height: 1.1;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}
.feature__desc {
    color: rgba(26, 26, 26, 0.7);
    line-height: 1.8;
    max-width: 52ch;
}
.feature__actions {
    margin-top: 2.2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature__mediaCard {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
    background: #111;
    height: 520px;
    margin-left: -80px;
    z-index: 3;
}
.feature__mediaFrame { position: absolute; inset: 0; }
.feature__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 300ms ease, transform 600ms ease;
}
.feature__img.is-active { opacity: 1; transform: scale(1); }

.feature__navBtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.35);
    color: var(--white);
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 26px;
    line-height: 1;
}
.feature__navBtn--prev { left: 16px; }
.feature__navBtn--next { right: 16px; }

.feature__dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    z-index: 5;
}
.feature__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    border: 0;
    cursor: pointer;
}
.feature__dot.is-active {
    background: rgba(255, 255, 255, 0.95);
    transform: scale(1.2);
}

/* =========================================
   Fleet Carousel (like screenshot)
========================================= */
.fleet-carousel { background: var(--white); }
.fleet-carousel__container { max-width: var(--container); margin: 0 auto; }

.fleet-slider { position: relative; margin-top: 2.5rem; }
.fleet-slider__card {
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 16px 45px var(--shadow);
    padding: 2.5rem;
    position: relative;
}
.fleet-slider__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 2.5rem;
}
.fleet-slider__media {
    position: relative;
    min-height: 320px;
    display: grid;
    place-items: center;
}
.fleet-slider__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 260ms ease, transform 500ms ease;
}
.fleet-slider__img.is-active { opacity: 1; transform: translateY(0); }

.fleet-slider__name {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.4rem;
    font-weight: 400;
    margin-bottom: 1rem;
}
.fleet-slider__desc {
    color: rgba(26, 26, 26, 0.7);
    line-height: 1.85;
    max-width: 48ch;
    margin-bottom: 1.8rem;
}

.fleet-slider__cta {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 0.95rem 2.2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.fleet-slider__cta:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(201, 169, 97, 0.25);
}

.fleet-slider__sideBtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 999px;
    border: 0;
    background: transparent;
    color: var(--primary);
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.75;
    transition: opacity 150ms ease, transform 150ms ease;
    z-index: 5;
}
.fleet-slider__sideBtn:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
}
.fleet-slider__sideBtn--prev { left: -70px; }
.fleet-slider__sideBtn--next { right: -70px; }

.fleet-slider__dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    padding-top: 2.2rem;
}
.fleet-slider__dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: 0;
    background: rgba(26, 26, 26, 0.18);
    cursor: pointer;
    transition: transform 150ms ease, background 150ms ease;
}
.fleet-slider__dot.is-active {
    background: rgba(26, 26, 26, 0.75);
    transform: scale(1.2);
}

/* =========================================
   Modals (your existing)
========================================= */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    overflow-y: auto;
}
.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease;
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.modal-content h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}
.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--accent);
}
.close-modal:hover { color: var(--primary); }

/* Booking tabs */
.booking-tabs {
    display: flex;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
}
.tab-btn {
    flex: 1;
    padding: 1rem;
    background: transparent;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
    cursor: pointer;
    border-bottom: 3px solid transparent;
}
.tab-btn.active {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}
.tab-content { display: none; }
.tab-content.active { display: block; }

.booking-widget { padding: 1rem 0; }

.input-group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    background: var(--light);
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}
.input-group.small { flex: 1; }
.input-group:focus-within {
    border-color: var(--secondary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.input-icon { font-size: 1.3rem; }
.location-input, .datetime-input, .time-select {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-family: "Montserrat", sans-serif;
    color: var(--primary);
    outline: none;
}
.datetime-group { display: flex; gap: 0.8rem; margin-bottom: 1rem; }

.add-stop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.text-button {
    background: transparent;
    border: none;
    color: var(--secondary);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
}
.text-button:hover { color: var(--accent); }

.icon-button {
    background: var(--light);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}
.icon-button:hover {
    background: var(--secondary);
    color: var(--white);
    transform: rotate(180deg);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}
.checkbox-group input[type="checkbox"] { width: 18px; height: 18px; cursor: pointer; }

.estimate-btn, .validate-btn, .confirm-btn {
    width: 100%;
    background: var(--secondary);
    color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}
.estimate-btn:hover, .validate-btn:hover, .confirm-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.3);
}

.price-display {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 15px;
}
.price-display h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.price-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e0e0e0;
}
.price-row.total {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
    border-bottom: none;
    padding-top: 1rem;
}
.note-text {
    text-align: center;
    color: var(--accent);
    font-size: 0.9rem;
    margin-top: 1.5rem;
    line-height: 1.6;
}

/* Payment modal */
.payment-modal { max-width: 700px; }
.booking-summary {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}
.booking-summary h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}
.payment-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
}
.payment-option:hover { border-color: var(--secondary); }
.payment-option input[type="radio"] { width: 20px; height: 20px; cursor: pointer; }
.payment-option span { font-weight: 600; }

.card-form { margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.terms-check {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}
.terms-check input[type="checkbox"] { margin-top: 3px; width: 18px; height: 18px; cursor: pointer; }
.terms-check a { color: var(--secondary); text-decoration: none; }

.payment-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}
.final-price {
    font-size: 1.8rem;
    color: var(--secondary);
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
}
/* Accessible helper */
.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;
}

.logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
    text-decoration: none;
}
.logo span { color: var(--secondary); }

/* Logo Image Styles - Circular & Bigger */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.88;
}

.logo-img {
    height: 140px;
    width: 140px;
    max-width: 140px;
    object-fit: cover;
    display: block;
    border-radius: 50%; /* Makes it circular */
    border: 3px solid var(--secondary); /* Gold border */
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.5);
}

/* Responsive logo sizing */
@media (max-width: 1200px) {
    .logo-img {
        height: 120px;
        width: 120px;
        max-width: 120px;
    }
}

@media (max-width: 968px) {
    .logo-img {
        height: 100px;
        width: 100px;
        max-width: 100px;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 80px;
        width: 80px;
        max-width: 80px;
        border-width: 2px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 65px;
        width: 65px;
        max-width: 65px;
        border-width: 2px;
    }
}

/* Language Segmented Control - Premium Style */
.lang-segmented {
    position: relative;
    display: inline-flex;
    background: rgba(201, 169, 97, 0.12);
    border-radius: 25px;
    padding: 0.3rem;
    gap: 0.3rem;
}

.lang-seg {
    position: relative;
    background: transparent;
    border: none;
    color: var(--primary);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    letter-spacing: 0.5px;
    min-width: 50px;
}

.lang-seg:hover {
    color: var(--secondary);
}

.lang-seg.active {
    color: var(--white);
}

.lang-indicator {
    position: absolute;
    background: var(--secondary);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    height: calc(100% - 0.6rem);
    top: 0.3rem;
    left: 0.3rem;
    width: 0;
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.3);
}

/* OLD LANG-SWITCH STYLES - REMOVE THESE */
/* Delete the .lang-switch, .lang-btn, and related styles */



/* Optional: slightly smaller on mobile */
@media (max-width: 968px) {
    .logo-svg svg {
        height: 40px;
    }
}

/* Responsive */
@media (max-width: 1100px) {
    .fleet-slider__sideBtn--prev { left: -35px; }
    .fleet-slider__sideBtn--next { right: -35px; }
}

@media (max-width: 968px) {
    .nav {
        padding: 1rem;
        gap: 1rem; /* Reduce gap */
    }

    /* Logo smaller on mobile */
    .logo-img {
        height: 70px;
        width: 70px;
        max-width: 70px;
    }

    /* Language segmented - smaller on mobile */
    .lang-segmented {
        padding: 0.2rem;
        gap: 0.2rem;
        order: 2; /* Move after logo */
    }

    .lang-seg {
        padding: 0.35rem 0.8rem;
        font-size: 0.75rem;
        min-width: 40px;
    }

    .lang-indicator {
        height: calc(100% - 0.4rem);
        top: 0.2rem;
        left: 0.2rem;
    }

    /* Nav toggle - move to right */
    .nav-toggle {
        display: inline-block;
        order: 3;
        margin-left: auto;
    }

    /* Logo first */
    .logo-link {
        order: 1;
    }
    .nav-links {
        position: fixed;
        top: var(--header-h);
        right: 0;
        left: 0;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        padding: 1.2rem 2rem 2rem;
        display: grid;
        gap: 1rem;
        transform: translateY(-140%);
        transition: transform 0.25s ease;
    }
    .nav-links.is-open { transform: translateY(0); }

    .hero h1 { font-size: 3rem; }
    .contact-container { grid-template-columns: 1fr; }

    .feature__stack { grid-template-columns: 1fr; min-height: unset; }
    .feature__mediaCard { margin-left: 0; height: 360px; }
    .feature__textCard { padding: 2.5rem 2rem; }
    .feature__title { font-size: 2.2rem; }

    .fleet-slider__card { padding: 2rem; }
    .fleet-slider__grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .fleet-slider__media { min-height: 260px; }
    .fleet-slider__sideBtn {
        top: auto;
        bottom: 92px;
        transform: none;
        width: 48px;
        height: 48px;
        font-size: 34px;
    }
    .fleet-slider__sideBtn--prev { left: 10px; }
    .fleet-slider__sideBtn--next { right: 10px; }

    .datetime-group { flex-direction: column; }
    .form-row { grid-template-columns: 1fr; }
}
/* Fix mobile overflow issues */
* {
    max-width: 100%;
}

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

/* Fix specific overflow issues */
@media (max-width: 968px) {
    .nav {
        padding: 1rem 1rem; /* Reduce padding on mobile */
    }

    .hero-content {
        padding: 1rem; /* Reduce padding */
    }

    .feature__mediaCard {
        margin-left: 0; /* Remove negative margin */
    }

    /* Ensure all sections don't overflow */
    .services, .destinations, .fleet, .contact {
        padding: 4rem 1rem;
    }

    .section-header h2 {
        font-size: 2.2rem; /* Smaller on mobile */
    }

    .hero h1 {
        font-size: 2.5rem; /* Smaller on mobile */
    }

    /* Fix logo on very small screens */
    .logo-img {
        height: 60px;
        width: 60px;
        max-width: 60px;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 0.8rem 0.8rem;
    }

    .logo-img {
        height: 50px;
        width: 50px;
        max-width: 50px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
}