﻿:root {
    --color-primary: #0077b6;
    --vc-blue: #0077B6;
    --vc-blue-dark: #005f92;
    --vc-blue-light: #e8f4fb;
    --vc-orange: #F1901D;
    --vc-orange-dark: #d97b0a;
    --vc-dark: #212529;
    --vc-gray: #6c757d;
    --vc-light: #f8f9fb;
    --vc-border: #e9ecef;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 2px 10px rgba(20,30,50,.06);
    --shadow-md: 0 10px 30px rgba(20,30,50,.10);
    --shadow-lg: 0 20px 45px rgba(20,30,50,.16);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif;
    color: var(--vc-dark);
    background: #fff;
}

a {
    text-decoration: none;
}


.text-vc-blue {
    color: var(--vc-blue) !important;
}

.svg-icon {
    width: 1em;
    height: 1em;
    fill: currentColor;
    display: inline-block;
    vertical-align: -0.125em;
    flex-shrink: 0;
}

.bg-vc-blue {
    background-color: var(--vc-blue) !important;
}

.bg-vc-light {
    background-color: var(--vc-light) !important;
}

/* Skip link */
.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--vc-blue);
    color: #fff;
    padding: .75rem 1.25rem;
    z-index: 2000;
    border-radius: 0 0 8px 0;
}

    .skip-link:focus {
        left: 0;
    }


/* ==========================================================================
   BREADCRUMB
   ========================================================================== */



.breadcrumb {
    max-width: 300px;
    margin: 10px 80px;
    padding-top: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    font-size: .9rem;
}


    .breadcrumb a {
        color: var(--color-primary);
        font-weight: 600;
        transition: .25s ease;
    }


        .breadcrumb a:hover {
            color: var(--color-accent);
        }


    .breadcrumb span {
        color: #94a3a8;
    }


    .breadcrumb .current {
        color: var(--color-text-light);
        font-weight: 500;
    }



/* Breadcrumb bar */
.vc-breadcrumb-bar {
    background: var(--vc-light);
    border-bottom: 1px solid var(--vc-border);
}

.btn-vc-outline {
    border: 2px solid var(--vc-blue);
    color: var(--vc-blue);
    border-radius: 999px;
    padding: .55rem 1.35rem;
    font-weight: 600;
    background: #fff;
    transition: all .2s ease;
}

    .btn-vc-outline:hover {
        background: var(--vc-blue);
        color: #fff;
    }

.btn-vc-white {
    border: 2px solid #fff;
    color: #fff;
    border-radius: 999px;
    padding: .6rem 1.5rem;
    font-weight: 600;
    background: transparent;
    transition: all .2s ease;
}

    .btn-vc-white:hover {
        background: #fff;
        color: var(--vc-blue);
    }

/* Breadcrumb */
.vc-breadcrumb {
    font-size: .9rem;
}

    .vc-breadcrumb a {
        color: var(--vc-gray);
    }

        .vc-breadcrumb a:hover {
            color: var(--vc-blue);
        }

.text-warnin {
    --bs-text-opacity: 1;
    color: #fff;
}

/* Hero */
.vc-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(5,25,45,.88) 0%, rgba(5,25,45,.72) 45%, rgba(5,25,45,.35) 100%), url('https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?auto=format&fit=crop&w=2200&q=80');
    background-size: cover;
    background-position: center;
}

    .vc-hero::before {
        content: "";
        position: absolute;
        width: 450px;
        height: 450px;
        border-radius: 50%;
        background: rgba(241,144,29,.18);
        top: -120px;
        right: -80px;
        filter: blur(80px);
    }

    .vc-hero::after {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(0,119,182,.18);
        bottom: -100px;
        left: -100px;
        filter: blur(60px);
    }


.vc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    backdrop-filter: blur(15px);
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

.vc-call-card {
    background: rgba(255,255,255,.97);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0,0,0,.18);
    border: 1px solid rgba(255,255,255,.5);
}

.vc-call-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient( 135deg, var(--vc-orange), #ffb347);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 34px;
    box-shadow: 0 10px 30px rgba(241,144,29,.35);
}

.vc-call-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--vc-blue);
    letter-spacing: 1px;
}

.btn-vc-primary {
    background: linear-gradient( 135deg, var(--vc-orange), #ffad32);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    padding: 16px 34px;
    box-shadow: 0 12px 30px rgba(241,144,29,.4);
    transition: .3s;
}

    .btn-vc-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(241,144,29,.5);
    }

.badge-item {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    padding: 12px 18px;
    border-radius: 40px;
    font-weight: 600;
    transition: .25s;
}

    .badge-item:hover {
        transform: translateY(-3px);
        background: rgba(255,255,255,.18);
    }

.vc-hero h1 {
    font-size: clamp(2.5rem,5vw,4.4rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
    max-width: 760px;
    margin-bottom: 22px;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .25);
}

.vc-hero p.lead {
    color: rgba(255,255,255,.92);
    font-size: 1.15rem;
    max-width: 640px;
}

.vc-hero .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 720px;
    color: rgba(255,255,255,.92);
}


/* Search widget */
.vc-search-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
}

.vc-search-field {
    border: 1px solid var(--vc-border);
    border-radius: var(--radius-sm);
    padding: .6rem .9rem;
    background: #fff;
}

    .vc-search-field label {
        font-size: .72rem;
        color: var(--vc-gray);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .03em;
        margin-bottom: .15rem;
        display: block;
    }

    .vc-search-field input, .vc-search-field select {
        border: none;
        padding: 0;
        width: 100%;
        font-weight: 600;
        color: var(--vc-dark);
        background: transparent;
    }

        .vc-search-field input:focus, .vc-search-field select:focus {
            outline: none;
            box-shadow: none;
        }

