/* =========================================================
   HOLIDAY MASTI
   Premium responsive stylesheet
   ========================================================= */

/* ---------- RESET ---------- */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 82px;
}

body {
    font-family: "Poppins", sans-serif;
    background: #f6f9fc;
    color: #172033;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
}

button {
    cursor: pointer;
}


/* ---------- HEADER ---------- */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 82px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(20, 40, 70, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 30px rgba(20, 40, 70, 0.08);
}

.header-inner {
    width: min(1240px, calc(100% - 48px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    width: 175px;
    text-decoration: none;
}

.brand img {
    width: 165px;
    height: auto;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.main-nav a {
    position: relative;
    color: #075eb1;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.25s ease;
}

.main-nav a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    border-radius: 10px;
    background: #ff9800;
    transition: width 0.25s ease;
}

.main-nav a:not(.nav-cta):hover::after {
    width: 100%;
}

.main-nav a:hover {
    color: #ff8500;
}

.main-nav .nav-cta {
    color: #fff;
    background: #ff9800;
    padding: 13px 24px;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(255, 152, 0, 0.24);
}

.main-nav .nav-cta:hover {
    color: #fff;
    background: #f28300;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: #f0f5fa;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: #153b5a;
    border-radius: 5px;
}


/* ---------- HERO ---------- */

.hero {
    position: relative;
    min-height: 760px;
    height: 100vh;
    max-height: 900px;
    display: grid;
    place-items: center;
    overflow: hidden;

    background:
        url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2200&q=90")
        center center / cover no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.12) 0%,
            rgba(0, 0, 0, 0.22) 42%,
            rgba(0, 0, 0, 0.48) 100%
        );
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.10), transparent 35%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(950px, calc(100% - 40px));
    text-align: center;
    color: #fff;
    padding-top: 55px;
    animation: heroIn 1s ease both;
}

.eyebrow,
.section-kicker {
    color: #ff9800;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
}

