@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

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

body {
    font-family: var(--font-family-2);
    color: var(--dark_blue);
}

:root {
    --font-family-1: "Cormorant Garamond", serif;
    --font-family-2: "DM Sans", sans-serif;
    --deep_red: #8B0000;
    --dark_blue: #0B1F4D;
    --black: #111111;
    --white: #FFFFFF;
    --light_bg: #F2F2F2;
    --border: #D5D5D5;
    --text-3xxl: 64px;
    --text-2xxl: 46px;
    --text-xxl: 24px;
    --text-xl: 20px;
    --text-lg: 18px;
    --text-base: 16px;
    --text-sm: 14px;
    --text-xs: 12px;
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --hero-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
    --title-gradient: linear-gradient(90deg, rgba(139, 0, 0, 0) 0%, #8B0000 100%);
    --cta-gradient: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
    --shadow-1: 0px 0px 14px 0px #0000000F;
    --shadow-2: 0px 4px 10px 0px #00000040 inset;
    --transition: all 0.3s ease-in-out;
    --space-60: 60px;
    --space-32: 32px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-1);
    margin: 0px;
}

span {
    font-weight: var(--fw-regular);
}

h1,
h1 span {
    font-size: var(--text-3xxl);
    font-weight: var(--fw-bold);
}

h2,
h2 span {
    font-size: var(--text-2xxl);
    font-weight: var(--fw-bold);
}

h3,
h3,
span {
    font-size: var(--text-xxl);
    font-weight: var(--fw-bold);
}

h4,
h4 span {
    font-size: var(--text-xl);
    font-weight: var(--fw-bold);
}

h5,
h5 span {
    font-size: var(--text-lg);
    font-weight: var(--fw-bold);
}

h6,
h6 span {
    font-size: var(--text-base);
    font-weight: var(--fw-bold);
}

p {
    font-size: var(--text-base);
    font-weight: var(--fw-regular);
    margin: 0px;
}

a {
    text-decoration: none;
    color: var(--dark_blue);
}

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

.mt-32 {
    margin-top: var(--space-32);
}

.mb-32 {
    margin-bottom: var(--space-32);
}

.mt-60 {
    margin-top: var(--space-60);
}

.mb-60 {
    margin-bottom: var(--space-60);
}

.my-32 {
    margin-top: var(--space-32);
    margin-bottom: var(--space-32);
}

.section-title {
    padding-bottom: var(--space-32);
    text-align: center;
}

.section-title .title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    font-size: var(--text-sm);
    font-weight: var(--fw-bold);
    color: var(--deep_red);
}

.section-title .title::before {
    content: "";
    height: 4px;
    width: 48px;
    background: var(--title-gradient);
    border-radius: 0px 20px 20px 0px;
}

.section-title .title::after {
    content: "";
    height: 4px;
    width: 48px;
    background: var(--title-gradient);
    border-radius: 0px 20px 20px 0px;
    transform: scale(-1);
}

.section-title h2 {
    margin-top: 16px;
}

.section-title h2 span {
    color: var(--deep_red);
}

/* Button ----------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------- */
.dmc-button {
    padding: 16px 32px;
    border-radius: 6px;
    border: 1px solid;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    font-size: var(--text-base);
    font-weight: var(--fw-bold);
    background-color: transparent;
    outline: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--deep_red);
    color: var(--white);
    border-color: var(--deep_red);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--deep_red);
    border-color: var(--deep_red);
}

.btn-primary-stroke {
    border-color: var(--deep_red);
    color: var(--deep_red);
}

.btn-primary-stroke:hover {
    background-color: var(--deep_red);
    color: var(--white);
    border-color: var(--deep_red);
}

.btn-secondary {
    background-color: var(--dark_blue);
    color: var(--white);
    border-color: var(--dark_blue);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--dark_blue);
    border-color: var(--dark_blue);
}

.btn-secondary-stroke {
    border-color: var(--dark_blue);
    color: var(--dark_blue);
}

.btn-secondary-stroke:hover {
    background-color: var(--dark_blue);
    color: var(--white);
    border-color: var(--dark_blue);
}

.btn-white {
    background-color: var(--white);
    color: var(--dark_blue);
    border-color: var(--white);
}

.btn-white:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-white-stroke {
    border-color: var(--white);
    color: var(--white);
}

.btn-white-stroke:hover {
    background-color: var(--white);
    color: var(--dark_blue);
    border-color: var(--white);
}


/* TOPBAR */
.topbar {
    background-color: var(--deep_red);
}

.topbar .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.topbar .content p,
.topbar .content p span {
    font-size: var(--text-sm);
    color: var(--white);
}

#changingText {
    display: inline-block;
    transition: all .4s ease;
}

#changingText.hide {
    opacity: 0;
    transform: translateY(-8px);
}

#changingText.show {
    opacity: 1;
    transform: translateY(0);
}

.topbar .content .right-side ul {
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
}

.topbar .content .right-side ul li a {
    font-size: var(--text-sm);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 4px;
}

.language-wrapper {
    position: relative;
}

.language {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--deep_red);
    padding: 4px 8px;
    border-radius: 4px;
    box-shadow: var(--shadow-1);
    cursor: pointer;
    user-select: none;
    transition: .3s;
    font-size: var(--text-sm);
    background-color: var(--white);
}

.language span {
    font-size: var(--text-sm);
    font-weight: var(--fw-regular);
}

.language .arrow {
    font-size: var(--text-xs);
    transition: .3s;
}

.language-wrapper.active .arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 180px;
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .15);
    border: 1px solid rgba(0, 0, 0, .08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .3s ease;
    z-index: 999;
}

.language-wrapper.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown .list {
    padding: 12px 18px;
    font-size: var(--text-sm);
    color: var(--black);
    cursor: pointer;
    transition: .25s;
}

.language-dropdown .list:hover {
    background: var(--deep_red);
    color: var(--white);
    padding-left: 24px;
}

.language-dropdown .list.active {
    background: rgba(166, 31, 39, .08);
    color: var(--deep_red);
    font-weight: 600;
}

/* Header ------------------------------------------------------------------------------
---------------------------------------------------------------------------------------- */

header {
    padding: 12px 0px;
    border-bottom: 1px solid var(--border);
    background-color: var(--white);
}

header .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

header .content .logo a img {
    max-width: 171px;
    width: 100%;
    object-fit: contain;
}

header .content .right-side {
    display: flex;
    align-items: center;
    gap: 16px;
}

