

/* WhatsApp Floating Icon */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background: none;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s;
}
.whatsapp-float:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
@media (max-width: 720px) {
    .tours-grid.carousel .tour-card {
        flex: 0 0 70%;
        max-width: 70%;
        margin-left: 0;
        margin-right: 0;
        border-radius: 18px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.08);
        overflow: hidden;
    }
}
@media (min-width: 721px) {
    .tours-grid.carousel .tour-card {
        flex: 0 0 20%;
        max-width: 20%;
        margin-left: 0;
        margin-right: 0;
        border-radius: 18px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.08);
        overflow: hidden;
    }
}
/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0f172a;
    --accent-color: #0f172a;
    --accent-light: #a7d9ff;
    --accent-soft: rgba(79, 163, 255, 0.14);
    --surface: #f7faff;
    --surface-strong: #eef6ff;
    --surface-soft: rgba(255,255,255,0.92);
    --border: rgba(11, 47, 96, 0.12);
    --text-dark: #010d20;
    --text-muted: #010d20;
    --text-light: #7b8aa7;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(11, 47, 96, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.65;
    color: var(--text-dark);
    overflow-x: hidden;
    background: radial-gradient(circle at top left, rgba(79,163,255,0.15), transparent 20%), radial-gradient(circle at bottom right, rgba(79,163,255,0.08), transparent 22%), linear-gradient(180deg, #f7faff 0%, #eaf4ff 45%, #f8fcff 100%);
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 36px;
}

/* Header */
.header {
    background: #0DA2DD;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
    backdrop-filter: blur(16px);
    height: 65px;
}

.logo {
    display: flex;
    align-items: center;
    height: 50px;
    min-height: 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo h1 {
    color: #fff !important;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo h1 a {
    color: #fff !important;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    text-decoration: none;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav ul li a {
    text-decoration: none;
    color: rgba(248,250,252,0.95) !important;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s ease;
    position: relative;
}

.nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    transition: width 0.25s ease;
}

.nav ul li a:hover {
    color: var(--accent-light);
}

.nav ul li a:hover::after {
    width: 100%;
}

.nav ul li a:hover::after {
    width: 100%;
}

/* Language Selector */
.language-selector {
    display: flex;
    gap: 8px;
    margin: 0 0 0 0;
    align-items: center;
}

.language-selector a::after {
    display: none;
}

.lang-btn {
    padding: 8px 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger-menu span {
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

body.menu-open {
    overflow: hidden;
    padding-left: 16px;
    box-sizing: border-box;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s;
}

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

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 700px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.03);
    animation: slideDown 0.3s ease;
    max-height: 85vh;
    overflow-y: auto;
}

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

 .close {
    color: var(--primary-color); /* Use the main blue */
    float: right;
    font-size: 32px;
    font-weight: bold;
    padding: 10px 20px;
    cursor: pointer;
    transition: color 0.3s;
}

 .close:hover,
 .close:focus {
    color: var(--accent-color); /* Lighter blue on hover */
}

.modal-content h2 {
    padding: 25px 30px 15px;
    margin: 0;
    color: var(--text-dark);
    font-size: 28px;
    border-bottom: 3px solid var(--accent-color);
}

.modal-body {
    padding: 30px;
}

.modal-info {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 5px;
}

.modal-info p {
    margin: 0;
    font-size: 16px;
    color: #555;
}

.modal-info strong {
    color: #222;
}

.modal-description,
.modal-includes {
    margin-bottom: 25px;
}

.modal-description h3,
.modal-includes h3 {
    font-size: 20px;
    color: #222;
    margin-bottom: 12px;
    font-weight: 600;
}

.modal-description p {
    line-height: 1.8;
    color: #555;
    font-size: 15px;
}

.modal-includes ul {
    list-style: none;
    padding: 0;
}

.modal-includes ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #555;
    font-size: 15px;
}

.modal-includes ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 18px;
}