.vc-search-btn {
    background: var(--vc-blue);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    padding: .85rem 1.2rem;
    width: 100%;
    transition: .2s ease;
}

    .vc-search-btn:hover {
        background: var(--vc-blue-dark);
    }

.vc-trust-badges {
    color: #fff;
}

    .vc-trust-badges .badge-item {
        font-size: .88rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: .4rem;
        background: rgba(255,255,255,.12);
        border: 1px solid rgba(255,255,255,.25);
        padding: .4rem .85rem;
        border-radius: 999px;
    }

/* Section titles */
.vc-eyebrow {
    color: var(--vc-orange);
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: .8rem;
}

.vc-section-title {
    font-size: clamp(2rem,3vw,2.8rem);
    font-weight: 800;
    line-height: 1.2;
}

.vc-section-sub {
    max-width: 700px;
    line-height: 1.8;
}

/* Cards */
.vc-card {
    border: none;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: .35s;
    height: 100%;
    background: #fff;
}

    .vc-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(0,0,0,.12);
    }

    .vc-card .vc-card-img-wrap {
        position: relative;
        overflow: hidden;
        aspect-ratio: 4/3;
        background: #eef1f4;
    }

        .vc-card .vc-card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s ease;
        }

    .vc-card:hover .vc-card-img-wrap img {
        transform: scale(1.08);
    }

.vc-card-body {
    padding: 1.1rem 1.2rem 1.3rem;
}

.vc-card-title {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: .35rem;
}

.vc-card-desc {
    color: var(--vc-gray);
    font-size: .9rem;
    margin-bottom: .9rem;
}

.vc-card-cta {
    font-weight: 700;
    color: var(--vc-blue);
    font-size: .9rem;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}

    .vc-card-cta:hover {
        color: var(--vc-orange);
    }

/* Destination pill card */
.vc-dest-card {
    position: relative;
    display: block;
    border-radius: 18px;
    overflow: hidden;
    height: 340px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    transition: transform .3s ease, box-shadow .3s ease;
}

    .vc-dest-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s ease;
    }

    .vc-dest-card:hover img {
        transform: scale(1.08);
    }



    .vc-dest-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(0,0,0,.18);
    }

.vc-dest-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,.25), transparent);
}

    .vc-dest-overlay h3 {
        color: #fff;
        margin: 0;
        font-size: 1.2rem;
        font-weight: 700;
    }

/* State card */
.vc-state-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    position: relative;
    height: 180px;
}

    .vc-state-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .vc-state-card .vc-state-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0,60,100,.55), rgba(0,10,20,.35));
        display: flex;
        align-items: flex-end;
        padding: 1rem;
    }

    .vc-state-card h3 {
        color: #fff;
        font-weight: 700;
        font-size: 1.15rem;
        margin: 0;
    }

/* Icon circle */
.vc-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vc-blue-light);
    color: var(--vc-blue);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.vc-why-card {
    border-radius: var(--radius-md);
    border: 1px solid var(--vc-border);
    padding: 1.4rem;
    height: 100%;
    background: #fff;
    transition: .2s ease;
}

    .vc-why-card:hover {
        box-shadow: var(--shadow-sm);
        border-color: transparent;
    }

/* Top hotels CTA banner */
.vc-cta-banner {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    background-image: linear-gradient(120deg, rgba(0,60,100,.82), rgba(0,20,40,.72)), url('https://images.unsplash.com/photo-1524613032530-449a5d94c285?auto=format&fit=crop&w=1600&q=75');
    background-size: cover;
    background-position: center;
}

/* Article */
.vc-article h2 {
    font-weight: 800;
    font-size: 1.5rem;
    margin-top: 2.2rem;
}

.vc-article h3 {
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 1.4rem;
}

.vc-article p {
    color: #3a3f44;
    line-height: 1.75;
    font-size: 1.02rem;
}

.vc-article a {
    color: var(--vc-blue);
    font-weight: 600;
    border-bottom: 1px solid rgba(0,119,182,.3);
}

    .vc-article a:hover {
        color: var(--vc-orange);
        border-color: rgba(241,144,29,.4);
    }

/* FAQ */
.accordion-button {
    font-weight: 700;
    color: var(--vc-dark);
}

    .accordion-button:not(.collapsed) {
        color: var(--vc-blue);
        background: var(--vc-blue-light);
        box-shadow: none;
    }

    .accordion-button:focus {
        box-shadow: 0 0 0 .2rem rgba(0,119,182,.2);
    }

/* Footer CTA */
.vc-footer-cta {
    background: linear-gradient(120deg, var(--vc-blue), var(--vc-blue-dark));
    border-radius: var(--radius-lg);
    color: #fff;
    padding: 3rem 2rem;
}

.vc-scroller {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: .5rem;
    scroll-snap-type: x mandatory;
}

    .vc-scroller > * {
        scroll-snap-align: start;
        flex: 0 0 auto;
    }

    .vc-scroller::-webkit-scrollbar {
        height: 6px;
    }

    .vc-scroller::-webkit-scrollbar-thumb {
        background: var(--vc-border);
        border-radius: 3px;
    }

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

@media (max-width: 767.98px) {
    .vc-hero {
        min-height: auto;
        padding: 2.5rem 0 2rem;
    }

    .vc-search-card {
        padding: 1rem;
    }
}

@media(max-width:768px) {

    .vc-hero {
        min-height: auto;
        padding: 90px 0 60px;
    }

        .vc-hero h1 {
            font-size: 2.4rem;
        }

    .vc-call-card {
        padding: 1.4rem;
    }

    .vc-call-number {
        font-size: 1.5rem;
    }

    .vc-stats {
        gap: 25px;
        justify-content: center;
    }
}
