@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: var(--font-family-1);
}

body {
    font-family: var(--font-family-1);
    font-weight: 400;
    font-size: clamp(14px, 1.5vw, 16px);
    color: var(--Secondary-Color);
}

:root {
    /* Font Family */
    --font-family-1: "Inter", sans-serif;
    /* Color */
    --Primary-Color: #C81E28;
    --Secondary-Color: #000505;
    --White-Color: #FFFFFF;
    --Light-bg-grey: #F9FAFB;
    --Light-bg-red: #EFEFEF;
    --Grey: #C6C6C6;
    /* Transition */
    --Transition: all 0.3s ease-in-out;
}

h1 {
    font-family: var(--font-family-1);
    font-weight: 700;
    font-size: clamp(28px, 4vw, 48px);
}

h2 {
    font-family: var(--font-family-1);
    font-weight: 600;
    font-size: clamp(24px, 3.5vw, 36px);
}

h3 {
    font-family: var(--font-family-1);
    font-weight: 600;
    font-size: clamp(20px, 2.5vw, 24px);
}

h4,
h5,
h6,
.department-h4 {
    font-family: var(--font-family-1);
    font-weight: 600;
    font-size: clamp(18px, 2vw, 20px);
}

p,
.paragraph {
    font-family: var(--font-family-1);
    font-weight: 400;
    font-size: clamp(14px, 1.5vw, 16px);
}

.small-text {
    font-family: var(--font-family-1);
    font-weight: 400;
    font-size: clamp(12px, 1.2vw, 14px);
}

.large-text {
    font-family: var(--font-family-1);
    font-weight: 400;
    font-size: clamp(16px, 2vw, 18px);
}

.button-text {
    font-family: var(--font-family-1);
    font-weight: 600;
    font-size: clamp(14px, 1.5vw, 16px);
}

a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.button_1 {
    font-family: var(--font-family-1);
    font-weight: 600;
    font-size: clamp(14px, 1.5vw, 16px);
    color: var(--White-Color);
    background-color: var(--Primary-Color);
    padding: clamp(10px, 1.5vw, 12px) clamp(20px, 3vw, 32px);
    border-radius: 6px;
    border: 1px solid var(--Primary-Color);
    outline: none;
    transition: var(--Transition);
    text-align: center;
}

.button_2 {
    font-family: var(--font-family-1);
    font-weight: 600;
    font-size: clamp(14px, 1.5vw, 16px);
    color: var(--Primary-Color);
    background-color: transparent;
    padding: clamp(10px, 1.5vw, 12px) clamp(20px, 3vw, 32px);
    border-radius: 6px;
    border: 1px solid var(--Primary-Color);
    outline: none;
    transition: var(--Transition);
    text-align: center;
}

.button_1:hover {
    background-color: transparent;
    color: var(--Primary-Color);
}

.button_2:hover {
    background-color: var(--Primary-Color);
    color: var(--White-Color);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0px;
}

/* Header login */

.header {
    padding: 16px 0px;
    background-color: #FFFFFF70;
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    transition: var(--Transition);
    backdrop-filter: blur(5px);
    z-index: 999;
}