.modal-actions {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.modal-book {
    display: inline-block;
    padding: 14px 40px;
}

/* Hero Section */
.hero {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 45px 20px 30px;
    overflow: hidden;
    color: #ffffff;

     background:
      linear-gradient(
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.45)
      ),
      url("hero.jpg");

    background-size: cover;
    background-position: center;

}

.hero::before {
    content: '';
    position: absolute;
    top: 8%;
    right: -6%;
    width: 300px;
    height: 300px;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    left: 10%;
    bottom: 10%;
    width: 240px;
    height: 240px;
    pointer-events: none;
}

.hero-copy {
    max-width: 720px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 28px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 32px 80px rgba(15, 23, 42, 0.14);
    padding: 26px;
    color: #ffffff;
}

.hero-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.hero-card-title {
    font-size: 1.75rem;
    margin-bottom: 18px;
    line-height: 1.2;
    color: #ffffff;
}

.hero-copy h1 {
    font-size: clamp(3rem, 5vw, 4.8rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.05em;
    line-height: 1.05;
}

.hero-copy p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    font-weight: 400;
    color: #ffffff;
    max-width: 670px;
    line-height: 1.8;
}

.hero-pill {
    display: inline-flex;
    margin-bottom: 20px;
    padding: 12px 20px;
    border-radius: 999px;
    background: rgba(16, 97, 216, 0.1);

    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-content h1 {
    font-size: clamp(3rem, 5vw, 4.8rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.05em;
    line-height: 1.05;
    color: #ffffff;
}

.hero-content p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    font-weight: 400;
    color: #ffffff;
    max-width: 670px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.shuttle-widget {
    display: none;
}

.shuttle-widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.shuttle-widget-label {
    display: inline-block;
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    font-weight: 800;
}

.shuttle-widget h2 {
    font-size: 1.55rem;
    margin-top: 8px;
    color: #0f172a;
    line-height: 1.2;
}

.shuttle-widget-status {
    font-size: 0.95rem;
    color: #475569;
    white-space: nowrap;
}

.shuttle-widget-form {
    display: grid;
    gap: 16px;
}

.shuttle-widget-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.shuttle-widget-row--compact {
    grid-template-columns: repeat(2, minmax(135px, 1fr));
}

.shuttle-widget label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.95rem;
    color: #334155;
}

.shuttle-widget label span {
    font-weight: 600;
}

.shuttle-widget input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    background: #fff;
    font-size: 0.95rem;
    color: #0f172a;
}

.shuttle-widget input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.shuttle-widget-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.shuttle-widget-link {
    display: inline-flex;
    align-items: center;
    color: #0f172a;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
}

.shuttle-widget-link:hover {
    color: var(--accent-color);
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(320px, 520px);
    gap: 40px;
    align-items: center;
    width: min(100%, 1180px);
    margin: 0 auto;
}

.transfer-hero-inner {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 360px);
    gap: 30px;
    align-items: center;
    padding: 12px 0;
}

.transfer-hero-image img,
.shuttle-intro-image img {
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 15px;
}

.transfer-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.shuttle-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 28px;
}

.shuttle-intro-image img {
    width: 100%;
    display: block;
    border-radius: 24px;
}

.shuttle-intro-copy {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero .btn-primary {
    padding: 16px 34px;
    border-radius: 999px;
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.16);
}

.hero .btn-secondary {
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.16);
    color: #f7f8f8;
    background: #0DA2DD;;
}

.hero .btn-secondary:hover {
    background: rgba(255,255,255,1);
    color: #0f172a;
    box-shadow: 0 14px 24px rgba(15, 23, 42, 0.1);
}

.hero-link {
    display: inline-block;
    margin-top: 18px;
    color: var(--accent-color);
    font-size: 0.98rem;
    font-weight: 600;
    text-decoration: none;
}

.hero-link:hover {
    text-decoration: underline;
}

.hero-dot {
    display: none;
}