header .content .right-side .menu-show {
    background: transparent;
    border: none;
    outline: none;
    font-size: var(--text-base);
    color: var(--deep_red);
    background-color: #8b000021;
    height: 32px;
    width: 32px;
    min-width: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

header .content .navbars nav ul {
    display: flex;
    align-items: center;
    gap: var(--space-32);
}

header .content .navbars nav ul li a {
    font-size: var(--text-base);
    font-weight: var(--fw-medium);
    transition: var(--transition);
}

header .content .navbars nav ul li:hover a,
header .content .navbars nav ul li.current_page_item a {
    color: var(--deep_red);
}

/* Hero Section -------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: var(--hero-gradient);
}

.hero-section .image {
    position: relative;
    min-height: 775px;
}

.hero-section .image .main-image {
    border-radius: 0px 0px 20px 20px;
}

.hero-section .image .down-image {
    position: absolute;
    bottom: 0px;
    right: 0px;
    max-width: 350px;
    width: 100%;
    transform: scaleX(-1);
}

.hero-section .content {
    padding: var(--space-60) 0px;
}

.hero-section .content h1 {
    max-width: 588px;
    width: 100%;
}

.hero-section .content h1 span {
    color: var(--deep_red);
}

.hero-section .content p {
    font-size: var(--text-xl);
}


/* About Us Section -------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------- */
.about-section {
    padding-top: var(--space-60);
    overflow: hidden;
}

.about-section .content {
    background-color: var(--light_bg);
    border-radius: 20px;
}

.about-section .content .image img {
    border-radius: 12px;
    height: 100%;
    object-fit: cover;
}

.about-section .content h2 span {
    color: var(--deep_red);
}

.about-section .content .counting .count-box {
    background-color: var(--white);
    box-shadow: var(--shadow-1);
    border-radius: 12px;
    height: 100%;
}

.about-section .content .counting .count-box .count {
    font-size: var(--text-2xxl);
    font-weight: var(--fw-bold);
    color: var(--deep_red);
    margin-bottom: 4px;
}

/* Service Section ------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------- */
.service-section {
    padding: var(--space-60) 0px;
    overflow: hidden;
}

.service-section .content a.image {
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.service-section .content a.image img {
    width: 100%;
    aspect-ratio: 648 / 386;
    transition: var(--transition);
    object-fit: cover;
}

.service-section .content .box {
    box-shadow: 0px 0px 16px 0px #00000040;
    background-color: var(--white);
    border-radius: 20px;
    transform: translateY(calc(-1 * var(--space-32)));
    transition: var(--transition);
}

.service-section .content .box h3 {
    color: var(--deep_red);
}

.service-section .content .box p {
    opacity: .6;
}

.service-section .content .box .highlights {
    font-size: var(--text-base);
    font-weight: var(--fw-medium);
}

.service-section .content .box ul {
    list-style: disc;
    padding-left: 20px;
}

.service-section .content .box a.explore {
    color: var(--deep_red);
    font-size: var(--text-base);
    font-weight: var(--fw-bold);
    transition: var(--transition);
    display: inline-block;
}

.service-section .content .box a.explore:hover {
    text-decoration: underline;
}

.service-section .content:hover a.image img {
    transform: scale(1.05);
    filter: brightness(0.5);
}

.service-section .content:hover .box {
    transform: translateY(calc(-10px - var(--space-32)));
}


/* Destination Section ---------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------- */
.destination-section {
    background-color: var(--light_bg);
    padding: var(--space-60) 0px;
    overflow: hidden;
}

.destination-section .box {
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.destination-section .box:hover {
    transform: translateY(-5px);
}

.destination-section .box a {
    display: block;
    position: relative;
}

.destination-section .box .image {
    position: relative;
}

.destination-section .box .image::before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.destination-section .box .image img {
    width: 100%;
    aspect-ratio: 200 / 300;
    transition: var(--transition);
    object-fit: cover;
}

.destination-section .box:hover .image img {
    transform: scale(1.05);
}

.destination-section .box h3 {
    color: var(--white);
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    padding: 16px;
    font-size: var(--text-xl);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    z-index: 1;
}

/* Experience Section ---------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------------- */
.experience-section {
    padding: var(--space-60) 0px;
    overflow: hidden;
}

.experience-section .image {
    border-radius: 12px;
    overflow: hidden;
}

.experience-section .image img {
    aspect-ratio: 1 / 1;
}

.experience-section .content h2 {
    margin-bottom: var(--space-32);
}

.experience-section .content h2 span {
    color: var(--deep_red);
}

.experience-section .content ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.experience-section .content ul li {
    padding: 20px 24px;
    border-radius: 12px;
    border: 2px solid var(--deep_red);
    color: var(--deep_red);
    font-size: var(--text-xl);
    font-weight: var(--fw-bold);
    font-family: var(--font-family-1);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-2);
    transition: var(--transition);
}

.experience-section .content ul li:hover {
    transform: translateY(-5px);
    background-color: var(--deep_red);
    color: var(--white);
}

/* CTA Section -----------------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------------------- */
.cta-section {
    padding-bottom: var(--space-60);
    overflow: hidden;
}

.cta-section .content {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: var(--space-60);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
}

.cta-section .content::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: var(--cta-gradient);
}

.cta-section .content .box {
    position: relative;
    max-width: 421px;
}

.cta-section .content .box h2,
.cta-section .content .box p {
    color: var(--white);
}

.cta-section .content .box p {
    margin-top: 16px;
    margin-bottom: var(--space-32);
}

/* FAQ's -----------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------- */
.faq-section {
    background-color: var(--light_bg);
    padding: var(--space-60) 0px;
    overflow: hidden;
}

.faq-section .custom-faq {
    max-width: 840px;
    margin: auto;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
}

.faq-section .custom-faq .accordion-item {
    border: 0;
    border-bottom: 1px solid var(--border);
}

.faq-section .custom-faq .accordion-item:last-child {
    border-bottom: 0;
}

.faq-section .custom-faq .accordion-button {
    background: transparent;
    color: var(--dark_blue);
    font-size: var(--text-base);
    font-family: var(--font-family-2);
    font-weight: var(--fw-bold);
    padding: 24px;
    box-shadow: none;
}

.faq-section .custom-faq .accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--dark_blue);
    box-shadow: none;
}

.faq-section .custom-faq .accordion-body {
    padding: 0 24px 24px;
    opacity: .7;
    font-size: var(--text-base);
    line-height: 1.8;
}

.faq-section .custom-faq .accordion-button::after {
    background-image: none;
    content: "\f107";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    color: var(--deep_red);
    width: auto;
    height: auto;
    transition: .3s;
}

.faq-section .custom-faq .accordion-button:not(.collapsed)::after {
    content: "\f106";
    transform: rotate(0);
}

.faq-section .custom-faq .accordion-button:focus {
    box-shadow: none;
}


/* Blog Section -------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------- */
.blog-section {
    padding: var(--space-60) 0px;
}

.blog-section .content {
    transition: var(--transition);
}

.blog-section .content:hover {
    transform: translateY(-10px);
}

.blog-section .content a.image {
    display: block;
    border-radius: 12px;
    overflow: hidden;
}

.blog-section .content a.image img {
    aspect-ratio: 424 / 274;
    object-fit: cover;
    transition: var(--transition);
}

.blog-section .content:hover a.image img {
    transform: scale(1.05);
}

.blog-section .content .box {
    padding: 12px;
}

.blog-section .content .box h3 {
    margin-bottom: 4px;
}

.blog-section .content .box p {
    font-size: var(--text-sm);
    opacity: .8;
    margin-bottom: 16px;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-section .content .box a.read-more {
    color: var(--deep_red);
    font-size: var(--text-base);
    font-weight: var(--fw-bold);
    transition: var(--transition);
    display: inline-block;
}

.blog-section .content .box a.read-more:hover {
    text-decoration: underline;
}

/* Contact Section -------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------------- */
.contact-section {
    padding-bottom: var(--space-60);
    overflow: hidden;
}

.contact-section .content {
    background-color: var(--light_bg);
    border-radius: 20px;
}

.contact-section .content h3 {
    margin-bottom: 24px;
}

.contact-section .content .info-box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
}

.contact-section .content .info-box a {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-section .content .info-box .icon {
    height: 58px;
    width: 58px;
    min-width: 58px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    color: var(--white);
    background-color: var(--deep_red);
    border: 2px solid var(--deep_red);
    transition: var(--transition);
}

.contact-section .content .info-box a:hover .icon {
    background-color: transparent;
    color: var(--deep_red);
}

.contact-section .contact-form {
    background: var(--white);
    border-radius: 20px;
    padding: var(--space-32);
    box-shadow: var(--shadow-1);
    height: 100%;
}

.contact-section .contact-form form p {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 0;
}

/* .contact-section .contact-form form p {
    margin: 0;
} */

.contact-section .contact-form form p span:first-child,
.contact-section .contact-form form p span:nth-child(4),
.contact-section .contact-form form p span:nth-child(5),
.contact-section .contact-form form p span:last-child {
    grid-column: 1/-1;
}

.contact-section .contact-form label {
    display: none;
}

.contact-section .contact-form span input,
.contact-section .contact-form span select,
.contact-section .contact-form span textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: var(--text-base);
    color: var(--dark_blue);
    background: var(--white);
    outline: none;
    transition: var(--transition);
}

.contact-section .contact-form span input::placeholder,
.contact-section .contact-form span textarea::placeholder {
    color: var(--dark_blue);
}

.contact-section .contact-form span textarea {
    height: 140px;
    resize: none;
}

.contact-section .contact-form span input:focus,
.contact-section .contact-form span select:focus,
.contact-section .contact-form span textarea:focus {
    border-color: var(--deep_red);
    box-shadow: 0 0 0 3px rgba(139, 0, 0, .08);
}