.hero .eyebrow {
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1.02;
    letter-spacing: -0.045em;
    font-weight: 700;
    text-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.hero-subtitle {
    max-width: 650px;
    margin: 25px auto 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(16px, 2vw, 21px);
    line-height: 1.6;
}

.hero-actions {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 25px;
    border: 0;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.btn-primary {
    color: #fff;
    background: #ff9800;
    box-shadow: 0 14px 30px rgba(255, 152, 0, 0.28);
}

.btn-primary:hover {
    background: #f28300;
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(255, 152, 0, 0.34);
}

.btn-ghost {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.btn-dark {
    color: #fff;
    background: #142333;
}

.btn-dark:hover {
    background: #0b1724;
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 28px;
    width: 28px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 999px;
    transform: translateX(-50%);
}

.scroll-indicator span {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 7px;
    border-radius: 10px;
    background: #fff;
    transform: translateX(-50%);
    animation: scrollDot 1.6s ease-in-out infinite;
}


/* ---------- SEARCH ---------- */

.search-section {
    position: relative;
    z-index: 5;
    margin-top: -76px;
    padding: 0 20px 90px;
}

.search-card {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 40px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(20, 40, 70, 0.06);
    box-shadow: 0 25px 70px rgba(23, 44, 70, 0.14);
}

.search-heading {
    text-align: center;
    margin-bottom: 28px;
}

.search-heading h2 {
    margin-top: 7px;
    color: #075eb1;
    font-size: clamp(28px, 4vw, 40px);
    letter-spacing: -0.03em;
}

.search-heading > p:last-child {
    margin-top: 8px;
    color: #697689;
    font-size: 14px;
}

.search-form {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr auto;
    gap: 12px;
    align-items: end;
}

.search-form label {
    display: block;
}

.search-form label span {
    display: block;
    margin: 0 0 7px 5px;
    color: #657387;
    font-size: 12px;
    font-weight: 600;
}

.search-form input,
.search-form select {
    width: 100%;
    height: 52px;
    padding: 0 15px;
    color: #1d2939;
    background: #f7f9fc;
    border: 1px solid #e0e6ee;
    border-radius: 14px;
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.search-form input:focus,
.search-form select:focus {
    border-color: #4da2df;
    box-shadow: 0 0 0 4px rgba(77, 162, 223, 0.12);
}

.search-button {
    height: 52px;
    padding: 0 24px;
}

.search-message {
    min-height: 20px;
    margin-top: 16px;
    text-align: center;
    color: #075eb1;
    font-size: 13px;
    font-weight: 500;
}


/* ---------- FLIGHT SEARCH ---------- */

.flight-section {
    padding: 20px 20px 95px;
    background: #f6f9fc;
}

.flight-shell {
    width: min(1240px, 100%);
    margin: 0 auto;
    padding: 38px;
    border: 1px solid rgba(20, 40, 70, 0.07);
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 22px 65px rgba(20, 40, 70, 0.10);
}

.flight-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.flight-heading h2 {
    margin-top: 7px;
    color: #172033;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.flight-heading > div > p:last-child {
    margin-top: 10px;
    color: #697689;
    font-size: 14px;
}

.flight-badge {
    flex: 0 0 auto;
    padding: 10px 15px;
    color: #075eb1;
    background: #eaf4fd;
    border: 1px solid #d7eaf9;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.flight-form {
    display: grid;
    grid-template-columns: 1.15fr 42px 1.15fr 1fr 1fr 0.9fr auto;
    gap: 10px;
    align-items: end;
    padding: 18px;
    border-radius: 22px;
    background: #f7f9fc;
    border: 1px solid #e6ebf1;
}

.flight-field span {
    display: block;
    margin: 0 0 7px 5px;
    color: #657387;
    font-size: 11px;
    font-weight: 700;
}

.flight-field input,
.flight-field select {
    width: 100%;
    height: 50px;
    padding: 0 13px;
    color: #172033;
    background: #fff;
    border: 1px solid #dfe6ee;
    border-radius: 13px;
    outline: none;
    transition: border .2s ease, box-shadow .2s ease;
}

.flight-field input:focus,
.flight-field select:focus {
    border-color: #4da2df;
    box-shadow: 0 0 0 4px rgba(77, 162, 223, 0.11);
}

.swap-flight {
    width: 42px;
    height: 42px;
    margin-bottom: 4px;
    border: 1px solid #dce4ec;
    border-radius: 50%;
    color: #075eb1;
    background: #fff;
    font-size: 20px;
    transition: transform .2s ease, background .2s ease;
}

.swap-flight:hover {
    transform: rotate(180deg);
    background: #eef7ff;
}

.flight-search-button {
    min-height: 50px;
    white-space: nowrap;
}

.flight-note {
    min-height: 20px;
    margin: 17px 3px 0;
    color: #697689;
    font-size: 13px;
}

.flight-results {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.flight-results:empty {
    display: none;
}

.flight-result {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 19px 20px;
    border: 1px solid #e6ebf1;
    border-radius: 18px;
    background: #fff;
    transition: transform .2s ease, box-shadow .2s ease;
}

.flight-result:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(20, 40, 70, 0.08);
}

.airline-name {
    color: #172033;
    font-weight: 700;
}

.flight-number {
    margin-top: 4px;
    color: #8a96a7;
    font-size: 11px;
}

.flight-route {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #172033;
    font-size: 17px;
    font-weight: 700;
}

.flight-route span {
    color: #9aa6b5;
    font-size: 13px;
}

.flight-meta {
    margin-top: 4px;
    color: #697689;
    font-size: 12px;
}

.flight-price {
    text-align: right;
}

.flight-price strong {
    display: block;
    color: #075eb1;
    font-size: 20px;
}

.flight-price small {
    display: block;
    margin-top: 3px;
    color: #8a96a7;
    font-size: 10px;
}

.flight-open {
    margin-top: 7px;
    padding: 8px 13px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: #172033;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
}

.flight-demo {
    padding: 14px 16px;
    border-radius: 14px;
    color: #697689;
    background: #f7f9fc;
    font-size: 12px;
}

/* ---------- COMMON SECTIONS ---------- */

.content-section,
.features-section,
.contact-section {
    padding: 95px 20px;
}

.section-heading {
    width: min(760px, 100%);
    margin: 0 auto 45px;
    text-align: center;
}

.section-heading h2 {
    margin-top: 8px;
    color: #172033;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.section-heading > p:last-child {
    margin-top: 12px;
    color: #697689;
    font-size: 15px;
}


/* ---------- PACKAGES ---------- */

.packages-section {
    background: #f6f9fc;
}

.package-grid {
    width: min(1240px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.package-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(20, 40, 70, 0.07);
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(20, 40, 70, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 55px rgba(20, 40, 70, 0.13);
}

.package-card.is-hidden {
    display: none;
}

.card-image {
    position: relative;
    height: 245px;
    overflow: hidden;
}

.card-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.package-card:hover .card-image img {
    transform: scale(1.05);
}

.price-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 8px 13px;
    color: #fff;
    background: rgba(18, 31, 45, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    font-size: 13px;
    font-weight: 700;
}

.card-body {
    padding: 23px;
}

.card-location {
    color: #8a96a7;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.card-body h3 {
    margin-top: 8px;
    color: #172033;
    font-size: 23px;
    letter-spacing: -0.025em;
}

.rating {
    margin-top: 9px;
    color: #667487;
    font-size: 13px;
}

.rating:first-letter {
    color: #f59e0b;
}

.rating span {
    margin: 0 5px;
    color: #b0b8c4;
}

.details-button {
    width: 100%;
    height: 45px;
    margin-top: 19px;
    border: 1px solid #dfe6ee;
    border-radius: 12px;
    color: #075eb1;
    background: #fff;
    font-weight: 600;
    transition: all 0.25s ease;
}

.details-button:hover {
    color: #fff;
    border-color: #075eb1;
    background: #075eb1;
}

.empty-state {
    display: none;
    width: min(600px, 100%);
    margin: 30px auto 0;
    padding: 25px;
    text-align: center;
    color: #697689;
    background: #fff;
    border-radius: 18px;
}

.empty-state.visible {
    display: block;
}


/* ---------- DESTINATIONS ---------- */

.destinations-section {
    background: #fff;
}

.destination-grid {
    width: min(1240px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.destination-card {
    position: relative;
    height: 450px;
    padding: 0;
    overflow: hidden;
    text-align: left;
    border: 0;
    border-radius: 24px;
    background: #142333;
    color: #fff;
    isolation: isolate;
}

.destination-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.75));
}

.destination-card img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.destination-card:hover img {
    transform: scale(1.06);
}

.destination-card span,
.destination-card small {
    position: absolute;
    left: 26px;
    z-index: 2;
}

.destination-card span {
    bottom: 55px;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.destination-card small {
    bottom: 28px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
}


/* ---------- FEATURES ---------- */

.features-section {
    background: #f6f9fc;
}

.feature-grid {
    width: min(1100px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.feature-box {
    padding: 30px 24px;
    background: #fff;
    border: 1px solid rgba(20, 40, 70, 0.06);
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(20, 40, 70, 0.05);
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    color: #075eb1;
    background: #eaf4fd;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
}

.feature-box h3 {
    color: #172033;
    font-size: 18px;
}

.feature-box p {
    margin-top: 9px;
    color: #697689;
    font-size: 13px;
    line-height: 1.65;
}


/* ---------- CONTACT ---------- */

.contact-section {
    background: #fff;
}

.contact-card {
    width: min(1100px, 100%);
    margin: 0 auto;
    padding: 55px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
    color: #fff;
    border-radius: 30px;
    background:
        linear-gradient(135deg, #0c416b, #075eb1);
    box-shadow: 0 25px 65px rgba(7, 94, 177, 0.22);
}

.contact-card .section-kicker {
    color: #ffd28c;
}

.contact-card h2 {
    margin-top: 9px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.contact-card > div > p:last-child {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    line-height: 1.7;
}

.contact-form {
    display: grid;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    color: #172033;
    background: rgba(255, 255, 255, 0.98);
    border: 0;
    border-radius: 14px;
    outline: none;
    resize: vertical;
}

.contact-form input {
    height: 50px;
}

.contact-form textarea {
    min-height: 110px;
}

.contact-form .btn {
    width: fit-content;
}

.form-success {
    min-height: 18px;
    color: #c9f6d5;
    font-size: 13px;
}


/* ---------- FOOTER ---------- */

.site-footer {
    background: #101b28;
    color: #fff;
}

.footer-inner {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
    padding: 45px 0;
    text-align: center;
}

.footer-inner img {
    width: 150px;
    margin: 0 auto 15px;
    filter: brightness(0) invert(1);
}

.footer-inner p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
}

.footer-inner span {
    display: block;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 12px;
}


/* ---------- MODAL ---------- */

.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    place-items: center;
    padding: 20px;
}

.modal.open {
    display: grid;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 16, 27, 0.65);
    backdrop-filter: blur(8px);
}

.modal-box {
    position: relative;
    z-index: 1;
    width: min(520px, 100%);
    padding: 38px;
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
}

.modal-box h2 {
    margin-top: 8px;
    color: #172033;
    font-size: 32px;
}

.modal-box > p:not(.section-kicker) {
    margin-top: 15px;
    color: #697689;
    line-height: 1.7;
}

.modal-box strong {
    display: block;
    margin-top: 20px;
    color: #075eb1;
    font-size: 20px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 17px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    color: #5e6c7c;
    background: #f1f4f7;
    font-size: 25px;
    line-height: 1;
}

.modal-enquire {
    margin-top: 25px;
}


/* ---------- ANIMATIONS ---------- */

@keyframes heroIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollDot {
    0%,
    100% {
        opacity: 0.45;
        transform: translate(-50%, 0);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, 10px);
    }
}


/* ---------- RESPONSIVE ---------- */

@media (max-width: 1000px) {

    .main-nav {
        gap: 20px;
    }

    .search-form {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-button {
        width: 100%;
    }

    .package-grid,
    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-card {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 760px) {

    html {
        scroll-padding-top: 70px;
    }

    .site-header {
        height: 70px;
    }

    .header-inner {
        width: min(100% - 28px, 1240px);
    }

    .brand {
        width: 135px;
    }

    .brand img {
        width: 130px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 70px;
        left: 14px;
        right: 14px;
        display: none;
        padding: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid #e7ebf0;
        border-radius: 18px;
        box-shadow: 0 20px 50px rgba(20, 40, 70, 0.14);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 12px;
    }

    .main-nav .nav-cta {
        text-align: center;
        margin-top: 5px;
    }

    .hero {
        min-height: 690px;
        height: 100svh;
    }

    .hero-content {
        padding-top: 35px;
    }

    .hero h1 {
        font-size: clamp(39px, 12vw, 58px);
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .search-section {
        margin-top: -45px;
        padding-bottom: 55px;
    }

    .search-card {
        padding: 28px 18px;
        border-radius: 22px;
    }

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

    .content-section,
    .features-section,
    .contact-section {
        padding: 70px 16px;
    }

    .package-grid,
    .destination-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .destination-card {
        height: 390px;
    }

    .contact-card {
        padding: 32px 22px;
        border-radius: 24px;
    }

    .flight-section {
        padding: 0 16px 70px;
    }

    .flight-shell {
        padding: 24px 16px;
        border-radius: 22px;
    }

    .flight-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .flight-form {
        grid-template-columns: 1fr;
        padding: 15px;
    }

    .swap-flight {
        justify-self: center;
        transform: rotate(90deg);
        margin: -3px 0;
    }

    .swap-flight:hover {
        transform: rotate(270deg);
    }

    .flight-result {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .flight-price {
        text-align: left;
    }

    .flight-open {
        display: inline-block;
    }

    .modal-box {
        padding: 30px 22px;
    }
}
/* =====================================================
   HOLIDAY MASTI CHATBOT
   ===================================================== */

.chatbot-toggle {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 62px;
    height: 62px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9800, #ff5722);
    color: white;
    font-size: 27px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: 0.3s ease;
}

.chatbot-toggle:hover {
    transform: scale(1.08);
}

.chatbot-box {
    position: fixed;
    right: 25px;
    bottom: 100px;
    width: 360px;
    max-width: calc(100vw - 30px);
    height: 500px;
    background: rgba(255,255,255,0.97);
    border-radius: 22px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    overflow: hidden;
    z-index: 9998;
    display: none;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.08);
}

.chatbot-box.active {
    display: flex;
    animation: chatbotOpen 0.25s ease;
}

@keyframes chatbotOpen {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.chatbot-header {
    padding: 18px 20px;
    background: linear-gradient(135deg, #0b2c48, #123f60);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.chatbot-header h3 {
    margin: 0;
    font-size: 16px;
}

.chatbot-header p {
    margin: 3px 0 0;
    font-size: 11px;
    opacity: 0.8;
}

.chatbot-close {
    border: none;
    background: transparent;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.chatbot-messages {
    flex: 1;
    padding: 18px;
    overflow-y: auto;
    background: #f7f9fc;
}

.chat-message {
    max-width: 82%;
    padding: 11px 14px;
    margin-bottom: 12px;
    border-radius: 15px;
    font-size: 13px;
    line-height: 1.5;
}

.chat-message.bot {
    background: white;
    color: #333;
    border-bottom-left-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

.chat-message.user {
    margin-left: auto;
    background: #0b2c48;
    color: white;
    border-bottom-right-radius: 5px;
}

.chat-options {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 10px;
}

.chat-option {
    border: 1px solid #0b2c48;
    background: white;
    color: #0b2c48;
    padding: 8px 11px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    transition: 0.2s;
}

.chat-option:hover {
    background: #0b2c48;
    color: white;
}

.chatbot-input-area {
    display: flex;
    gap: 8px;
    padding: 12px;
    background: white;
    border-top: 1px solid #eee;
}

.chatbot-input {
    flex: 1;
    padding: 11px 13px;
    border: 1px solid #ddd;
    border-radius: 22px;
    outline: none;
    font-size: 13px;
}

.chatbot-send {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #ff9800;
    color: white;
    cursor: pointer;
    font-size: 17px;
}

@media (max-width: 600px) {

    .chatbot-box {
        right: 15px;
        bottom: 90px;
        width: calc(100vw - 30px);
        height: 70vh;
    }

    .chatbot-toggle {
        right: 18px;
        bottom: 18px;
    }
}
/* =====================================================
   CINEMATIC HERO SLIDESHOW
   ===================================================== */

.hero {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: background-image 1.2s ease-in-out;
}

/* Cinematic dark overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.48),
            rgba(0, 0, 0, 0.18),
            rgba(0, 0, 0, 0.38)
        );
    z-index: 1;
}

/* Keep existing hero content above overlay */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Cinematic Ken Burns effect */
.hero.cinematic-zoom {
    animation: cinematicZoom 6s ease-in-out;
}

@keyframes cinematicZoom {
    0% {
        background-size: 100%;
    }

    100% {
        background-size: 108%;
    }
}

/* Small destination label */
.hero-location {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 14px;
    border-radius: 50px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(8px);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Smooth hero text transition */
.hero-content.hero-changing {
    animation: heroTextChange 0.8s ease;
}

@keyframes heroTextChange {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slideshow indicators */
.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255,255,255,0.45);
    transition: all 0.3s ease;
}

.hero-dot.active {
    width: 28px;
    border-radius: 10px;
    background: #ff9800;
}

/* Mobile */
@media (max-width: 768px) {

    .hero {
        background-position: center;
    }

    .hero-dots {
        bottom: 18px;
    }

    .hero-location {
        font-size: 10px;
        letter-spacing: 2px;
    }
}