@media (max-width: 760px) {
    .hero {
        padding: 12px 16px 12px;
        min-height: 100px;
    }
    .hero-inner,
    .shuttle-intro {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content,
    .shuttle-intro-copy {
        padding: 0;
        margin: 0;
    }
    .hero-visual,
    .shuttle-intro-image {
        justify-content: center;
    }
    .hero-visual img,
    .shuttle-intro-image img {
        max-width: 100%;
    }
    .hero-content {
        padding: 30px 24px;
    }
    .hero-content h1 {
        font-size: clamp(2.6rem, 9vw, 3.6rem);
        margin-bottom: 16px;
        color: #ffffff !important;
    }
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    .hero-buttons {
        gap: 16px;
    }
    .shuttle-widget {
        padding: 20px;
    }
    .shuttle-widget-row,
    .shuttle-widget-row--compact {
        grid-template-columns: 1fr;
    }
    .shuttle-widget-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .shuttle-widget-link {
        justify-content: center;
    }
    .hero .btn-primary,
    .hero .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 720px) {
    .hero {
        padding: 18px 15px;
        min-height: 100px;
    }
    .hero-content h1 {
        font-size: 34px;
    }
    .hero-content p {
        font-size: 15px;
    }
    .hero-buttons {
        gap: 8px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero .btn-primary,
    .hero .btn-secondary {
        padding: 10px 16px;
        font-size: 13px;
        width: auto;
        max-width: none;
        flex: 0 1 auto;
    }
}

/* Buttons */
.btn-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    padding: 14px 38px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 15px;
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.25), 0 1px 3px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 102, 255, 0.35), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--accent-color);
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
    font-size: 14px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.25);
}

.hero .hero-transfer {
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(11, 47, 96, 0.12);
    color: var(--text-dark);
    background: rgba(255,255,255,0.94);
    box-shadow: 0 8px 18px rgba(11, 47, 96, 0.06);
    font-size: 0.95rem;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.hero .hero-transfer:hover {
    background: rgba(255,255,255,1);
    border-color: rgba(11, 47, 96, 0.18);
    transform: translateY(-1px);
}

.tour-note {
    margin-top: 10px;
    font-style: italic;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Tours Section */

.shuttle-section {
    padding: 70px 0;
}

.shuttle-section .container {
    border-radius: 18px;
    padding: 36px 28px;
}

.shuttle-content {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 38px;
    align-items: flex-start;
}

.shuttle-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.shuttle-image {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shuttle-image img {
    width: auto;
    height: auto;
    display: block;
    max-width: 100%;
    max-height: 300px;
}

.shuttle-text {
    font-size: 15px;
    color: rgba(30,41,58,0.8);
    line-height: 1.7;
    margin: 0;
}

.shuttle-right {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
        padding: 22px;
        box-shadow: 0 10px 34px rgba(0,102,255,0.12);
        max-width: 640px;
        width: 100%;
    }

    .transfer-form {
        display: grid;
        gap: 22px;
        width: 100%;
        max-width: 100%;
    }

    .transfer-form .form-row {
        display: grid;
        gap: 16px;
        grid-template-columns: repeat(2, minmax(160px, 1fr));
        min-width: 0;
    }

    .transfer-form .form-row--full {
        grid-template-columns: 1fr;
    }

    .transfer-form .form-row--three {
        grid-template-columns: repeat(3, minmax(130px, 1fr));
    }

.form-group {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    font-size: 11px;
    color: var(--accent-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #f7fbff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: var(--text-dark);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 163, 255, 0.15);
}

.shuttle-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 6px;

}

.shuttle-form {
    margin-top: 18px;
}

.shuttle-form.is-hidden {
    display: none;
}

.shuttle-toggle {
    min-width: 220px;
}

.shuttle-form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 18px;
    margin-top: 14px;
}

.shuttle-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.shuttle-field.full {
    grid-column: span 3;
}

.shuttle-return-group {
    display: contents;
}

.shuttle-return-group.is-hidden {
    display: none;
}

.shuttle-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-color);
}

.shuttle-field input,
.shuttle-field textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--light-gray);
    background: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
}

.shuttle-field input:focus,
.shuttle-field textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 163, 255, 0.15);
}