.header.scrolled {
    background-color: var(--White-Color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header .logo {
    max-width: 134px;
    width: 100%;
}

.header .logo a,
.header .logo a img {
    width: 100%;
}

.header .navbars ul li a {
    color: var(--Black-Color);
    transition: var(--Transition);
}

.header .navbars ul li a:hover {
    color: var(--Primary-Color);
}

.header .navbars {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header .navbars nav ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 24px;
    row-gap: 8px;
}

button#open-toggle {
    display: none;
    padding: 0px;
    height: 44px;
    width: 44px;
    border-radius: 50px;
}

.header .navbars .menu-head {
    display: none;
}

.d-block-mb {
    display: block;
}

.d-none-mb {
    display: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .d-block-mb {
        display: none;
    }

    .d-none-mb {
        display: block;
    }

    /* Menu Design */
    .header {
        backdrop-filter: none;
    }

    .header .logo {
        max-width: 84px;
        width: 100%;
    }

    .header .navbars {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 280px;
        background: var(--White-Color);
        height: 100%;
        z-index: 9;
        flex-direction: column;
        align-items: start;
        padding: 20px;
        overflow-y: scroll;
        transform: translateX(-100%);
        transition: var(--Transition);
    }

    body.menu-open .header .navbars {
        transform: translateX(0%);
    }

    .header .navbars nav {
        width: 100%;
    }

    .header .navbars a.button_1 {
        width: 100%;
        text-align: center;
    }

    .header .navbars nav ul li,
    .header .navbars nav ul li a {
        width: 100%;
    }

    .header .navbars nav ul {
        display: flex;
        align-items: start;
        gap: 16px;
        flex-direction: column;
    }

    button#open-toggle {
        display: block;
    }

    .header .navbars .menu-head {
        display: flex;
        align-items: center;
        gap: 8px;
        border-bottom: 1px solid var(--Light-bg-grey);
        width: 100%;
        padding-bottom: 10px;
    }

    body.menu-open {
        overflow: hidden;
    }

    #overlay {
        display: none;
        position: fixed;
        top: 0px;
        left: 0px;
        bottom: 0px;
        right: 0px;
        background-color: var(--Secondary-Color);
        opacity: 0.5;
        width: 100%;
        height: 100%;
        z-index: 9;
    }

    body.menu-open #overlay {
        display: block;
    }

    #close-toggle {
        background-color: transparent;
        border: none;
    }
}


/* footer */
footer {
    padding-top: 32px;
    background-color: var(--Primary-Color);
}

.copyright {
    border-top: 1px solid var(--White-Color);
    border-bottom: 1px solid var(--White-Color);
    color: var(--White-Color);
    padding: 16px 0px;
}

footer .logo {
    max-width: 190px;
    width: 100%;
    margin: auto auto 24px;
    border-radius: 6px;
    overflow: hidden;
    background-color: var(--White-Color);
}

footer .fooer-nav {
    font-size: 32px;
    color: var(--White-Color);
    font-weight: 300;
    text-transform: uppercase;
}

footer .follow-icon a {
    font-size: 32px;
    line-height: 1;
    margin: 0px 4px;
    color: var(--White-Color);
}

footer a {
    transition: var(--Transition);
    color: var(--White-Color);
}

footer a:hover {
    opacity: 0.6;
}

@media (max-width: 767px) {
    footer .fooer-nav {
        font-size: 16px;
    }
}

@media (max-width: 425px) {
    footer .fooer-nav {
        font-size: 13px;
    }
}


/* package-layout */
.package-layout .image img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.package-layout .gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