.contact-section span[data-name="select-727"] {
    position: relative;
}

.contact-section span[data-name="select-727"]::after {
    content: "\f107";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--dark_blue);
    font-size: 14px;
}

.contact-section .contact-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none;
    padding-right: 45px;
    cursor: pointer;
}

.contact-section .contact-form select::-ms-expand {
    display: none;
}
.contact-section .contact-form input.dmc-button.btn-secondary {
    width: max-content;
}
.contact-section .contact-form span span.wpcf7-not-valid-tip {
    font-size: 12px;
}
.contact-section .contact-form .wpcf7 form .wpcf7-response-output {
    margin: 0px;
    padding: 10px 16px;
    border: 1px solid var(--dark_blue) !important;
    font-size: 14px;
    color: var(--dark_blue);
    border-radius: 30px;
	margin-top: 16px;
}
.contact-section .contact-form  span.wpcf7-spinner {
    display: none;
}
@media(max-width:767px) {

    .contact-section .contact-form {
        padding: 24px;
    }

    .contact-section .contact-form form p {
        grid-template-columns: 1fr;
    }

    .contact-section .contact-form form p span {
        grid-column: 1/-1 !important;
    }
}

/* Footer Section --------------------------------------------------------------------------------- 
---------------------------------------------------------------------------------------------------*/
.footer-section {
    background: var(--dark_blue);
    padding: var(--space-60) 0 24px;
    color: var(--white);
}

.footer-logo img {
    width: 100%;
    max-width: 202px;
/*     height: 82px; */
    border-radius: 10px;
}

.footer-about h3,
.footer-links h4,
.footer-newsletter h4 {
    color: var(--white);
    font-weight: var(--fw-bold);
    font-family: var(--font-family-2);
    margin-bottom: 16px;
}

.footer-about h3 {
    font-size: var(--text-base);
    margin-top: 16px;
}

.footer-links h4,
.footer-newsletter h4 {
    font-size: var(--text-base);
}

.footer-about p,
.footer-newsletter p {
    font-size: var(--text-sm);
    opacity: .8;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li+li {
    margin-top: 8px;
}

.footer-links a {
    color: var(--white);
    font-size: var(--text-base);
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: start;
}

.footer-links a::before {
    content: "";
    width: 0px;
    height: 2px;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--white);
    transition: var(--transition);
}

.footer-links a:hover {
    padding-left: 12px;
}

.footer-links a:hover::before {
    width: 8px;
}

.footer-newsletter p {
    margin-bottom: var(--space-32);
}

.newsletter-box {
    display: flex;
    border-bottom: 2px solid var(--white);
    margin-bottom: var(--space-32);
}

.newsletter-box input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    height: 42px;
    font-size: var(--text-sm);
}

.newsletter-box input::placeholder {
    color: var(--white);
}

.newsletter-box button {
    width: 42px;
    min-width: 42px;
    height: 42px;
    border: none;
    background: rgba(255, 255, 255, .08);
    color: var(--white);
    font-size: var(--text-sm);
    transition: var(--transition);
}

.newsletter-box button:hover {
    background: var(--deep_red);
}

.social-media {
    display: flex;
    gap: 12px;
}

.social-media a {
    width: 42px;
    min-width: 42px;
    height: 42px;
    border-radius: 6px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark_blue);
    font-size: var(--text-base);
    transition: var(--transition);
}

.social-media a:hover {
    background: var(--deep_red);
    color: var(--white);
    transform: translateY(-6px);
}

.footer-bottom {
    margin-top: var(--space-32);
    padding-top: 24px;
    border-top: 1px solid var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.copyright {
    color: var(--white);
    font-size: var(--text-sm);
    font-weight: var(--fw-regular);
}

.footer-policy {
    display: flex;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.footer-policy li {
    position: relative;
}

.footer-policy li:not(:last-child)::after {
    content: "•";
    position: absolute;
    right: -11px;
    color: var(--white);
}

.footer-policy a {
    color: var(--white);
    transition: var(--transition);
    font-size: var(--text-sm);
    font-weight: var(--fw-regular);
    transition: var(--transition);
}

.footer-policy a:hover {
    color: var(--deep_red);
}

.footer-policy a:hover {
    color: var(--white);
}



/* Responsive */
.menu-show,
.mobile-header,
.mobile-btn,
.menu-overlay {
    display: none;
}

@media (min-width: 992px) and (max-width: 1199px) {
    header .content .navbars nav ul {
        gap: 20px;
    }
}

@media(max-width:991px) {

    .menu-show {
        display: flex;
    }

    .desktop-btn {
        display: none;
    }

    .navbars {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: #fff;
        z-index: 99999;
        transition: .35s ease;
        display: flex;
        flex-direction: column;
        padding: 0px;
        overflow-y: auto;
    }

    .navbars.active {
        right: 0;
    }

    .mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 16px;
        padding: 16px;
        border-bottom: 1px solid var(--border);
        position: sticky;
        top: 0px;
        background-color: var(--white);
    }

    .mobile-header img {
        width: 160px;
    }

    .menu-close {
        background: transparent;
        border: none;
        outline: none;
        font-size: var(--text-base);
        color: var(--deep_red);
        background-color: #8b000021;
        height: 32px;
        width: 32px;
        min-width: 32px;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
    }

    .navbars nav {
        padding: 16px;
        padding-top: 0px;
        height: 100%;
    }

    header .content .navbars nav ul {
        display: block;
        margin: 0;
        padding: 0;
    }

    .navbars nav ul li {
        list-style: none;
        border-bottom: 1px solid #eee;
    }

    .navbars nav ul li a {
        display: block;
        padding: 15px;
        color: var(--dark_blue);
    }

    .mobile-btn {
        display: block;
        margin-top: 30px;
    }

    .menu-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .6);
        opacity: 0;
        visibility: hidden;
        transition: .35s;
        z-index: 99998;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    body.menu-open {
        overflow: hidden;
    }

    .hero-section .image .main-image {
        border-radius: 20px;
    }

}

@media(max-width:575px) {

    .navbars {
        width: 90%;
    }

}

/* ==========================================================
   RESPONSIVE
========================================================== */

/* Large Tablet */
@media (max-width:1199px) {

    :root {
        --text-3xxl: 52px;
        --text-2xxl: 40px;
        --space-60: 50px;
    }

    .hero-section .image {
        min-height: 620px;
    }

    .hero-section .image .down-image {
        max-width: 250px;
    }

}