.shuttle-radio {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.shuttle-radio label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

@media (max-width: 980px) {
    .shuttle-content {
        grid-template-columns: 1fr;
    }
    .shuttle-form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .shuttle-field.full {
        grid-column: span 2;
    }
}

@media (max-width: 720px) {
    .shuttle-section {
        padding: 36px 0;
    }

    .shuttle-section .container {
        padding: 18px 12px;
        border-radius: 14px;
    }

    .shuttle-right {
        max-width: 100%;
        margin: 0 auto;
        padding: 10px;
    }

    .shuttle-text {
        font-size: 14px;
    }

    .transfer-form {
        max-width: 100%;
    }

    .form-row {
        grid-template-columns: repeat(2, minmax(100px, 1fr));
    }

    .form-row--three {
        grid-template-columns: repeat(3, minmax(100px, 1fr));
    }

    .form-row--full {
        grid-template-columns: 1fr;
    }

    .shuttle-form-grid {
        grid-template-columns: 1fr;
    }

    .shuttle-field.full {
        grid-column: span 1;
    }
}

.section-title {
    text-align: center;
    font-size: clamp(2.4rem, 3.2vw, 3.6rem);
    margin-bottom: 38px;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -0.03em;
    text-transform: none;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.tour-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,102,255,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #e2e8f0;
}
.tour-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0,102,255,0.18);
}
.tour-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.tour-card:hover .tour-image img {
  transform: scale(1.08);
}
.tour-content {
  padding: 24px 20px 0 20px;
  flex: 1;
}
.tour-content h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0f172a;
}
.tour-details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}
.tour-details span {
  font-size: 15px;
  font-weight: 600;
  background: #f0f8ff;
  color: #1e293b;
  padding: 7px 18px;
  border-radius: 50px;
  border: 1px solid #e2e8f0;
}
.tour-price {
  color: #0f172a;
  background: #e6f2ff;
}
.tour-includes {
  color: #00A3FF;
  background: #e6faff;
}
.tour-footer {
  padding: 18px 20px 20px 20px;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: flex-end;
}
.btn-secondary {
    background: rgba(79, 163, 255, 0.08);
    color: var(--primary-color);
    border: 2px solid rgba(79, 163, 255, 0.26);
    border-radius: 999px;
    padding: 12px 30px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(79, 163, 255, 0.18);
    color: #0b2f60;
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(79, 163, 255, 0.12);
}
@media (max-width: 720px) {
  .tours-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .tour-image {
    height: 180px;
  }
  .tour-content {
    padding: 18px 12px 0 12px;
  }
  .tour-footer {
    padding: 12px 12px 16px 12px;
  }
}

/* Carousel styles when used on homepage */
.tours-carousel-wrapper {
    position: relative;
}

.tours-carousel-viewport {
    overflow: hidden;
}

.tours-grid.carousel {
    display: flex;
    gap: 24px;
    transition: transform 0.35s ease;
    scroll-behavior: smooth;
}


.tours-grid.carousel .tour-card {
    flex: 0 0 25%;
    max-width: 25%;
    box-sizing: border-box;
    overflow: hidden;
}

@media (min-width: 1200px) {
    .tours-grid.carousel .tour-card {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    background: var(--white);
    border: none;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    cursor: pointer;
}

.carousel-prev { left: -22px; }
.carousel-next { right: -22px; }

@media (max-width: 1200px) {
    .tours-grid.carousel .tour-card { flex: 0 0 33.3333%; max-width: 33.3333%; }
}

@media (max-width: 720px) {
    .tours-carousel-wrapper { padding: 0 10px; }
    .tours-carousel-viewport { padding-left: 10px; }
    .tours-grid.carousel { gap: 8px; }
    .tours-grid.carousel .tour-card { flex: 0 0 95%; max-width: 95%; box-sizing: border-box; overflow: hidden; }
    .carousel-prev, .carousel-next { display: inline-flex; }
    .carousel-prev { left: 4px; }
    .carousel-next { right: 4px; }
}

/* Hide price in popular tours cards */
.tours-section .price {
    display: none !important;
}

.tour-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.1), 0 0 1px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 102, 255, 0.12);
    backdrop-filter: blur(10px);
}