@media (max-width: 1024) {
    .package-layout .gallery {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767) {
    .package-layout .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

.package-layout .gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
}

.package-layout .gallery {
    margin-top: 16px;
}

.package-layout .gallery .glightbox {
    border: 1px solid var(--Secondary-Color);
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.package-layout .gallery .glightbox img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.breadcumbs {
    background-color: var(--Primary-Color);
}

.breadcumbs ul li,
.breadcumbs ul li a,
.inner-hero-banner ul li,
.inner-hero-banner ul li a {
    color: var(--White-Color);
    transition: var(--Transition);
}

.breadcumbs ul li a:hover,
.inner-hero-banner ul li a:hover {
    opacity: 0.6;
}

.form-select:focus,
.form-control:focus {
    box-shadow: none;
}

.form-control,
.form-select {
    background-color: transparent;
    border: 1px solid var(--Secondary-Color);
    border-radius: 4px;
    outline: none;
    width: 100%;
    padding: 8px 16px;
    transition: var(--Transition);
    appearance: none;
    resize: none;
}

.form-select {
    cursor: pointer;
}

.form-control:focus,
.form-select:focus {
    border: 1px solid var(--Primary-Color);
}

.form-select:disabled {
    cursor: not-allowed;
}





.profile-section {
    padding: 60px 0;
    background: var(--Light-bg-red);
}

.profile-section .profile-wrapper {
    display: flex;
    gap: 30px;
    align-items: start;
}

/* Sidebar */
.profile-section .profile-sidebar {
    width: 250px;
    background: var(--White-Color);
    padding: 16px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

.profile-section .profile-sidebar ul {
    list-style: none;
    padding: 0;
}

.profile-section .profile-sidebar ul li {
    padding: 12px;
    cursor: pointer;
    border-radius: 6px;
    margin-bottom: 8px;
    transition: 0.3s;
    font-size: 16px;
}

.profile-section .profile-sidebar ul li a {
    display: block;
}

.profile-section .profile-sidebar ul li:hover {
    background: var(--Light-bg-red);
}

.profile-section .profile-sidebar ul li.active {
    background: var(--Primary-Color);
    color: var(--White-Color);
}

.profile-section .profile-content {
    flex: 1;
    background: var(--White-Color);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

.profile-section .tab-content {
    display: none;
}

.profile-section .tab-content.active {
    display: block;
}

.profile-section .orders-table {
    width: 100%;
    border-collapse: collapse;
}

.profile-section .orders-table th,
.profile-section .orders-table td {
    border-bottom: 1px solid var(--Grey);
    padding: 10px;
    text-align: left;
}

.profile-section form input,
.profile-section form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid var(--Grey);
    border-radius: 6px;
    outline: none;
    appearance: none;
    position: relative;
    z-index: 1;
}

.profile-section form button {
    padding: 10px 20px;
    background: var(--Primary-Color);
    color: var(--White-Color);
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

@media(max-width:768px) {
    .profile-section .profile-wrapper {
        flex-direction: column;
    }

    .profile-section .profile-sidebar {
        width: 100%;
        display: flex;
        overflow-x: auto;
    }

    .profile-section .profile-sidebar ul {
        display: flex;
        gap: 10px;
    }

    .profile-section .profile-sidebar ul li {
        white-space: nowrap;
    }
}

.profile-section .profile-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.profile-section .profile-content p {
    font-size: 14px;
    opacity: 0.8;
}

.profile-section .profile-content table {
    font-size: 14px;
}

.profile-section h2 {
    font-size: 24px;
}


.thankyou-section {
    padding: 80px;
    background: var(--Light-bg-red);
    text-align: center;
}

.thankyou-section .thankyou-wrapper {
    max-width: 700px;
    margin: auto;
    background: var(--White-Color);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.thankyou-section .success-icon {
    width: 80px;
    height: 80px;
    background: #28a745;
    color: var(--White-Color);
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.thankyou-section .thankyou-wrapper h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.thankyou-section .success-msg {
    margin-bottom: 30px;
    color: var(--Secondary-Color);
}

.thankyou-section .order-box {
    text-align: left;
    background: var(--Light-bg-red);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.thankyou-section .order-box h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.thankyou-section .order-info div,
.thankyou-section .order-box p {
    margin-bottom: 8px;
    font-size: 14px;
}

.thankyou-section .btn-primary {
    display: inline-block;
    padding: 12px 25px;
    background: var(--Primary-Color);
    color: var(--White-Color);
    text-decoration: none;
    border-radius: 6px;
    margin-top: 20px;
    transition: 0.3s;
}

.thankyou-section .btn-primary:hover {
    background: var(--Secondary-Color);
}

/* Responsive */
@media(max-width:768px) {
    .thankyou-section .thankyou-wrapper {
        padding: 25px;
    }

    .thankyou-section .thankyou-wrapper h1 {
        font-size: 22px;
    }
}

.package-section .package-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: 0.3s;
    border: 1px solid var(--Grey);
    overflow: hidden;
}

.package-section .package-card .image img {
    aspect-ratio: 2 / 1.4;
    object-fit: cover;
}

.package-section .package-card:hover {
    transform: translateY(-6px);
}

.package-section .package-card .package-title {
    font-weight: 700;
    margin-bottom: 5px;
}

.package-section .package-card .package-route {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.package-section .package-card .package-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.package-section .package-card .package-info p {
    font-size: 14px;
}

.package-section .package-card .package-price {
    font-size: 22px;
    font-weight: 700;
    color: #e63946;
    margin-top: 8px;
}

.package-section .package-card .package-price span {
    font-size: 14px;
    color: #555;
}

.package-section .package-card .hotel {
    font-size: 14px;
    margin-top: 6px;
}

.package-section .package-card .status {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.package-section .package-card .status.available {
    background: #e8f7ef;
    color: #0f8a4b;
}

.package-section .package-card .status.filling {
    background: #fff3cd;
    color: #b7791f;
}

.package-section .package-card .status.limited {
    background: #fdecea;
    color: #c53030;
}

.package-section .package-card .package-buttons .btn {
    margin-right: 5px;
}

.package-section .package-filter {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--Grey);
}

.inner-hero-banner {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 200px;
    display: flex;
    align-items: center;
    padding: 24px 0px;
    position: relative;
}

.inner-hero-banner .container {
    position: relative;
    z-index: 1;
}

.inner-hero-banner::before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background: linear-gradient(-90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.inner-hero-banner h2 {
    color: var(--White-Color);
    font-size: 32px;
    margin-bottom: 10px;
}

.info-cards {
    background-color: #F9FAFB;
    padding: 24px;
    border-radius: 10px;
}

.info-cards h5 {
    font-size: 18px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-section .input-container .icon-new {
    color: var(--Primary-Color);
}

.info-cards h5 span {
    display: inline-block;
    height: 32px;
    width: 32px;
    color: var(--White-Color);
    background-color: var(--Primary-Color);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 16px;
    font-weight: 400;
}

.register-right-info {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}

.register-right-info .box .icon {
    background-color: var(--Primary-Color);
    min-width: 60px;
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    font-size: 20px;
    color: var(--White-Color);
}

.register-right-info .box {
    display: flex;
    gap: 16px;
    padding: 16px;
    align-items: start;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.2);
    background: var(--White-Color);
    border-radius: 10px;
}

.register-right-info .box h5 {
    font-size: 16px;
}

.info-cards .icon-new {
    position: absolute;
    right: 12px;
    /* top: 50%; */
    top: 22px;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--Primary-Color);
}



.booking-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    background: #fff;
    transition: 0.3s;
}

.booking-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.booking-card .booking-cardmain {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.booking-card .booking-cardmain .right-content a {
    white-space: nowrap;
}

.booking-card .booking-cardmain .right-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    align-items: end;
}

.booking-card .booking-cardmain .left-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.booking-card .booking-cardmain .left-content .image {
    max-width: 200px;
}

@media (max-width: 991px) {
    .booking-card .booking-cardmain {
        flex-direction: column;
        gap: 4px;
    }

    .booking-card .booking-cardmain .left-content {
        align-items: start;
        flex-direction: column;
    }

    .booking-card .booking-cardmain .right-content {
        align-items: start;
    }

    .booking-card .booking-cardmain .left-content .image {
        max-width: 100%;
    }
}

.integrity-card {
    background: var(--White-Color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    height: 100%;
}

.integrity-card:hover {
    transform: translateY(-6px);
}

.integrity-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.integrity-card p {
    color: var(--Secondary-Color);
    line-height: 1.6;
}

.revenue-card {
    background: var(--White-Color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.revenue-card:hover {
    transform: translateY(-6px);
}

.revenue-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.revenue-card p {
    color: var(--Secondary-Color);
    line-height: 1.6;
}