/* Tablet */
@media (max-width:991px) {

    :root {
        --text-3xxl: 42px;
        --text-2xxl: 34px;
        --text-xxl: 22px;
        --text-xl: 18px;
        --space-60: 45px;
        --space-32: 24px;
    }

    .topbar .content {
        flex-direction: column;
        gap: 4px;
    }

    .topbar .content p,
    .topbar .content p span {
        font-size: 11px;
    }

    header {
        padding: 16px 0;
    }

    .hero-section .content {
        padding-bottom: 24px;
    }

    .hero-section .content h1 {
        max-width: 100%;
    }

    .hero-section .content p {
        font-size: 16px;
    }

    .hero-section .image {
        min-height: auto;
    }

    .hero-section .image .down-image {
        display: none;
    }

    .about-section .content {
        padding: 20px;
    }

    .about-section .content .image {
        margin-bottom: 20px;
    }

    .service-section .content {
        margin-bottom: 30px;
    }

    .service-section .content .box {
        transform: translateY(-20px);
    }

    .experience-section .content {
        margin-top: 30px;
    }

    .experience-section .content ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-section .content {
        padding: 40px;
        min-height: auto;
    }

    .contact-section .content {
        padding: 25px;
    }

    .footer-section .row>div {
        margin-bottom: 35px;
    }

    .hero-section {
        padding-bottom: var(--space-60);
    }

    .footer-bottom {
        justify-content: center;
    }

}


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

    :root {
        --text-3xxl: 34px;
        --text-2xxl: 28px;
        --text-xxl: 22px;
        --text-xl: 18px;
        --text-lg: 17px;
        --text-base: 15px;
        --space-60: 40px;
        --space-32: 20px;
    }

    .section-title {
        padding-bottom: 20px;
    }

    .section-title .title::before,
    .section-title .title::after {
        width: 28px;
    }

    .dmc-button {
        width: 100%;
        padding: 14px 20px;
    }

    .hero-section .content {
        padding: 40px 0;
    }

    .hero-section .image .main-image {
        border-radius: 15px;
    }

    .about-section .content {
        border-radius: 15px;
    }

    .about-section .counting .row>div {
        margin-bottom: 15px;
    }

    .service-section .content .box {
        padding: 20px !important;
    }

    .destination-section .box img {
        aspect-ratio: 16/12;
    }

    .experience-section .content ul {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .cta-section .content {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .cta-section .content .box {
        max-width: 100%;
    }

    .faq-section .custom-faq .accordion-button {
        padding: 18px;
    }

    .faq-section .custom-faq .accordion-body {
        padding: 0 18px 18px;
    }

    .blog-section .content {
        margin-bottom: 30px;
    }

    .contact-section .content {
        padding: 20px;
        border-radius: 15px;
    }

    .contact-section .contact-form {
        padding: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-policy {
        justify-content: center;
    }

}


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

    :root {
        --text-3xxl: 30px;
        --text-2xxl: 24px;
        --text-xxl: 20px;
        --text-xl: 17px;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-section .content {
        text-align: center;
    }

    .hero-section .content h1 {
        line-height: 1.2;
    }

    .hero-section .content p {
        margin-top: 15px;
    }

    .section-title h2 {
        line-height: 1.3;
    }

    .about-section .content,
    .contact-section .content,
    .cta-section .content {
        border-radius: 12px;
    }

    .destination-section .box h3 {
        font-size: 18px;
    }

    .social-media {
        justify-content: center;
    }

    .hero-section .content .hero-btn {
        flex-direction: column;
    }

    .topbar .content .right-side ul {
        gap: 16px;
        flex-wrap: wrap;
        --text-sm: 11px;
        justify-content: center;
    }
}

@media (max-width: 425px) {

    header .content .right-side a.dmc-button.btn-primary,
    .topbar .content .right-side ul li {
        display: none;
    }

    .topbar .content .right-side ul li.language-wrapper {
        display: block;
    }

    .topbar .content {
        flex-direction: row;
    }
}



/* ----------------------------------------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------------------------------
Inner Page Css 
-------------------------------------------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------------------------------- */
.inner-banner {
    position: relative;
    padding: 140px 0 90px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.inner-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
}

.inner-banner .content {
    position: relative;
    z-index: 2;
}

.inner-banner .sub-title {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: var(--text-sm);
    font-weight: var(--fw-bold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.inner-banner h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.inner-banner h1 span {
    text-decoration: underline;
}

.inner-banner .breadcrumb-list {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
}

.inner-banner .breadcrumb-list li {
    color: var(--white);
    font-size: var(--text-base);
}

.inner-banner .breadcrumb-list li a {
    color: var(--white);
    transition: var(--transition);
}

.inner-banner .breadcrumb-list li a:hover {
    color: var(--deep_red);
}

.inner-banner .breadcrumb-list li:not(:last-child)::after {
    content: "/";
    margin-left: 14px;
    color: var(--white);
    opacity: .5;
}

.about-company {
    padding: var(--space-60) 0;
    overflow: hidden;
}

.about-company .image-box {
    position: relative;
}

.about-company .main-image {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.about-company .section-title {
    text-align: left;
    padding-bottom: 20px;
}

.about-company p {
    line-height: 1.9;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--light_bg);
    border-radius: 12px;
    padding: 14px 18px;
    transition: var(--transition);
    font-size: var(--text-base);
    font-weight: var(--fw-medium);
}

.feature-item i {
    color: var(--deep_red);
    font-size: 20px;
}

.feature-item:hover {
    background: var(--deep_red);
    color: var(--white);
    transform: translateY(-5px);
}

.feature-item:hover i {
    color: var(--white);
}

.journey-section {
    background: var(--light_bg);
    padding: var(--space-60) 0;
    overflow: hidden;
}

.timeline {
    position: relative;
    max-width: 950px;
    margin: auto;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    transform: translateX(-50%);
    background: var(--deep_red);
}

.timeline-item {
    width: 50%;
    position: relative;
    padding: 0 45px 50px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item::before {
    content: "";
    position: absolute;
    top: 12px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--deep_red);
    border: 5px solid var(--white);
    box-shadow: 0 0 0 5px rgba(139, 0, 0, .15);
    z-index: 2;
}

.timeline-item:nth-child(odd)::before {
    right: -10px;
}

.timeline-item:nth-child(even)::before {
    left: -8px;
}

.timeline .year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 42px;
    background: var(--deep_red);
    color: var(--white);
    border-radius: 50px;
    font-weight: var(--fw-bold);
    margin-bottom: 18px;
}

.timeline .content {
    background: var(--white);
    padding: 28px;
    border-radius: 18px;
    box-shadow: var(--shadow-1);
    transition: var(--transition);
}

.timeline .content h3 {
    color: var(--deep_red);
    margin-bottom: 12px;
}

.timeline .content p {
    opacity: .75;
    line-height: 1.8;
}

.timeline .content:hover {
    transform: translateY(-8px);
}

@media(max-width:991px) {

    .inner-banner {
        padding: 110px 0 70px;
    }

    .about-company .experience-box {
        right: 20px;
        bottom: 20px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even),
    .timeline-item:nth-child(odd) {
        width: 100%;
        left: 0;
        text-align: left;
        padding-left: 60px;
        padding-right: 0;
    }

    .timeline-item::before,
    .timeline-item:nth-child(odd)::before,
    .timeline-item:nth-child(even)::before {
        left: 11px;
        right: auto;
    }

}

@media(max-width:767px) {

    .inner-banner {
        padding: 90px 0 60px;
    }

    .breadcrumb-list {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-company .experience-box {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 20px;
        max-width: 100%;
    }

    .timeline .content {
        padding: 22px;
    }

}

.choose-section {
    padding: var(--space-60) 0;
    overflow: hidden;
}

.choose-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 28px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-1);
    transition: var(--transition);
}

.choose-card:hover {
    transform: translateY(-8px);
}

.choose-card .icon {
    width: 80px;
    height: 80px;
    margin: auto auto 20px;
    border-radius: 50%;
    background: rgba(139, 0, 0, .08);
    color: var(--deep_red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    transition: .3s;
}

.choose-card:hover .icon {
    background: var(--deep_red);
    color: #fff;
}

.choose-card h3 {
    margin-bottom: 15px;
}

.choose-card p {
    opacity: .75;
    line-height: 1.8;
}

.stats-section {
    padding: var(--space-60) 0;
    overflow: hidden;
    background: var(--dark_blue);
}

.stat-box {
    text-align: center;
}

.stat-box h2 {
    color: #fff;
    margin-bottom: 10px;
}

.stat-box p {
    color: rgba(255, 255, 255, .8);
    font-size: var(--text-base);
}

.mission-section {
    padding: var(--space-60) 0;
    overflow: hidden;
}

.mission-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-1);
    height: 100%;
    transition: .3s;
}

.mission-card:hover {
    transform: translateY(-8px);
}

.mission-card .icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: var(--deep_red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 25px;
}

.mission-card h3 {
    margin-bottom: 15px;
}

.mission-card p {
    line-height: 1.9;
    opacity: .8;
}

.team-section {
    padding: var(--space-60) 0;
    background: var(--light_bg);
    margin-bottom: var(--space-60);
    overflow: hidden;
}

.team-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-1);
    transition: .3s;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-card .image {
    overflow: hidden;
}

.team-card img {
    transition: .4s;
    aspect-ratio: 1/1.15;
    object-fit: cover;
}

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

.team-card .content {
    padding: 24px;
    text-align: center;
}

.team-card span {
    display: block;
    margin: 8px 0 15px;
    color: var(--deep_red);
    font-size: 15px;
}

.team-card p {
    font-size: 15px;
    line-height: 1.7;
    opacity: .75;
}

.team-card .social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.team-card .social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light_bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.team-card .social a:hover {
    background: var(--deep_red);
    color: #fff;
}