.tour-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.18), 0 0 1px rgba(0, 0, 0, 0.05);
    border-color: var(--accent-color);
}

.tour-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.tour-content {
    padding: 20px;
}

.tour-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: 700;
}

.tour-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
}

.tour-details {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tour-details span {
    font-size: 13px;
    color: var(--text-dark);
    background: var(--bg-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid var(--light-gray);
}

.tour-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid var(--bg-light);
}

.tours-section .btn-secondary {
    margin: 0 auto;
}

.price {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.1), 0 0 1px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 102, 255, 0.12);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.15), 0 0 1px rgba(0, 0, 0, 0.05);
    border-color: var(--accent-color);
}

.blog-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.blog-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    line-height: 1.3;
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.7;
    flex: 1;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.blog-read-more:hover {
    gap: 8px;
    color: var(--gradient-end);
}

/* FAQ Section */
.faq-section {
    padding: 50px 0;
    background: white;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 102, 255, 0.12);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.12);
}

.faq-question {
    padding: 18px 25px;
    background: white;
    cursor: pointer;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-item.active .faq-question {
    background: var(--bg-light);
}

.faq-question::after {
    content: '+';
    font-size: 28px;
    display: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-light);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
    background: var(--accent-color);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px 25px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(240, 248, 255, 0.9) 100%);
    border-top: 1px solid rgba(0, 102, 255, 0.08);
    border-bottom: 1px solid rgba(0, 102, 255, 0.08);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    margin-top: 30px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-info p {
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--text-light);
}

.social-links {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon,
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: rgba(0, 102, 255, 0.15);
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 10px;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 102, 255, 0.2);
}

.social-icon:hover,
.social-links a:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
    border-color: var(--accent-color);
}

/* Contact Form */
.tour-selection {
    background: rgba(0, 102, 255, 0.05);
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.tour-selection.hidden {
    display: none;
}

.tour-selection label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-selection input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--accent-color);
    background: white;
    border-radius: 5px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0;
}

.clear-tour {
    background: transparent;
    color: var(--dark-gray);
    border: none;
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s;
    flex-shrink: 0;
    margin-left: 10px;
    padding: 0;
    line-height: 1;
}

.clear-tour:hover {
    color: #e74c3c;
    transform: scale(1.2);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1), inset 0 0 0 1px rgba(0, 102, 255, 0.2);
    background: rgba(255, 255, 255, 0.98);
}

.contact-form button {
    width: 100%;
}

/* Form Status Messages */
.form-status {
    margin-top: 15px;
    padding: 12px;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-status.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Custom Trips Section */
.custom-section {
    padding: 50px 0;
    background: var(--bg-light);
}

.custom-section.hidden {
    display: none;
}

.custom-intro {
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
}

.custom-intro p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.custom-form-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(45, 62, 43, 0.1);
}

.custom-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.custom-form .form-group {
    display: flex;
    flex-direction: column;
}

.custom-form .form-group.full-width {
    grid-column: 1 / -1;
    margin-bottom: 20px;
}

.custom-form label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.custom-form input,
.custom-form select,
.custom-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    transition: all 0.3s;
}

.custom-form input:focus,
.custom-form select:focus,
.custom-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(107, 142, 35, 0.1);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-weight: 400;
    cursor: pointer;
    padding: 8px;
    border-radius: 5px;
    transition: background 0.3s;
}

.checkbox-label:hover {
    background: #f5f5f5;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.custom-form button[type="submit"] {
    margin-top: 10px;
    width: 100%;
}

/* Legal Pages */
.legal-section {
    padding: 70px 0;
    background: var(--bg-light);
    border-top: 1px solid rgba(0, 102, 255, 0.08);
    border-bottom: 1px solid rgba(0, 102, 255, 0.08);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 28px 30px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 102, 255, 0.08);
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 16px;
}

