@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap");

@keyframes inqFadeIn {
    from { opacity: 0; transform: scale(0.95) translateY(12px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes inqSpin { to { transform: rotate(360deg); } }
@keyframes inqShake {
    0%, 100% { transform: translateX(0); }
    20%       { transform: translateX(-5px); }
    40%       { transform: translateX(5px); }
    60%       { transform: translateX(-4px); }
    80%       { transform: translateX(4px); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to   { opacity: 1; transform: translateY(0); }
}

:root {
    --main-color:      #1DA1F2;
    --secondary-color: #0D7FBF;
    --sky-blue:        #56CCF2;
    --Orange-action:   #FF6B35;
    --midnightNavy:    #1B2A4A;
    --optional-bgc:    #eef2f7;

    --t-color:    #0097FE;
    --tt-color:   #B4F2F7;
    --ttt-color:  #5CC9F3;
    --tttt-color: #003366;
    --action:     #FF7043;
    --optional-bg: #eef3ff;

    --primary:    #1db8c8;
    --primary-dk: #0f9baa;
    --primary-lt: #e8f9fb;
    --accent:     #FF7043;
    --dark:       #1a2332;
    --body-bg:    #f7fcfd;
    --text-main:  #334155;
    --text-muted: #7a8fa6;
    --card-bg:    #ffffff;

    --shadow-sm: 0 2px 12px rgba(29, 184, 200, .10);
    --shadow-md: 0 6px 28px rgba(29, 184, 200, .18);
    --shadow-lg: 0 16px 48px rgba(29, 184, 200, .22);
    --radius:     14px;
    --transition: .28s cubic-bezier(.4, 0, .2, 1);

    --ff-display: 'Playfair Display', Georgia, serif;
    --ff-body:    'DM Sans', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--ff-body);
    font-size: 15px;
    color: var(--text-main);
    background: var(--body-bg);
    line-height: 1.65;
    background-color: rgba(236, 242, 250, .365);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: var(--ff-display);
    line-height: 1.25;
}

a {
    color: var(--main-color);
    text-decoration: none;
}
a:hover { color: var(--primary-dk); }

img { max-width: 100%; height: 450px; display: block; }

/* Utility classes */
.text-primary-brand { color: var(--main-color) !important; }
.bg-primary-brand   { background: var(--main-color) !important; }

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 30px;
    padding: 6px 20px;
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}
.section-title span { color: var(--main-color); }

.section-sub {
    max-width: 560px;
    color: var(--text-muted);
    font-size: 15px;
    margin: 0 auto;
    text-align: center;
}

.section-subtitle {
    color: #6b7c93;
    font-size: 1rem;
    margin-top: 6px;
}

.fade-in-up { animation: fadeInUp .65s ease both; }
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .30s; }
.delay-3 { animation-delay: .45s; }
.delay-4 { animation-delay: .60s; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Navbar */
.navbar {
    background: #fff;
    box-shadow: 0 1px 12px rgba(0, 0, 0, .08);
    padding: 12px 0;
}

.navbar-brand-logo {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.navbar-brand-logo i   { color: #fff; font-size: 18px; }
.navbar-brand-logo img { width: 100%; height: 100%; object-fit: contain; border-radius: 10%; }

.navbar .nav-link {
    font-weight: 600;
    font-size: 16px;
    color: var(--dark) !important;
    padding: 6px 14px !important;
    transition: color var(--transition);
}
.navbar .nav-link:hover             { color: var(--main-color) !important; }
.navbar-nav .nav-item.active .nav-link {
    color: var(--main-color) !important;
    font-weight: 600 !important;
    font-size: 16px !important;
}

.contact-highlight {
    background-color: #1DA1F2;
    color: white !important;
    border-radius: 35px;
    padding: 5px 5px;
    transition: background-color 0.3s;
}
.contact-highlight:hover {
    background-color: orange;
    color: white !important;
}

.btn-book {
    background: var(--main-color);
    color: #fff !important;
    border-radius: 6px;
    padding: 8px 22px !important;
    font-weight: 600;
    font-size: 14px;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    border: none;
    letter-spacing: .3px;
}
.btn-book:hover {
    background: var(--primary-dk);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.brand-name {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--dark);
    line-height: 1;
}
.brand-tagline { font-size: 10px; color: var(--text-muted); line-height: 1; }
.nav-item .btn-book { color: #fff !important; }

/* Search overlay */
.search-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: searchFadeIn 0.2s ease;
}
.search-overlay.active { display: flex; }

.search-overlay-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.search-overlay-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-family: var(--ff-display);
    font-weight: 300;
    letter-spacing: 0.08em;
    padding: 12px 0;
    outline: none;
    caret-color: #fff;
}
.search-overlay-input::placeholder { color: rgba(255, 255, 255, 0.55); letter-spacing: 0.15em; }
.search-overlay-input:focus { border-bottom-color: #fff; }

.search-overlay-hint {
    font-size: 11px;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    text-align: right;
}

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

/* Search results */
.search-results {
    margin-top: 16px;
    max-height: 60vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.3) transparent;
}

.search-results-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
    transition: background 0.2s;
}

.search-result-item:hover {
    background: rgba(255, 255, 255, 0.16);
}

.search-result-img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.search-result-info {
    flex: 1;
    min-width: 0;
}

.search-result-name {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

.search-result-meta span {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.search-results-empty {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    padding: 20px 0;
    font-size: 14px;
}

/* Hero */
.hero {
    padding: 90px 0 70px;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(29, 184, 200, .12) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    pointer-events: none;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.18;
}
.hero-title span { color: var(--main-color); }

.hero-sub {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 500px;
    margin: 18px 0 32px;
}

.hero-stars { color: var(--Orange-action); font-size: 12px; line-height: 1; }

.hero-visual  { position: relative; height: 420px; }

.hero-img-main {
    width: 300px;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
    position: absolute;
    top: 0;
    right: 0;
    box-shadow: var(--shadow-lg);
}

.hero-img-small {
    width: 165px;
    height: 165px;
    object-fit: cover;
    border-radius: 8px;
    position: absolute;
    bottom: 20px;
    left: 0;
    box-shadow: var(--shadow-md);
}

.hero-badge {
    position: absolute;
    background: #fff;
    border-radius: 8px;
    padding: 14px 28px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-badge-trips  { bottom: 80px; right: 10px; min-width: 160px; }
.hero-badge-rating { top: 30px; left: 10px; flex-direction: column; align-items: flex-start; gap: 2px; }

.hero-badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hero-badge-icon i { color: #fff; font-size: 16px; }

.hero-badge-title { font-weight: 700; font-size: 14px; color: var(--dark); line-height: 1.2; }
.hero-badge-sub   { font-size: 12px; color: var(--text-muted); line-height: 1; }

.hero-stats {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 22px 28px;
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.stat-item  { display: flex; align-items: center; gap: 14px; }

.stat-icon {
    width: 48px;
    height: 48px;
    background-color: var(--optional-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 0;
}
.stat-icon i { color: var(--main-color); font-size: 22px; }

.stat-value  { font-size: 18px; font-weight: 700; color: var(--dark); font-family: var(--ff-display); }
.stat-label  { font-size: 12px; color: var(--text-muted); margin-top: 1px; font-weight: 500; }
.stat-number { font-size: 36px; font-weight: 700; color: var(--primary); line-height: 1; margin-bottom: 8px; }
.stat-divider { width: 1px; height: 40px; background: #e5edf0; }

.stat-card {
    padding: 32px 16px;
    border-radius: var(--radius);
    background: var(--card-bg);
    border: 0.5px solid #e5e7eb;
    transition: transform 0.3s ease;
    text-align: center;
}
.stat-card:hover { transform: translateY(-4px); }

.section     { padding: 80px 0; }
.section-alt { background-color: var(--optional-bg); }
.section-white { background: #fff; }

/* Buttons */
.btn-primary-brand {
    background: var(--main-color);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 13px 30px;
    font-weight: 600;
    font-size: 15px;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary-brand:hover {
    background-color: var(--main-color);
    opacity: 0.92;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: #fff;
}

.btn-outline-brand {
    border: 2px solid var(--main-color);
    color: var(--main-color);
    border-radius: 30px;
    padding: 11px 28px;
    font-weight: 600;
    font-size: 15px;
    background: transparent;
    transition: all var(--transition);
}
.btn-outline-brand:hover {
    background-color: var(--main-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.btn-book-now {
    display: block;
    width: 100%;
    background-color: var(--Orange-action);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 10px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: background var(--transition), transform var(--transition);
    cursor: pointer;
}
.btn-book-now:hover { opacity: 0.92; transform: translateY(-2px); color: #fff; }

.btn-submit-brand {
    background-color: var(--main-color);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 13px;
    font-size: 15px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-submit-brand:hover {
    opacity: .92;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary-custom {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 0;
    width: 100%;
    font-weight: 600;
    font-size: .85rem;
    letter-spacing: .3px;
    transition: background .2s, transform .15s;
    cursor: pointer;
}
.btn-primary-custom:hover { opacity: 0.92; transform: translateY(-1px); }

.btn-dispatch {
    background-color: var(--main-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0.72rem 2rem;
    font-weight: 700;
    font-size: 0.97rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.22s, transform 0.18s, box-shadow 0.22s;
    box-shadow: 0 4px 16px rgba(46, 196, 165, 0.28);
}
.btn-dispatch:hover {
    opacity: 0.92;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(46, 196, 165, 0.38);
    color: #fff;
}
.btn-dispatch .arrow-circle {
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(255,255,255,0.25);
    display: flex; align-items: center; justify-content: center; font-size: 0.85rem;
}

/* Destination cards */
.dest-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    height: 220px;
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dest-card img   { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.dest-card:hover img { transform: scale(1.07); }

.dest-card-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(10,20,40,.80) 0%, transparent 100%);
    padding: 20px 16px 14px;
}
.dest-badge {
    position: absolute; top: 10px; left: 10px;
    background-color: var(--tttt-color);
    color: #fff; font-size: 11px; font-weight: 600;
    border-radius: 20px; padding: 3px 10px;
}
.dest-rating {
    position: absolute; top: 10px; right: 10px;
    background: rgba(255,255,255,.92);
    color: var(--dark); font-size: 11px; font-weight: 700;
    border-radius: 20px; padding: 3px 10px;
    display: flex; align-items: center; gap: 4px;
}
.dest-rating i { color: #f5a623; font-size: 11px; }

.dest-name { color: #ffffff; font-size: 17px; font-weight: 700; font-family: var(--ff-display); display: flex; align-items: center; gap: 6px; }
.dest-name i { font-size: 15px; color: var(--main-color); }
.dest-desc { color: rgba(255,255,255,.80); font-size: 14px; margin-top: 2px; }

.dest-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 6px; }
.dest-meta span { color: rgba(255,255,255,.75); font-size: 13px; }

.dest-explore {
    background-color: var(--Orange-action); color: #fff;
    border-radius: 20px; font-size: 11px; font-weight: 600;
    padding: 4px 12px; border: none; cursor: pointer;
    transition: background var(--transition);
}
.dest-explore:hover { background: var(--primary-dk); }

/* Package cards */
.pkg-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    height: 100%;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pkg-card-featured { border: 2px solid var(--primary); }

.pkg-img { position: relative; height: 200px; overflow: hidden; }
.pkg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.pkg-card:hover .pkg-img img { transform: scale(1.08); }

.pkg-price {
    position: absolute; top: 14px; right: 14px;
    background-color: var(--tttt-color); color: #fff;
    font-weight: 700; font-size: 16px; border-radius: 20px; padding: 4px 14px;
}
.pkg-popular-badge {
    position: absolute; top: 14px; left: 14px;
    background: #fff; color: var(--primary);
    font-size: 11px; font-weight: 700; border-radius: 20px; padding: 3px 12px;
}

.pkg-body   { padding: 20px; }
.pkg-title  { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.pkg-meta   { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.pkg-meta span { font-size: 16px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.pkg-meta i { color: var(--main-color); }
.pkg-stars  { color: #f5a623; font-size: 14px; }
.pkg-review-text { font-size: 14px; color: var(--text-muted); }

.pkg-features { list-style: none; padding: 0; margin: 12px 0 16px; }
.pkg-features li { font-size: 16px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; margin-bottom: 5px; }
.pkg-features li i { color: var(--main-color); font-size: 12px; }

/* Testimonials / Swiper */
.testimonials { background-color: white; }
.testimonials-swiper { padding: 20px 10px 60px !important; position: relative; }

.testi-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px 28px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    height: 300px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,0.13); }

.testi-quote {
    font-size: 72px; line-height: 1;
    color: #e8e8e8; font-family: Georgia, serif;
    position: absolute; top: 12px; left: 24px;
    pointer-events: none;
}

.testi-stars { color: #f5a623; font-size: 18px; letter-spacing: 2px; margin-top: 8px; }
.testi-text  { font-size: 15px; color: #555; line-height: 1.7; flex: 1; }

.testi-author {
    display: flex; align-items: center; gap: 14px; margin-top: 8px;
    border-top: 1px solid #f0f0f0; padding-top: 16px;
}
.testi-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    object-fit: cover; border: 2px solid var(--primary-lt); flex-shrink: 0;
}
.testi-avatar-placeholder {
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 18px; color: #fff; flex-shrink: 0;
}

.testi-avatar-blue  { background: linear-gradient(135deg, #1DA1F2, #0D7FBF); }
.testi-avatar-red   { background: linear-gradient(135deg, #e8735a, #c0392b); }
.testi-avatar-green { background: linear-gradient(135deg, #27ae60, #1e8449); }

.testi-name { font-weight: 600; font-size: 15px; color: #222; }
.testi-loc  { font-size: 13px; color: #999; margin-top: 2px; }

.swiper-button-prev,
.swiper-button-next {
    color: #4a90e2;
    background: #fff;
    width: 42px !important; height: 42px !important;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0,0,0,.12);
    top: 45% !important;
}
.swiper-button-prev::after,
.swiper-button-next::after { font-size: 16px !important; font-weight: 700; }

.swiper-pagination-bullet { background: #ccc; opacity: 1; width: 10px; height: 10px; transition: background .3s, transform .3s; }
.swiper-pagination-bullet-active { background: #4a90e2; transform: scale(1.3); }

/* Stats band */
.stats-row {
    background: var(--main-color);
    background-image: url(../images/bg-pattern.avif);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 40px 0;
}
.stats-row::before {
    content: "";
    position: absolute; inset: 0;
    background-color: rgb(0 151 254 / 79%);
}
.stats-row > * { position: relative; z-index: 1; }
.stats-row .vr { background: rgba(255,255,255,.25); width: 1px; }

.big-stat       { text-align: center; }
.big-stat-value { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: #fff; font-family: var(--ff-display); line-height: 1; }
.big-stat-label { font-size: 14px; color: rgba(255,255,255,.80); margin-top: 4px; }

/* About */
.about-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 160px;
    gap: 10px;
}
.about-img-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; transition: transform var(--transition); }
.about-img-grid img:hover { transform: scale(1.03); }
.about-img-grid img:first-child { grid-row: 1 / 3; height: 100%; }

.about-badge { display: inline-flex; align-items: center; gap: 10px; background-color: var(--optional-bg); border-radius: 8px; padding: 12px 18px; margin-bottom: 10px; }
.about-badge i { color: var(--main-color); font-size: 22px; }
.about-badge-title { font-weight: 700; font-size: 14px; color: var(--dark); }
.about-badge-sub   { font-size: 12px; color: var(--text-muted); }
.about-text { color: var(--text-muted); font-size: 15px; line-height: 1.8; }
.mb-about-1 { margin-bottom: 20px; }
.mb-about-2 { margin-bottom: 28px; }

#mission { background-color: var(--optional-bg); }

.mv-card {
    padding: 36px 32px; border-radius: var(--radius); height: 100%;
    border: 0.5px solid #e5e7eb; transition: transform 0.3s ease;
}
.mv-card:hover { transform: translateY(-4px); }
.mv-card-mission { background: linear-gradient(135deg, #e6f4ff, #f0f9ff); border-left: 4px solid var(--primary); }
.mv-card-vision  { background: linear-gradient(135deg, #f0fdf4, #ecfdf5); border-left: 4px solid #1D9E75; }

.mv-icon { font-size: 32px; color: var(--primary); margin-bottom: 16px; }
.mv-card-vision .mv-icon { color: #1D9E75; }
.mv-title { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.mv-text  { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin: 0; }

.team-card {
    border-radius: var(--radius); overflow: hidden;
    background: #fff; border: 0.5px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(29,161,242,.12); }

.team-img-wrap { position: relative; overflow: hidden; aspect-ratio: 1 / 1; }
.team-img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.4s ease; display: block; }
.team-card:hover .team-img { transform: scale(1.06); }

.team-overlay {
    position: absolute; inset: 0;
    background: rgba(29,161,242,.82);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .3s ease;
}
.team-card:hover .team-overlay { opacity: 1; }

.team-social { display: flex; gap: 10px; }
.team-social a {
    width: 36px; height: 36px; border-radius: 50%;
    background: #fff; color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; text-decoration: none;
    transition: background .2s, color .2s;
}
.team-social a:hover { background: var(--primary); color: #fff; }

.team-info   { padding: 16px; text-align: center; }
.team-name   { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.team-role   { font-size: 12px; color: var(--secondary-color); font-weight: 600; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .4px; }
.team-exp    { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; justify-content: center; gap: 5px; }
.team-exp i  { color: var(--primary); font-size: 12px; }

/* Breadcrumb */
.breadcrumb-section {
    background-image: url('../images/about-2.jfif');
    background-size: cover; background-position: center;
    padding: 130px 0; position: relative;
}
.breadcrumb-section .overlay {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgb(0 0 0 / 71%); z-index: 1;
}
.breadcrumb-section .container { position: relative; z-index: 2; }

.breadcrumb-title { color: #fff; font-size: 36px; font-weight: 700; margin-bottom: 10px; margin-top: 80px; }
.breadcrumb { background: none; padding: 0; margin-bottom: 0; }
.breadcrumb-item a { color: #fff; }
.breadcrumb-item.active { color: #ccc; }
.breadcrumb-item + .breadcrumb-item::before { content: "»"; color: #fff; padding: 0 5px; }

/* Gallery */
.lightboxgallery {
    display: flex; flex-wrap: wrap; gap: 12px;
    padding: 40px 0;
}
.lightboxgallery a {
    width: 315px; height: 200px;
    display: block; border-radius: 6px; overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,.25);
    position: relative; text-decoration: none; background: #eee;
}
.lightboxgallery a img {
    width: 100%; height: 100%; object-fit: cover;
    transform-origin: center; transition: transform 300ms ease;
}
.lightboxgallery a:hover img { transform: scale(1.12); }

/* Booking form */
.booking-section {
    padding: 80px 0; position: relative;
    background-image: url("../images/travel-bg.jpg");
    background-repeat: no-repeat; background-position: center;
    background-size: cover; background-attachment: fixed;
}
.booking-section::before {
    content: ""; position: absolute; inset: 0;
    background-color: rgba(0,0,0,0.6); z-index: 1;
}
.booking-section > * { position: relative; z-index: 2; }

.booking_from { display: grid; gap: 10px; }

.booking-card {
    background: #fff; border-radius: 10px; padding: 30px;
    box-shadow: rgba(0,0,0,.16) 0px 1px 4px; margin: 0 auto;
}
.booking-card-title { font-size: 1.6rem; font-weight: 700; color: var(--dark); text-align: center; margin-bottom: 4px; }
.booking-card-sub   { text-align: center; color: var(--text-muted); font-size: 14px; margin-bottom: 28px; }

.form-label-brand  { font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 5px; }
.form-control-brand {
    border: 1.5px solid #dde6ea; border-radius: 10px;
    padding: 10px 14px; font-size: 14px; color: var(--dark);
    transition: border-color var(--transition), box-shadow var(--transition);
    width: 100%;
}
.form-control-brand:focus { outline: none; border-color: var(--main-color); box-shadow: 0 0 0 3px rgba(29,184,200,.14); }

select.form-control-brand {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a8fa6' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}

.counter-group { display: flex; align-items: center; border: 1.5px solid #dde6ea; border-radius: 10px; overflow: hidden; }
.counter-btn {
    background-color: var(--optional-bg); border: none;
    width: 34px; height: 38px; font-size: 18px; color: var(--main-color);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background var(--transition);
}
.counter-btn:hover { background: var(--main-color); color: #fff; }
.counter-val { flex: 1; text-align: center; font-weight: 600; font-size: 15px; color: var(--dark); border: none; outline: none; background: #fff; }

.booking-info { padding: 20px 10px; height: 100%; }
.booking-info-title { font-size: 2rem; font-weight: 700; color: #fff; line-height: 1.3; }
.booking-info-title span { color: #1DA1F2; }

.booking-contact-list { display: flex; flex-direction: column; gap: 20px; }
.booking-contact-item { display: flex; align-items: flex-start; gap: 16px; }
.booking-contact-icon {
    width: 44px; height: 44px; border-radius: 50%;
    background-color: var(--main-color); border: 1px solid rgba(29,161,242,.4);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 16px; flex-shrink: 0;
}
.booking-contact-icon i { color: #fff; }
.booking-contact-label { font-size: 12px; color: #fff; margin: 0 0 2px; text-transform: uppercase; letter-spacing: .5px; }
.booking-contact-value { font-size: 15px; color: #fff; font-weight: 500; margin: 0; }

.booking-trust { display: flex; flex-direction: column; gap: 12px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.15); }
.booking-trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.85); font-size: 14px; }
.booking-trust-item i { color: #fff; font-size: 16px; width: 20px; text-align: center; }

.booking-cta {
    margin-top: 28px; padding: 24px; border-radius: 12px;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
}
.booking-cta-title   { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.booking-cta-text    { font-size: 13px; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 18px; }
.booking-cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

.booking-cta-btn-primary {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 10px 20px; background-color: var(--main-color); color: #fff;
    font-size: 13px; font-weight: 600; border-radius: 8px; text-decoration: none;
    transition: opacity .2s;
}
.booking-cta-btn-primary:hover { opacity: .88; color: #fff; }

.booking-cta-btn-whatsapp {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 10px 20px; background: #25D366; color: #fff;
    font-size: 13px; font-weight: 600; border-radius: 8px; text-decoration: none;
    transition: opacity .2s;
}
.booking-cta-btn-whatsapp:hover { opacity: .88; color: #fff; }

/* Contact page */
.info-card {
    background: #fff; border-radius: 8px; padding: 2rem 1.5rem;
    text-align: center; box-shadow: rgba(99,99,99,.2) 0 2px 8px;
    transition: transform .25s ease, box-shadow .25s ease; height: 100%;
}
.info-card:hover { transform: translateY(-5px); box-shadow: 0 8px 32px rgba(46,196,165,.18); }
.info-card .icon-wrap { width: 64px; height: 64px; border-radius: 50%; background-color: var(--main-color); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.1rem; }
.info-card .icon-wrap i { font-size: 1.6rem; color: #fff; }
.info-card h2 { font-weight: 800; font-size: 1.05rem; margin-bottom: .35rem; color: #1a1a2e; }
.info-card p  { font-size: .9rem; color: var(--text-muted); margin: 0; }

.map-card { background: #fff; border-radius: 8px; overflow: hidden; height: 100%; box-shadow: rgba(99,99,99,.2) 0 2px 8px; }
.map-card iframe { width: 100%; height: 340px; border: none; display: block; }

.social-bar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem; padding: 1rem 1.4rem; border-top: 1px solid #f0f0f0; }
.social-bar span { font-weight: 700; font-size: 1.2rem; color: #1a1a2e; }
.social-icons a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    background-color: var(--secondary-color); color: #fff; font-size: 1rem;
    text-decoration: none; transition: background .2s, color .2s, transform .2s;
}
.social-icons a:hover { background-color: var(--main-color); color: #fff; transform: scale(1.12); }
.social-icons a + a { margin-left: 6px; }

.form-card { background: #fff; border-radius: 8px; padding: 2.4rem 2rem; box-shadow: rgba(99,99,99,.2) 0 2px 8px; height: 100%; }
.form-card h2 { font-weight: 800; font-size: 2rem; color: #1a1a2e; }
.form-card .subtitle { font-size: .93rem; color: var(--text-muted); margin-bottom: .5rem; }

.divider-line { width: 48px; height: 3px; background: var(--primary); border-radius: 4px; margin-bottom: 1.8rem; }

/* ── FORM CONTROLS (single definition, no duplicates) ── */
.form-label {
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #1a1a2e;
    margin-bottom: .4rem;
}
.form-control {
    border: 1.5px solid #e5e5e5;
    border-radius: 10px;
    padding: .65rem 1rem;
    font-size: .93rem;
    color: #444;
    background: #fafafa;
    transition: border-color .2s, box-shadow .2s;
}
.form-control:focus {
    border-color: #1db8c8;
    box-shadow: 0 0 0 3px rgba(29, 184, 200, .15);
    background: #fff;
    outline: none;
}
.form-control::placeholder { color: #bbb; }
textarea.form-control { resize: vertical; min-height: 130px; }

.form-select:focus {
    border-color: #1db8c8;
    box-shadow: 0 0 0 3px rgba(29, 184, 200, .15);
    outline: none;
}

/* Services */
.services-section { background-color: #fff; padding: 70px 0 80px; }

.service-card {
    background: #fff; border-radius: 8px; padding: 32px 28px;
    border: none; box-shadow: rgba(99,99,99,.2) 0 2px 8px;
    transition: transform .25s ease, box-shadow .25s ease; height: 100%;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 10px 32px rgba(0,0,0,.10); }
.service-icon-wrap { width: 58px; height: 58px; border-radius: 14px; background: #0d6efd; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.service-icon-wrap i { font-size: 1.5rem; color: #fff; }
.service-icon-wrap img { width: 58px; height: 58px; object-fit: contain; }
.service-card h3 { font-weight: 700; font-size: 1.15rem; color: #0d1b2a; margin-bottom: 10px; }
.service-card p  { font-size: .9rem; color: #6b7c93; line-height: 1.65; margin: 0; }

.why-section { background-color: var(--optional-bg); padding: 70px 0 80px; }

.feature-item { display: flex; align-items: flex-start; gap: 16px; padding: 12px 0; }
.feature-icon-wrap { width: 52px; height: 52px; min-width: 52px; border-radius: 14px; background-color: #dbeeff; display: flex; align-items: center; justify-content: center; }
.feature-icon-wrap i { font-size: 1.3rem; color: #1a8fe3; }
.feature-text h3 { font-weight: 700; font-size: 1rem; color: #0d1b2a; margin-bottom: 4px; }
.feature-text p  { font-size: .875rem; color: #6b7c93; margin: 0; }

/* Service detail (sd-*) */
.sd-hero {
    position: relative;
    height: 480px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.sd-detail-hero { display: none !important; }

.sd-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 6s ease; }
.sd-hero:hover .sd-hero-img { transform: scale(1.05); }
.sd-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.35) 100%);
    z-index: 1;
}
.sd-hero-content { position: relative; z-index: 2; color: #fff; }
.sd-hero-icon { width: 68px; height: 68px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 28px; color: #fff; margin-bottom: 18px; border: 3px solid rgba(255,255,255,.3); }
.sd-hero-title { font-size: clamp(30px,5vw,52px); font-weight: 700; font-family: var(--ff-display); color: #fff; margin-bottom: 12px; line-height: 1.2; }
.sd-hero-sub   { font-size: clamp(14px,2vw,17px); color: rgba(255,255,255,.88); margin: 0; max-width: 520px; line-height: 1.6; }

.sd-section { padding: 90px 0; background-color: var(--optional-bg); }
.sd-section-alt { background: #f8f9fa; }

.sd-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 16px;
}

.sd-overview-img {
    width: 100%;
    object-fit: cover;
    border-radius: 14px;
    height: 400px;
    display: block;
}

.sd-feature-card {
    background: #fff; border: 1px solid #e8eef3;
    border-radius: 14px; padding: 22px 18px;
    text-align: center; height: 100%;
}
.sd-feature-icon {
    width: 50px; height: 50px; background: #e8f4fd;
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 12px; font-size: 20px; color: #1DA1F2;
}
.sd-feature-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 15px; font-weight: 700; color: #1a2332; margin-bottom: 6px;
}
.sd-feature-card p { font-size: 13px; color: #6b7a8d; margin: 0; line-height: 1.6; }

.sd-steps {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
}
.sd-step {
    text-align: center;
    padding: 28px 16px;
    background: #fff;
    border: 0.5px solid #e5e7eb;
    border-radius: 16px;
    transition: transform .3s ease, box-shadow .3s ease;
}
.sd-step:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(29,161,242,.1); }

.sd-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0c4d8;
    font-size: 20px;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .sd-step-arrow { display: none; }
}

.sd-step-number {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #1DA1F2;
    letter-spacing: 1px;
    margin-bottom: 6px;
    flex-shrink: 0;
}
.sd-step-icon {
    width: 52px;
    height: 52px;
    background: #e8f4fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1DA1F2;
    margin: 0 auto 10px;
    flex-shrink: 0;
    transition: background .3s, color .3s;
}
.sd-step:hover .sd-step-icon { background: var(--primary); color: #fff; }

.sd-step-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
    flex-shrink: 0;
}
.sd-step-text {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.sd-step-arrow::after {
    content: '→';
    font-size: 20px;
    color: #b0c4d8;
    line-height: 1;
}

.full-bg-section {
    background: #f8fafc;
    padding: 40px 24px;
    border-radius: 16px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.sd-dest-pill {
    background: #f0f7ff; border: 1px solid #cce3f8;
    border-radius: 50px; padding: 9px 16px;
    font-size: 13px; font-weight: 600; color: #1a5f8a;
    text-align: center; transition: background 0.2s, color 0.2s;
}
.sd-dest-pill:hover { background: #1DA1F2; color: #fff; }
.sd-dest-pill i { font-size: 11px; margin-right: 4px; }

.sd-trip-card {
    background: #fff; border: 1px solid #e8eef3;
    border-radius: 14px; padding: 20px 18px; height: 100%;
}
.sd-trip-icon {
    width: 44px; height: 44px; background: #fde8f0;
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: #d4537e; margin-bottom: 12px;
}
.sd-trip-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 14px; font-weight: 700; color: #1a2332; margin-bottom: 6px;
}
.sd-trip-card p { font-size: 12.5px; color: #6b7a8d; margin: 0; line-height: 1.55; }

.sd-cta-section { padding: 60px 0 80px; }
.sd-cta-box {
    background: linear-gradient(135deg, #1a3a6b, #1DA1F2);
    border-radius: 16px; padding: 36px 40px;
    color: #fff; position: relative; overflow: hidden;
}
.sd-cta-box::before { content:""; position:absolute; top:-60px; right:-60px; width:220px; height:220px; border-radius:50%; background:rgba(255,255,255,.06); pointer-events:none; }
.sd-cta-box::after  { content:""; position:absolute; bottom:-40px; left:-40px; width:160px; height:160px; border-radius:50%; background:rgba(255,255,255,.04); pointer-events:none; }
.sd-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px,3vw,28px); font-weight: 700;
    color: #fff; margin-bottom: 8px; position: relative; z-index: 1;
}
.sd-cta-text {
    font-size: 14px; opacity: 0.85; margin: 0;
    position: relative; z-index: 1; line-height: 1.7;
}

/* News / Blog */
.news-blog-sec { padding: 30px 0 50px; }
.our-main-title { font-size: 25px; font-weight: 500; text-align: center; }
.our-sub-title  { font-size: 30px; color: var(--main-color); font-weight: 600; text-align: center; }

.news-card { box-shadow: rgba(100,100,111,.2) 0 7px 29px; border: none; transition: all .3s ease-in-out; }
.news-card:hover { box-shadow: 0 8px 16px rgba(0,0,0,.2); transform: scale(1.012); }

.related-cart-img { width: 100%; overflow: hidden; padding: 10px; display: inline-block; }
.related-cart-img img { width: 100%; object-fit: cover; aspect-ratio: 16/12; transition: transform .4s ease-in-out; }

.news_sub-title  { font-size: 18px; font-weight: 600; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.news_sub-title a { color: #000; }
.news-details    { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.read-more-btn   { color: var(--main-color); font-size: 16px; font-weight: 600; }

.blog-details  { background: #f8fbff; }
.blog-article  { background: #fff; padding: 30px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,.05); }
.blog-content h4 { margin-top: 25px; }
.related-post-item { transition: all .3s ease; }
.related-post-item:hover { transform: translateX(6px); }
.related-post-item h6 { font-size: 15px; line-height: 1.4; }

.blog-body { line-height: 1.8; color: #4a4a4a; font-size: 1rem; }
.blog-body p { margin-bottom: 1.2rem; }
.blog-body h2 { font-size: 1.5rem; font-weight: 700; margin: 1.5rem 0 1rem; color: #0d1b2a; }
.blog-body h3 { font-size: 1.25rem; font-weight: 600; margin: 1.25rem 0 0.75rem; color: #0d1b2a; }
.blog-body a { color: #0d6efd; text-decoration: underline; }
.blog-body img { max-width: 100%; height: auto; border-radius: 8px; margin: 1rem 0; }
.blog-body blockquote { border-left: 4px solid #0d6efd; background: #f8f9fa; padding: 1rem 1.5rem; margin: 1.5rem 0; border-radius: 0 8px 8px 0; font-style: italic; }
.blog-body ul, .blog-body ol { margin-bottom: 1.2rem; padding-left: 1.5rem; }
.blog-body table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.blog-body table th { background: #0d6efd; color: #fff; padding: 10px 15px; text-align: left; }
.blog-body table td { padding: 10px 15px; border: 1px solid #dee2e6; }
.blog-body table tr:nth-child(even) { background: #f8f9fa; }
.sidebar .card { border-radius: 16px; }
.blog-post-img { height: 400px; }
.blog-post-img img { width: 100%; height: 100%; }

/* Inquiry modal */
.inq-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(27, 42, 74, 0.55);
    z-index: 9999; align-items: center; justify-content: center;
    backdrop-filter: blur(4px);
}
.inq-overlay.active { display: flex; }

.inq-modal {
    background: #fff; border-radius: 16px;
    width: 100%; max-width: 460px; margin: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    overflow: hidden; animation: fadeIn 0.3s ease;
}

.inq-header {
    background: #1DA1F2; padding: 20px 24px;
    display: flex; justify-content: space-between; align-items: center;
}
.inq-title {
    color: #fff; font-family: 'Playfair Display', serif;
    font-size: 18px; font-weight: 700;
}
.inq-subtitle { color: rgba(255,255,255,0.8); font-size: 12px; margin-top: 4px; }

.inq-close {
    background: rgba(255,255,255,0.2); border: none; color: #fff;
    width: 32px; height: 32px; border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.inq-close:hover { background: rgba(255,255,255,0.35); }

.inq-body { padding: 24px; }

.inq-group { margin-bottom: 14px; }
.inq-group label { display: block; font-size: 12px; font-weight: 600; margin-bottom: 5px; color: #1a2332; }
.inq-group label i { color: #1DA1F2; margin-right: 5px; }
.inq-group span { color: #e74c3c; }

.inq-group input,
.inq-group select,
.inq-group textarea {
    width: 100%; border: 1.5px solid #dde6ea; border-radius: 10px;
    padding: 9px 13px; font-size: 13px; background: #f7fafd;
    outline: none; transition: 0.2s;
}
.inq-group input:focus,
.inq-group select:focus,
.inq-group textarea:focus {
    border-color: #1db8c8;
    box-shadow: 0 0 0 3px rgba(29, 184, 200, .15);
    background: #fff;
}

.inq-submit {
    width: 100%; background: #1DA1F2; color: #fff;
    border: none; border-radius: 30px; padding: 13px;
    font-size: 14px; font-weight: 600; cursor: pointer;
    display: flex; justify-content: center; align-items: center;
    gap: 6px; transition: 0.3s;
}
.inq-submit:hover {
    background: #0D7FBF; transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(29,161,242,.35);
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    position: relative;
    background-image: url("../images/travel-bg.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
.faq-section::before {
    content: "";
    position: absolute; inset: 0;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 1;
}
.faq-section > * { position: relative; z-index: 2; }

.faq-accordion { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2eaf2;
    overflow: hidden;
    transition: box-shadow .25s ease;
}
.faq-item:hover { box-shadow: 0 6px 24px rgba(29, 161, 242, .12); }

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    text-align: left;
    font-family: var(--ff-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    transition: color .2s;
}
.faq-question:hover          { color: var(--main-color); }
.faq-question[aria-expanded="true"] { color: var(--main-color); }

.faq-icon {
    font-size: 18px;
    color: var(--main-color);
    flex-shrink: 0;
    transition: transform .3s ease;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-answer { border-top: 1px solid #e8f0f7; }
.faq-answer p {
    padding: 14px 20px 18px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

.faq-cta {
    margin-top: 48px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 14px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    backdrop-filter: blur(4px);
}
.faq-cta-icon  { font-size: 2rem; color: #fff; flex-shrink: 0; }
.faq-cta-title { font-size: 16px; font-weight: 700; color: #fff; margin: 0; }
.faq-cta-sub   { font-size: 13px; color: rgba(255, 255, 255, .70); margin: 2px 0 0; }
.faq-cta-btns  { margin-left: auto; display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 767px) {
    .faq-section         { background-attachment: scroll; }
    .faq-cta             { flex-direction: column; align-items: flex-start; }
    .faq-cta-btns        { margin-left: 0; }
    .faq-question        { font-size: 14px; }
}

/* Package card link wrapper */
.pkg-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: inherit;
}
.pkg-card-link:hover .pkg-card,
.pkg-card-link:focus-visible .pkg-card {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}
.pkg-card { transition: transform 0.28s ease, box-shadow 0.28s ease; }
.pkg-card-link .pkg-card { cursor: pointer; }
.pkg-card-link:focus-visible {
    outline: 3px solid var(--primary, #e67e22);
    outline-offset: 3px;
    border-radius: 16px;
}

/* Destination filter tabs */
.filter-bar { padding: 2rem 0 0; background: #fff; }

.filter-scroll { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }

.filter-btn {
    padding: 8px 22px;
    border-radius: 50px;
    border: 1.5px solid #ccc;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    color: #555;
    transition: all 0.28s cubic-bezier(.4,0,.2,1);
    font-family: var(--ff-body);
}
.filter-btn:hover  { border-color: var(--main-color); color: var(--main-color); }
.filter-btn.active { background: var(--main-color); color: #fff; border-color: var(--main-color); }

.dest-card-hidden { display: none !important; }

/* Footer */
footer {
    background: var(--dark);
    color: rgba(255,255,255,.70);
    padding: 60px 0 0;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand-name { color: #fff; font-family: var(--ff-display); font-size: 18px; font-weight: 700; }
.footer-brand-sub  { font-size: 11px; color: rgba(255,255,255,.50); }
.footer-desc { font-size: 13.5px; line-height: 1.75; max-width: 260px; color: #ffffffe0; }

.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.social-icon {
    width: 36px; height: 36px; border-radius: 50%;
    background-color: var(--secondary-color);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 16px;
    transition: background var(--transition), transform var(--transition);
}
.social-icon:hover { background: var(--main-color); transform: translateY(-3px); color: #fff; }

.footer-heading { color: #fff; font-size: 16px; font-weight: 600; margin-bottom: 18px; font-family: var(--ff-display); }
.footer-links   { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a  { color: #ffffffe0; font-size: 14px; transition: color var(--transition), padding-left var(--transition); }
.footer-links a:hover { color: var(--Orange-action); padding-left: 4px; }
.footer-links li a i { color: var(--Orange-action); }

.footer-contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 14px; }
.footer-contact-item i    { color: var(--Orange-action); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item span { color: #ffffffe0; }

.footer-bottom { border-top: 2px solid rgba(255,255,255,.08); margin-top: 40px; padding: 18px 0; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 10px; }
.footer-bottom p { font-size: 14px; margin: 0; color: #ffffffe0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 14px; color: #ffffffe0; }
.footer-bottom-links a:hover { color: var(--main-color); }

#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--main-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 16px rgba(29, 161, 242, 0.4);
    z-index: 9999;
    text-decoration: none;
    cursor: pointer;
    opacity: 0;
    visibility: 100%;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
}
#backToTop:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    color: #fff;
}
#backToTop.visible { opacity: 1; visibility: visible; }

/* =====================================================================
   DESTINATION DETAIL PAGE
   ===================================================================== */

.dest-tab-bar .container {
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #c1c1c1 #f1f1f1;
}
.dest-tab-bar .container::-webkit-scrollbar { height: 4px; }
.dest-tab-bar .container::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 10px; }
.dest-tab-bar .container::-webkit-scrollbar-thumb { background: #c1c1c1; border-radius: 10px; }
.dest-tab-bar .container::-webkit-scrollbar-thumb:hover { background: #999; }

.dest-outer-tabs {
    display: flex;
    flex-wrap: nowrap !important;
    white-space: nowrap;
}
.dest-outer-tabs .nav-item { flex: 0 0 auto; }
.dest-outer-tabs .nav-link { white-space: nowrap; padding: 10px 16px; }
.dest-outer-tabs .nav-item:not(:last-child) { border-right: 1px solid #e5e5e5; }
.dest-tab-bar { border-bottom: 1px solid #e5e5e5; }

/* Itinerary timeline */
.tl-wrap { position: relative; padding-left: 2.2rem; }
.tl-wrap::before {
    content: '';
    position: absolute;
    left: 1rem; top: 8px; bottom: 8px;
    width: 2px;
    background: #dee2e6;
}
.tl-item { position: relative; margin-bottom: 1.5rem; }
.tl-item:last-child { margin-bottom: 0; }
.tl-dot {
    position: absolute;
    left: -1.35rem; top: 3px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: #0d6efd;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #0d6efd;
}

.hl-pill {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: .8rem; font-weight: 700;
    border-radius: 22px; padding: 4px 12px;
    background: #dbeafe; color: #1d4ed8;
    border: 1.5px solid #bfdbfe;
}

.rel-card { position: relative; border-radius: .75rem; overflow: hidden; cursor: pointer; height: 120px; }
.rel-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.rel-card:hover img { transform: scale(1.07); }
.rel-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: #070707; padding: .5rem .65rem; color: #fff; }

/* ── BOOKING CARD HEADER (single definition) ── */
.bc-header {
    background: #ffffff;
    border-bottom: 1px solid #e8f9fb;
    padding: 20px 20px 16px;
}

/* "Starting from" label */
.bc-header > p.text-white-50 {
    color: #7a8fa6 !important;
    font-size: .75rem;
    font-weight: 500;
    margin-bottom: 2px !important;
}

/* Price — large teal */
.bc-header .display-6 {
    color: #1db8c8 !important;
    font-size: 2rem !important;
    font-weight: 800 !important;
    line-height: 1.1;
}

/* "/ per person" suffix */
.bc-header .display-6 span.fs-6 {
    color: #7a8fa6 !important;
    font-size: .8rem !important;
    font-weight: 400 !important;
}

/* Stars row — uses Bootstrap Icons via ::before, hides raw ★ chars */
.bc-header .text-warning {
    font-size: 0 !important;
    display: flex !important;
    align-items: center;
    gap: 2px;
    flex-wrap: wrap;
    margin-top: 8px !important;
}
.bc-header .text-warning::before {
    font-family: "bootstrap-icons";
    content: "\F586\F586\F586\F586\F586";
    font-size: 1rem !important;
    color: #f5a623;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
}
.bc-header .text-warning span {
    font-size: .78rem !important;
    color: #7a8fa6 !important;
    font-weight: 400;
    margin-left: 4px;
}

/* ── META CHIPS ── */
.bc-meta-label {
    font-size: .68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #7a8fa6;
    display: block;
    line-height: 1.2;
    margin-bottom: 2px;
}
.bc-meta-label i { color: #1db8c8 !important; }

/* chip boxes */
.booking-sticky .bg-light {
    background: #f0fbfc !important;
    border: 1px solid #d0f4f7 !important;
    border-radius: 10px !important;
}

/* chip value text */
.booking-sticky .fw-bold.small {
    color: #1a2332 !important;
    font-size: .78rem !important;
}

/* ── BOOKING CARD BUTTONS ── */
.booking-sticky .btn-primary,
.booking-sticky .btn.btn-primary,
#bookingForm .btn-primary,
#inquiryModal .btn-primary {
    background: linear-gradient(135deg, #1db8c8 0%, #0f9baa 100%) !important;
    border: none !important;
    border-radius: 10px !important;
    font-size: .88rem !important;
    font-weight: 700 !important;
    padding: 10px 16px !important;
    box-shadow: 0 4px 14px rgba(29, 184, 200, .30) !important;
    color: #fff !important;
    transition: opacity .25s, transform .25s, box-shadow .25s !important;
}
.booking-sticky .btn-primary:hover,
.booking-sticky .btn.btn-primary:hover,
#bookingForm .btn-primary:hover,
#inquiryModal .btn-primary:hover {
    opacity: .9 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 20px rgba(29, 184, 200, .42) !important;
}

.booking-sticky .btn-success,
.booking-sticky .btn.btn-success,
#bookingForm .btn-success,
#inquiryModal .btn-success {
    background: #25D366 !important;
    border: none !important;
    border-radius: 10px !important;
    font-size: .88rem !important;
    font-weight: 700 !important;
    padding: 10px 16px !important;
    color: #fff !important;
    transition: opacity .25s, transform .25s !important;
}
.booking-sticky .btn-success:hover,
.booking-sticky .btn.btn-success:hover,
#bookingForm .btn-success:hover,
#inquiryModal .btn-success:hover {
    opacity: .9 !important;
    transform: translateY(-1px) !important;
}

/* ── SUCCESS ALERT ── */
#bookingForm .alert-success,
#inquiryModal .alert-success {
    background-color: #e8f9fb !important;
    border-color: #1db8c8 !important;
    color: #0f9baa !important;
}

/* Sticky booking card on desktop */
@media (min-width: 992px) {
    .booking-sticky { position: sticky; top: 80px; }
}

@keyframes panelFadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}
.dest-panel-animate { animation: panelFadeUp .34s ease both; }

@media (max-width: 767px) {
    .dest-hero-wrap { height: 220px; }
}

/* Chip label utility (used in info-chips) */
.chip-label {
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #6c757d;
    display: block;
    line-height: 1.2;
}

/* Misc utilities */
.nav-search-btn { background: none; border: none; padding: 0.5rem; cursor: pointer; line-height: 1; }
.nav-search-btn .bi { font-size: 18px; color: var(--dark, #1a2332); }

.w-15 { width: 15% !important; }
.w-2  { width: 2%  !important; }
.text-xs    { font-size: .72rem !important; }
.text-xxs   { font-size: .65rem !important; }
.text-xxs-2 { font-size: .62rem !important; }
.ls-wide  { letter-spacing: .08em !important; }
.ls-wider { letter-spacing: .05em !important; }
.progress-xs  { height: 6px !important; }
.progress-xxs { height: 4px !important; }
.label-mw-50 { min-width: 50px; }

/* Sticky sidebar on desktop */
@media (min-width: 992px) {
    .sticky-sidebar { position: sticky; top: 90px; align-self: flex-start; }
}

/* Package detail page */
.pkg-hero { position: relative; height: 440px; overflow: hidden; }
.pkg-hero-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pkg-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.10) 0%, rgba(0,0,0,.70) 100%);
}
.pkg-hero-title {
    font-family: var(--ff-display, 'Playfair Display', serif);
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 700; color: #fff; margin-bottom: 0;
    text-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.pkg-popular-pill {
    display: inline-block;
    background: var(--primary, #e67e22); color: #fff;
    font-size: 12px; font-weight: 600;
    padding: 5px 16px; border-radius: 50px;
    margin-bottom: 10px; letter-spacing: .4px;
}

.detail-card {
    background: #fff; border: 1px solid #e9ecef;
    border-radius: 16px; padding: 1.75rem;
}
.detail-card-heading {
    font-family: var(--ff-display, 'Playfair Display', serif);
    font-size: 1.2rem; font-weight: 600; color: #1a1a2e;
    margin-bottom: 1.2rem;
    padding-bottom: .75rem; border-bottom: 2px solid #f0f0f0;
}

.highlight-item {
    display: flex; align-items: flex-start; gap: 12px;
    background: #f8f9fa; border: 1px solid #e9ecef;
    border-radius: 12px; padding: 14px;
    transition: box-shadow .2s, transform .2s;
}
.highlight-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); transform: translateY(-2px); }
.highlight-icon { font-size: 22px; color: var(--primary, #e67e22); flex-shrink: 0; line-height: 1; margin-top: 2px; }
.highlight-text { font-size: 14px; color: #444; line-height: 1.5; font-weight: 500; }

.accordion-button { font-weight: 600; font-size: 15px; color: #1a1a2e; background-color: #f8f9fa; border-radius: 10px !important; }
.accordion-button:not(.collapsed) { color: var(--primary, #e67e22); background-color: #fff5ec; box-shadow: none; }
.accordion-button::after, .accordion-button:not(.collapsed)::after { filter: none; }
.accordion-item { border: 1px solid #e9ecef; border-radius: 10px !important; overflow: hidden; margin-bottom: 10px; }
.accordion-item:last-child { margin-bottom: 0; }
.accordion-body { font-size: 14px; color: #555; line-height: 1.7; background: #fff; }

.day-badge {
    display: inline-block; background: var(--primary, #e67e22); color: #fff;
    font-size: 11px; font-weight: 700; padding: 3px 10px;
    border-radius: 50px; margin-right: 8px;
    text-transform: uppercase; letter-spacing: .5px;
}

.include-item, .exclude-item {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; color: #444; padding: 6px 0;
    border-bottom: 1px dashed #f0f0f0; line-height: 1.4;
}
.include-item:last-child, .exclude-item:last-child { border-bottom: none; }
.include-item i { color: #198754; font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.exclude-item i { color: #dc3545; font-size: 16px; flex-shrink: 0; margin-top: 2px; }

.gallery-img {
    width: 100%; height: 160px; object-fit: cover;
    border-radius: 10px; display: block;
    transition: transform .3s, box-shadow .3s; cursor: pointer;
}
.gallery-img:hover { transform: scale(1.03); box-shadow: 0 6px 20px rgba(0,0,0,.15); }

.review-card {
    background: #f8f9fa; border: 1px solid #e9ecef;
    border-radius: 12px; padding: 1.2rem; margin-bottom: 1rem;
}
.review-card:last-child { margin-bottom: 0; }
.reviewer-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--primary, #e67e22); color: #fff;
    font-size: 15px; font-weight: 700;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.reviewer-name  { font-size: 15px; font-weight: 600; color: #1a1a2e; margin-bottom: 2px; }
.reviewer-date  { font-size: 12px; color: #aaa; }
.review-stars   { color: #f5a623; font-size: 13px; letter-spacing: 1px; }
.review-text    { font-size: 14px; color: #555; line-height: 1.6; margin: 0; }

.pkg-booking-card {
    background: #fff; border: 1px solid #e9ecef;
    border-radius: 20px; padding: 1.75rem;
    box-shadow: 0 8px 32px rgba(0,0,0,.08);
}
.booking-price  { font-family: var(--ff-display, 'Playfair Display', serif); font-size: 2rem; font-weight: 700; color: var(--primary, #e67e22); line-height: 1; }
.booking-stars  { color: #f5a623; font-size: 15px; letter-spacing: 2px; }
.booking-meta   { display: flex; flex-wrap: wrap; gap: 10px; }
.booking-meta-item {
    display: flex; align-items: center; gap: 6px;
    background: #f8f9fa; border: 1px solid #e9ecef;
    border-radius: 8px; padding: 7px 12px;
    font-size: 13px; color: #444; font-weight: 500;
    flex: 1 1 auto; min-width: 120px;
}
.booking-meta-item i { color: var(--primary, #e67e22); font-size: 15px; }

.pkg-booking-card .form-control,
.pkg-booking-card .form-select {
    border-radius: 10px; border: 1px solid #dee2e6;
    font-size: 14px; padding: .55rem .85rem;
    transition: border-color .2s, box-shadow .2s;
}
.pkg-booking-card .form-control:focus,
.pkg-booking-card .form-select:focus {
    border-color: #1db8c8;
    box-shadow: 0 0 0 3px rgba(29, 184, 200, .15);
}
.pkg-booking-card .form-label { font-size: 13px; margin-bottom: 5px; color: #444; }

.booking-submit-btn {
    background: var(--primary, #1db8c8); color: #fff; border: none;
    border-radius: 12px; padding: .75rem 1rem;
    font-size: 15px; font-weight: 600; letter-spacing: .3px; width: 100%;
    transition: opacity .2s, transform .15s, box-shadow .2s;
}
.booking-submit-btn:hover {
    opacity: 0.92; color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 184, 200, .35);
}
.booking-submit-btn:active { transform: translateY(0); box-shadow: none; }

/* Responsive */
@media (max-width: 1199px) {
    .hero-visual  { height: 380px; }
    .hero-img-main { width: 240px; height: 280px; }
    .hero-img-small { width: 140px; height: 140px; }
    .sd-hero  { height: 420px; }
    .sd-overview-img { height: 360px; }
    .sd-cta-box { padding: 44px 36px; }
}

@media (max-width: 991px) {
    .hero { padding: 60px 0 50px; }
    .hero-title { font-size: 2.2rem; }
    .hero-stats { flex-direction: column; align-items: flex-start; }
    .stat-divider { width: 100%; height: 1px; }
    .about-img-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .about-img-grid img:first-child { grid-row: auto; height: 200px; }
    .sd-hero { height: 360px; }
    .sd-section { padding: 70px 0; }
    .sd-overview-img { height: 300px; }
    .sd-steps { flex-wrap: wrap; }
    .sd-step-arrow { display: none; }
    .sd-cta-box { padding: 36px 28px; }
}

@media (max-width: 767px) {
    .btn-primary-brand, .btn-outline-brand { padding: 10px 20px; font-size: 13px; }
    .about-badge { width: 100%; }
    .why-section { background-color: #fff; padding: 40px 0 5px; }
    .form-card { padding: 1.6rem 1.2rem; }
    .info-card { padding: 1.4rem 1rem; }
    .map-card iframe { height: 260px; }
    .sd-hero { height: 320px; }
    .sd-hero-icon { width: 56px; height: 56px; font-size: 22px; }
    .sd-section { padding: 56px 0; }
    .sd-overview-img { height: 240px; border-radius: 14px; }
    .sd-cta-box { padding: 28px 20px; }
    .sd-cta-section { padding: 40px 0 60px; }
    .sd-steps { flex-direction: column; align-items: center; }
    .sd-step  { max-width: 100%; }
    .section-title { font-size: 1.8rem; }
    .service-card  { padding: 24px 20px; }
    .sd-detail-hero { height: 200px; }
    .sd-detail-hero-title { font-size: 22px; }
    .faq-section { background-attachment: scroll; }
    .faq-cta { flex-direction: column; align-items: flex-start; }
    .faq-cta-btns { margin-left: 0; }
    .faq-question { font-size: 14px; }
}

@media (max-width: 576px) {
    .booking-card { padding: 28px 18px; }
    .hero-title   { font-size: 1.9rem; }
    .inquiry-overlay { padding: 0; align-items: flex-end; justify-content: center; }
    .inquiry-popup { max-width: 100%; border-radius: var(--radius) var(--radius) 0 0; max-height: 91vh; }
    .inq-row { grid-template-columns: 1fr; gap: 0; }
    .float-inquiry-btn span { display: none; }
    .float-inquiry-btn { padding: 15px; border-radius: 50%; bottom: 24px; right: 20px; }
    .inq-quick-btns { flex-direction: column; }
    .inq-quick-wa, .inq-quick-call { justify-content: center; }
    .lightboxgallery a { width: 46%; height: 140px; }
    .swiper-button-prev, .swiper-button-next { display: none; }
    .team-info { padding: 12px; }
    .team-name { font-size: 13px; }
    .team-role { font-size: 11px; }
    .sd-hero   { height: 280px; }
    .sd-hero-icon { width: 48px; height: 48px; font-size: 18px; margin-bottom: 12px; }
    .sd-overview-img { height: 200px; border-radius: 12px; }
    .sd-step-icon { width: 52px; height: 52px; font-size: 18px; }
    .sd-cta-box  { padding: 22px 16px; border-radius: 14px; }
    .pkg-hero { height: 300px; }
    .pkg-hero-title { font-size: 1.5rem; }
    .detail-card { padding: 1.25rem; border-radius: 12px; }
    .pkg-booking-card { border-radius: 16px; padding: 1.25rem; }
    .booking-price { font-size: 1.6rem; }
    .gallery-img { height: 120px; }
}

@media (max-width: 420px) {
    .lightboxgallery a { width: 100%; height: 180px; }
}

@media (max-width: 575.98px) {
    .highlight-item { padding: 10px; }
    .booking-meta-item { min-width: 100%; }
}

/* for destination detail page to use primary color and make nav bar sticky */

#mainNav {
  position: sticky;
  top: 0;
  z-index: 1030;
}

/* btn-primary */
.btn-primary {
  background-color: #1db8c8 !important;
  border-color:     #1db8c8 !important;
  color: #fff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #0f9baa !important;
  border-color:     #0f9baa !important;
  color: #fff !important;
}

/* text-primary & bg-primary */
.text-primary  { color: #1db8c8 !important; }
.bg-primary    { background-color: #1db8c8 !important; }
.border-primary { border-color: #1db8c8 !important; }

/* badges */
.badge.bg-primary { background-color: #1db8c8 !important; }

/* progress bars */
.progress-bar.bg-primary { background-color: #1db8c8 !important; }

/* nav inner tabs active state */
.inner-tabs .nav-link.active {
  color: #1db8c8 !important;
  border-bottom: 2px solid #1db8c8 !important;
}
.inner-tabs .nav-link:hover { color: #0f9baa !important; }

/* outer dest tabs active */
.dest-outer-tabs .nav-link.active {
  color: #1db8c8 !important;
  border-bottom: 2px solid #1db8c8;
}
.dest-outer-tabs .nav-link:hover { color: #0f9baa !important; }

/* timeline dot */
.tl-dot {
  background: #1db8c8 !important;
  box-shadow: 0 0 0 2px #1db8c8 !important;
}

/* highlight pills */
.hl-pill {
  background: #e8f9fb !important;
  color: #0f9baa !important;
  border-color: #b2ecf1 !important;
}