@media(max-width:991px) {

    .mission-card {
        padding: 30px;
    }

    .choose-card {
        padding: 28px 22px;
    }

}

@media(max-width:767px) {

    .mission-card {
        padding: 25px;
    }

    .choose-card,
    .team-card,
    .mission-card {
        text-align: center;
    }

    .mission-card .icon {
        margin: auto auto 20px;
    }

}

.service-intro {
    padding: var(--space-60) 0;
    overflow: hidden;
}

.service-intro .section-title {
    text-align: left;
    padding-bottom: 20px;
}

.service-intro p {
    line-height: 1.9;
    opacity: .85;
}

.service-intro .image-box {
    position: relative;
}

.service-intro .main-image {
    width: 100%;
    display: block;
    border-radius: 24px;
    box-shadow: var(--shadow-1);
}

.service-intro .experience-box {
    position: absolute;
    right: -25px;
    bottom: 30px;
    background: var(--deep_red);
    color: var(--white);
    padding: 24px;
    border-radius: 18px;
    max-width: 220px;
    box-shadow: var(--shadow-1);
}

.service-intro .experience-box h2 {
    color: var(--white);
    margin-bottom: 8px;
}

.service-intro .experience-box p {
    color: rgba(255, 255, 255, .9);
    margin: 0;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--light_bg);
    border-radius: 14px;
    padding: 16px 18px;
    font-weight: var(--fw-medium);
    transition: var(--transition);
}

.intro-feature i {
    color: var(--deep_red);
    font-size: 20px;
}

.intro-feature:hover {
    background: var(--deep_red);
    color: var(--white);
    transform: translateY(-5px);
}

.intro-feature:hover i {
    color: var(--white);
}

.services-list {
    padding: var(--space-60) 0;
    background: var(--light_bg);
    overflow: hidden;
}

.service-item {
    margin-top: 70px;
}

.service-item:first-child {
    margin-top: 0;
}

.service-item .image {
    overflow: hidden;
    border-radius: 24px;
}

.service-item .image img {
    border-radius: 24px;
    transition: .6s;
}

.service-item:hover img {
    transform: scale(1.08);
}

.service-item .content {
    position: relative;
}

.service-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--deep_red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: var(--fw-bold);
    margin-bottom: 25px;
}

.service-item h3 {
    margin-bottom: 20px;
}

.service-item p {
    line-height: 1.9;
    opacity: .8;
}

.service-item h4 {
    margin: 30px 0 18px;
    color: var(--deep_red);
    font-size: 20px;
}

.service-item ul {
    margin: 0 0 35px;
    padding: 0;
    list-style: none;
}

.service-item ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-weight: var(--fw-medium);
}

.service-item ul li::before {
    content: "\f058";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    color: var(--deep_red);
    position: absolute;
    left: 0;
    top: 1px;
}

.service-item.reverse {
    padding: 50px;
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow-1);
}

.why-service-section {
    padding: var(--space-60) 0;
}

.why-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-1);
    transition: var(--transition);
    height: 100%;
}

.why-card .icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(139, 0, 0, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 25px;
}

.why-card .icon i {
    color: var(--deep_red);
    font-size: 32px;
}

.why-card h3 {
    margin-bottom: 15px;
}

.why-card p {
    line-height: 1.8;
    opacity: .75;
}

.why-card:hover {
    transform: translateY(-10px);
    background: var(--deep_red);
}

.why-card:hover h3,
.why-card:hover p {
    color: var(--white);
}

.why-card:hover .icon {
    background: rgba(255, 255, 255, .15);
}

.why-card:hover .icon i {
    color: var(--white);
}

.process-section {
    padding: var(--space-60) 0;
    background: var(--light_bg);
    overflow: hidden;
}

.process-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 20px;
    position: relative;
}

.process-wrapper::before {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    top: 65px;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.process-item {
    position: relative;
    z-index: 2;
    text-align: center;
}

.process-item .number {
    position: absolute;
    top: -12px;
    right: 20px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--deep_red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: var(--fw-bold);
}

.process-item .icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-1);
    transition: var(--transition);
}

.process-item .icon i {
    font-size: 42px;
    color: var(--deep_red);
}

.process-item h3 {
    margin-bottom: 14px;
}

.process-item p {
    opacity: .75;
    line-height: 1.8;
}

.process-item:hover .icon {
    background: var(--deep_red);
    transform: translateY(-8px);
}

.process-item:hover .icon i {
    color: var(--white);
}

.cities-section {
    padding: var(--space-60) 0;
}

.city-card {
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-1);
    transition: var(--transition);
    height: 100%;
}

.city-card:hover {
    transform: translateY(-10px);
}

.city-card .image {
    overflow: hidden;
}

.city-card .image img {
    transition: .5s;
}

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

.city-card .content {
    padding: 25px;
}

.city-card h3 {
    margin-bottom: 12px;
}

.city-card p {
    opacity: .75;
    line-height: 1.8;
    min-height: 58px;
}

.city-card .explore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--deep_red);
    font-weight: var(--fw-semibold);
    transition: var(--transition);
}

.city-card .explore i {
    transition: var(--transition);
}

.city-card:hover .explore {
    color: var(--dark_blue);
}

.city-card:hover .explore i {
    transform: translateX(6px);
}

.service-cta {
    padding-bottom: var(--space-60);
}

.service-cta .content {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background-size: cover;
    background-position: center;
}

.service-cta .content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--cta-gradient);
}

.service-cta .box {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 80px 70px;
}

.service-cta h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.service-cta p {
    color: rgba(255, 255, 255, .9);
    line-height: 1.9;
    margin-bottom: 30px;
}

@media(max-width:1199px) {

    .process-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-wrapper::before {
        display: none;
    }

}

@media(max-width:991px) {

    .service-intro .experience-box {
        right: 20px;
        bottom: 20px;
    }

    .service-item {
        margin-top: 60px;
    }

    .service-item.reverse {
        padding: 35px;
    }

    .service-item.reverse .row {
        row-gap: 35px;
    }

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

    .service-cta .box {
        padding: 60px 40px;
    }

}

@media(max-width:767px) {

    .service-intro .experience-box {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 20px;
        max-width: 100%;
    }

    .service-item {
        margin-top: 45px;
    }

    .service-item.reverse {
        padding: 22px;
        border-radius: 18px;
    }

    .service-number {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }

    .why-card {
        padding: 25px;
    }

    .why-card .icon {
        width: 70px;
        height: 70px;
    }

    .why-card .icon i {
        font-size: 28px;
    }

    .process-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .process-item .icon {
        width: 90px;
        height: 90px;
    }

    .process-item .icon i {
        font-size: 34px;
    }

    .city-card .content {
        padding: 20px;
    }

    .service-cta .box {
        padding: 50px 25px;
    }

}

@media(max-width:575px) {

    .service-item h3 {
        font-size: 28px;
    }

    .service-item h4 {
        font-size: 18px;
    }

    .service-cta h2 br {
        display: none;
    }

}

.service-details-section {
    padding: var(--space-60) 0;
    overflow: hidden;
}

.service-image {
    position: relative;
}

.service-image .main-image {
    width: 100%;
    border-radius: 24px;
    display: block;
    object-fit: cover;
    box-shadow: var(--shadow-1);
}

.service-details-section .section-title {
    text-align: left;
    padding-bottom: 20px;
}

.service-details-section p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 18px;
}

.overview-box {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    background: var(--white);
    border: 1px solid #ececec;
    border-radius: 18px;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow-1);
}

.overview-box i {
    width: 58px;
    height: 58px;
    min-width: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(139, 0, 0, .08);
    color: var(--deep_red);
    font-size: 22px;
    transition: var(--transition);
}

.overview-box h4 {
    margin-bottom: 5px;
    font-size: 18px;
    color: var(--black);
    font-weight: var(--fw-semibold);
}

.overview-box span {
    display: block;
    color: #777;
    font-size: 15px;
    line-height: 1.6;
}