.legal-content p + p {
    margin-top: 12px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.98) 100%);
    color: white;
    padding: 60px 0 20px;
    text-align: center;
    border-top: 1px solid rgba(0, 102, 255, 0.2);
    backdrop-filter: blur(10px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 25px;
    justify-items: center;
}

.footer-column {
    text-align: center;
}

.footer-column h4 {
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-light), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 15px;
}

.footer-column ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.footer .social-links {
    justify-content: center;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .language-selector {
        margin: 0 0 12px 0;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 25px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        padding-top: 80px;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }
    
    .nav ul li {
        border-bottom: 1px solid var(--light-gray);
    }
    
    .nav ul li a {
        display: block;
        padding: 18px 30px;
        font-size: 16px;
        color: #000 !important;
    }
    
    .nav ul li a::after {
        display: none;
    }
    
    .nav ul li a:hover {
        background: var(--bg-light);
        color: var(--accent-color);
    }

    .nav ul li.language-selector {
        border-bottom: 1px solid var(--light-gray);
        padding: 12px 24px;
        display: flex;
        gap: 10px;
        align-items: center;
    }

    .nav ul li.language-selector .lang-btn {
        font-size: 20px;
        padding: 6px 10px;
        border-radius: 8px;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        outline: none !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .custom-form-container {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .nav-wrapper {
        justify-content: space-between;
    }
    
    .nav {
        width: 100%;
        right: -100%;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-column h4 {
        font-size: 16px;
    }
    
    .custom-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

/* Modern transfer form styles inspired by booker.hr/transfers */
.transfer-form-section .btn-primary,
.shuttle-section .btn-primary {
    margin-top: 32px;
    background: #0f172a !important;
    color: #fff;
}
.transfer-form-section .btn-primary:hover,
.shuttle-section .btn-primary:hover {
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 12px 35px rgba(0, 174, 239, 0.18);
    transform: translateY(-2px) scale(1.03);
    transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
}
.transfer-form-section .btn-primary,
.shuttle-section .btn-primary {
    margin-top: 32px;
}
/* ...existing code... */
.transfer-hero {
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f2ff 50%, #f0faff 100%);
  padding: 60px 0 30px 0;
  text-align: center;
}
.transfer-title {
  font-size: 44px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 18px;
}
.transfer-desc {
  font-size: 20px;
  color: #1e293b;
  margin-bottom: 24px;
}
.transfer-form-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,102,255,0.12);
  max-width: 600px;
  margin: 0 auto 60px auto;
  padding: 36px 28px;
}
.transfer-form {
  display: grid;
  gap: 22px;
  width: 100%;
}
.transfer-form .form-row {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
}
.transfer-form .form-row--three {
  grid-template-columns: repeat(3, minmax(130px, 1fr));
}
.transfer-form .form-row--full {
  grid-template-columns: 1fr;
}
.transfer-form .form-group.full-width {
  grid-column: 1 / -1;
}
.transfer-form textarea {
  min-height: 140px;
}
.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-weight: 600;
  color: #0055AA;
  margin-bottom: 5px;
  font-size: 14px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    background: #f7fbff;
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0f172a;
  outline: none;
}
.form-group.full-width {
  flex: 1 1 100%;
}
.btn-primary {
  background: linear-gradient(135deg, #0f172a 0%, #00A3FF 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 38px;
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.25);
}
.btn-primary:hover {
  background: #0f172a;
  box-shadow: 0 12px 35px rgba(0, 102, 255, 0.35);
}
@media (max-width: 720px) {
  .transfer-hero { padding: 2px 0 18px 0; }
  .transfer-title { font-size: 28px; }
  .transfer-desc { font-size: 15px; }
  .transfer-form-section { padding: 18px 8px; border-radius: 12px; }
  .transfer-form .form-row {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }
  .transfer-form .form-row--full {
    grid-template-columns: 1fr;
  }
  .transfer-form .form-row > .form-group {
    min-width: 0;
  }
}

.hero h1,
.hero-copy h1,
.hero-content h1 {
    color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: #ffffff !important;
}