.overview-box:hover {
    transform: translateY(-8px);
    border-color: var(--deep_red);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

.overview-box:hover i {
    background: var(--deep_red);
    color: var(--white);
}

@media(max-width:991px) {

    .service-image .experience-card {
        right: 20px;
        bottom: 20px;
    }

}

@media(max-width:767px) {

    .service-details-section {
        padding: 50px 0;
    }

    .service-image .experience-card {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 20px;
        max-width: 100%;
    }

    .overview-box {
        padding: 16px;
    }

    .overview-box i {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 18px;
    }

}

.why-visit-section {
    padding: var(--space-60) 0;
    background: var(--light_bg);
    overflow: hidden;
}

.visit-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    box-shadow: var(--shadow-1);
    border: 1px solid transparent;
}

.visit-card .icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: rgba(139, 0, 0, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.visit-card .icon i {
    font-size: 34px;
    color: var(--deep_red);
    transition: var(--transition);
}

.visit-card h3 {
    margin-bottom: 15px;
    color: var(--black);
    font-size: 28px;
    transition: var(--transition);
}

.visit-card p {
    color: #666;
    line-height: 1.9;
    margin: 0;
}

.visit-card:hover {
    transform: translateY(-12px);
    border-color: var(--deep_red);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
}

.visit-card:hover .icon {
    background: var(--deep_red);
}

.visit-card:hover .icon i {
    color: var(--white);
}

.visit-card:hover h3 {
    color: var(--deep_red);
}

@media(max-width:991px) {

    .visit-card {
        padding: 35px 25px;
    }

}

@media(max-width:767px) {

    .why-visit-section {
        padding: 50px 0;
    }

    .visit-card {
        padding: 30px 22px;
    }

    .visit-card .icon {
        width: 75px;
        height: 75px;
    }

    .visit-card .icon i {
        font-size: 28px;
    }

    .visit-card h3 {
        font-size: 22px;
    }

}

.attraction-section {
    padding: var(--space-60) 0;
    overflow: hidden;
}

.attraction-card {
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-1);
    transition: var(--transition);
    height: 100%;
    border: 1px solid #ececec;
}

.attraction-card .image {
    position: relative;
    overflow: hidden;
}

.attraction-card .image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.6s ease;
    display: block;
}

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

.attraction-card .content {
    padding: 28px;
}

.attraction-card .content h3 {
    font-size: 28px;
    color: var(--dark_blue);
    margin-bottom: 15px;
    transition: var(--transition);
}

.attraction-card .content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 0;
}

.attraction-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
    border-color: var(--deep_red);
}

.attraction-card:hover .content h3 {
    color: var(--deep_red);
}

@media(max-width:991px) {

    .attraction-card .image img {
        height: 240px;
    }

    .attraction-card .content {
        padding: 24px;
    }

}

@media(max-width:767px) {

    .attraction-section {
        padding: 50px 0;
    }

    .attraction-card .image img {
        height: 220px;
    }

    .attraction-card .content {
        padding: 20px;
    }

    .attraction-card .content h3 {
        font-size: 22px;
    }

}

.include-section {
    padding: var(--space-60) 0;
    background: var(--light_bg);
    overflow: hidden;
}

.include-section .section-title {
    text-align: left;
    padding-bottom: 20px;
}

.include-section p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 0;
}

.include-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: var(--white);
    border: 1px solid #ececec;
    border-radius: 18px;
    font-size: var(--text-base);
    font-weight: var(--fw-medium);
    color: var(--black);
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow-1);
}

.include-box i {
    width: 56px;
    height: 56px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(139, 0, 0, .08);
    color: var(--deep_red);
    font-size: 22px;
    transition: var(--transition);
}

.include-box:hover {
    background: var(--deep_red);
    color: var(--white);
    border-color: var(--deep_red);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 0, 0, .18);
}

.include-box:hover i {
    background: var(--white);
    color: var(--deep_red);
}

.include-image {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow-1);
}

.include-image img {
    width: 100%;
    display: block;
    border-radius: 24px;
    object-fit: cover;
    transition: .6s ease;
}

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

@media(max-width:991px) {

    .include-section {
        padding: 55px 0;
    }

    .include-image {
        margin-top: 20px;
    }

}

@media(max-width:767px) {

    .include-section {
        padding: 50px 0;
    }

    .include-box {
        padding: 16px 18px;
        gap: 14px;
        font-size: 15px;
    }

    .include-box i {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 18px;
    }

}

.best-time-section {
    padding: var(--space-60) 0;
    overflow: hidden;
}

.season-card {
    background: var(--white);
    border-radius: 22px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-1);
    border: 1px solid #ececec;
    transition: var(--transition);
}

.season-card .icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 0, 0, .08);
    transition: var(--transition);
}

.season-card .icon i {
    color: var(--deep_red);
    font-size: 32px;
    transition: var(--transition);
}

.season-card h3 {
    font-size: 26px;
    color: var(--dark_blue);
    margin-bottom: 8px;
}

.season-card span {
    display: inline-block;
    color: var(--deep_red);
    font-weight: var(--fw-semibold);
    font-size: 15px;
    margin-bottom: 15px;
}

.season-card p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.season-card:hover {
    transform: translateY(-10px);
    border-color: var(--deep_red);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.season-card:hover .icon {
    background: var(--deep_red);
}

.season-card:hover .icon i {
    color: var(--white);
}

.season-card:hover h3 {
    color: var(--deep_red);
}

@media(max-width:991px) {

    .season-card {
        padding: 30px 20px;
    }

}

@media(max-width:767px) {

    .best-time-section {
        padding: 50px 0;
    }

    .season-card .icon {
        width: 70px;
        height: 70px;
    }

    .season-card .icon i {
        font-size: 26px;
    }

    .season-card h3 {
        font-size: 22px;
    }

}

.itinerary-section {
    padding: var(--space-60) 0;
    background: var(--light_bg);
    overflow: hidden;
}

.itinerary-section .timeline {
    position: relative;
    max-width: 950px;
    margin: 50px auto 0;
}

.itinerary-section .timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: var(--deep_red);
    transform: translateX(-50%);
}

.timeline-item {
    width: 50%;
    position: relative;
    padding: 0 45px 50px;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item .day {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    height: 42px;
    padding: 0 20px;
    background: var(--deep_red);
    color: var(--white);
    border-radius: 50px;
    font-weight: var(--fw-bold);
    margin-bottom: 18px;
}

.timeline-item .content {
    background: var(--white);
    padding: 28px;
    border-radius: 20px;
    box-shadow: var(--shadow-1);
    transition: var(--transition);
}

.timeline-item .content h3 {
    color: var(--dark_blue);
    font-size: 24px;
    margin-bottom: 18px;
}

.timeline-item .content ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.timeline-item .content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #666;
    line-height: 1.6;
}

.timeline-item .content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--deep_red);
}

.timeline-item.left .content ul li {
    padding-left: 0;
    padding-right: 25px;
}

.timeline-item.left .content ul li::before {
    left: auto;
    right: 0;
}


.timeline-item .content:hover {
    transform: translateY(-8px);
}

.timeline-item::before {
    content: "";
    position: absolute;
    top: 12px;
    width: 18px;
    height: 18px;
    background: var(--deep_red);
    border-radius: 50%;
    border: 5px solid var(--white);
    box-shadow: 0 0 0 5px rgba(139, 0, 0, .15);
    z-index: 2;
}

.timeline-item.left::before {
    right: -9px;
}

.timeline-item.right::before {
    left: -9px;
}

.tour-cta {
    margin-top: 60px;
    padding: 45px;
    background: var(--deep_red);
    border-radius: 25px;
    color: var(--white);
}

.tour-cta h3 {
    color: var(--white);
    font-size: 34px;
    margin-bottom: 15px;
}

.tour-cta p {
    color: rgba(255, 255, 255, .85);
    line-height: 1.8;
    margin: 0;
}

.tour-cta .dmc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: var(--fw-semibold);
    transition: var(--transition);
}

.tour-cta .btn-secondary {
    background: var(--white);
    color: var(--deep_red);
}

.tour-cta .btn-secondary:hover {
    background: #FFD76A;
    color: var(--black);
}

@media(max-width:991px) {

    .itinerary-section .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item.left,
    .timeline-item.right {
        width: 100%;
        left: 0;
        text-align: left;
        padding-left: 60px;
        padding-right: 0;
    }

    .timeline-item::before,
    .timeline-item.left::before,
    .timeline-item.right::before {
        left: 11px;
        right: auto;
    }

    .timeline-item.left .content ul li {
        padding-left: 25px;
        padding-right: 0;
    }

    .timeline-item.left .content ul li::before {
        left: 0;
        right: auto;
    }

}


@media(max-width:767px) {

    .itinerary-section {
        padding: 50px 0;
    }

    .timeline-item .content {
        padding: 22px;
    }

    .tour-cta {
        padding: 30px 22px;
        text-align: center;
    }

    .tour-cta h3 {
        font-size: 26px;
    }

    .tour-cta .dmc-button {
        margin-top: 20px;
    }

}

.gallery-section {
    padding: var(--space-60) 0;
    overflow: hidden;
}


.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 22px;
    height: 320px;
    box-shadow: var(--shadow-1);
}


.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .6s ease;
}


.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(139, 0, 0, .75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}


.gallery-item .overlay i {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--white);
    color: var(--deep_red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transform: scale(.7);
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}


.gallery-item:hover .overlay {
    opacity: 1;
}


.gallery-item:hover .overlay i {
    transform: scale(1);
}

.fancybox__container {
    z-index: 99999;
}

@media(max-width:991px) {

    .gallery-item {
        height: 280px;
    }

}

@media(max-width:767px) {

    .gallery-section {
        padding: 50px 0;
    }


    .gallery-item {
        height: 240px;
        border-radius: 18px;
    }


    .gallery-item .overlay i {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }

}

.related-service-section {
    padding: var(--space-60) 0;
    margin-bottom: var(--space-60);
    background: var(--light_bg);
    overflow: hidden;
}

.related-card {
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    height: 100%;
    box-shadow: var(--shadow-1);
    border: 1px solid transparent;
    transition: var(--transition);
}


.related-card .image {
    overflow: hidden;
    height: 260px;
}

.related-card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .6s ease;
}


.related-card .content {
    padding: 28px;
}


.related-card .content h3 {
    font-size: 28px;
    color: var(--dark_blue);
    margin-bottom: 12px;
    transition: var(--transition);
}


.related-card .content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 22px;
}

.related-card .explore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--deep_red);
    font-weight: var(--fw-semibold);
    transition: var(--transition);
}


.related-card .explore i {
    transition: var(--transition);
}


.related-card .explore:hover {
    color: var(--dark_blue);
}


.related-card .explore:hover i {
    transform: translateX(6px);
}

.related-card:hover {
    transform: translateY(-10px);
    border-color: var(--deep_red);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
}


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


.related-card:hover .content h3 {
    color: var(--deep_red);
}

@media(max-width:991px) {

    .related-card .image {
        height: 240px;
    }

    .related-card .content {
        padding: 24px;
    }

}


@media(max-width:767px) {

    .related-service-section {
        padding: 50px 0;
    }


    .related-card .image {
        height: 220px;
    }


    .related-card .content {
        padding: 20px;
    }


    .related-card .content h3 {
        font-size: 22px;
    }

}

.service-details-section .section-title .title,
.why-visit-section .section-title .title,
.attraction-section .section-title .title,
.include-section .section-title .title,
.best-time-section .section-title .title,
.itinerary-section .section-title .title,
.gallery-section .section-title .title,
.related-service-section .section-title .title {
    color: var(--deep_red);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: var(--text-sm);
    margin-bottom: 12px;
}


.service-details-section .section-title h2 span,
.why-visit-section .section-title h2 span,
.attraction-section .section-title h2 span,
.include-section .section-title h2 span,
.best-time-section .section-title h2 span,
.itinerary-section .section-title h2 span,
.gallery-section .section-title h2 span,
.related-service-section .section-title h2 span {
    color: var(--deep_red);
}

@media(max-width:991px) {

    .service-cta {
        padding: 45px 35px;
    }


    .service-cta h2 {
        font-size: 36px;
    }

}


@media(max-width:767px) {

    .service-cta-section {
        padding: 50px 0;
    }


    .service-cta {
        padding: 35px 22px;
        text-align: center;
        border-radius: 22px;
    }


    .service-cta h2 {
        font-size: 28px;
    }


    .service-cta p {
        font-size: 15px;
    }


    .service-cta .btn-white {
        margin-top: 25px;
    }

}

.glightbox-clean .gslide-description {
    display: none;
}


.experience-section {
    padding: var(--space-60) 0;
    background: var(--white);
    overflow: hidden;
}

.experience-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-1);
    transition: var(--transition);
    height: 100%;
}

.experience-card:hover {
    transform: translateY(-10px);
}

.experience-card .image {
    height: 260px;
    overflow: hidden;
}

.experience-card .image img {
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.experience-card .content {
    padding: 30px;
    position: relative;
}

.experience-card .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--deep_red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-top: -60px;
    position: relative;
    margin-bottom: 20px;
    border: 5px solid var(--white);
}

.experience-card h3 {
    font-size: var(--text-xl);
    color: var(--dark_blue);
    font-family: var(--font-family-1);
    margin-bottom: 15px;
}

.experience-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.experience-card a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--deep_red);
    font-weight: var(--fw-semibold);
    transition: var(--transition);
}

.experience-card a:hover {
    gap: 15px;
}


.journey-experience-section {
    padding: var(--space-60) 0;
    margin-bottom: var(--space-60);
    background: var(--light_bg);
    overflow: hidden;
}

.journey-image {
    position: relative;
}

.journey-image img {
    border-radius: 25px;
    box-shadow: var(--shadow-1);
}

.journey-list {
    margin-top: 30px;
}

.journey-list .item {
    display: flex;
    gap: 18px;
    background: var(--white);
    padding: 18px;
    border-radius: 15px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.journey-list .item:hover {
    transform: translateX(8px);
}

.journey-list .icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 50%;
    background: var(--dark_blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.journey-list h4 {
    margin-bottom: 5px;
    color: var(--dark_blue);
    font-size: var(--text-xl);
}

.journey-list p {
    margin: 0;
    color: #666;
    line-height: 1.7;
}

@media(max-width:991px) {
    .experience-card .image {
        height: 230px;
    }
}

@media(max-width:767px) {

    .experience-section,
    .journey-experience-section,
    .experience-cta-section {
        padding: 40px 0;
    }

    .experience-card .content {
        padding: 25px;
    }

    .experience-card h3 {
        font-size: 22px;
    }

    .journey-list .item {
        padding: 15px;
    }

    .journey-list .icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }
}

.blog-details-section {
    padding: var(--space-60) 0;
}

.blog-details-content {
    background: var(--white);
    border-radius: 20px;
}

.blog-details-content .main-image {
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 25px;
}

.blog-details-content .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 25px;
}

.blog-details-content .meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #777;
    font-size: var(--text-sm);
}

.blog-details-content .meta i {
    color: var(--deep_red);
}

.blog-details-content h2 {
    font-size: var(--text-2xxl);
    line-height: 1.3;
    margin-bottom: 20px;
}

.blog-details-content h3 {
    font-size: var(--text-xxl);
    margin: 35px 0 15px;
    color: var(--dark_blue);
}

.blog-details-content p {
    line-height: 1.9;
    color: #666;
    margin-bottom: 18px;
}

.blog-details-content .details-list {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 25px;
}

.blog-details-content .details-list li {
    margin-bottom: 12px;
    position: relative;
}

.blog-details-content .details-list li::marker {
    color: var(--deep_red);
}

.blog-details-content .content-image {
    border-radius: 20px;
    margin: 25px 0;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-box {
    background: var(--white);
    padding: 28px;
    border-radius: 20px;
    box-shadow: var(--shadow-1);
    margin-bottom: 25px;
}

.sidebar-box h3 {
    font-size: var(--text-xl);
    margin-bottom: 20px;
    position: relative;
}

.sidebar-box h3::after {
    content: "";
    width: 50px;
    height: 3px;
    background: var(--deep_red);
    display: block;
    margin-top: 10px;
}

.search-box {
    display: flex;
    border: 1px solid var(--border);
    border-radius: 50px;
    overflow: hidden;
}

.search-box input {
    width: 100%;
    border: 0;
    outline: none;
    padding: 14px 18px;
}

.search-box button {
    width: 50px;
    border: 0;
    background: var(--deep_red);
    color: var(--white);
}

.category-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.category-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    transition: var(--transition);
}

.category-list li:hover {
    color: var(--deep_red);
    padding-left: 8px;
}

.recent-post {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.recent-post img {
    width: 80px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
}

.recent-post h4 {
    font-size: var(--text-base);
    line-height: 1.4;
    margin-bottom: 5px;
}

.recent-post span {
    font-size: var(--text-xs);
    color: #777;
}

@media(max-width:991px) {
    .blog-details-content h2 {
        font-size: 32px;
    }
    .blog-sidebar {
        position: relative;
        top: auto;
    }
}
@media(max-width:767px) {
    .blog-details-content .main-image {
        height: 280px;
    }
    .blog-details-content h2 {
        font-size: 26px;
    }
    .blog-details-content .meta {
        gap: 15px;
    }
    .sidebar-box {
        padding: 22px;
    }
}
.contact-page {
    padding: var(--space-60) 0px;
    background: var(--light_bg);
    margin-bottom: var(--space-60);
}
.map-section {
    padding-bottom: var(--space-60);
}
.map-box {
    overflow: hidden;
    border-radius: 25px;
    box-shadow: var(--shadow-1);
}
.map-box iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

.destination-overview,
.destination-highlights,
.destination-gallery,
.travel-info-section,
.destination-cta{
    padding:80px 0;
}

.destination-overview{
    background:var(--white);
}

.destination-overview .image{
    overflow:hidden;
    border-radius:30px;
    position:relative;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.destination-overview .image img{
    width:100%;
    height:600px;
    object-fit:cover;
    transition:.5s;
}

.destination-overview .image:hover img{
    transform:scale(1.08);
}

.destination-overview p{
    color:var(--gray);
    line-height:1.9;
    margin-bottom:18px;
}

.info-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:35px;
}

.info-grid .info-box{
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    border-radius:18px;
    padding:20px;
    display:flex;
    align-items:center;
    gap:15px;
    transition:.4s;
}

.info-grid .info-box i{
    width:55px;
    height:55px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--deep_red);
    color:#fff;
    font-size:22px;
}

.info-grid .info-box:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.destination-highlights{
    background:#f8fafc;
}

.highlight-card{
    background:var(--white);
    border-radius:24px;
    padding:40px 30px;
    text-align:center;
    height:100%;
    border:1px solid rgba(0,0,0,.06);
    transition:all .4s ease;
    position:relative;
    overflow:hidden;
}

.highlight-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:4px;
    background:var(--deep_red);
    transition:.4s;
}

.highlight-card:hover::before{
    left:0;
}

.highlight-card .icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(0,123,255,.08);
    transition:.4s;
}

.highlight-card .icon i{
    font-size:32px;
    color:var(--deep_red);
    transition:.4s;
}

.highlight-card h3{
    font-size:24px;
    margin-bottom:15px;
    color:var(--black);
}

.highlight-card p{
    color:var(--gray);
    line-height:1.8;
    margin-bottom:0;
}

.highlight-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.highlight-card:hover .icon{
    background:var(--deep_red);
}

.highlight-card:hover .icon i{
    color:var(--white);
}

.destination-gallery{
    background:var(--white);
}

.destination-gallery .gallery-item{
    position:relative;
    display:block;
    overflow:hidden;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.destination-gallery .gallery-item img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:.6s;
}

.destination-gallery .gallery-item .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    visibility:hidden;
    transition:.4s;
}

.destination-gallery .gallery-item .overlay i{
    width:70px;
    height:70px;
    border-radius:50%;
    background:var(--white);
    color:var(--deep_red);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    transform:scale(.5) rotate(-180deg);
    transition:.4s;
}

.destination-gallery .gallery-item:hover img{
    transform:scale(1.12);
}

.destination-gallery .gallery-item:hover .overlay{
    opacity:1;
    visibility:visible;
}

.destination-gallery .gallery-item:hover .overlay i{
    transform:scale(1) rotate(0deg);
}

/*=========================================================
    TRAVEL INFO
=========================================================*/

.travel-info-section{
    background:#f8fafc;
}

.travel-box{
    background:var(--white);
    border-radius:24px;
    padding:35px 25px;
    text-align:center;
    height:100%;
    border:1px solid rgba(0,0,0,.06);
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.travel-box .icon{
    width:80px;
    height:80px;
    margin:0 auto 20px;
    border-radius:50%;
    background:rgba(13,110,253,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.4s;
}

.travel-box .icon i{
    font-size:30px;
    color:var(--deep_red);
    transition:.4s;
}

.travel-box h3{
    font-size:22px;
    margin-bottom:12px;
    color:var(--black);
}

.travel-box p{
    margin:0;
    color:var(--gray);
    line-height:1.8;
}

.travel-box:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.travel-box:hover .icon{
    background:var(--deep_red);
}

.travel-box:hover .icon i{
    color:var(--white);
}

@media (max-width:991px){

    .destination-overview,
    .destination-highlights,
    .destination-gallery,
    .travel-info-section,
    .destination-cta{
        padding:70px 0;
    }

    .destination-overview .image{
        margin-bottom:40px;
    }

    .destination-overview .image img{
        height:450px;
    }

}

@media (max-width:767px){

    .destination-overview,
    .destination-highlights,
    .destination-gallery,
    .travel-info-section,
    .destination-cta{
        padding:60px 0;
    }

    .destination-overview .image img{
        height:320px;
    }

    .info-grid{
        grid-template-columns:1fr;
        gap:15px;
    }

    .highlight-card,
    .travel-box{
        padding:30px 20px;
    }

    .highlight-card .icon,
    .travel-box .icon{
        width:70px;
        height:70px;
    }

    .highlight-card .icon i,
    .travel-box .icon i{
        font-size:28px;
    }

    .destination-gallery .gallery-item img{
        height:250px;
    }

}

@media (max-width:575px){

    .destination-overview,
    .destination-highlights,
    .destination-gallery,
    .travel-info-section,
    .destination-cta{
        padding:50px 0;
    }

    .destination-overview .image{
        border-radius:20px;
    }

    .destination-overview .image img{
        height:260px;
    }

    .info-box{
        padding:16px;
        border-radius:16px;
        gap:12px;
    }

    .info-box i{
        width:48px;
        height:48px;
        font-size:18px;
    }

    .highlight-card,
    .travel-box{
        border-radius:20px;
        padding:25px 18px;
    }

    .highlight-card h3,
    .travel-box h3{
        font-size:20px;
    }

    .destination-gallery .gallery-item{
        border-radius:18px;
    }

    .destination-gallery .gallery-item img{
        height:220px;
    }

    .destination-gallery .gallery-item .overlay i{
        width:55px;
        height:55px;
        font-size:18px;
    }

}

.footer-feature ul{
    padding:0;
    margin:0;
    list-style:none;
}

.footer-feature ul li{
    display:flex;
    align-items:center;
    gap:12px;
    color:rgba(255,255,255,.85);
    margin-bottom:16px;
    font-size:16px;
}

.footer-feature ul li i{
    color:var(--gold);
    font-size:18px;
}

/*==============================
SCROLL TO TOP
==============================*/

.scroll-top{
    position:fixed;
    right:30px;
    bottom:30px;
    width:55px;
    height:55px;
    border-radius:50%;
    background:var(--deep_red);
    color:var(--white);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    text-decoration:none;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
    z-index:999;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:.35s ease;
}

.scroll-top.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.scroll-top:hover{
    background:var(--dark_blue);
    color:var(--white);
    transform:translateY(-5px);
}

.scroll-top i{
    transition:.3s;
}

.scroll-top:hover i{
    color:var(--white);
}
@media (max-width:768px){

    .scroll-top{

        width:48px;
        height:48px;
        right:18px;
        bottom:18px;
        font-size:18px;

    }

}
.scroll-top.show{
    animation:floatUp 2s ease-in-out infinite;
}

@keyframes floatUp{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-8px);
    }

}