/* Utility class for Poppins font family */
.font-poppins {
    font-family: 'Poppins', Arial, sans-serif !important;
    font-weight: var(--font-weight-normal);
}

/* Global Poppins font application - excluding icon elements */
*:not(i):not(.fa):not(.fas):not(.far):not(.fal):not(.fad):not(.fab):not(.las):not(.lab):not(.lar):not(.lal):not(.lad):not(.lni):not([class*="icon"]):not([class*="fa-"]):not([class*="las-"]):not([class*="lab-"]) {
    font-family: 'Poppins', Arial, sans-serif !important;
}

/* Ensure all heading elements use Poppins */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: 'Poppins', Arial, sans-serif !important;
}

/* Consolidated icon font preservation rules */
i,
.fa,
.fas,
.far,
.fal,
.fad,
.fab,
.las,
.lab,
.lar,
.lal,
.lad,
.lni,
.fa-solid,
.fa-regular,
.fa-light,
.fa-thin,
.fa-duotone,
.fa-brands,
[class*="icon"],
[class*="fa-"],
[class*="las-"],
[class*="lab-"],
[class*="fa-solid"],
[class*="fa-regular"],
[class*="fa-light"],
[class*="fa-thin"],
[class*="fa-duotone"],
[class*="fa-brands"] {
    font-family: inherit !important;
}

/* Font Awesome specific fonts */
.fa,
.fas,
.far,
.fal,
.fad,
.fab,
.fa-solid,
.fa-regular,
.fa-light,
.fa-thin,
.fa-duotone,
.fa-brands {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}

/* Line Awesome specific fonts */
.las,
.lab,
.lar,
.lal,
.lad,
[class*="las-"],
[class*="lab-"] {
    font-family: "Line Awesome Free", "Line Awesome Brands" !important;
}

/* Consolidated pseudo-elements for all icon fonts */
.fa::before,
.fas::before,
.far::before,
.fal::before,
.fad::before,
.fab::before,
.fa-solid::before,
.fa-regular::before,
.fa-light::before,
.fa-thin::before,
.fa-duotone::before,
.fa-brands::before,
.las::before,
.lab::before,
.lar::before,
.lal::before,
.lad::before,
[class*="fa-"]::before,
[class*="las-"]::before,
[class*="lab-"]::before {
    font-family: inherit !important;
}

/* Root variables for the website theme */
:root {
    /* Font families */
    --font-poppins: 'Poppins', Arial, sans-serif;
    --font-arizonia: 'Arizonia', cursive;
    --font-sans: sans-serif;

    /* Font weights */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;


    /* Colors */
    --color-primary: #152121;
    --color-secondary: #2A4737;
    --color-white: #fff;
    --color-muted: #6c757d;
    --color-lightblue: #9ABCC4;
    --color-heart: #e74c3c;

    /* theme tours colors*/
    --ceylonlegacy-primary: #1d334e;
    --ceylonlegacy-secondary: #39444D;

    --oceansafary-primary: #1C4EA7;
    --oceansafary-secondary: #024D60;

    --wildsafary-primary: #034E64;
    --wildsafary-secondary: #F06905;

    --intimate-escape-primary: #5A2D8D;
    --intimate-escape-secondary: #A45D9D;

    --retirement-getaway-primary: #1B7EA6;
    --retirement-getaway-secondary: #F29727;

    --buddhist-heritage-primary: #200432;
    --buddhist-heritage-secondary: #7a5d34;

    /* Footer specific colors */
    --footer-text-primary: rgba(255, 255, 255, 1);
    --footer-text-secondary: rgba(255, 255, 255, 0.8);
    --footer-text-muted: rgba(255, 255, 255, 0.7);
    --footer-text-subtle: rgba(255, 255, 255, 0.6);
    --footer-border: rgba(255, 255, 255, 0.3);
    --footer-border-light: rgba(255, 255, 255, 0.2);
    --footer-social-bg: rgba(255, 255, 255, 0.1);
    --footer-social-bg-hover: rgba(255, 255, 255, 0.2);

    /* Font sizes */
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-base: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    --font-size-2xl: 24px;
    --font-size-3xl: 28px;
    --font-size-4xl: 32px;

    /* Responsive font sizes */
    --footer-heading-size: clamp(20px, 4vw, 24px);
    --footer-text-size: clamp(14px, 3vw, 16px);
    --footer-copyright-size: clamp(12px, 2.5vw, 14px);
    --footer-icon-size: clamp(16px, 3vw, 18px);
    --footer-social-size: clamp(36px, 8vw, 40px);

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;

    /* Existing variable */
    --main: 0, 0%, 0%;

    /* Tour & Promo shared variables */
    --card-border-radius: 20px;
    --card-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    --card-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
    --default-transition: all 0.3s ease;
    --transform-transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Transparent color variations */
    --white-transparent-15: rgba(255, 255, 255, 0.15);
    --white-transparent-20: rgba(255, 255, 255, 0.2);
    --white-transparent-30: rgba(255, 255, 255, 0.3);
    --white-transparent-50: rgba(255, 255, 255, 0.5);
    --white-transparent-70: rgba(255, 255, 255, 0.7);
    --black-transparent-10: rgba(0, 0, 0, 0.1);
    --black-transparent-20: rgba(0, 0, 0, 0.2);
    --green-transparent: rgba(0, 255, 0, 0.25);

    /* Additional repeated colors converted to variables */
    --color-black: #000;
    --color-orange: #ff7000;
    --color-gray-dark: #1e2337;
    --color-gray-light: #d1d1d1;
    --color-gray-medium: #6e6f70;
    --color-gray-text: #363636;
    --color-dark-overlay: #1a1a1a;
    --color-red-error: #ea5455;
    --color-green-success: #28c76f;
    --color-border-light: #ced4da;
    --color-border-subtle: #eee;
    --color-bg-light: #f1f1f1;
    --color-bg-gray: #ddd;
    --color-orange-primary: #f77c5a;
    --color-blue-accent: #5a70f7;
    --color-red-danger: #dc3545;
    --color-green-shade: #2f6627;
    --color-border-purple: #f5f0fc;
    --color-gray-border: #cccccf59;
    --color-yellow-warning: #ffc107;
    --color-green-primary: #00af87;
    --color-green-dark: #009570;
    --color-gray-text-light: #606060;
    --color-border-gray: #e9ecef;
    --color-light-bg-1: #ffffff;
    --color-light-bg-2: #f0f0f0;
    --color-light-bg-3: #e8e8e8;
}

/* Fixed header padding for body - reduced for full height video banner */
body {
    padding-top: 0;
    /* Removed padding to allow full height video banner */
    font-family: 'Poppins', Arial, sans-serif !important;
    background-color: var(--color-primary);
}

/* Consolidated background section styling */
.theme-tours-section,
.trending-promotions-section,
.why-choose-us-section,
.blog-section {
    background: transparent !important;
}

.background-section .theme-tours-section,
.background-section .trending-promotions-section,
.background-section .why-choose-us-section,
.background-section .review-section,
.background-section .youtube-section,
.background-section .blog-section {
    background: transparent !important;
    position: relative;
    z-index: 2;
}

/* Background Section Styling */
.background-section {
    position: relative;
    background-color: var(--color-primary);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

/* Ensure all content inside background-section is above the background */
.background-section>* {
    position: relative;
    z-index: 2;
}

/* Top overlay */
.section-overlay-top-unique {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    pointer-events: none;
    background: linear-gradient(to bottom,
            var(--color-primary) 0%,
            rgba(0, 0, 0, 0.2) 30%,
            rgba(0, 0, 0, 0) 60%,
            rgba(0, 0, 0, 0.2) 90%,
            var(--color-primary) 100%);
    z-index: 0.1;
}




/* Bottom-to-top overlay */
.section-overlay-bottom-top-unique {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    pointer-events: none;
    background: linear-gradient(to top,
            var(--color-primary) 0%,
            rgba(0, 0, 0, 0.3) 20%,
            rgba(0, 0, 0, 0) 50%,
            rgba(0, 0, 0, 0.3) 80%,
            var(--color-primary) 100%);
    z-index: 1;
}

/* Modern Footer Styles */
.modern-footer {
    background: var(--color-primary);
    color: var(--footer-text-primary);
    font-family: var(--font-poppins);
}

/* Footer Main Section */
.footer-main {
    padding: clamp(60px, 8vw, 80px) 0 clamp(40px, 6vw, 60px) 0;
}

/* Brand Section */
.footer-brand {
    padding-right: clamp(0px, 4vw, 40px);
}

.brand-title {
    font-size: clamp(28px, 5vw, 36px);
    font-weight: var(--font-weight-bold);
    color: var(--footer-text-primary);
    margin-bottom: var(--spacing-md);
    background: linear-gradient(45deg, var(--color-lightblue), var(--footer-text-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-description {
    font-size: var(--footer-text-size);
    color: var(--footer-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
}

/* Social Links */
.social-links {
    margin-top: var(--spacing-xl);
}

.social-title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
    color: var(--footer-text-primary);
    margin-bottom: var(--spacing-md);
}

.social-icons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.social-icon {
    width: var(--footer-social-size);
    height: var(--footer-social-size);
    color: var(--footer-text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--default-transition);
    font-size: var(--footer-icon-size);
    border: 1px solid var(--footer-border-light);
    backdrop-filter: blur(10px);
}

.social-icon:hover {

    color: white;
    transform: translateY(-3px) scale(1.05);

}

/* Footer Titles */
.footer-title {
    font-size: var(--footer-heading-size);
    font-weight: var(--font-weight-medium);
    color: var(--footer-text-primary);
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    background: var(--color-bg-light);
    height: 2px;
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    height: 100%;
}

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

.link-list li {
    margin-bottom: var(--spacing-sm);
}

.footer-link {
    color: var(--footer-text-secondary);
    text-decoration: none;
    font-size: var(--footer-text-size);
    transition: var(--default-transition);
    display: inline-block;
    position: relative;
    padding: var(--spacing-xs) 0;
}

.footer-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-bg-light);
    transition: var(--default-transition);
}

.footer-link:hover {
    color: var(--footer-text-primary);
    transform: translateX(5px);
}

.footer-link:hover::before {
    width: 100%;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: var(--spacing-lg) 0;
    border-top: 1px solid var(--footer-border-light);
}

.copyright-text,
.footer-credits {
    margin: 0;
}

.copyright-text p,
.footer-credits p {
    color: var(--footer-text-muted);
    font-size: var(--footer-copyright-size);
    margin: 0;
    line-height: 1.6;
}

.credit-link {
    color: var(--color-lightblue);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    transition: var(--default-transition);
}

.credit-link:hover {
    color: var(--footer-text-primary);
}

.heart-icon {
    color: var(--color-heart);
    animation: heartbeat 2s infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-secondary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--default-transition);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.back-to-top:hover {
    background: var(--footer-text-primary);
    color: var(--color-secondary);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(154, 188, 196, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-brand {
        padding-right: 0;
        margin-bottom: var(--spacing-xl);
    }

    .footer-title::after {
        width: 25px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: var(--spacing-3xl) 0 var(--spacing-2xl) 0;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .row>div {
        margin-bottom: var(--spacing-sm);
    }

    .footer-bottom .row>div:last-child {
        margin-bottom: 0;
    }

    .social-icons {
        justify-content: center;
        gap: var(--spacing-md);
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .brand-title {
        text-align: center;
    }

    .brand-description {
        text-align: center;
    }

    .social-title {
        text-align: center;
    }

    .footer-title {
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .link-list {
        text-align: center;
    }

    .footer-link:hover {
        transform: none;
    }
}

/* Copy Animation */
.base-color {
    color: hsl(var(--main)) !important;
}

.bg-glass {
    background: rgba(21, 33, 33, 0.24);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.3px);
    -webkit-backdrop-filter: blur(6.3px);
}

.copyInput {
    display: inline-block;
    line-height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.copied::after {
    position: absolute;
    top: 8px;
    right: 12%;
    width: 100px;
    display: block;
    content: "COPIED";
    font-size: 1em;
    padding: 5px 5px;
    color: var(--color-white);
    background-color: var(--color-orange);
    border-radius: 3px;
    opacity: 0;
    will-change: opacity, transform;
    animation: showcopied 1.5s ease;
}

@keyframes showcopied {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    50% {
        opacity: 0.7;
        transform: translateX(40%);
    }

    70% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
    }
}

.cookies-card {
    width: 520px;
    padding: 30px;
    color: var(--color-gray-dark);
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 999999;
    transition: all 0.5s;
    background: var(--color-gray-light);
    border-radius: 5px;
}

.cookies-card.hide {
    bottom: -500px !important;
}

.radius--10px {
    border-radius: 10px;
}

.cookies-card__icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--color-gray-medium);
    color: var(--color-white);
    font-size: 32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.cookies-card__content {
    margin-bottom: 0;
}

.cookies-btn {
    color: var(--color-gray-text);
    text-decoration: none;
    padding: 10px 35px;
    margin: 3px 5px;
    display: inline-block;
    border-radius: 999px;
}

.cookies-btn:hover {
    color: var(--color-gray-text);
}

@media (max-width: 767px) {
    .cookies-card {
        width: 100%;
        left: 0;
        bottom: 0;
        font-size: 14px;
        padding: 15px;
    }
}

.hover-input-popup {
    position: relative;
}

.input-popup {
    display: none;
}

.hover-input-popup .input-popup {
    display: block;
    position: absolute;
    bottom: 90%;
    left: 50%;
    width: 280px;
    background-color: var(--color-dark-overlay);
    color: var(--color-white);
    padding: 20px;
    border-radius: 5px;
    transform: translateX(-50%);
    transition: all 0.3s;
}

.input-popup::after {
    position: absolute;
    content: "";
    bottom: -19px;
    left: 50%;
    margin-left: -5px;
    border-width: 10px 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent var(--color-dark-overlay) transparent;
    transform: rotate(180deg);
}

.input-popup p {
    padding-left: 20px;
    position: relative;
}

.input-popup p::before {
    position: absolute;
    content: "";
    font-family: "Line Awesome Free";
    font-weight: 900;
    left: 0;
    top: 4px;
    line-height: 1;
    font-size: 18px;
}

.input-popup p.error {
    text-decoration: line-through;
}

.input-popup p.error::before {
    content: "\f057";
    color: var(--color-red-error);
}

.input-popup p.success::before {
    content: "\f058";
    color: var(--color-green-success);
}

.show-filter {
    display: none;
}

@media (max-width: 767px) {
    .responsive-filter-card {
        display: none;
        transition: none;
    }

    .show-filter {
        display: block;
    }
}

/* ////////////////// select 2 css //////////////// */
.select2-dropdown {
    border: 0 !important;
    margin-top: 8px !important;
    border-radius: 5px !important;
    box-shadow: 0 3px 9px rgba(50, 50, 9, 0.05),
        6px 4px 19px rgb(115 103 240 / 20%);
}

.select2 .dropdown-wrapper {
    display: none;
}

.select2-search--dropdown {
    padding: 10px 10px !important;
    border-color: var(--color-border-light) !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border-color: var(--color-border-light) !important;
    padding: 7px 16px;
    border-radius: 4px;
}

.select2-results__option.select2-results__option--selected,
.select2-results__option--selectable,
.select2-container--default .select2-results__option--disabled {
    padding: 12px 14px !important;
    border-bottom: 1px solid var(--color-border-subtle);
}

.select2-results__option.select2-results__message {
    text-align: center !important;
    padding: 12px 14px !important;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar {
    width: 8px;
    border-radius: 5px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-track {
    background: var(--color-bg-light);
    border-radius: 5px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb {
    background: var(--color-bg-gray);
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb:hover {
    background: var(--color-bg-gray);
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow:after {
    position: absolute;
    right: 10px;
    top: 0;
    content: "\f107";
    font-family: "Line Awesome Free";
    font-weight: 900;
    transition: 0.3s;
}

.select2-container--default .select2-selection--single {
    border-color: var(--color-border-light) !important;
    border-width: 2px !important;
    border-radius: 0.375rem !important;
    padding: 0.375rem 0.75rem !important;
    height: 100% !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 12px !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow:after {
    transform: rotate(-180deg);
}

.select2-results__option:last-child {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.select2-results__option:first-child {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.select2-results__option.select2-results__option--selected,
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--color-bg-light) !important;
    color: var(--color-black) !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border-color: var(--color-orange-primary) !important;
    box-shadow: 0 0 25px rgba(115, 103, 240 0.071) !important;
    outline: 0 !important;
}

.select2-dropdown .country-flag {
    width: 25px;
    height: 25px;
    border-radius: 8px;
}

.select2-dropdown .gateway-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0px !important;
}

.select2-dropdown .gateway-subtitle {
    font-size: 12px;
    margin-bottom: 0px !important;
}

.select2-container--open .select2-selection.select2-selection--single,
.select2-container--open .select2-selection.select2-selection--multiple {
    border-color: var(--color-blue-accent) !important;
    border-radius: 4px !important;
}

.select2-container:has(.select2-selection--single) {
    width: 100% !important;
}

.gateway-card {
    padding: 15px;
}

.payment-card-title {
    padding: 13px 25px;
    text-align: center;
    background-color: var(--color-orange-primary);
    border-radius: 5px;
    border: 0;
    margin-bottom: 0px;
    color: var(--color-white);
}

.payment-system-list {
    --thumb-width: 100px;
    --thumb-height: 40px;
    --radio-size: 12px;
    --border-color: var(--color-gray-border);
    --hover-border-color: var(--color-orange-primary);
    background-color: var(--color-white);
    border-radius: 5px;
    height: 100%;
}

.payment-system-list.is-scrollable {
    max-height: min(388px, 70vh);
    overflow-x: auto;
    padding-block: 4px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
    width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar-thumb {
    background-color: var(--color-orange-primary);
    border-radius: 10px;
}

.payment-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 18px;
    border: 1px solid var(--color-border-purple);
    border-top-color: var(--color-white);
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.payment-item:first-child {
    border-top-color: var(--color-white);
    border-radius: 5px 5px 0 0;
}

.payment-item:has(.payment-item__radio:checked) {
    border-left: 3px solid var(--hover-border-color);
    border-radius: 0px;
}

.payment-item__check {
    border: 3px solid transparent;
}

.payment-item:has(.payment-item__radio:checked) .payment-item__check {
    border: 3px solid var(--color-orange-primary);
}

.payment-item__info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    max-width: calc(100% - var(--thumb-width));
}

.payment-item__check {
    width: var(--radio-size);
    height: var(--radio-size);
    border: 1px solid var(--color-orange-primary);
    display: inline-block;
    border-radius: 100%;
}

.payment-item__name {
    padding-left: 10px;
    width: calc(100% - var(--radio-size));
    transition: all 0.3s;
}

.payment-item__thumb {
    width: var(--thumb-width);
    height: var(--thumb-height);
    text-align: right;
    padding-left: 10px;
}

.payment-item__thumb:has(.text) {
    width: fit-content;
}

.payment-item__thumb img {
    max-width: var(--thumb-width);
    max-height: var(--thumb-height);
    object-fit: cover;
}

.deposit-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.deposit-info__title {
    max-width: 50%;
    margin-bottom: 0px;
    text-align: left;
}

.deposit-info__input {
    max-width: 50%;
    text-align: right;
    width: 100%;
}

.deposit-info__input-select {
    border: 1px solid var(--border-color);
    width: 100%;
    border-radius: 5px;
    padding-block: 6px;
}

.deposit-info__input-group {
    border: 1px solid var(--border-color);
    border-radius: 5px;
}

.deposit-info__input-group-text {
    align-self: center;
    padding-left: 5px;
}

.deposit-info__input-group .form--control {
    padding: 5px;
    border: 0;
    height: 35px;
    text-align: right;
}

.deposit-info__input-group .form--control:focus {
    box-shadow: unset;
}

.info-text .text,
.deposit-info__input .text {
    font-size: 14px;
}

.deposit-info__title .text.has-icon {
    display: flex;
    align-items: center;
    gap: 5px;
}

.total-amount {
    border-top: 1px solid var(--border-color);
}

.total-amount .deposit-info__title {
    font-weight: 600;
}

.payment-item__btn {
    border: 0;
    border-block: 1px solid var(--border-color);
    border-bottom: 0;
    background: #fff;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 15px;
    font-weight: 500;
}

.payment-item:hover+.payment-item__btn {
    border-top-color: #fff;
}

button .spinner-border {
    --bs-spinner-width: 1.5rem;
    --bs-spinner-height: 1.5rem;
}

.search-inner-form {
    max-width: 500px;
    width: 100%;
    margin-left: auto;
}

.input-group .input-group-text {
    border: 0;
    border-radius: 3px;
}

label.required:after {
    content: "*";
    color: #dc3545 !important;
    margin-left: 2px;
}

/* Custom Travel Button Style */
.travelButton {
    background-color: var(--color-secondary);
    border-radius: 28px;
    display: inline-block;
    color: var(--color-white);
    padding: 10px 20px;
    text-decoration: none;
    text-shadow: 0px 1px 0px var(--color-green-shade);
    transition: background-color 0.3s;
    font-size: 14px;
}

.travelButton:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
}

/* Tailor Made Tour styles */
.feature-item {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 8px;
    padding: 25px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(42, 71, 55, 0.1);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(42, 71, 55, 0.3);
}

.feature-item__icon {
    font-size: 36px;
    color: #2A4737;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.feature-item__content h5 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #152121;
    font-weight: 600;
}

.feature-item__content p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 0;
}

/* Header Modifications */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    background-color: transparent !important;
    transition: all 0.3s ease;
    color: #fff !important;
}

.header * {
    font-family: var(--font-poppins);
    color: #fff !important;
}

/* Unified glass background style with increased blur */
.glass-bg {
    background: rgba(0, 0, 0, 0.315) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    transition: all 0.4s ease;
    animation: slideDown 0.6s ease-out;
}


.header__bottom {
    padding: 0.625rem 0;
}

.header__bottom .container {
    padding: 8px 20px;
    border-radius: 30px !important;
}

.header .site-logo img {
    max-width: 6.25rem !important;
    /* reduced from 8.75rem to 6.25rem (100px) */
    max-height: 2.5rem !important;
    /* reduced from 3rem to 2.5rem (40px) */
    object-fit: contain;
}


.header .main-menu li a {
    font-family: var(--font-poppins);
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.3px;
    color: #fff !important;
    transition: color 0.2s;
}

/* Hover animations removed */

/* Dropdown styles */
.header .main-menu li .sub-menu {
    border: none !important;
    border-radius: 25px !important;
    overflow: visible !important;
    background: rgba(0, 0, 0, 0.397) !important;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    padding: 8px 0;
    transition: all 0.4s ease;
}

.header .main-menu li .sub-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.header .main-menu li .sub-menu li:last-child {
    border-bottom: none !important;
}

.header .main-menu li .sub-menu li a {
    font-size: 14px;
    color: #fff !important;
    padding: 8px 15px !important;
    transition: background-color 0.3s ease;
}

/* Sub-menu hover animations removed */

.header .main-menu li.active>a,
.header .main-menu li.active>a:focus,
.header .main-menu li a.active {
    color: #fff !important;
    letter-spacing: 0.3px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.header .nav-right {
    display: flex;
    align-items: center;
}

/* Icon styles */
.header .las,
.header .lab,
.header .far,
.header .fas,
.header .fab {
    font-size: 16px;
    line-height: 1;
    vertical-align: middle;
}

.header .travelButton i {
    font-size: 18px;
    margin-left: 8px;
}

.header.menu-fixed {
    background: transparent !important;
}

.header.menu-fixed .header__bottom {
    background: transparent !important;
}

.header.menu-fixed .glass-bg {
    background: rgba(0, 0, 0, 0.315) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
}

/* Video Banner Styles */
.video-banner {
    position: relative;
    height: 100vh;
    /* Full viewport height */
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-container video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    width: 100%;
    height: 100%;
    opacity: .3;
    background: #000;
    z-index: 1;
}

/* Additional overlay gradient for bottom to top effect */
.video-overlay:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(21, 33, 33, 1) 0%, rgba(21, 33, 33, 0) 50%);
}

/* Hero wrap overlay style */
.hero-wrap .overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    content: '' !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 1 !important;
    background: linear-gradient(to top,
            #152121 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0) 100%) !important;
    z-index: 1 !important;
}

/* =====================================
   TOUR SECTIONS CSS CLASSES
   ===================================== */

/* =====================================
   THEME TOURS SECTION
   ===================================== */

.theme-tours-section {
    padding: 80px 0;
}

.theme-tours-slider-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.theme-tours-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
    transform: translateY(-50%);
    padding: 0 20px;
}

.theme-tours-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-white);
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--default-transition);
    pointer-events: auto;
    box-shadow: 0 4px 15px var(--black-transparent-10);
}

.theme-tours-nav-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.1);
    box-shadow: 0 6px 20px var(--black-transparent-20);
}

.theme-tours-nav-btn:active {
    transform: scale(1.05);
}

.theme-tours-slider {
    display: flex;
    gap: 24px;
    transition: var(--transform-transition);
    will-change: transform;
    justify-content: flex-start;
}

@media (max-width: 767px) {
    .theme-tours-slider {
        justify-content: center;
        /* Center cards on mobile */
    }
}

.tour-slide {
    flex: 0 0 calc(25% - 18px);
    /* 25% width for 4 cards with gap adjustment */
    height: 380px;
}

.tour-card {
    width: 100%;
    /* Make responsive instead of fixed */
    max-width: 320px;
    /* Maximum width */
    height: 350px;
    /* Reduced height */
    border-radius: var(--card-border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--default-transition);
    cursor: pointer;
    margin: 0 auto;
    /* Center cards horizontally */
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}

/* Fixed dimensions for different screen sizes */
@media (min-width: 1200px) {
    .tour-card {
        width: 320px;
        height: 450px;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .tour-card {
        width: 280px;
        height: 420px;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .tour-card {
        width: 300px;
        height: 400px;
    }
}

@media (max-width: 767px) {
    .tour-card {
        width: 280px;
        height: 380px;
    }
}

.tour-title {
    font-family: var(--font-poppins);
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 8px;
    line-height: 1.3;
    color: var(--color-white);
}

.tour-description {
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: var(--font-weight-normal);
    line-height: 1.5;
    margin-bottom: 20px;
    opacity: 0.95;
    color: var(--color-white);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: calc(1.5em * 2);
    /* 2 lines with line-height 1.5 */
}

.tour-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}

.tour-duration {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.days {
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    background: var(--white-transparent-20);
    padding: 6px 12px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    color: var(--color-white);
    font-family: var(--font-poppins);
    text-align: center;
    min-width: 80px;
}

.nights {
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    background: var(--white-transparent-15);
    padding: 6px 12px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    color: var(--color-white);
    font-family: var(--font-poppins);
    text-align: center;
    min-width: 80px;
}

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

.price {
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    font-family: var(--font-poppins);
    color: var(--color-white);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
    box-shadow: 0 2px 8px var(--black-transparent-20);
    font-family: var(--font-poppins);
}

.book-now-btn {
    width: 100%;
    background: var(--white-transparent-20);
    border: 1px solid var(--white-transparent-30);
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: 25px;
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--default-transition);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.book-now-btn:hover {
    background: var(--white-transparent-30);
    border-color: var(--white-transparent-50);
    transform: translateY(-2px);
    color: var(--color-white);
}

.book-now-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.book-now-btn:hover i {
    transform: translateX(3px);
}

/* =====================================
   TRENDING PROMOTIONS SECTION
   ===================================== */

.trending-promotions-section {
    padding: 80px 0;
}

.trending-promotions-slider-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0 60px 0;
    touch-action: pan-y;
}

/* Carousel Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--color-primary);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.carousel-nav:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.carousel-nav:active {
    transform: translateY(-50%) scale(1.05);
}

.carousel-prev {
    left: -25px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.carousel-next {
    right: -25px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.trending-promotions-slider-container:hover .carousel-prev,
.trending-promotions-slider-container:hover .carousel-next {
    opacity: 1;
    visibility: visible;
}

.trending-promotions-slider-container:hover .carousel-prev {
    left: 10px;
}

.trending-promotions-slider-container:hover .carousel-next {
    right: 10px;
}

/* Hide carousel navigation buttons on mobile devices */
@media (max-width: 767px) {
    .carousel-nav {
        display: none !important;
    }
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    padding: 0 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.indicator.active {
    background: var(--color-secondary);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.indicator:hover {
    background: var(--color-secondary);
    transform: scale(1.1);
}

.indicator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.indicator.active::after {
    border-color: rgba(255, 255, 255, 0.3);
}

.trending-promotions-slider {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    justify-content: flex-start;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.trending-promotions-slider.dragging {
    transition: none;
    cursor: grabbing;
}

.trending-promotions-slider.smooth-transition {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.trending-promotions-slider:not(.dragging):not(.smooth-transition) {
    transition: none;
}

.promo-slide {
    flex: 0 0 320px;
    height: 420px;
}

.promo-card {
    height: 100%;
    border-radius: var(--card-border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--default-transition);
    cursor: pointer;
}

.blog-card {
    height: 100%;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--default-transition);
    cursor: pointer;
    background-color: transparent;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}

.blog-card .card-image {
    border-radius: 15px !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Aligns content to the bottom */
    padding: 25px;
    position: relative;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.blog-card .card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
    border-radius: 15px;
}

.blog-card .card-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    margin-top: 0;
    /* Remove auto margin */
}

.blog-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 8px var(--black-transparent-20);
    font-family: var(--font-poppins);
}

.blog-title {
    font-family: var(--font-poppins);
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.4;
    color: var(--color-white);
    margin-bottom: 15px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    font-size: 0.9rem;
    transition: var(--default-transition);
}

.blog-read-more .read-more-text {
    position: relative;
    padding-bottom: 2px;
}

.blog-read-more .read-more-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.blog-read-more:hover .read-more-text::after {
    transform: scaleX(1);
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover {
    color: var(--color-white) !important;
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

/* Ensure promo card styles don't conflict if they are still used */
.promo-card {
    height: 100%;
    border-radius: var(--card-border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--default-transition);
    cursor: pointer;
}

.subscribe-wrapper {
    position: relative;
    padding: clamp(40px, 5vw, 70px);
    border-radius: 25px;
    overflow: hidden;
    background: rgba(21, 33, 33, 0.7);
    /* Using primary color with transparency */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.subscribe-section {
    background-color: var(--color-primary);
}

.paper-plane {
    position: absolute;
    top: -40px;
    left: 20px;
    width: 120px;
    opacity: 0.5;
    animation: fly 15s linear infinite;
    z-index: -1;
}

@keyframes fly {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(200px, -20px) rotate(10deg);
    }

    50% {
        transform: translate(500px, 20px) rotate(-10deg);
    }

    75% {
        transform: translate(200px, 50px) rotate(5deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

.subscribe-form .form--control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.subscribe-form .form--control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.subscribe-form button {
    background-color: var(--color-secondary);
}

/* Responsive adjustments for subscribe section */
@media (max-width: 767px) {
    .subscribe-wrapper {
        padding: 40px 25px;
    }

    .paper-plane {
        width: 80px;
        top: -20px;
    }
}


.promo-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}


.discount-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    font-family: var(--font-poppins);
}

.promo-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #2A4737;
    color: var(--color-white);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    font-family: var(--font-poppins);
}

.promo-title {
    font-family: var(--font-poppins);
    font-size: 1.4rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 8px;
    line-height: 1.3;
    color: var(--color-white);
}

.promo-description {
    font-family: var(--font-poppins);
    font-size: 0.825rem;
    font-weight: var(--font-weight-normal);
    line-height: 1.4;
    margin-bottom: 12px;
    opacity: 0.95;
    color: var(--color-white);
}

.promo-meta {
    margin-bottom: 10px;
}

.duration-label {
    font-size: 0.85rem;
    font-weight: var(--font-weight-medium);
    background: var(--white-transparent-20);
    padding: 5px 10px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    color: var(--color-white);
    font-family: var(--font-poppins);
    display: inline-block;
}

.bottom-section {
    margin-top: 15px;
}

.price-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 0;
}

.original-price {
    font-size: 1.1rem;
    font-weight: var(--font-weight-medium);
    color: var(--white-transparent-70);
    text-decoration: line-through;
    font-family: var(--font-poppins);
}

.promo-price {
    font-size: 1.6rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    font-family: var(--font-poppins);
}

.savings {
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
    background: var(--green-transparent);
    color: var(--color-white);
    padding: 2px 6px;
    border-radius: 8px;
    margin-left: 0;
    font-family: var(--font-poppins);
    align-self: flex-start;
    margin-top: 2px;
}

.promo-timer {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-poppins);
}

.promo-timer i {
    color: var(--color-secondary);
}

.book-promo-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    background: var(--white-transparent-20);
    border: 1.5px solid var(--white-transparent-30);
    color: var(--color-white);
    border-radius: 50%;
    font-family: var(--font-poppins);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--default-transition);
    backdrop-filter: blur(10px);
    cursor: pointer;
    z-index: 10;
}

.book-promo-btn:hover {
    background: var(--white-transparent-30);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.book-promo-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.book-promo-btn:hover i {
    transform: translateX(2px);
}

/* =====================================
   SHARED CLASSES FOR BOTH SECTIONS
   ===================================== */

.section-header {
    margin-bottom: 3rem;
}

.tripadvisor-title {
    font-size: 2rem !important;
    font-weight: var(--font-weight-bold);
    color: var(--color-white) !important;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(1, 17, 10, 0.219), 0 1px 2px rgba(0, 0, 0, 0.2);
    font-family: var(--font-poppins);
}

.section-subtitle {
    color: var(--color-lightblue) !important;
    font-weight: var(--font-weight-medium) !important;
    letter-spacing: 2px !important;
    font-size: 1rem !important;
    font-family: var(--font-poppins) !important;
    text-transform: uppercase !important;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(1, 17, 10, 0.219), 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}

.section-title {
    color: #ffffff;
    font-size: 3.2rem;
    line-height: 1.1;
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.5px;
    margin-top: 10px;
    font-family: var(--font-poppins);
    margin-bottom: 0;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4), 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-image {
    position: relative;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.3) 40%,
            rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    margin-top: auto;
    color: var(--color-white);
}

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

@media (max-width: 1400px) {
    .tour-slide {
        flex: 0 0 calc(25% - 18px);
        /* Maintain 4 cards */
        height: 360px;
    }

    .section-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 1200px) {
    .tour-slide {
        flex: 0 0 calc(33.333% - 16px);
        /* 3 cards */
        height: 350px;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {

    .theme-tours-section,
    .trending-promotions-section {
        padding: 60px 0;
    }

    .tour-slide {
        flex: 0 0 calc(50% - 12px);
        /* 2 cards */
        height: 340px;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .tour-title {
        font-size: 1.375rem;
    }

    .price {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {

    .theme-tours-section,
    .trending-promotions-section {
        padding: 50px 0;
    }

    .theme-tours-slider {
        justify-content: center;
        /* Center the single card */
    }

    .tour-slide {
        flex: 0 0 85%;
        /* Single card that takes up most of the width */
        height: 340px;
        max-width: 340px;
        /* Maximum width for the single card */
        margin: 0 auto;
        /* Ensure it's centered */
    }

    .section-title {
        font-size: 2rem;
    }

    .tour-title {
        font-size: 1.25rem;
    }

    .tour-description {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .theme-tours-slider {
        gap: 16px;
        justify-content: center;
        /* Center cards in mobile view */
    }

    .tour-slide {
        flex: 0 0 90%;
        /* Take up most of the width */
        max-width: 300px;
        /* Cap the maximum width */
        height: 340px;
        margin: 0 auto;
        /* Center the slide */
    }

    .section-title {
        font-size: 1.75rem;
    }

    .card-image {
        padding: 16px;
    }

    .tour-title {
        font-size: 1.125rem;
    }

    .tour-description {
        font-size: 0.75rem;
        margin-bottom: 16px;
    }

    .tour-details {
        margin-bottom: 16px;
    }

    .book-now-btn {
        padding: 10px 20px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .tour-slide {
        flex: 0 0 95%;
        /* Even wider for very small screens */
        max-width: 280px;
        height: 320px;
        margin: 0 auto;
        /* Center the slide */
    }

    .section-title {
        font-size: 1.5rem;
    }

    .tour-details {
        margin-bottom: 16px;
    }

    .price {
        font-size: 1.375rem;
    }
}

/* Hero wrap 2 styles */
.hero-wrap-2 .video-overlay {
    width: 100%;
    /* opacity can be adjusted as needed */
}

.video-banner .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Search area positioning with video banner */
.video-search-area {
    position: relative;
    margin-top: -150px;
    /* Increased negative margin to position higher */
    z-index: 3;
}

.video-search-area .find-tabs {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Add subtle pulse animation to social sidebar for attention */
@keyframes pulse-sidebar {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 5px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.social-sidebar {
    position: fixed !important;
    right: 10px;
    margin-right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3 !important;
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 10px 8px;
}

.social-sidebar__item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 18px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    border-radius: 50%;
    z-index: 9999999 !important;
    position: relative !important;
    pointer-events: auto !important;
}

.social-sidebar__item:last-child {
    margin-bottom: 0;
}

.social-sidebar__item:hover {
    background: var(--color-secondary);
    transform: translateX(-5px);
    color: #fff;
}

.social-sidebar__item i {
    line-height: 1;
    transition: all 0.3s ease;
}

.social-sidebar__item:hover i {
    transform: scale(1.2);
}


/* Responsive styles for video banner */
/* Fix for mobile menu scrollbar */
@media (max-width: 1199px) {
    .navbar-collapse {
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .navbar-collapse::-webkit-scrollbar {
        width: 0;
        background: transparent;
    }

    .header .main-menu li .sub-menu li a:hover {
        background: rgba(255, 255, 255, 0.1) !important;
        color: #f1f1f1 !important;
    }

    /* Keep social sidebar visible on smaller screens with larger icons for better mobile experience */
    .social-sidebar {
        padding: 10px 8px;
    }

    .social-sidebar__item {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 12px;
    }
}

@media (max-width: 767px) {
    .social-sidebar {
        padding: 12px 8px;
    }

    .social-sidebar__item {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin-bottom: 14px;
    }
}

@media (max-width: 480px) {
    .social-sidebar {
        padding: 15px 10px;
        border-radius: 25px 0 0 25px;
    }

    .social-sidebar__item {
        width: 52px;
        height: 52px;
        font-size: 22px;
        margin-bottom: 16px;
    }
}

@media (max-width: 991px) {
    .video-banner {
        height: auto;
        min-height: 100vh;
    }

    .video-search-area {
        margin-top: -80px;
    }
}

@media (max-width: 767px) {
    .video-banner {
        min-height: 90vh;
    }

    .hero__title {
        font-size: 28px;
    }

    .video-search-area {
        margin-top: -60px;
    }
}

/* Trending Promotions Scroll Indicator Styles */
.scroll-indicator-container {
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.scroll-indicator-track {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    cursor: pointer;
}

.scroll-indicator-thumb {
    width: 60px;
    height: 100%;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 0;
    left: 0;
    transition: left 0.3s ease;
    cursor: grab;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.scroll-indicator-thumb:hover {
    background: linear-gradient(135deg, #ffffff, #e8e8e8);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.scroll-indicator-thumb:active {
    cursor: grabbing;
    transform: scale(1.05);
}

.scroll-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.scroll-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.scroll-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.scroll-btn:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .scroll-indicator-container {
        padding: 0 15px;
        margin: 30px auto;
    }

    .scroll-indicator-track {
        height: 6px;
    }

    .scroll-indicator-thumb {
        width: 40px;
    }

    .scroll-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* Testimonial Reviews Section Styles */
/* Import Poppins Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.testimonial-reviews-section {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.testimonial-reviews-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
}

.testimonial-reviews-section>.container {
    position: relative;
    z-index: 1;
}

.heading-section .subheading {
    display: block;
    color: var(--color-lightblue);
    font-weight: var(--font-weight-medium);
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-family: var(--font-poppins);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.heading-section h2 {
    color: #ffffff;
    font-size: 3.2rem;
    line-height: 1.1;
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.5px;
    margin-top: 10px;
    font-family: var(--font-poppins);
}

/* Slider */
.reviews-slider {
    position: relative;
    margin-top: 20px;
    overflow: hidden;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
    font-size: 18px;
    margin: 15px;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 5px;
}

.slider-nav.next {
    right: 5px;
}

.slides-viewport {
    overflow: hidden;
    width: 100%;
}

.slides-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.slide {
    flex-shrink: 0;
    padding: 0 15px;
    width: calc(100% / 3);
    /* Desktop: 3 cards */
    display: flex;
    justify-content: center;
}

/* Testimonial Cards */
.testimonial-card {
    background: rgba(0, 0, 0, 0.325);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border-radius: 25px;
    padding: 40px 30px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    height: auto;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    color: #fff;
    margin: 20px auto;
    width: 100%;
    max-width: 320px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.35);
    border-color: rgba(255, 255, 255, 0.25);
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-details {
    flex: 1;
}

.reviewer-name {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: #fff;
}

.reviewer-location {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 8px 0;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 2px;
}

.review-rating .fas.fa-star,
.review-rating .far.fa-star,
.review-rating .fa-star,
.review-rating .fa-star-half-alt {
    color: #ffc107;
    font-size: 16px;
}

.tripadvisor-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-green-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.testimonial-content {
    flex: 1;
}

.testimonial-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #fff;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 16px 0;
}

.review-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: auto;
}

.review-date i {
    opacity: 0.8;
}

/* CTA Section */
.tripadvisor-cta {

    padding: 32px;
    text-align: center;
    color: #fff;

}

.tripadvisor-cta h5 {
    color: #fff;
    font-weight: 600;
    margin: 0 0 20px 0;
    font-size: 1.25rem;
}

.tripadvisor-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-green-primary);
    color: var(--color-white);
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.tripadvisor-btn:hover {
    background-color: var(--color-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 175, 135, 0.4);
    color: var(--color-white);
    text-decoration: none;
}

.tripadvisor-btn i {
    font-size: 20px;
}

/* Responsive Design - Consolidated and optimized */
@media (max-width: 1199.98px) {
    .slide {
        width: calc(100% / 2);
        /* Tablet: 2 cards */
    }

    .testimonial-reviews-section {
        padding: 70px 0;
    }

    .testimonial-card {
        padding: 35px 25px;
        border-radius: 22px;
        max-width: 280px;
        margin: 15px auto;
    }

    .reviewer-avatar {
        width: 55px;
        height: 55px;
    }

    .reviewer-name {
        font-size: 17px;
    }

    .tripadvisor-badge {
        width: 38px;
        height: 38px;
        font-size: 19px;
    }
}

@media (max-width: 991.98px) {
    .testimonial-reviews-section {
        padding: 60px 0;
    }

    .heading-section h2 {
        font-size: 2.2rem;
    }

    .slide {
        width: 100%;
    }

    .slider-nav {
        width: 45px;
        height: 45px;
        font-size: 17px;
        margin: 12px;
    }

    .slider-nav.prev {
        left: -8px;
    }

    .slider-nav.next {
        right: -8px;
    }

    .testimonial-card {
        padding: 22px;
        border-radius: 20px;
        max-width: 300px;
    }

    .reviewer-avatar {
        width: 50px;
        height: 50px;
        border-width: 2px;
    }

    .reviewer-info {
        gap: 14px;
    }

    .reviewer-name {
        font-size: 16px;
    }

    .reviewer-location {
        font-size: 13px;
    }

    .tripadvisor-badge {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .testimonial-title {
        font-size: 15px;
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 1.5;
    }

    .review-date {
        font-size: 12px;
    }

    .tripadvisor-cta {
        padding: 28px;
        border-radius: 22px;
    }

    .tripadvisor-cta h5 {
        font-size: 1.1rem;
    }

    .tripadvisor-btn {
        padding: 12px 24px;
        font-size: 15px;
    }
}

@media (max-width: 767.98px) {
    .testimonial-reviews-section {
        padding: 50px 0;
    }

    .heading-section .subheading {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .heading-section h2 {
        font-size: 1.9rem;
    }

    .slider-nav {
        width: 42px;
        height: 42px;
        font-size: 16px;
        margin: 10px;
    }

    .slider-nav.prev {
        left: 0px;
    }

    .slider-nav.next {
        right: 0px;
    }

    .slides-track {
        transition: transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }

    .testimonial-card {
        padding: 30px 20px;
        border-radius: 18px;
        max-width: 300px;
        margin: 15px auto;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }

    .testimonial-header {
        margin-bottom: 18px;
        padding-bottom: 14px;
    }

    .reviewer-avatar {
        width: 48px;
        height: 48px;
    }

    .reviewer-info {
        gap: 12px;
    }

    .reviewer-name {
        font-size: 15px;
    }

    .reviewer-location {
        font-size: 12px;
    }

    .review-rating .fas.fa-star {
        font-size: 14px;
    }

    .tripadvisor-badge {
        width: 34px;
        height: 34px;
        font-size: 17px;
    }

    .testimonial-title {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .testimonial-text {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 14px;
    }

    .review-date {
        font-size: 11px;
    }

    .tripadvisor-cta {
        padding: 24px;
        border-radius: 20px;
    }

    .tripadvisor-cta h5 {
        font-size: 1rem;
        margin-bottom: 18px;
    }

    .tripadvisor-btn {
        padding: 11px 22px;
        font-size: 14px;
    }

    .tripadvisor-btn i {
        font-size: 18px;
    }
}

@media (max-width: 575.98px) {
    .testimonial-reviews-section {
        padding: 40px 0;
    }

    .heading-section h2 {
        font-size: 1.7rem;
    }

    .slider-nav {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .slider-nav.prev {
        left: -15px;
    }

    .slider-nav.next {
        right: -15px;
    }

    .testimonial-card {
        padding: 18px;
        border-radius: 16px;
    }

    .testimonial-header {
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    .reviewer-avatar {
        width: 45px;
        height: 45px;
    }

    .reviewer-info {
        gap: 10px;
    }

    .reviewer-name {
        font-size: 14px;
    }

    .reviewer-location {
        font-size: 11px;
    }

    .review-rating .fas.fa-star {
        font-size: 12px;
    }

    .tripadvisor-badge {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .testimonial-title {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .testimonial-text {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    .review-date {
        font-size: 10px;
    }

    .tripadvisor-cta {
        padding: 20px;
        border-radius: 18px;
    }

    .tripadvisor-cta h5 {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }

    .tripadvisor-btn {
        padding: 10px 20px;
        font-size: 13px;
        border-radius: 25px;
    }

    .tripadvisor-btn i {
        font-size: 16px;
    }
}

@media (max-width: 479.98px) {
    .testimonial-reviews-section {
        padding: 35px 0;
    }

    .heading-section h2 {
        font-size: 1.5rem;
    }

    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .slider-nav.prev {
        left: -12px;
    }

    .slider-nav.next {
        right: -12px;
    }

    .testimonial-card {
        padding: 16px;
        border-radius: 14px;
    }

    .testimonial-header {
        margin-bottom: 14px;
        padding-bottom: 10px;
    }

    .reviewer-avatar {
        width: 42px;
        height: 42px;
    }

    .reviewer-info {
        gap: 8px;
    }

    .reviewer-name {
        font-size: 13px;
    }

    .reviewer-location {
        font-size: 10px;
    }

    .review-rating .fas.fa-star {
        font-size: 11px;
        margin-right: 1px;
    }

    .tripadvisor-badge {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }

    .testimonial-title {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .testimonial-text {
        font-size: 11px;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .review-date {
        font-size: 9px;
    }

    .tripadvisor-cta {
        padding: 18px;
        border-radius: 16px;
    }

    .tripadvisor-cta h5 {
        font-size: 0.85rem;
        margin-bottom: 14px;
    }

    .tripadvisor-btn {
        padding: 9px 18px;
        font-size: 12px;
        border-radius: 22px;
    }

    .tripadvisor-btn i {
        font-size: 15px;
    }
}

/* Reviews Scroll Indicator Styles */
.reviews-scroll-indicator-container {
    width: 100%;
    max-width: 800px;
    margin: 40px auto 20px auto;
    padding: 0 20px;
}

.reviews-scroll-indicator-track {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    cursor: pointer;
}

.reviews-scroll-indicator-thumb {
    width: 60px;
    height: 100%;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 0;
    left: 0;
    transition: left 0.3s ease;
    cursor: grab;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.reviews-scroll-indicator-thumb:hover {
    background: linear-gradient(135deg, #ffffff, #e8e8e8);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.reviews-scroll-indicator-thumb:active {
    cursor: grabbing;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .reviews-scroll-indicator-container {
        padding: 0 15px;
        margin: 30px auto 15px auto;
    }

    .reviews-scroll-indicator-track {
        height: 6px;
    }

    .reviews-scroll-indicator-thumb {
        width: 40px;
    }
}



/* YouTube Section Styles */
.yt-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: transparent;
}


/* Carousel Layout - Center Focus with 3 Cards */
.yt-carousel-wrapper {
    position: relative;
    padding: 20px 60px;
    overflow: hidden;
}

.yt-video-slider .slick-list {
    margin: 0;
    overflow: visible;
    padding: 40px 0;
}

.yt-video-item {
    padding: 0 8px;
    transition: all 0.3s ease;
}

/* Video Card Styles - Restored Original YouTube Design */
.yt-video-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
    height: auto;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    /* Removed scale and opacity transforms for new carousel */
}

/* Removed center slide styling - not needed for new carousel */
.yt-video-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.yt-video-card__thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    flex-shrink: 0;
    background: #000;
}

.yt-video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
}

.yt-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s ease;
}

.yt-video-thumbnail:hover img {
    opacity: 0.9;
}

.yt-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.2s ease;
    opacity: 0;
}

.yt-video-thumbnail:hover .yt-play-button {
    opacity: 1;
    background: rgba(0, 0, 0, 0.9);
}

/* Video Duration Badge */
.yt-video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 2px 4px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* Card Content - YouTube Style */
.yt-video-card__content {
    color: var(--color-white);
    padding: 12px;
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    gap: 12px;
    background: rgba(21, 33, 33, 0.24);
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.3px);
    -webkit-backdrop-filter: blur(6.3px);
}

.yt-video-card__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.yt-video-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yt-video-card__info {
    flex-grow: 1;
    min-width: 0;
}

.yt-video-card__title {
    margin: 0;
    line-height: 1.4;
    width: 100%;
    margin-bottom: 4px;
}

.yt-video-card__title a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Roboto', var(--font-poppins), sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    /* Added standard property for compatibility */
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    font-weight: 500;
}

.yt-video-card__title a:hover {
    color: #606060;
}

.yt-video-card__meta {
    font-size: 12px;
    color: #ffffff;
    line-height: 1.4;
    font-family: 'Roboto', var(--font-poppins), sans-serif;
}

.yt-video-card__stats {
    display: block;
}

/* Carousel Navigation */
.yt-carousel-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
}

.yt-carousel-nav__btn {
    position: absolute;
    top: 0;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--color-primary);
    transition: all 0.3s ease;
    pointer-events: auto;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.yt-carousel-nav__btn:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: white;
    transform: scale(1.1);
}

.yt-carousel-nav__btn--prev {
    left: 15px;
}

.yt-carousel-nav__btn--next {
    right: 15px;
}

/* New YouTube Carousel System */
.youtube-carousel-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0 60px 0;
    touch-action: pan-y;
}

.youtube-carousel {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    justify-content: flex-start;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.youtube-carousel.dragging {
    transition: none;
    cursor: grabbing;
}

.youtube-carousel.smooth-transition {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.youtube-carousel:not(.dragging):not(.smooth-transition) {
    transition: none;
}

.youtube-slide {
    flex: 0 0 320px;
    height: auto;
}

/* Ensure YouTube cards fill the slide properly */
.youtube-slide .yt-video-card {
    width: 100%;
    max-width: 320px;
    height: auto;
}

/* Hide carousel navigation buttons on mobile devices */
@media (max-width: 767px) {
    .youtube-carousel-container .carousel-nav {
        display: none !important;
    }
}

/* Responsive Styles - For Center Focus Cards */
@media (max-width: 1399px) {
    .yt-carousel-wrapper {
        padding: 20px 60px;
    }

    .slick-center .yt-video-card {
        transform: scale(1.1);
    }

    .slick-center .yt-video-card:hover {
        transform: scale(1.11) translateY(-2px);
    }
}

@media (max-width: 1199px) {
    .yt-carousel-wrapper {
        padding: 20px 50px;
    }

    .yt-video-card__title a {
        font-size: 14px;
    }

    .yt-video-card {
        transform: scale(0.9);
    }

    .slick-center .yt-video-card {
        transform: scale(1.05);
    }

    .slick-center .yt-video-card:hover {
        transform: scale(1.06) translateY(-2px);
    }
}

@media (max-width: 991px) {
    .yt-carousel-wrapper {
        padding: 20px 40px;
    }

    .yt-play-button {
        width: 48px;
        height: 34px;
        font-size: 16px;
    }

    .yt-video-card {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 767px) {
    .yt-section-title {
        font-size: 2rem;
    }

    .yt-carousel-wrapper {
        padding: 20px 20px;
    }

    .yt-carousel-nav__btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .yt-carousel-nav__btn--prev {
        left: 10px;
    }

    .yt-carousel-nav__btn--next {
        right: 10px;
    }

    .yt-video-card__content {
        padding: 10px;
    }
}

@media (max-width: 575px) {
    .yt-section-title {
        font-size: 1.8rem;
    }

    .yt-carousel-wrapper {
        padding: 20px 10px;
    }

    .yt-video-card__title a {
        font-size: 13px;
    }
}

/* New YouTube Carousel System Styles */
.youtube-carousel-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0 60px 0;
    touch-action: pan-y;
}

.youtube-carousel {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    justify-content: flex-start;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.youtube-carousel.dragging {
    transition: none;
    cursor: grabbing;
}

.youtube-carousel.smooth-transition {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.youtube-carousel:not(.dragging):not(.smooth-transition) {
    transition: none;
}

.youtube-slide {
    flex: 0 0 320px;
    height: auto;
}

/* Ensure YouTube cards fill the slide properly for responsive view */
.youtube-slide .yt-video-card {
    width: 100%;
    max-width: 320px;
    height: auto;
}

/* Navigation buttons for YouTube carousel */
.youtube-carousel-container .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--color-primary);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.youtube-carousel-container .carousel-nav:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.youtube-carousel-container .carousel-nav:active {
    transform: translateY(-50%) scale(1.05);
}

.youtube-carousel-container .carousel-prev {
    left: -25px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.youtube-carousel-container .carousel-next {
    right: -25px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.youtube-carousel-container:hover .carousel-prev,
.youtube-carousel-container:hover .carousel-next {
    opacity: 1;
    visibility: visible;
}

.youtube-carousel-container:hover .carousel-prev {
    left: 10px;
}

.youtube-carousel-container:hover .carousel-next {
    right: 10px;
}

/* Hide carousel navigation buttons on mobile devices */
@media (max-width: 767px) {
    .youtube-carousel-container .carousel-nav {
        display: none !important;
    }
}

/* =====================================
   TOURS SECTION - Two Column Card Layout
   ===================================== */

.tours-section {
    background: transparent;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: var(--font-poppins);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: var(--font-weight-bold);
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-top: 10px;
    margin-bottom: 0;
}

.tours-card-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: clamp(20px, 3vw, 40px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: clamp(20px, 3vw, 35px);
    align-items: start;
    position: relative;
    overflow: hidden;
}

.tours-card-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.02) 0%,
            rgba(255, 255, 255, 0.08) 50%,
            rgba(255, 255, 255, 0.02) 100%);
    pointer-events: none;
    z-index: -1;
}

.tour-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--color-white);
    position: relative;
    padding: clamp(15px, 2vw, 20px);
    min-height: 300px;
    justify-content: flex-start;
}

.tour-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(21, 33, 33, 0.3);
    position: relative;
    overflow: hidden;
}

.tour-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    border-radius: 50%;
}

.tour-icon {
    font-size: 2rem;
    color: var(--color-white);
    z-index: 1;
    position: relative;
}

.tour-title {
    font-family: var(--font-poppins);
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: 5px;
    line-height: 1.3;
}

.tour-description {
    font-family: var(--font-poppins);
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: var(--font-weight-normal);
}

.tour-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    width: 100%;
}

.tour-features li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 12px;
    font-family: var(--font-poppins);
    font-size: clamp(0.875rem, 2vw, 0.95rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: var(--font-weight-normal);
}

.tour-features li i {
    color: var(--color-secondary);
    margin-right: 12px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.tour-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: var(--font-poppins);
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    letter-spacing: 0.3px;
    text-transform: none;
}

.tour-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
}

.tour-btn:hover::before {
    left: 100%;
}

.tour-btn span {
    position: relative;
    z-index: 1;
}

.tour-btn i {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.tour-btn:hover i {
    transform: translateX(5px);
}

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

.btn-primary:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(21, 33, 33, 0.4);
}

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

.btn-secondary:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(42, 71, 55, 0.4);
}

.tour-divider {
    width: 2px;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(255, 255, 255, 0.2) 20%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0.2) 80%,
            transparent 100%);
    border-radius: 2px;
    position: relative;
    min-height: 280px;
    align-self: stretch;
}



/* Responsive Design */
@media (max-width: 992px) {
    .tours-card-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: clamp(25px, 4vw, 40px);
    }

    .tour-divider {
        width: 100%;
        height: 2px;
        min-height: 2px;
        background: linear-gradient(to right,
                transparent 0%,
                rgba(255, 255, 255, 0.2) 20%,
                rgba(255, 255, 255, 0.4) 50%,
                rgba(255, 255, 255, 0.2) 80%,
                transparent 100%);
        margin: 20px 0;
        position: relative;
    }

    .tour-divider::before {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .tour-column {
        min-height: auto;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .tours-card-container {
        padding: clamp(20px, 4vw, 30px);
        gap: 30px;
    }

    .tour-features {
        text-align: left;
    }

    .tour-btn {
        width: 100%;
        min-width: auto;
    }

    .tour-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .tour-icon {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .tours-card-container {
        padding: 20px;
        gap: 25px;
    }

    .tour-column {
        padding: 15px;
    }

    .tour-features li {
        font-size: 0.875rem;
    }

    .tour-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .tour-icon {
        font-size: 1.5rem;
    }
}


/* YouTube Modal Styles */
#youtubeModal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 1050 !important;
    display: none;
    overflow: hidden;
}

#youtubeModal.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

#youtubeModal .modal-dialog {
    max-width: 800px;
    width: 90%;
    margin: 0;
    position: relative;
    z-index: 1051;
}

#youtubeModal .modal-content {
    background: #000;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    margin: auto;
}

#youtubeModal .modal-header {
    padding: 8px 15px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10;
    border-bottom: none;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

#youtubeModal .btn-close {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
    outline: none;
    position: relative;
    backdrop-filter: blur(10px);
    z-index: 11;
}

#youtubeModal .btn-close:hover,
#youtubeModal .btn-close:focus {
    background: rgba(255, 68, 68, 0.9);
    border-color: #ff4444;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
}

#youtubeModal .btn-close i {
    font-size: 16px;
    line-height: 1;
}

/* Responsive Video Container */
.yt-video-embed-container {
    position: relative;
    width: 100%;
    background: #000;
}

.yt-video-embed-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    background: #000;
}

.yt-video-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Modal Animation */
#youtubeModal.fade .modal-dialog {
    transform: scale(0.8);
    transition: all 0.3s ease-out;
}

#youtubeModal.show .modal-dialog {
    transform: scale(1);
}

/* Loading State */
.yt-video-embed-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    z-index: 1;
}

.yt-video-embed-wrapper.loaded::before {
    display: none;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #youtubeModal .modal-dialog {
        max-width: 95%;
        width: 95%;
    }

    #youtubeModal .modal-header {
        padding: 6px 10px;
    }

    #youtubeModal .btn-close {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    #youtubeModal .btn-close i {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    #youtubeModal .modal-dialog {
        max-width: 98%;
        width: 98%;
    }

    .yt-video-embed-wrapper {
        padding-bottom: 60%;
        /* Slightly taller for mobile */
    }

    #youtubeModal .btn-close {
        width: 32px;
        height: 32px;
    }
}

/* Ensure modal backdrop is properly positioned */
.modal-backdrop {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(0, 0, 0, 0.8) !important;
    z-index: 1040 !important;
}

/* Ensure modal animation */
#youtubeModal.fade {
    opacity: 0;
    transition: opacity 0.15s linear;
}

#youtubeModal.show {
    opacity: 1;
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}

/* Card Carousel Styling with 3D Effects */
.card-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    transform-style: preserve-3d;
    margin-bottom: 30px;
}

.card-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transform: translateZ(0);
}

.card-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center;
    will-change: transform, opacity, filter;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    /* All cards are clickable */
    user-select: none;
}

/* Enhanced card design */
.card {
    width: 260px;
    height: 360px;
    border-radius: 12px;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.3),
        0 5px 10px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.5s ease;
    position: relative;
    border: none;
}

/* Realistic shine effect */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.25) 0%,
            rgba(255, 255, 255, 0) 60%);
    z-index: 2;
    pointer-events: none;
}

/* Shadow overlay for depth */
.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    transition: transform 0.8s ease;
    pointer-events: none;
    /* Prevents image from interfering with drag */
}

/* Image zoom effect on hover for center card */
.card-item[data-position="center"]:hover .card img {
    transform: scale(1.05);
}

/* Card hover effects */
.card-carousel:hover .card-item[data-position="center"] .card {
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Side cards hover effects to indicate they're clickable */
.card-item[data-position="left"]:hover,
.card-item[data-position="right"]:hover {
    transform: translate(-50%, -50%) scale(0.9) !important;
    filter: brightness(1.1) !important;
    transition: all 0.3s ease-out !important;
    z-index: 2 !important;
}

.card-item[data-position="left"]:hover .card,
.card-item[data-position="right"]:hover .card {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .card-carousel {
        height: 450px;
    }

    .card {
        width: 260px;
        height: 360px;
    }
}

@media (max-width: 767.98px) {
    .card-carousel {
        height: 420px;
    }

    .card {
        width: 240px;
        height: 340px;
    }
}

@media (max-width: 575.98px) {
    .card-carousel {
        height: 380px;
    }

    .card {
        width: 220px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .card-carousel {
        height: 360px;
    }

    .card {
        width: 200px;
        height: 280px;
    }
}

/* Tailor Made Tours Section Custom CSS */

/* Main section styling */
.tailormade-section {
    position: relative;
    overflow: hidden;
    background-color: var(--color-primary);
    padding: 100px 0;
}

/* Optional: Add a subtle gradient overlay for depth */
.tailormade-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(21, 33, 33, 0.9) 0%, rgba(21, 33, 33, 1) 100%); */
    z-index: 0;
}

.tailormade-row {
    min-height: 550px;
}

/* Text content styling */
.tailormade-right {
    padding: 0 30px;
    position: relative;
    z-index: 2;
    text-align: left;
    /* Default text alignment */
}

.tailormade-content {
    animation: fadeInUp 1s ease-in-out;
    /* Updated to use consolidated fadeInUp */
    max-width: 996px;
    /* Set maximum width */
}

/* Media query for screen sizes between 200px and 996px */
@media (min-width: 200px) and (max-width: 996px) {
    .tailormade-right {
        text-align: center;
        /* Center text for smaller screens */
    }

    .tailormade-content {
        margin-left: auto;
        margin-right: auto;
    }
}

.subheading {
    color: var(--color-lightblue);
    font-weight: var(--font-weight-medium);
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-family: var(--font-poppins);
}

.tailormade-heading {
    color: var(--color-white);
    font-size: 3.2rem;
    line-height: 1.1;
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.5px;
    margin-top: 10px;
    font-family: var(--font-poppins);
}

.tailormade-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    font-weight: var(--font-weight-normal);
    font-family: var(--font-poppins);
}

.tailormade-btn {
    background-color: var(--color-secondary);
    border-radius: 50px;
    border: none;
    color: var(--color-white);
    font-weight: var(--font-weight-medium);
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 10px;
    display: inline-block;
    font-family: var(--font-poppins);
}

.tailormade-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Image stack styling */
.tailormade-left {
    position: relative;
    z-index: 1;
}

/* Media queries for responsiveness */
@media (max-width: 1199.98px) {
    .tailormade-heading {
        font-size: 2.8rem;
    }
}

@media (max-width: 991.98px) {
    .tailormade-heading {
        font-size: 2.5rem;
    }

    .tailormade-right {
        padding: 0 20px;
    }
}

@media (max-width: 767.98px) {
    .tailormade-section {
        padding: 60px 0;
    }

    .tailormade-heading {
        font-size: 2.2rem;
    }

    .tailormade-right {
        padding: 40px 20px;
    }
}

@media (max-width: 575.98px) {
    .tailormade-section {
        padding: 50px 0;
    }

    .tailormade-heading {
        font-size: 1.8rem;
    }

    .tailormade-description {
        font-size: 0.9rem;
    }
}


/* Why Choose Us Section Styling */
.why-choose-us-section {
    padding: 80px 0;
    font-family: var(--font-poppins);
    color: var(--color-white);
    /* Use CSS variable instead of #fff */
}

/* Image styling with subtle effects */
.why-choose-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    max-width: 420px;
    /* make the image visually smaller */
    margin: 0 auto;
    /* center within the column */
}

.why-choose-image img {
    transition: transform 0.6s ease;
    width: 100%;
    border-radius: 15px;
}

.why-choose-image:hover img {
    transform: scale(1.03);
}

/* Content section styling */
.why-choose-content {
    padding: 20px;
}

/* Subheading styling */
.why-choose-content .section-subtitle {
    font-size: 18px;
    color: #fff;
    /* white subtitle */
    display: block;
    margin-bottom: 10px;
    line-height: 1.2;
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Main heading styling */
.why-choose-content .section-title {
    font-family: var(--font-poppins);
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    /* white heading */
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.why-choose-content .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--color-secondary);
    border-radius: 2px;
}

/* Lead paragraph styling */
.why-choose-content .lead {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    /* white lead text */
    line-height: 1.7;
    margin-bottom: 30px;
}

/* List items styling */
.why-choose-list {
    margin-top: 20px;
}

.why-choose-paragraph {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    color: #fff;
    /* white paragraph text */
    line-height: 1.6;
    font-size: 16px;
}

.why-choose-paragraph strong {
    color: #fff;
    /* white strong text */
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    font-size: 18px;
}

.why-choose-paragraph:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    color: #fff;
    /* white checkmark to match text */
    font-weight: bold;
    font-size: 18px;
}

/* Responsive styles */
@media (max-width: 991px) {
    .why-choose-content .section-title {
        font-size: 30px;
    }

    .why-choose-content .section-subtitle {
        font-size: 16px;
    }

    .why-choose-content .lead {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .why-choose-us-section {
        padding: 60px 0;
    }

    .why-choose-image {
        margin-bottom: 30px;
    }

    .why-choose-content .section-title {
        font-size: 26px;
    }

    .why-choose-content .section-subtitle {
        font-size: 14px;
    }

    .why-choose-paragraph {
        font-size: 15px;
    }

    .why-choose-paragraph strong {
        font-size: 16px;
    }
}

/* Animation effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.why-choose-content.animated .section-subtitle,
.why-choose-content.animated .section-title,
.why-choose-content.animated .lead,
.why-choose-content.animated .why-choose-paragraph {
    animation: fadeInUp 0.6s ease forwards;
}

.why-choose-content.animated .section-subtitle {
    animation-delay: 0.1s;
}

.why-choose-content.animated .section-title {
    animation-delay: 0.3s;
}

.why-choose-content.animated .lead {
    animation-delay: 0.5s;
}

.why-choose-content.animated .why-choose-paragraph:nth-child(1) {
    animation-delay: 0.7s;
}

.why-choose-content.animated .why-choose-paragraph:nth-child(2) {
    animation-delay: 0.9s;
}

.why-choose-content.animated .why-choose-paragraph:nth-child(3) {
    animation-delay: 1.1s;
}

.why-choose-content.animated .why-choose-paragraph:nth-child(4) {
    animation-delay: 1.3s;
}


/* ==== Imported Classes from main.css ==== */
.header .main-menu {
    overflow-y: visible !important;
    max-height: none !important;
}

@media (max-width: 1199px) {
    .header .main-menu {
        overflow-y: visible !important;
        max-height: none !important;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-poppins);
    color: var(--color-primary);
    font-size: 1rem;
    padding: 0;
    margin: 0;
    font-weight: var(--font-weight-normal);
    position: relative;
    line-height: 1.7;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    overflow-x: hidden;
}

body.page-trns-active {
    position: relative;
}

body.page-trns-active::after {
    position: absolute;
    content: "\f110";
    font-family: "Line Awesome Free";
    font-weight: 900;
    color: #fff;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    font-size: 4.5rem;
    z-index: 999;
    animation: spinRoll 1s infinite linear;
}

body.page-trns-active::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary);
    z-index: 99;
    opacity: 0.65;
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: #f2f2f2;
}

body::-webkit-scrollbar-thumb {
    border-radius: 20px;
    border: 2px solid #f2f2f2;
}

@-webkit-keyframes spinRoll {
    from {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spinRoll {
    from {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-ms-keyframes spinRoll {
    from {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinRoll {
    from {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}



img {
    max-width: 100%;
    height: auto;
    user-select: none;
}

select {
    cursor: pointer;
}

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

button {
    cursor: pointer;
}

*:focus {
    outline: none;
}

button {
    border: none;
}

button:focus {
    outline: none;
}

span {
    display: inline-block;
}

a:hover {
    color: var(--color-secondary);
}

.text--primary {
    color: var(--color-primary) !important;
}

.text--secondary {
    color: var(--color-secondary) !important;
}

.text--success {
    color: #28c76f !important;
}

.text--danger {
    color: #ea5455 !important;
}

.text--warning {
    color: #ff9f43 !important;
}

.text--info {
    color: var(--color-lightblue) !important;
}

.text--dark {
    color: var(--color-primary) !important;
}

.text--muted {
    color: var(--color-muted) !important;
}

.text--base {
    color: #f77c5a !important;
}

.text--dark {
    color: #182c61 !important;
}

.bg--primary {
    background-color: var(--color-primary) !important;
}

.bg--secondary {
    background-color: var(--color-secondary) !important;
}

.bg--success {
    background-color: #28c76f !important;
}

.bg--danger {
    background-color: #ea5455 !important;
}

.bg--warning {
    background-color: #ff9f43 !important;
}

.bg--info {
    background-color: var(--color-lightblue) !important;
}

.bg--dark {
    background-color: var(--color-primary) !important;
}

.bg--light {
    background-color: #bcc7da !important;
}

.bg--base {
    background-color: var(--color-secondary) !important;
}

.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pt-100 {
    padding-top: 100px;
}

@media (max-width: 767px) {
    .pt-100 {
        padding-top: 80px;
    }
}

.pb-100 {
    padding-bottom: 100px;
}

@media (max-width: 767px) {
    .pb-100 {
        padding-bottom: 80px;
    }
}

.bg_img {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.section--bg {
    background-color: #f5f7fa;
}

.section--bg2 {
    background-color: #14233c;
}

.section-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.white--overlay {
    position: relative;
    z-index: 1;
}

.white--overlay::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0.7;
    z-index: -1;
}

.dark--overlay {
    position: relative;
    z-index: 1;
}

.dark--overlay::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #14233c;
    opacity: 0.4;
    z-index: -1;
}

.dark--overlay-two {
    position: relative;
    z-index: 1;
}

.dark--overlay-two::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #14233c;
    opacity: 0.8;
    z-index: -1;
}

.bg--one {
    background-color: #071e3e;
}

.slick-arrow {
    cursor: pointer;
}

.z-index-2 {
    z-index: 2;
}

.main-wrapper {
    position: relative;
}

.section-header {
    margin-bottom: 2.8125rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
}

.subscribe-wrapper .section-title {
    font-size: 2.25rem;
}

@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
    }

    .subscribe-wrapper .section-title {
        font-size: 1.85rem;
    }
}

.section-subtitle {
    font-family: "Josefin Sans", sans-serif;
    font-size: 1rem;
    font-weight: 500;
}

.section-subtitle.border-left {
    padding-left: 2.1875rem;
    position: relative;
    z-index: 1;
}

.section-subtitle.border-left::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    width: 25px;
    height: 2px;
    background-color: #f77c5a;
    margin-top: -1px;
}

a.text-white:hover {

}

.text--link {
    text-decoration: underline;
}

.text--link:hover {
    text-decoration: underline;
}

.has--link {
    position: relative;
}

.has--link .item--link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.custom--dropdown .dropdown-toggle.no-arrow::after {
    display: none;
}

.custom--dropdown .dropdown-toggle::after {
    content: "\f107";
    border: none;
    font-family: "Line Awesome Free";
    font-weight: 900;
    -webkit-transform: translateY(3px);
    -ms-transform: translateY(3px);
    transform: translateY(3px);
}

.custom--dropdown .dropdown-menu {
    border-color: #e5e5e5;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.custom--dropdown .dropdown-menu li {
    border-bottom: 1px dashed #e5e5e5;
}

.custom--dropdown .dropdown-menu li:last-child {
    border-bottom: none;
}

.custom--dropdown .dropdown-menu li .dropdown-item {
    color: #464646;
    font-size: 0.875rem;
}

.custom--dropdown .dropdown-menu li .dropdown-item:hover {
    color: #f77c5a;
    background-color: rgba(247, 124, 90, 0.05);
}

.custom--nav-tabs {
    border-bottom: none;
}

.custom--nav-tabs .nav-item .nav-link {
    background-color: #f0f5fc;
    border: none;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    padding: 0.75rem 1.5625rem;
}

.custom--nav-tabs .nav-item .nav-link.active {
    background-color: #f77c5a;
    color: #fff;
}

.custom--accordion .accordion-item+.accordion-item {
    margin-top: 1.25rem;
}

.custom--accordion .accordion-item {
    border: 1px solid rgba(247, 124, 90, 0.5);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.custom--accordion .accordion-item:first-child .accordion-button {
    border-top: none;
}

.custom--accordion .accordion-item:last-child .accordion-button {
    border-bottom: none;
}

.custom--accordion .accordion-button {
    padding: 1.25rem 1.5625rem;
    background-color: rgba(247, 124, 90, 0.05);
    font-size: 1.125rem;
    position: relative;
    text-align: left;
}

.custom--accordion .accordion-button::after {
    position: absolute;
    top: 1.25rem;
    right: 0.8125rem;
    font-size: 1.0625rem;
    content: "\f107";
    font-family: "Line Awesome Free";
    font-weight: 900;
    background-image: none;
    color: #000;
}

.custom--accordion .accordion-button:not(.collapsed) {
    background-color: #f77c5a;
    color: #fff;
}

.custom--accordion .accordion-button:not(.collapsed)::after {
    color: #fff;
}

.custom--accordion .accordion-button:focus {
    box-shadow: none;
    outline: none;
    border-color: transparent;
}

.custom--accordion .accordion-body {
    padding: 1.25rem 1.5625rem;
}

.custom--accordion-two .accordion-button {
    background-color: #f3f6f9;
}

.custom--accordion-two .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

.custom--accordion-two .accordion-button:not(.collapsed) {
    background-color: #f3f6f9;
}

.page-breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 0.9375rem;
}

.page-breadcrumb li {
    color: rgba(255, 255, 255, 0.8);
    text-transform: capitalize;
}

.page-breadcrumb li::after {
    content: "-";
    color: #ffffff;
    margin: 0 0.3125rem;
}

.page-breadcrumb li:first-child::before {
    content: "\f015";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #f77c5a;
    margin-right: 0.375rem;
}

.page-breadcrumb li:last-child::after {
    display: none;
}

.page-breadcrumb li a {
    color: #ffffff;
    text-transform: capitalize;
}

.page-breadcrumb li a:hover {
    color: #f77c5a;
}

.cmn-list li+li {
    margin-top: 0.9375rem;
}

.cmn-list li {
    position: relative;
    padding-left: 2.1875rem;
}

.cmn-list li::before {
    position: absolute;
    top: 0;
    left: 0;
    font-family: "Line Awesome Free";
    font-weight: 900;
    content: "\f058";
    font-size: 1.75rem;
    color: #f77c5a;
    margin-right: 0.5rem;
    line-height: 1;
}

.number-list {
    list-style: decimal;
    padding-left: 1.125rem;
}

.number-list li+li {
    margin-top: 0.625rem;
}

.disc-list li+li {
    margin-top: 0.625rem;
}

.disc-list li {
    position: relative;
    padding-left: 0.9375rem;
}

.disc-list li::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    width: 0.375rem;
    height: 0.375rem;
    margin-top: -0.1875rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #bdbdbd;
}

.square-list li+li {
    margin-top: 10px;
}

.square-list li {
    padding-left: 25px;
    position: relative;
}

.square-list li::before {
    position: absolute;
    content: "";
    top: 5px;
    left: 0;
    width: 14px;
    height: 14px;
    background-color: #e6e6e6;
}

.square-list li::after {
    position: absolute;
    content: "";
    top: 9px;
    left: 4px;
    width: 14px;
    height: 14px;
    background-color: rgba(247, 124, 90, 0.45);
}

.caption-list li {
    display: flex;
    flex-wrap: wrap;
    padding: 0.625rem 0;
    font-size: 0.9375rem;
    border-bottom: 1px dashed #c0cad5;
}

.caption-list li:first-child {
    padding-top: 0;
}

.caption-list li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.caption-list li .caption {
    width: 30%;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    position: relative;
}

@media (max-width: 480px) {
    .caption-list li .caption {
        width: 35%;
    }
}

.caption-list li .caption::after {
    position: absolute;
    content: ":";
    top: 0;
    right: 0;
}

.caption-list li .value {
    width: 70%;
    padding-left: 0.9375rem;
}

@media (max-width: 480px) {
    .caption-list li .value {
        width: 65%;
    }
}

.caption-list-two {
    padding: 0.625rem 0.9375rem;
    background-color: rgba(247, 124, 90, 0.1);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.caption-list-two li {
    font-family: "Josefin Sans", sans-serif;
    font-weight: 500;
    color: #182c61;
    font-size: 0.875rem;
    padding: 0.5rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px dashed #a1b0c1;
}

.caption-list-two li:first-child {
    padding-top: 0;
}

.caption-list-two li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.caption-list-two li .caption {
    width: 20%;
    position: relative;
    font-weight: 700;
    padding-right: 10px;
}

.caption-list-two li .caption::after {
    position: absolute;
    content: ":";
    top: 0;
    right: 0;
}

.caption-list-two li .value {
    width: 80%;
    padding-left: 20px;
}

body,
.btn--base.btn--custom,
.custom--checkbox label::before,
.header .main-menu li.menu_has_children>a::before,
.header .main-menu li .sub-menu,
.header .main-menu li .sub-menu li a,
.location-slider .location-card,
.location-slider .slick-arrow,
.trip-card,
.trip-slider .slick-dots li button,
.step-card__content,
.post-card,
.post-card__thumb img,
.sidebar .tags a,
.action-sidebar,
.gallery-card::before {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

body::-webkit-scrollbar-thumb,
.preloader .rounded-circle::after,
.find-tabs .nav-item .nav-link.active,
.location-slider .slick-arrow:hover,
.trip-card__price,
.trip-slider .slick-dots li.slick-active button,
.subscribe-form button,
.tour-plan-block .title span,
.package-sidebar-widget .thumb .price,
.single-review .progress .progress-bar {
    background-color: #2A4737;
}

.hero::before {
    background-color: #14233c;
}

.custom--accordion-two .accordion-button:not(.collapsed),
.preloader .icon,
.about-item__icon i,
.overview-item__number,
.inlne-menu li a:hover,
.package-sidebar-list li i,
.contact-item i,
.contact-item p a:hover {
    color: #2A4737;
}

.trip-card__thumb img,
.post-card__thumb img,
.comments-list .single-comment .thumb img,
.gallery-card img,
.single-rating__thumb img,
.contact-thumb img {
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
}

.table-tour-single,
.find-form,
.find-form__destination,
.find-form__duration,
.about-item,
.trip-card__meta li,
.trip-slider .slick-dots,
.subscribe-form,
.d-widget__icon,
.single-package-header,
.package-tab-content .cmn-list,
.package-sidebar-list,
.single-rating {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.location-slider .slick-arrow,
.about-thumb img {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.table-tour-single .thumb,
.table-tour-single .thumb img,
.find-tabs .nav-item .nav-link,
.find-form,
.location-card,
.about-thumb,
.trip-card,
.step-card__content,
.testimonial-card,
.subscribe-form,
.subscribe-form button,
.d-widget,
.sidebar .widget,
.action-sidebar,
.gallery-card,
.tour-map-wrapper,
.tour-plan-block .title span,
.course-details-review,
.single-rating__thumb {
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.object-fit--cover {
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
}

.pagination {
    margin: -0.3125rem -0.4375rem;
    flex-wrap: wrap;
}

.pagination .page-item {
    margin: 0.3125rem 0.4375rem;
}

.pagination .page-item.active .page-link {
    background-color: #f77c5a;
    color: #fff;
}

.pagination .page-item .page-link {
    width: 2.8125rem;
    height: 2.8125rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border: 1px solid rgba(247, 124, 90, 0.25);
    color: #464646;
}

.pagination .page-item .page-link:hover {
    background-color: #f77c5a;
    border-color: #f77c5a;
    color: #fff;
}

.pagination-md .page-item .page-link {
    width: 2.5rem;
    height: 2.5rem;
}

.pagination-sm .page-item .page-link {
    width: 2.1875rem;
    height: 2.1875rem;
    font-size: 0.875rem;
}

.shake {
    animation: shake 0.5s 1 linear;
}

@-webkit-keyframes shake {

    0%,
    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px);
    }
}

@-moz-keyframes shake {

    0%,
    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px);
    }
}

@-ms-keyframes shake {

    0%,
    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px);
    }
}

@keyframes shake {

    0%,
    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@-ms-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

@-moz-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

@-ms-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

@-moz-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

@-ms-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

@-webkit-keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-moz-keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-ms-keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

@-webkit-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-moz-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-ms-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.preloader {
    position: fixed;
    inset: 0;
    z-index: 999;
    height: 100vh;
    overscroll-behavior: contain;
    display: flex;
    justify-content: center;
    align-items: center;
    transition-delay: 0.7s;
}

.preloader::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: #071e3e;
    z-index: -1;
    transition: all 0.5s;
    transition-delay: 0.5s;
}

.preloader::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: #071e3e;
    z-index: -1;
    transition: all 0.5s;
    transition-delay: 0.5s;
}

.preloader.active {
    visibility: hidden;
    opacity: 0;
}

.preloader.active::before,
.preloader.active::after {
    width: 0;
}

.preloader.active .preloader__inner {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.preloader__inner {
    transition: all 0.5s;
}

/* Logo-based preloader styles */
.preloader-logo {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-logo img {
    width: 80px;
    height: auto;
    animation: logoPulse 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(42, 71, 55, 0.5));
}

.preloader-spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spinnerRotate 1s linear infinite;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes spinnerRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Legacy styles - kept for backward compatibility */
.preloader .rounded-circle {
    width: 100px;
    height: 100px;
    position: relative;
    animation: rounded 5s infinite linear;
}

.preloader .rounded-circle::before {
    position: absolute;
    content: "";
    inset: 0;
    width: 100%;
    height: 100%;
    border: 1px dashed rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.preloader .rounded-circle::after {
    position: absolute;
    content: "";
    top: -7px;
    left: 50%;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.preloader .icon {
    line-height: 1;
    font-size: 3.875rem;
    margin-top: -5rem;
    text-shadow: 0 0 10px #2A4737;
}

@-webkit-keyframes rounded {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes rounded {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-ms-keyframes rounded {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rounded {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-poppins);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
}

h1 {
    font-size: 3.875rem;
}

h2 {
    font-size: 2rem;
}

@media (max-width: 991px) {
    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    h2 {
        font-size: 1.85rem;
    }
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.375rem;
    line-height: 1.5;
}

@media (max-width: 767px) {
    h4 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}

h5 {
    font-size: 1.25rem;
    line-height: 1.5;
}

@media (max-width: 767px) {
    h5 {
        font-size: 1.125rem;
    }
}

h6 {
    font-size: 1.125rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Josefin Sans", sans-serif;
    color: #182c61;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    word-break: break-word;
}

h1>a,
h2>a,
h3>a,
h4>a,
h5>a,
h6>a {
    font-family: "Josefin Sans", sans-serif;
    color: #182c61;
    font-weight: 600;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    line-height: 1.4;
    word-break: break-word;
}

p,
li,
span {
    margin: 0;
}

a {
    text-decoration: none;
    display: inline-block;
    font-family: var(--font-poppins);
    font-weight: var(--font-weight-normal);
    color: var(--color-secondary);
}

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

.fs--18px {
    font-size: 1.125rem !important;
}

.fs--16px {
    font-size: 1rem !important;
}

.fs--14px {
    font-size: 0.875rem !important;
}

.fs--12px {
    font-size: 0.75rem !important;
}

.h--font {
    font-family: "Josefin Sans", sans-serif !important;
}

.p--font {
    font-family: "Open Sans", sans-serif !important;
}

.fw-medium {
    font-weight: 500 !important;
}

button:focus {
    outline: none;
}

[class*="btn--"]:not(.btn--link):not(.btn--light) {
    color: #fff;
}

.btn {
    padding: 0.75rem 1.875rem;
}

.btn--primary {
    background-color: #7367f0;
}

.btn--primary:hover {
    background-color: #5e50ee;
}

.btn--secondary {
    background-color: #868e96;
}

.btn--secondary:hover {
    background-color: #78818a;
}

.btn--success {
    background-color: #28c76f;
}

.btn--success:hover {
    background-color: #24b263;
}

.btn--danger {
    background-color: #ea5455;
}

.btn--danger:hover {
    background-color: #e73d3e;
}

.btn--warning {
    background-color: #ff9f43;
}

.btn--warning:hover {
    background-color: #ff922a;
}

.btn--info {
    background-color: #1e9ff2;
}

.btn--info:hover {
    background-color: #0d93e9;
}

.btn--light {
    background-color: #bcc7da;
}

.btn--light:hover {
    background-color: #acb9d1;
}

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

.btn--dark:hover {
    background-color: #0a0e26;
    color: #fff;
}

.btn--link {
    color: #7367f0;
}

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

.btn--base:hover,
.btn--base:active {
    background-color: var(--color-primary);
    color: var(--color-white) !important;
}

.btn--base.btn--custom {
    outline: 2px solid rgba(255, 255, 255, 0.7);
    outline-offset: -6px;
}

.btn--base.btn--custom:hover {
    outline-offset: 0;
    outline: 2px solid rgba(255, 255, 255, 0);
}

.text--btn {
    color: #f77c5a;
}

.btn-outline--primary {
    color: #7367f0;
    border-color: #7367f0;
}

.btn-outline--primary:hover {
    background-color: #7367f0;
    color: #ffffff;
}

.btn-outline--secondary {
    color: #868e96;
    border-color: #868e96;
}

.btn-outline--secondary:hover {
    background-color: #868e96;
    color: #ffffff;
}

.btn-outline--success {
    color: #28c76f;
    border-color: #28c76f;
}

.btn-outline--success:hover {
    background-color: #28c76f;
    color: #ffffff;
}

.btn-outline--danger {
    color: #ea5455;
    border-color: #ea5455;
}

.btn-outline--danger:hover {
    background-color: #ea5455;
    color: #ffffff;
}

.btn-outline--warning {
    color: #ff9f43;
    border-color: #ff9f43;
}

.btn-outline--warning:hover {
    background-color: #ff9f43;
    color: #ffffff;
}

.btn-outline--info {
    color: #1e9ff2;
    border-color: #1e9ff2;
}

.btn-outline--info:hover {
    background-color: #1e9ff2;
    color: #ffffff;
}

.btn-outline--light {
    color: #bcc7da;
    border-color: #bcc7da;
}

.btn-outline--light:hover {
    background-color: #bcc7da;
    color: #ffffff;
}

.btn-outline--dark {
    color: #10163a;
    border-color: #10163a;
}

.btn-outline--dark:hover {
    background-color: #10163a;
    color: #ffffff;
}

.btn-outline--base {
    color: #f77c5a;
    border: 1px solid #f77c5a;
}

.btn-outline--base:hover {
    background-color: #f77c5a;
    color: #fff;
}

.btn-shadow--primary {
    box-shadow: 0 0 6px 1px rgba(115, 103, 240, 0.35);
}

.btn-shadow--secondary {
    box-shadow: 0 0 6px 1px rgba(134, 142, 150, 0.35);
}

.btn-shadow--success {
    box-shadow: 0 0 6px 1px rgba(40, 199, 111, 0.35);
}

.btn-shadow--danger {
    box-shadow: 0 0 6px 1px rgba(234, 84, 85, 0.35);
}

.btn-shadow--warning {
    box-shadow: 0 0 6px 1px rgba(255, 159, 67, 0.35);
}

.btn-shadow--info {
    box-shadow: 0 0 6px 1px rgba(30, 159, 242, 0.35);
}

.btn-shadow--light {
    box-shadow: 0 0 6px 1px rgba(188, 199, 218, 0.35);
}

.btn-shadow--dark {
    box-shadow: 0 0 6px 1px rgba(16, 22, 58, 0.35);
}

.btn-shadow--base {
    box-shadow: 0 0 6px 1px rgba(247, 124, 90, 0.35);
}

.btn--capsule {
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
}

.icon-btn {
    width: 1.5625rem;
    height: 1.5625rem;
    background-color: #f77c5a;
    color: #fff;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.icon-btn:hover {
    color: #fff;
}

.btn--group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    margin-left: -0.625rem;
    margin-right: -0.625rem;
}

.btn--group *[class*="btn"] {
    margin: 0.3125rem 0.625rem;
    align-items: center;
}

.btn--group *[class*="btn"].d-flex {
    padding: 0.5rem 2.1875rem;
}

.btn--group.style--two {
    margin-left: -0.3125rem;
    margin-right: -0.3125rem;
}

.btn--group.style--two *[class*="btn"] {
    margin: 0.1875rem 0.3125rem;
}

[class*="btn"].btn-md {
    padding: 0.625rem 1.25rem;
}

[class*="btn"].btn-sm {
    padding: 0.375rem 0.625rem;
}

.badge--primary {
    background-color: rgba(115, 103, 240, 0.15);
    border: 1px solid #7367f0;
    color: #7367f0;
}

.badge--secondary {
    background-color: rgba(134, 142, 150, 0.15);
    border: 1px solid #868e96;
    color: #868e96;
}

.badge--success {
    background-color: rgba(40, 199, 111, 0.15);
    border: 1px solid #28c76f;
    color: #28c76f;
}

.badge--danger {
    background-color: rgba(234, 84, 85, 0.15);
    border: 1px solid #ea5455;
    color: #ea5455;
}

.badge--warning {
    background-color: rgba(255, 159, 67, 0.15);
    border: 1px solid #ff9f43;
    color: #ff9f43;
}

.badge--info {
    background-color: rgba(30, 159, 242, 0.15);
    border: 1px solid #1e9ff2;
    color: #1e9ff2;
}

.badge--light {
    background-color: rgba(188, 199, 218, 0.15);
    border: 1px solid #bcc7da;
    color: #bcc7da;
}

.badge--dark {
    background-color: rgba(16, 22, 58, 0.15);
    border: 1px solid #10163a;
    color: #10163a;
}

.badge--base {
    background-color: rgba(247, 124, 90, 0.15);
    border: 1px solid #f77c5a;
    color: #f77c5a;
}

.custom--table {
    background-color: #fff;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.custom--table.white-space-nowrap th {
    white-space: nowrap;
}

.custom--table thead {
    background-color: #071e3e;
}

.custom--table thead th {
    border-top: none;
    padding: 0.625rem 1.25rem;
    color: #fff;
    background-color: transparent;
    border: none;
    font-size: 0.8125rem;
    font-weight: 500;
    text-align: center;
}

.custom--table thead th:first-child {
    border-radius: 5px 0 0 5px;
    -webkit-border-radius: 5px 0 0 5px;
    -moz-border-radius: 5px 0 0 5px;
    -ms-border-radius: 5px 0 0 5px;
    -o-border-radius: 5px 0 0 5px;
    text-align: left;
}

.custom--table thead th:last-child {
    border-radius: 0 5px 5px 0;
    -webkit-border-radius: 0 5px 5px 0;
    -moz-border-radius: 0 5px 5px 0;
    -ms-border-radius: 0 5px 5px 0;
    -o-border-radius: 0 5px 5px 0;
    text-align: right;
}

.custom--table tbody td {
    border-top: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    padding: 0.9375rem 1.25rem;
    color: #464646;
    vertical-align: middle;
    font-size: 0.9375rem;
    text-align: center;
}

.custom--table tbody td:first-child {
    text-align: left;
}

.custom--table tbody td:last-child {
    text-align: right;
}

.custom--table tbody tr:nth-child(even) {
    background-color: #afb1b50d;
}

.custom--table tbody tr:last-child td {
    border-bottom: none;
}

.table-tour-single {
    align-items: center;
}

.table-tour-single .thumb {
    width: 65px;
    height: 45px;
    overflow: hidden;
    padding: 3px;
    border: 1px solid #c0cad5;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
}

.table-tour-single .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
}

.table-tour-single .content {
    padding-left: 0.9375rem;
}

[data-label] {
    position: relative;
}

[data-label]::before {
    position: absolute;
    content: attr(data-label);
    font-weight: 700;
    color: #000000;
    top: 0;
    left: 0;
    padding: 0.8125rem 0.9375rem;
    display: none;
    font-size: 0.75rem;
}

@media (max-width: 991px) {
    .table-responsive--md thead {
        display: none;
    }

    .table-responsive--md tbody tr:nth-child(odd) {
        background-color: #fff;
    }

    .table-responsive--md tr th,
    .table-responsive--md tr td {
        display: block;
        padding-left: 45%;
        text-align: right !important;
        border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
    }

    .table-responsive--md tr th:first-child,
    .table-responsive--md tr td:first-child {
        border-top: none !important;
    }

    .table-responsive--md [data-label]::before {
        display: block;
    }
}

@media (max-width: 767px) {
    .table-responsive--sm thead {
        display: none;
    }

    .table-responsive--sm tbody tr:nth-child(odd) {
        background-color: aliceblue;
    }

    .table-responsive--sm tr th,
    .table-responsive--sm tr td {
        display: block;
        padding-left: 45% !important;
        text-align: right !important;
        border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
    }

    .table-responsive--sm tr th:first-child,
    .table-responsive--sm tr td:first-child {
        border-top: none !important;
    }

    .table-responsive--sm [data-label]::before {
        display: block;
    }
}

@media (max-width: 1199px) {

    *[class*="table-responsive--"].data-label--none tr th,
    *[class*="table-responsive--"].data-label--none tr td {
        padding-left: 0.75rem;
    }
}

.form-group {
    margin-bottom: 0.9375rem;
}

.form--control {
    padding: 0.625rem 1.25rem;
    border: 1px solid #f77c5a;
    width: 100%;
    background-color: #fff;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    color: #000;
    height: 3.125rem;
}

.form--control:focus {
    background-color: #fff;
    border-color: #f77c5a !important;
    box-shadow: 0 0 5px rgba(247, 124, 90, 0.35);
    color: #000;
}

.form--control:placeholder-shown {
    border-color: #b1bdcb;
    color: #464646;
}

.form--control[readonly] {
    background-color: #fff;
}

.form--control.style--two {
    border-width: 0 0 1px 0;
    padding: 0.625rem 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    font-family: "Josefin Sans", sans-serif;
    border-bottom-color: #999;
}

.form--control.style--two:focus {
    box-shadow: none;
}

.form--control.form-control-sm {
    height: 35px;
}

.select {
    padding: 0.625rem 1.25rem;
    width: 100%;
    border: 1px solid #b1bdcb;
    cursor: pointer;
    color: #464646;
    background-color: #fff;
    height: 3.125rem;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.select option {
    padding: 0.625rem 0;
    display: block;
    border-top: 1px solid #e5e5e5;
}

.select.style--trans {
    background-color: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.select.style--trans option {
    color: #363636;
}

.select.select-sm {
    height: 2.1875rem;
    font-size: 0.875rem;
    padding: 0.3125rem;
}

textarea {
    min-height: 9.375rem !important;
    resize: none;
    width: 100%;
}

label {
    color: #535353;
    margin-bottom: 0.625rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.input-group>.form--control,
.input-group>.select {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}

.input-group select {
    background-color: transparent;
    border: none;
}

.custom-radio {
    position: relative;
    padding-left: 0;
}

.custom-radio input[type="radio"] {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    cursor: pointer;
}

.custom-radio input[type="radio"]:checked~label::before {
    border-width: 2px;
    border-color: #f77c5a;
}

.custom-radio input[type="radio"]:checked~label::after {
    opacity: 1;
}

.custom-radio label {
    margin-bottom: 0;
    position: relative;
    padding-left: 20px;
    font-size: 0.9375rem;
}

.custom-radio label::before {
    position: absolute;
    content: "";
    top: 1px;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid #888888;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.custom-radio label::after {
    position: absolute;
    content: "";
    top: 5px;
    left: 4px;
    width: 7px;
    height: 7px;
    background-color: #f77c5a;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.custom-radio.style--two label::before {
    top: 5px;
}

.custom-radio.style--two label::after {
    top: 9px;
}

.custom--checkbox {
    padding-left: 1.5625rem;
}

.custom--checkbox input {
    display: none;
}

.custom--checkbox input:checked~label::before {
    content: "\f14a";
    color: #f77c5a;
}

.custom--checkbox label {
    position: relative;
    font-size: 0.9375rem;
    font-weight: 400;
    cursor: pointer;
    margin-bottom: 0;
}

.custom--checkbox label::before {
    position: absolute;
    content: "\f04d";
    font-family: "Line Awesome Free";
    font-weight: 900;
    top: 3px;
    left: -1.5625rem;
    font-size: 1.25rem;
    line-height: 1;
}

.wrong-info .form--control {
    border-color: #ea5455 !important;
    box-shadow: 0 0 6px 1px rgba(234, 84, 85, 0.3) !important;
}

.select2-basic~.select2-container {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: 50px;
}

.select2-container .select2-dropdown {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.select2-container .selection,
.select2-container .select2-selection--single,
.select2-container .select2-selection__rendered {
    display: block;
}

.select2-container .select2-selection--single {
    height: 50px;
    border-color: #b1bdcb;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 38px;
    padding-left: 1.25rem;
}

.select2-container .select2-selection--single .select2-selection__arrow {
    height: 50px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #f77c5a;
}

.select2-dropdown ::-webkit-scrollbar {
    width: 0.5rem;
}

.select2-dropdown ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.select2-dropdown ::-webkit-scrollbar-thumb {
    background-color: #14233c;
}

.custom--card {
    background-color: #fff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.custom--card .card-header {
    background-color: #fff;
    padding: 0.625rem 0.9375rem;
}

.custom--card .card-body {
    padding: 0.9375rem;
}

.modal {
    z-index: 999999;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    background-color: transparent;
    transition: all 0.3s ease;
}

.header.menu-fixed .header__top {
    display: none;
}

.header.menu-fixed {
    top: 0;
}

.header.menu-fixed .header-top {
    display: none;
}


.header__bottom {
    padding: 0.9375rem 0;
}

.header__bottom .container {
    background: rgba(21, 33, 33, 0.24);
    border-radius: 26px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.3px);
    -webkit-backdrop-filter: blur(6.3px);
    padding: 10px 20px;

}

@media (max-width: 1199px) {
    .header__bottom {
        padding: 0.625rem 0;
    }
}

.header .site-logo img {
    max-width: 10.9375rem;
    max-height: 3.75rem;
}

@media (max-width: 1199px) {
    .header .site-logo img {
        max-width: 9.375rem;
    }
}

.header .main-menu {
    margin-left: 4.375rem;
}

@media (max-width: 1199px) {
    .header .main-menu {
        margin-left: 0;
        padding: 0.9375rem 0;
    }
}

.header .main-menu li {
    position: relative;
}

@media (max-width: 1199px) {
    .header .main-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
}

.header .main-menu li:last-child a {
    padding-right: 0;
}

.header .main-menu li.menu_has_children {
    position: relative;
}

.header .main-menu li.menu_has_children.open>.sub-menu {
    display: block;
}

.header .main-menu li.menu_has_children>a {
    padding-right: 1.5625rem;
}

@media (max-width: 1199px) {
    .header .main-menu li.menu_has_children>a {
        display: block;
    }
}

.header .main-menu li.menu_has_children>a::before {
    position: absolute;
    content: "\f078";
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands";
    font-weight: 900;
    top: 15px;
    right: 0;
    color: var(--color-white);
    transition: transform 0.3s ease;
}

@media (max-width: 1199px) {
    .header .main-menu li.menu_has_children>a::before {
        display: block;
        top: 0.5625rem;
        color: #fff;
    }
}

.header .main-menu li.menu_has_children:hover>a::before {
    transform: rotate(180deg);
}

.header .main-menu li a {

    font-weight: 500;

    padding: 0.9375rem 0.9375rem 0.9375rem 0;
    font-size: 0.9375rem;
    color: var(--color-white);
}

@media (max-width: 1199px) {
    .header .main-menu li a {
        color: #fff;
        padding: 0.5rem 0;
        display: block;
    }
}

.header .main-menu li a:hover,
.header .main-menu li a:focus {
    color: #f77c5a;
}

.header .main-menu li .sub-menu {
    position: absolute;
    width: 220px;
    top: 105%;
    left: 0;
    z-index: 9999;
    padding: 0.625rem 0;
    -webkit-box-shadow: 0px 18px 54px -8px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 5px 25px 2px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    opacity: 0;
    visibility: hidden;
}

@media (max-width: 1199px) {
    .header .main-menu li .sub-menu {
        opacity: 1;
        visibility: visible;
        display: none;
        position: static;
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
        width: 100%;
        border: none;
    }
}

.header .main-menu li .sub-menu li {
    border-bottom: 1px dashed #e5e5e5;
}

@media (max-width: 1199px) {
    .header .main-menu li .sub-menu li {
        border-color: rgba(255, 255, 255, 0.15);
    }
}

.header .main-menu li .sub-menu li:last-child {
    border-bottom: none;
}

.header .main-menu li .sub-menu li a {
    padding: 0.5rem 1.5625rem;
    display: block;
    /* color: #464646; */
    position: relative;
    font-size: 0.9375rem;
    text-transform: capitalize;
}

@media (max-width: 1199px) {
    .header .main-menu li .sub-menu li a {
        color: #fff;
    }
}

.header .main-menu li .sub-menu li a:hover {
    background-color: rgba(247, 124, 90, 0.05);
    color: #f77c5a;
}

.header .main-menu li .sub-menu li+li {
    margin-left: 0;
}

.header .main-menu li:hover>.sub-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.header .main-menu li+li {
    margin-left: 1.25rem;
}

@media (max-width: 1199px) {
    .header .main-menu li+li {
        margin-left: 0;
    }
}

.header .main-menu .sub-menu li.menu_has_children>a::before {
    top: 9px;
    right: 8px;
}

.header .main-menu .sub-menu li.menu_has_children>.sub-menu {
    left: 100%;
    top: 0;
}

@media (max-width: 1199px) {
    .header .main-menu .sub-menu li.menu_has_children>.sub-menu {
        padding-left: 15px;
    }
}

.header .nav-right {
    padding-left: 3.125rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
}

@media (max-width: 1199px) {
    .header .nav-right {
        padding-left: 0;
    }
}

.language-select {
    background-color: transparent;
    color: #fff;
    height: 46px;
    padding: 10px;
    border: none;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    padding: 5px 10px;
}

@media (max-width: 1199px) {
    .language-select {
        color: #fff;
    }
}

.language-select option {
    background-color: #14233c;
    color: #fff;
}

/* Simple Bootstrap Navbar Collapse */
@media (max-width: 1199px) {
    .navbar-collapse {
        margin-top: 20px !important;
        background-color: transparent !important;
        padding: 0 1.875rem 1.25rem 1.875rem;
        max-height: none !important;
        overflow: visible !important;
        /* Let Bootstrap handle all collapse transitions */
    }

    /* Remove custom opacity and transform animations */
    .navbar-collapse:not(.show),
    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 767px) {
    .navbar-collapse {
        max-height: none !important;
        overflow: visible !important;
    }
}

/* Enhanced Navbar Toggler */
.navbar-toggler {
    padding: 8px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Navbar toggler hover animation removed */

.navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.navbar-toggler:active {
    transform: scale(0.95);
}

/* Enhanced Menu Toggle with Smooth Hamburger Animation */
.menu-toggle {
    margin: 6px 0;
    position: relative;
    display: block;
    width: 24px;
    height: 18px;
    cursor: pointer;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-toggle span,
.menu-toggle:before,
.menu-toggle:after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    position: absolute;
    left: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-toggle span {
    top: 8px;
}

.menu-toggle:before {
    top: 0;
}

.menu-toggle:after {
    bottom: 0;
}

/* Hamburger to X Animation */
.navbar-toggler[aria-expanded="true"] .menu-toggle span {
    opacity: 0;
    transform: translateX(100%);
}

.navbar-toggler[aria-expanded="true"] .menu-toggle:before {
    transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggler[aria-expanded="true"] .menu-toggle:after {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Pulse Animation for Toggle Button */
/* Pulse animation on hover removed */

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@media (max-width: 1199px) {
    .menu-toggle span,
    .menu-toggle:before,
    .menu-toggle:after {
        background-color: #fff;
    }
}

/* Simple Bootstrap Collapse - No Custom Animations */
@media (max-width: 1199px) {
    /* Let Bootstrap handle all collapse animations */
    .navbar-collapse .main-menu li,
    .navbar-collapse .main-menu li .sub-menu,
    .navbar-collapse .nav-right {
        /* Remove custom animations - use Bootstrap defaults */
        opacity: 1;
        transform: none;
        transition: none;
        animation: none;
    }
}

/* Mobile Menu Item Styling - Box styling removed */
@media (max-width: 1199px) {
    .header .main-menu li {
        margin: 8px 0;
        /* Box styling removed for cleaner appearance */
    }

    /* Mobile menu hover animations removed */

    .header .main-menu li a {
        padding: 12px 0;
        display: block;
        /* Box styling removed for cleaner appearance */
    }

    /* Shimmer effect removed */

    /* Shimmer effect on hover removed */

    .header .main-menu li.menu_has_children .sub-menu {
        margin-top: 10px;
        border-radius: 8px;
        background: rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        overflow: hidden;
        animation: expandMenu 0.4s ease-out;
    }

    .header .main-menu li.menu_has_children .sub-menu li {
        margin: 0;
        background: transparent;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .header .main-menu li.menu_has_children .sub-menu li:last-child {
        border-bottom: none;
    }

    .header .main-menu li.menu_has_children .sub-menu li a {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@keyframes expandMenu {
    from {
        opacity: 0;
        max-height: 0;
        transform: scaleY(0);
    }
    to {
        opacity: 1;
        max-height: 300px;
        transform: scaleY(1);
    }
}

/* Ripple Effect for Menu Items */
.header .main-menu li a {
    position: relative;
    overflow: hidden;
}

/* Ripple effect pseudo-element removed */

/* Ripple effect on hover removed */

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-ms-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.hero {
    padding-top: calc(12.5rem + 66px);
    padding-bottom: 15.625rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 1199px) {
    .hero {
        padding-top: 10rem;
    }
}

.hero::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: -1;
}

.hero__title {
    font-size: 4.125rem;
    font-weight: 700;
}

@media (max-width: 1199px) {
    .hero__title {
        font-size: 3.5rem;
    }
}

@media (max-width: 991px) {
    .hero__title {
        font-size: 3rem;
    }
}

@media (max-width: 575px) {
    .hero__title {
        font-size: 2.25rem;
    }
}

.inner-hero {
    padding-top: calc(9.375rem + 66px);
    padding-bottom: 4.375rem;
    position: relative;
    z-index: 1;
}

.inner-hero::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #14233c;
    opacity: 0.65;
    z-index: -1;
}

.search-area {
    margin-top: -220px;
    position: relative;
    z-index: 1;
}

.find-tabs {
    border-bottom: none;
    justify-content: center;
    margin-bottom: 30px;
}

.find-tabs .nav-item {
    margin: 0 10px;
}

.find-tabs .nav-item .nav-link {
    padding: 0.625rem 1.25rem;
    border: none;
    background-color: rgba(255, 255, 255, 0.25);
    webkit-backdrop-filter: blur(10px);
    color: #fff;
}

.find-tabs .nav-item .nav-link p {
    font-size: 0.875rem;
}

.find-tabs .nav-item .nav-link i {
    font-size: 24px;
    height: 30px;
}

.find-form {
    box-shadow: 0 5px 25px rgba(7, 30, 62, 0.15);
    background-color: #fff;
    padding: 1.25rem 1.875rem;
    align-items: flex-end;
}

.find-form label {
    color: #797979;
}

.find-form .form--control {
    background-color: transparent;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border: none;
    border-bottom: 1px solid #c0cad5;
    padding: 0.625rem 0;
}

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

.find-form .select2-container .select2-selection--single {
    border: none;
    border-bottom: 1px solid #c0cad5;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.find-form .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
    padding-right: 0;
}

.find-form__destination {
    align-items: center;
    width: calc((100% / 2) - (155px / 2));
}

@media (max-width: 1199px) {
    .find-form__destination {
        width: 100%;
    }
}

.find-form__destination .left {
    width: calc((100% / 1.1) - (522px / 2));
}

@media (max-width: 1399px) {
    .find-form__destination .left {
        width: calc((100% / 1.1) - (450px / 2));
    }
}

.find-form__destination .right {
    width: calc((100% / 2) - (84px / 2));
}

@media (max-width: 1199px) {
    .find-form__destination .left {
        width: calc((100% / 2) - (350px / 2));
    }

    .find-form__destination .right {
        width: calc((100% / 2) - (55px / 2));
    }
}

@media (max-width: 991px) {
    .find-form__destination .left {
        width: calc((100% / 2) - (450px / 2));
    }
}

@media (max-width: 460px) {
    .find-form__destination .left {
        width: 100%;
    }
}

.find-form__destination .icon {
    width: 50px;
    text-align: center;
    padding-top: 30px;
}

@media (max-width: 460px) {
    .find-form__destination .icon {
        display: none;
    }
}

.find-form__destination .icon img {
    width: 20px;
}

@media (max-width: 460px) {
    .find-form__destination .right {
        width: 100%;
        margin-top: 20px;
    }
}

.find-form__duration {
    width: calc((100% / 2) - (155px / 2));
    align-items: center;
    padding: 0 1.25rem;
}

@media (max-width: 1199px) {
    .find-form__duration {
        width: 100%;
        margin-top: 20px;
        padding: 0;
    }
}

.find-form__duration .left {
    width: calc((100% / 2) - (50px / 2));
}

@media (max-width: 460px) {
    .find-form__duration .left {
        width: 100%;
    }
}

.find-form__duration .icon {
    width: 50px;
    text-align: center;
    padding-top: 30px;
}

@media (max-width: 460px) {
    .find-form__duration .icon {
        display: none;
    }
}

.find-form__duration .icon img {
    width: 20px;
}

.find-form__duration .right {
    width: calc((100% / 2) - (50px / 2));
}

@media (max-width: 460px) {
    .find-form__duration .right {
        width: 100%;
        margin-top: 20px;
    }
}

.find-form__btn {
    width: 155px;
}

@media (max-width: 1199px) {
    .find-form__btn {
        width: 100%;
        margin-top: 20px;
    }
}

.location-section {
    position: relative;
    z-index: 1;
    background-position-y: top;
    background-position-x: -300px;
}

.location-card {
    position: relative;
    overflow: hidden;
}

.location-card::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ff7e5f;
    background: -webkit-linear-gradient(to top,
            rgba(20, 35, 60, 0.65),
            rgba(20, 35, 60, 0.1));
    background: linear-gradient(to top,
            rgba(20, 35, 60, 0.65),
            rgba(20, 35, 60, 0.1));
}

.location-card .overlay-content {
    position: absolute;
    padding: 1.25rem;
    left: 0;
    bottom: 0;
    width: 100%;
}

.location-card .overlay-content .top,
.location-card .overlay-content .bottom {
    width: 100%;
}

.location-card .ratings i {
    color: #fac42d;
}

.location-card__price {
    font-size: 1rem;
    line-height: 1.1;
}

.location-name {
    display: block;
    margin-bottom: 5px;
}

.location-slider .slick-list {
    margin: 0 -0.625rem;
}

.location-slider .single-slide {
    margin: 0 0.625rem;
}

.location-slider .location-card {
    height: 375px;
}

.location-slider .location-card:hover {
    -webkit-transform: scale(1.03, 1.03);
    -ms-transform: scale(1.03, 1.03);
    transform: scale(1.03, 1.03);
}

.location-slider .location-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
}

.location-slider .slick-arrow {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #fff;
    color: #464646;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.125rem;
    top: 45%;
    z-index: 1;
}

.location-slider .slick-arrow:hover {
    color: #ffff;
}

.location-slider .slick-arrow.prev {
    left: 15px;
}

.location-slider .slick-arrow.next {
    right: 15px;
}

.about-thumb {
    padding: 0.9375rem;
    background-color: #fff;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.about-item__icon {
    width: 40px;
}

.about-item__icon i {
    font-size: 2.25rem;
}

.about-item__content {
    padding-left: 0.9375rem;
    width: calc(100% - 40px);
}

.line-area {
    position: relative;
    margin-top: 100px;
}

@media (max-width: 575px) {
    .line-area {
        margin-top: 50px;
    }
}

.overview-single+.overview-single {
    margin-top: 30px;
}

.overview-single {
    position: relative;
}

.overview-single::after {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    width: 15px;
    height: 15px;
    background-color: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 4px solid #c0cad5;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
    .overview-single::after {
        display: none;
    }
}

.overview-single:nth-child(1)::after {
    top: -35px;
}

.overview-single:nth-child(2) {
    margin-top: -40px;
}

@media (max-width: 1650px) {
    .overview-single:nth-child(2) {
        margin-top: -20px;
    }
}

@media (max-width: 575px) {
    .overview-single:nth-child(2) {
        margin-top: 0;
    }
}

.overview-single:nth-child(2)::after {
    top: -32px;
}

@media (max-width: 1650px) {
    .overview-single:nth-child(2)::after {
        top: -20px;
    }
}

.overview-single:nth-child(3) {
    margin-top: 20px;
}

@media (max-width: 575px) {
    .overview-single:nth-child(3) {
        margin-top: 0;
    }
}

.overview-single:nth-child(3)::after {
    top: -40px;
}

.overview-single:nth-child(4) {
    margin-top: -15px;
}

@media (max-width: 1650px) {
    .overview-single:nth-child(4) {
        margin-top: 0;
    }
}

.overview-single:nth-child(4)::after {
    top: -28px;
}

@media (max-width: 1650px) {
    .overview-single:nth-child(4)::after {
        top: -15px;
    }
}

.overview-item {
    text-align: center;
}

.overview-item__number {
    font-size: 4.5rem;
    line-height: 1;
}

@media (max-width: 991px) {
    .overview-item__number {
        font-size: 3.5rem;
    }
}

@media (max-width: 767px) {
    .overview-item__number {
        font-size: 2.25rem;
    }
}

.overview-item__caption {
    font-weight: 500;
}

@media (max-width: 767px) {
    .overview-item__caption {
        font-size: 0.875rem;
    }
}

.trip-card {
    background-color: #fff;
    padding: 0.75rem;
    box-shadow: 0 5px 15px rgba(7, 30, 62, 0.15);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.trip-card:hover {
    box-shadow: 0 10px 20px rgba(7, 30, 62, 0.25);
}

.trip-card__thumb {
    position: relative;
    height: 250px;
}

.trip-card__thumb img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.trip-card__price {
    position: absolute;
    bottom: -20px;
    right: 20px;
    display: inline-block;
    padding: 0.3125rem 1.5625rem;
    color: #fff;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    box-shadow: 0 5px 15px 2px rgba(247, 124, 90, 0.4);
    font-size: 1rem;
    font-weight: 600;
}

.trip-card__price span {
    font-size: 0.875rem;
    font-weight: 400;
}

.trip-card__content {
    padding: 2.1875rem 0.625rem 0.625rem 0.625rem;
}

.trip-card__meta li+li {
    margin-top: 7px;
}

.trip-card__meta li {
    align-items: center;
    font-size: 0.875rem;
}

.trip-card__meta li i {
    font-size: 1.125rem;
    width: 30px;
    line-height: 1;
}

.trip-card__meta li p {
    width: calc(100% - 30px);
}

.trip-slider .slick-list {
    margin: -1.25rem -0.9375rem;
}

.trip-slider .single-slide {
    padding: 1.25rem 0.9375rem;
}

.trip-slider .slick-dots {
    justify-content: center;
    margin-top: 20px;
}

.trip-slider .slick-dots li {
    margin: 0 5px;
}

.trip-slider .slick-dots li button {
    width: 20px;
    height: 6px;
    font-size: 0;
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
}

.step-card:hover .step-card__content {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    box-shadow: 0 5 20px rgba(0, 0, 0, 0.12);
}

.step-card__number {
    font-size: 3.875rem;
    font-weight: 700;
    text-align: right;
    line-height: 1;
    color: #4d5767;
}

.step-card__content {
    padding: 1.875rem;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: -15px;
    position: relative;
}

.step-card__content .line-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0.1;
}

.step-card__content .line-shape img {
    max-height: 200px;
}

.step-card__content .icon-image {
    max-height: 50px;
}

.testimonial-card {
    padding: 1.875rem;
}

.ratings {
    color: #fac42d;
}

.testimonial-slider .slick-list {
    margin: 0 -0.625rem;
}

.testimonial-slider .single-slide {
    margin: 0 0.625rem;
}

.post-card {
    padding: 0.8125rem;
    background-color: #fff;
    box-shadow: 0 5px 25px rgba(7, 30, 62, 0.075);
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    height: 100%;
}

.post-card:hover {
    box-shadow: 0 10px 35px rgba(7, 30, 62, 0.1);
}

.post-card:hover .post-card__thumb img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.post-card__thumb {
    overflow: hidden;
    height: 200px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.post-card__thumb img {
    width: 100%;
    height: 100%;
}

.post-card__content {
    padding: 1.25rem 0.625rem 0.625rem 0.625rem;
}

.post-card__meta li a {
    font-size: 0.9375rem;
    color: #464646;
}

.post-card__meta li a:hover {
    color: #f77c5a;
}

.blog-details-area .blog-details-thumb {
    margin-bottom: 30px;
}

.blog-details-content .blog-details-title {
    font-size: 2rem;
}

.blog-details-content p {
    margin-top: 20px;
}

.blog-details-content blockquote {
    margin-top: 20px;
    margin-bottom: 25px;
    padding: 30px;
    background-color: #f5f7fa;
}

.blog-details-content blockquote p {
    margin-top: 0;
    font-size: 18px;
    font-style: italic;
}

.blog-details-content .inner-title {
    margin-top: 20px;
}

.blog-details-content .row .inner-title {
    margin-top: 0;
}

.blog-details-content .cmn-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
}

.blog-details-content .cmn-list li {
    width: 50%;
    padding-right: 15px;
}

@media (max-width: 575px) {
    .blog-details-content .cmn-list li {
        width: 100%;
    }
}

.blog-details-content .cmn-list li+li {
    margin-top: 10px;
}

@media (max-width: 991px) {
    .blog-details-content .inner-thumb {
        margin-bottom: 20px;
    }
}

.post-meta {
    display: flex;
    margin: -5px -15px;
}

.post-meta li {
    padding: 5px 15px;
}

.post-meta li a {
    font-size: 0.9375rem;
    color: #464646;
}

.post-meta li a:hover {
    color: #f77c5a;
}

.blog-details-footer {
    margin-top: 40px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
}

.blog-details-footer .share-caption {
    font-weight: 700;

    margin-top: 5px;
}

.blog-details-footer .share-post-links {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    margin: -5px -7px;
}

.blog-details-footer .share-post-links li {
    margin: 5px 7px;
}

.blog-details-footer .share-post-links li a {
    padding: 6px 15px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.blog-details-footer .share-post-links li a.twitter {
    background-color: #55acee;
}

.blog-details-footer .share-post-links li a.facebook {
    background-color: #3b5998;
}

.blog-details-footer .share-post-links li a i {
    margin-right: 7px;
}

.reply-btn {
    padding: 5px 20px;
    background-color: #f77c5a;
    color: #000;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    font-size: 14px;
    float: right;
    margin-top: -30px;
}

.reply-btn:hover {
    color: #ffffff;
}

.comments-area {
    margin-top: 50px;
}

.comments-area .title {
    text-transform: capitalize;
    margin-bottom: 30px;
}

.comments-list .single-comment {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0;
}

.comments-list .single-comment:first-child {
    padding-top: 0;
}

.comments-list .single-comment:last-child {
    padding-bottom: 0;
}

.comments-list .single-comment .thumb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    overflow: hidden;
}

.comments-list .single-comment .thumb img {
    width: 100%;
    height: 100%;
}

.comments-list .single-comment .content {
    flex: 0 0 calc(100% - 80px);
    -ms-flex: 0 0 calc(100% - 80px);
    max-width: calc(100% - 80px);
    padding-left: 20px;
}

@media (max-width: 480px) {
    .comments-list .single-comment .content {
        flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        max-width: 100%;
        padding-left: 0;
        margin-top: 15px;
    }
}

.comments-list .single-comment .content .name {
    text-transform: capitalize;
}

.comments-list .single-comment .content .date {
    font-size: 14px;
}

.comments-list .single-comment .content p {
    margin-top: 5px;
}

.comment-form-area {
    margin-top: 50px;
}

.comment-form-area .title {
    margin-bottom: 30px;
}

.comment-form-area .comment-form .form-group {
    margin-bottom: 30px;
}

.comment-form-area .comment-form .submit-btn {
    text-transform: none;
}

.subscribe-wrapper {
    padding: 5rem 3.125rem;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

@media (max-width: 991px) {
    .subscribe-wrapper {
        padding: 3.125rem 1.875rem;
    }
}

@media (max-width: 575px) {
    .subscribe-wrapper {
        padding: 1.875rem 0.625rem;
    }
}

.subscribe-wrapper::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 30, 62, 0.65);
    z-index: -1;
}

.subscribe-wrapper .paper-plane {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.5;
}

.subscribe-wrapper .paper-plane img {
    max-height: 200px;
}

.subscribe-form {
    padding: 0.9375rem;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
    justify-content: space-between;
}

.subscribe-form .form--control {
    width: calc(100% - 80px);
    background-color: transparent;
    color: #fff;
    border: none;
    padding-left: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.subscribe-form .form--control::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.subscribe-form .form--control::-moz-placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.subscribe-form .form--control:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.subscribe-form .form--control:-moz-placeholder {
    color: rgba(255, 255, 255, 0.8);
}

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

.subscribe-form button {
    width: 60px;
    color: #fff;
    font-size: 1.25rem;
}

.d-widget {
    padding: 1.25rem;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    min-height: 200px;
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.d-widget__content {
    text-align: center;
}

.d-widget.bg-1 {
    background: linear-gradient(115deg, #000 0%, #00c508 55%, #000 100%),
        linear-gradient(115deg, #0057ff 0%, #020077 100%),
        conic-gradient(from 110deg at -5% 35%, #000 0deg, #faff00 360deg),
        conic-gradient(from 220deg at 30% 30%,
            red 0deg,
            blue 220deg,
            #240060 360deg),
        conic-gradient(from 235deg at 60% 35%,
            #0089d7 0deg,
            blue 180deg,
            #240060 360deg);
    background-blend-mode: soft-light, soft-light, overlay, screen, normal;
}

.d-widget.bg-2 {
    background: linear-gradient(45deg, #000850 0%, #000320 100%),
        radial-gradient(100% 225% at 100% 0%, #ff6928 0%, #000 100%),
        linear-gradient(225deg, #ff7a00 0%, #000 100%),
        linear-gradient(135deg,
            #cdffeb 10%,
            #cdffeb 35%,
            #009f9d 35%,
            #009f9d 60%,
            #07456f 60%,
            #07456f 67%,
            #0f0a3c 67%,
            #0f0a3c 100%);
    background-blend-mode: screen, overlay, hard-light, normal;
}

.d-widget.bg-3 {
    background: radial-gradient(100% 225% at 0% 0%, #de3e3e 0%, #17115c 100%),
        radial-gradient(100% 225% at 100% 0%, #ff9040 0%, red 100%),
        linear-gradient(180deg, #ce63b7 0%, #ed6283 100%),
        radial-gradient(100% 120% at 75% 0%, #a74600 0%, #000 100%),
        linear-gradient(310deg, #0063d8 0%, #16009a 50%);
    background-blend-mode: overlay, color-dodge, color-burn, color-dodge, normal;
}

.d-widget.bg-4 {
    background: linear-gradient(123deg, #fff 0%, #00b2ff 100%),
        linear-gradient(236deg, #baff99 0%, #005e64 100%),
        linear-gradient(180deg, #fff 0%, #002a5a 100%),
        linear-gradient(225deg,
            #0094ff 20%,
            #bff4ed 45%,
            #280f34 45%,
            #280f34 70%,
            #ff004e 70%,
            #e41655 85%,
            #b30753 85%,
            #b30753 100%),
        linear-gradient(135deg,
            #0e0220 15%,
            #0e0220 35%,
            #e40475 35%,
            #e40475 60%,
            #48e0e4 60%,
            #48e0e4 68%,
            #d7fbf6 68%,
            #d7fbf6 100%);
    background-blend-mode: overlay, overlay, overlay, darken, normal;
}

.d-widget__icon {
    justify-content: space-between;
    align-items: flex-start;
}

.d-widget__icon i {
    font-size: 2.625rem;
    line-height: 1;
}

.d-widget .view-all {
    font-size: 0.75rem;
    padding: 0.125rem 0.625rem;
    background-color: #fff;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    color: #464646;
}

.d-widget__number {
    justify-content: center;
    font-size: 2rem;
}

.d-widget .caption {
    padding-top: 0.3125rem;
    margin-top: 0.625rem;
    border-top: 1px solid rgba(192, 202, 213, 0.5);
}

.sidebar {
    padding-left: 30px;
}

@media (max-width: 991px) {
    .sidebar {
        padding-left: 0;
        margin-top: 50px;
    }
}

.sidebar .widget+.widget {
    margin-top: 30px;
}

@media (max-width: 767px) {
    .sidebar .widget+.widget {
        margin-top: 30px;
    }
}

.sidebar .widget {
    padding: 20px;
    border: 1px solid #c0cad5;
    background-color: #fff;
}

.sidebar .widget .search-form {
    position: relative;
}

.sidebar .widget .search-form input {
    width: 100%;
}

.sidebar .widget .search-form .search-btn {
    position: absolute;
    color: #f77c5a;
    background-color: transparent;
    top: 0;
    right: 0;
    font-size: 18px;
    color: #464646;
    width: 50px;
    height: 100%;
}

.sidebar .widget .widget__title {
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 25px;
}

.sidebar .widget .widget__title::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 20px;
    height: 2px;
    background-color: #f77c5a;
}

.sidebar .widget .map iframe {
    width: 100%;
}

.sidebar .search--widget {
    padding: 0;
    border: none;
}

.sidebar .list li {
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e5;
}

.sidebar .list li:first-child {
    padding-top: 0;
}

.sidebar .list li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar .list li .caption {
    font-weight: 600;
}

.sidebar .list li .caption::after {
    content: " :";
}

.sidebar .list li .info {
    float: right;
}

.sidebar .categories__list li:first-child a {
    padding-top: 0;
}

.sidebar .categories__list li:last-child a {
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar .categories__list li a {
    display: block;
    color: #464646;
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e5;
}

.sidebar .categories__list li a span {
    float: right;
}

.sidebar .categories__list li a span::before {
    content: "(";
}

.sidebar .categories__list li a span::after {
    content: ")";
}

.sidebar .archive__list li:first-child a {
    padding-top: 0;
}

.sidebar .archive__list li:last-child a {
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar .archive__list li a {
    display: block;
    color: #464646;
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e5;
}

.sidebar .archive__list li a:hover {
    color: #f77c5a;
}

.sidebar .archive__list li a span {
    float: right;
}

.sidebar .archive__list li a span::before {
    content: "(";
}

.sidebar .archive__list li a span::after {
    content: ")";
}

.sidebar .small-post-list .small-post {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
}

.sidebar .small-post-list .small-post:first-child {
    padding-top: 0;
}

.sidebar .small-post-list .small-post:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar .small-post-list .small-post__thumb {
    width: 58px;
}

.sidebar .small-post-list .small-post__content {
    width: calc(100% - 58px);
    padding-left: 20px;
}

.sidebar .small-post-list .small-post__content .post__title a {
    font-size: 16px;
    font-weight: 600;
}

.sidebar .tags {
    margin: -5px -2px;
}

.sidebar .tags a {
    font-size: 16px;
    font-weight: 400;
    color: #464646;
    padding: 8px 20px;
    border: 1px solid #e5e5e5;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    margin: 5px 2px;
    text-transform: capitalize;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.sidebar .tags a:hover {
    background-color: #f77c5a;
    color: #ffffff;
    border-color: #f77c5a;
}

.action-sidebar {
    background-color: #fff;
}

@media (max-width: 991px) {
    .action-sidebar {
        padding: 30px;
        width: 350px;
        position: fixed;
        top: 100px;
        left: -105%;
        z-index: 99999;
        max-width: 100%;
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
        max-height: calc(100vh - 75px);
        overflow: auto;
        scrollbar-width: thin;
        scrollbar-color: darkgrey #e7e7e7;
    }

    .action-sidebar::-webkit-scrollbar {
        width: 5px;
    }

    .action-sidebar::-webkit-scrollbar-track {
        box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    }

    .action-sidebar::-webkit-scrollbar-thumb {
        background-color: darkgrey;
        border-radius: 999px;
        -webkit-border-radius: 999px;
        -moz-border-radius: 999px;
        -ms-border-radius: 999px;
        -o-border-radius: 999px;
    }

    .action-sidebar.active {
        left: 0;
    }
}

.action-widget {
    padding: 20px 0;
    border-bottom: 1px solid #dfe4e9;
}

.action-widget:first-child {
    padding-top: 0;
}

.action-widget:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.action-widget__title {
    font-size: 1rem;
    color: #182c61;
    position: relative;
    padding-right: 20px;
    cursor: pointer;
}

.action-widget__title::after {
    position: absolute;
    content: "\f107";
    font-family: "Line Awesome Free";
    font-weight: 900;
    top: 0;
    right: 0;
    font-size: 0.875rem;
}

.action-widget__body {
    margin-top: 0.9375rem;
}

.action-widget__body.scroll--active {
    max-height: 200px;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: darkgrey #e7e7e7;
}

.action-widget__body.scroll--active::-webkit-scrollbar {
    width: 5px;
}

.action-widget__body.scroll--active::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.action-widget__body.scroll--active::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
}

.search-form-inline {
    position: relative;
}

.search-form-inline input {
    padding-left: 10px;
    padding-right: 30px;
}

.search-form-inline__btn {
    position: absolute;
    top: 50%;
    right: 5px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: transparent;
}

.action-sidebar-close {
    width: 30px;
    height: 30px;
    background-color: #f77c5a;
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    display: none;
}

@media (max-width: 991px) {
    .action-sidebar-close {
        display: inline-block;
    }
}

.action-sidebar-open {
    padding: 0.5rem 1.5625rem;
    background-color: #f77c5a;
    color: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    display: none;
}

@media (max-width: 991px) {
    .action-sidebar-open {
        display: inline-flex;
    }
}

.action-sidebar-open i {
    font-size: 1.375rem;
    margin-right: 5px;
}

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

.property-widget {
    padding: 0.9375rem;
    background-color: #fff;
    border: 2px solid #c0cad5;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.agent {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.agent__thumb {
    width: 70px;
}

.agent__content {
    width: calc(100% - 70px);
    padding-left: 1.25rem;
}

.agent-form .form--control {
    height: 45px;
}

.footer__overview {
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer__top {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

@media (max-width: 575px) {
    .footer__top {
        padding-top: 3.75rem;
        padding-bottom: 3.75rem;
    }
}

.footer__bottom {
    padding: 0.9375rem 0;
    position: relative;
    z-index: 1;
}

.footer__bottom::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #071e3e;
    opacity: 0.45;
    z-index: -1;
}

.footer-logo img {
    max-width: 150px;
    max-height: 70px;
}

.inlne-menu {
    margin: -0.3125rem -0.625rem;
}

.inlne-menu li {
    padding: 0.3125rem 0.625rem;
}

.inlne-menu li a {
    color: #fff;
}

.footer-card {
    max-height: 30px;
}

.single-package-header {
    min-height: 550px;
    position: relative;
    display: flex;
    align-items: flex-end;
    z-index: 1;
    padding-bottom: 2.5rem;
}

@media (max-width: 991px) {
    .single-package-header {
        min-height: 400px;
    }
}

.single-package-header::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #bdc3c7;
    background: -webkit-linear-gradient(to top,
            rgba(7, 30, 62, 0.85),
            rgba(7, 30, 62, 0.45));
    background: linear-gradient(to top,
            rgba(7, 30, 62, 0.85),
            rgba(7, 30, 62, 0.45));
    z-index: -1;
}

.single-package-content .title {
    font-size: 3rem;
}

@media (max-width: 575px) {
    .single-package-content .title {
        font-size: 2.25rem;
    }
}

.gallery-card {
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 250px;
}

.gallery-card:hover::before {
    opacity: 0.65;
}

.gallery-card:hover .view-thumb {
    opacity: 1;
    visibility: visible;
}

.gallery-card::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #071e3e;
    opacity: 0;
}

.gallery-card img {
    width: 100%;
    height: 100%;
}

.gallery-card .view-thumb {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 32px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.package-tab-content .cmn-list {
    margin: -10px -15px -10px 0;
}

.package-tab-content .cmn-list li+li {
    margin-top: 0;
}

.package-tab-content .cmn-list li {
    width: 50%;
    padding: 10px 15px 10px 30px;
}

@media (max-width: 575px) {
    .package-tab-content .cmn-list li {
        width: 100%;
    }
}

.package-tab-content .cmn-list li::before {
    top: 12px;
    font-size: 1.5rem;
}

.tour-map-wrapper {
    padding: 0.9375rem;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.tour-map-wrapper #tour-map {
    width: 100%;
    height: 450px;
}

.tour-plan-block+.tour-plan-block {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #14233c33;
}

.tour-plan-block .title span {
    font-family: "Open Sans", sans-serif;
    font-size: 1.125rem;
    color: #fff;
    font-weight: 500;
    padding: 0.375rem 1.25rem;
    margin-right: 10px;
}

.tour-plan-block__content {
    padding-left: 115px;
}

@media (max-width: 460px) {
    .tour-plan-block__content {
        padding-left: 0;
    }
}

.package-sidebar-widget {
    padding: 0.9375rem;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    background-color: #14233c;
    margin-top: -130px;
    position: sticky;
    z-index: 1;
    top: 120px;
}

@media (max-width: 991px) {
    .package-sidebar-widget {
        margin-top: 20px;
    }
}

.package-sidebar-widget .thumb {
    position: relative;
}

.package-sidebar-widget .thumb .price {
    position: absolute;
    bottom: -20px;
    right: 20px;
    display: inline-block;
    padding: 0.3125rem 1.5625rem;
    color: #fff;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    box-shadow: 0 5px 15px 2px rgba(247, 124, 90, 0.4);
    font-size: 1.25rem;
    font-weight: 600;
}

.package-sidebar-widget .thumb .price span {
    font-size: 0.875rem;
    font-weight: 400;
}

.package-sidebar-widget .thumb img {
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    width: 100%;
}

.package-sidebar-widget .caption-list {
    padding: 0 10px;
}

.package-sidebar-widget .caption-list li {
    border-color: rgba(255, 255, 255, 0.15);
}

.package-sidebar-list {
    padding: 10px 5px;
    background-color: #1a2e4f;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

@media (max-width: 1199px) {
    .package-sidebar-list li+li {
        margin-top: 20px;
    }
}

@media (max-width: 991px) {
    .package-sidebar-list li+li {
        margin-top: 0;
    }
}

@media (max-width: 440px) {
    .package-sidebar-list li+li {
        margin-top: 20px;
    }
}

.package-sidebar-list li {
    width: calc(100% / 3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

@media (max-width: 1199px) {
    .package-sidebar-list li {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .package-sidebar-list li {
        width: calc(100% / 3);
    }
}

@media (max-width: 440px) {
    .package-sidebar-list li {
        width: 100%;
    }
}

.package-sidebar-list li i {
    font-size: 2rem;
    line-height: 1;
}

.package-sidebar-list li span {
    font-size: 0.875rem;
    color: #fff;
    margin-top: 5px;
}

.course-details-review {
    padding: 1.875rem;
    background-color: #fff;
    border: 1px solid #c0cad5;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.course-details-review .rating-area .rating {
    font-family: "Josefin Sans", sans-serif;
    font-size: 3.875rem;
    font-weight: 700;
    line-height: 1;
}

.course-details-review .rating-area .content {
    text-align: right;
}

.single-review {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.single-review .star {
    width: 30px;
}

.single-review .progress {
    width: calc(100% - 80px);
    height: 10px;
}

.single-review .percentage {
    width: 30px;
    text-align: right;
}

.single-rating {
    padding: 1.5625rem 0;
    border-bottom: 1px solid #dfe4e9;
}

.single-rating:first-child {
    padding-top: 0;
}

.single-rating:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.single-rating__thumb {
    width: 75px;
    height: 75px;
    overflow: hidden;
    box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.15);
}

.single-rating__thumb img {
    width: inherit;
    height: inherit;
}

.single-rating__content {
    width: calc(100% - 75px);
    padding-left: 1.5625rem;
}

@media (max-width: 460px) {
    .single-rating__content {
        width: 100%;
        padding-left: 0;
        margin-top: 20px;
    }
}

.account-section {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: flex-end;
    min-height: 100vh;
}

.account-section .left {
    background-color: #14233cc9;
    -webkit-backdrop-filter: blur(10px);
    padding: 100px 50px;
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    order: 1;
}

@media (max-width: 991px) {
    .account-section .left {
        width: 100%;
        order: 2;
    }
}

@media (max-width: 575px) {
    .account-section .left {
        padding: 90px 30px;
    }
}

.account-section .left .account-form-area {
    width: 60%;
}

.account-section .left .account-form-area.register {
    width: 90%;
}

@media (max-width: 1650px) {
    .account-section .left .account-form-area {
        width: 70%;
    }

    .account-section .left .account-form-area.register {
        width: 80%;
    }
}

@media (max-width: 1399px) {
    .account-section .left .account-form-area {
        width: 100%;
    }

    .account-section .left .account-form-area.register {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .account-section .left .account-form-area {
        width: 60%;
    }

    .account-section .left .account-form-area.register {
        width: 90%;
    }
}

@media (max-width: 767px) {
    .account-section .left .account-form-area {
        width: 80%;
    }
}

@media (max-width: 575px) {
    .account-section .left .account-form-area {
        width: 100%;
    }
}

.account-section .account-logo img {
    max-height: 110px;
}

.account-form label {
    color: #fff;
}

.account-form .form--control {
    background-color: #071e3e;
    color: #fff;
}

.account-form .form--control::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.65);
}

.account-form .form--control::-moz-placeholder {
    color: rgba(255, 255, 255, 0.65);
}

.account-form .form--control:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.65);
}

.account-form .form--control:-moz-placeholder {
    color: rgba(255, 255, 255, 0.65);
}

.account-form .form--control:placeholder-shown {
    backdrop-filter: blur(5px);
    background-color: rgb(255 255 255 / 10%);
}

.contact-thumb {
    float: right;
    width: 130%;
    height: 100%;
}

@media (max-width: 1399px) {
    .contact-thumb {
        width: 100%;
        float: none;
    }
}

.contact-thumb img {
    height: 100%;
    width: 100%;
}

.contact-item i {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-item p a {
    color: #464646;
}

.map-area {
    filter: grayscale(100%);
}

.map-area iframe {
    width: 100%;
    height: 500px;
}

@media (max-width: 767px) {
    .map-area iframe {
        height: 400px;
    }
}

.cookie__wrapper {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    background: #071e3e;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 10vh;
    font-size: 18px;
    z-index: 99999;
}

@media only screen and (max-width: 991px) {
    .cookie__wrapper {
        padding: 20px;
    }
}

.cookie__wrapper .txt {
    max-width: 720px;
    margin-right: 20px;
    font-size: 14px;
}

.cookie__wrapper .txt a {
    margin-top: 10px;
}

/* Custom file upload*/
.custom--file-upload~label {
    position: absolute;
    top: 4px;
    left: -1px;
    width: 121px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f77c5a;
    color: #fff;
    border-radius: 5px 0 0 5px;
}

.profile-thumb {
    position: relative;
    width: 11.25rem;
    height: 11.25rem;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    display: inline-flex;
    margin-top: -100px;
}

.profile-thumb .profilePicPreview {
    width: 11.25rem;
    height: 11.25rem;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    display: block;
    border: 3px solid #ffffff;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
    background-size: cover;
    background-position: center;
}

.profile-thumb .profilePicUpload {
    font-size: 0;
    opacity: 0;
}

.profile-thumb .avatar-edit {
    position: absolute;
    right: 35%;
    bottom: -30px;
}

.profile-thumb .avatar-edit input {
    width: 0;
}

.profile-thumb .avatar-edit label {
    width: 45px;
    height: 45px;
    background-color: #f77c5a;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    border: 2px solid #ffffff;
    font-size: 18px;
    cursor: pointer;
    color: #fff;
}

@media screen and (min-width: 1620px) {
    .col--xxl-2 {
        flex: 0 0 calc((100% / 12) * 2);
    }
}

/* profile section css end */
.mw--120 {
    min-width: 120px;
}

.nav-tabs .nav-item .mw--120 {
    margin: 5px 0;
    display: flex;
    align-items: center;
}

.nav-tabs .nav-item .mw--120 i {
    margin: 5px 5px 0 0;
}

.nav-tabs .nav-item .mw--120 p {
    margin: 6px 0;
}

.form-check,
.form-check * {
    cursor: pointer !important;
}

.form-check-input:checked {
    background-color: #f77c5a;
    border-color: #f77c5a;
}

.form-check .left {
    flex-grow: 1;
}

.form-check-label {
    display: block;
}

.form-check-input:checked[type="checkbox"] {
    box-shadow: none !important;
}

.widget--shadow:not(:last-child) {
    margin-bottom: 30px;
}

.widget--shadow {
    box-shadow: 0 5px 15px rgb(7 30 62 / 15%);
    padding: 15px !important;
    border-radius: 5px;
}

.action-widget__title.no-icon::after {
    content: "";
    height: 2px;
    width: 100%;
    max-width: 30px;
    position: relative;
    background: #f77c5a;
    display: block;
    margin-left: 15px;
}

.action-widget__title.no-icon {
    display: flex;
    align-items: center;
}

.tour-plan-img {
    max-height: 450px;
    object-fit: cover;
    border-radius: 5px;
}

.account-form .form--control:placeholder-shown {
    border-color: rgb(255 255 255 / 10%);
}

.account-section {
    background-attachment: fixed;
}

.d-widget__icon i {
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    background: #f5f0fc;
    color: #ff7e5f;
    border-radius: 3px;
}

.d-widget__icon {
    align-items: center;
}

.d-widget .d-widget__icon .view-all {
    background: #f5f0fc;
}

@media screen and (min-width: 992px) {
    .page-title {
        font-size: 3rem;
    }
}

.border-radius-0 .trip-card__thumb .card-img-top {
    border-radius: 0 !important;
}

.contact-item {
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgb(7 30 62 / 15%);
    height: 100%;
    display: flex;
    align-items: center;
}

.contact-item .icon {
    background: #ff7e5f;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item .icon i {
    margin: 0;
    color: #fff !important;
}

.contact-item span,
.contact-item a {
    display: block;
}

.contact-item .cont {
    width: calc(100% - 70px);
    padding-left: 20px;
}

.phone-number {
    display: flex;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.header-top-bar-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: -3px;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
}

.phone-number li,
.social-icons li {
    padding: 3px;
}

.social-icons li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    text-align: center;
    background: #ff7e5f;
    color: #fff;
}

.social-icons li a:hover {
    color: #fff;
    background: #ff7e5f;
}

.phone-number li a {
    color: #fff;
    padding: 0 10px;
}

.phone-number li a i {
    margin-right: 5px;
    color: #ff7e5f;
}

.header-top {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media screen and (max-width: 767px) {

    .phone-number,
    .social-icons {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 1199px) {
    .hero {
        padding-top: calc(9.375rem + 140px);
    }
}

@media screen and (max-width: 500px) {
    .inner-hero {
        padding-top: calc(9.375rem + 140px);
    }

    .hero {
        padding-top: calc(10rem + 130px);
    }
}

@media only screen and (max-width: 991px) {
    .cookie__wrapper {
        padding: 10px;
        font-size: 12px !important;
    }
}

@media only screen and (max-width: 1199px) {
    .location-section .ps-5 {
        padding-left: 10px !important;
    }
}

/* Custom Dropdown Css Start */
@media (max-width: 991px) {
    .header-section .custom--dropdown {
        display: inline-block;
    }
}

.custom--dropdown {
    position: relative;
    width: auto;
    min-width: max-content;
    border-radius: 5px;
    padding-right: 20px;
}

.custom--dropdown:after {
    content: "\f107";
    position: absolute;
    font-weight: 900;
    font-family: "Line Awesome Free";
    top: 50%;
    right: 0;
    transition: auto;
    transform: translateY(-50%);
    transition: 0.3s ease-in-out;
    font-size: 0.875rem;
    color: #fff;
}

.custom--dropdown.open:after {
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

.custom--dropdown>.custom--dropdown__selected {
    cursor: pointer;
    font-size: 0.875rem;
    color: #fff !important;
}

.custom--dropdown>.dropdown-list {
    position: absolute;
    background-color: #fff;
    width: 100%;
    border-radius: 10px;
    -webkit-box-shadow: 0px 12px 24px rgba(21, 18, 51, 0.13);
    box-shadow: 0px 12px 24px rgba(21, 18, 51, 0.13);
    opacity: 0;
    overflow: hidden;
    transition: 0.25s ease-in-out;
    transform: scaleY(0);
    -webkit-transform-origin: top center;
    transform-origin: top center;
    top: 100%;
    margin-top: 10px;
    z-index: -1;
    visibility: hidden;
    max-height: 230px;
    overflow-y: auto !important;
}

.custom--dropdown>.dropdown-list::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.custom--dropdown.open>.dropdown-list {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    visibility: visible;
    z-index: 999 !important;
    background: #fff !important;
}

.dropdown-list>.dropdown-list__item {
    padding: 6px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-size: 0.875rem;
    margin-right: 0 !important;
}

.dropdown-list>.dropdown-list__item:hover {
    background-color: #ff6a00;
    color: #fff !important;
}

.dropdown-list>.dropdown-list__item,
.custom--dropdown>.custom--dropdown__selected {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.dropdown-list>.dropdown-list__item .thumb,
.custom--dropdown>.custom--dropdown__selected .thumb {
    max-width: 30px;
}

.dropdown-list__item .thumb img {
    border-radius: 50%;
    height: 20px;
    width: 20px;
}

.dropdown-list>.dropdown-list__item .text,
.custom--dropdown>.custom--dropdown__selected .text {
    width: calc(100% - 30px);
}

.custom--dropdown__selected.dropdown-list__item .thumb .flag {
    border-radius: 50%;
    height: 20px;
    width: 20px;
}

.forgot-pass {
    font-size: 13px;
}

.rating-stars i {
    display: inline-block;
    font-size: 1em;
    color: gold;
}

.main-menu li a.active {
    color: #f77c5a !important;
}

.cmn-list-excluded li::before,
.d-widget__icon i {
    color: #f7bf5a;
}

.cmn-list-excluded li::before {
    font-family: "Line Awesome Free";
    font-weight: 900;
    content: "\f057" !important;
    color: #ec0a19 !important;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    color: #f77c5a;
}

.blog-details-footer .share-post-links li a.instagram {
    background-color: #ce30b2;
}

.blog-details-footer .share-post-links li a.linkedin {
    background-color: #0077b5;
}

/* plan-seminer-detials-photo-card-rating -start */
.rating-stars ul {
    list-style-type: none;
    padding: 0;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.rating-stars ul>li.star {
    display: inline-block;
}

.rating-stars ul>li.star>i.fa {
    font-size: 2.5em;
    color: #ccc;
}

.rating-stars ul>li.star.hover>i.fa {
    color: #ffcc36;
}

.rating-stars ul>li.star.selected>i.fa {
    color: #ff912c;
}

.gallery-card {
    text-align: center;
}

.gallery-card img {
    width: 400px;
    height: 300px;
    /* border-radius: 10%; */
    object-fit: cover;
}

.iframe {
    width: 100%;
    height: 580px;
}

@media (max-width: 991px) {
    .iframe {
        width: 100%;
        height: inherit;
    }
}

.list-group-item {
    border: 0;
}

.border-b {
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.gallery-card {
    max-width: 450px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.gallery-card__thumb img {
    object-fit: cover;
    object-position: center;
}

iframe.iframe {
    min-height: 300px;
}

.list-group-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    border: 1px solid #f1f1f1;
}

.accordion-button:not(.collapsed) {
    box-shadow: none !important;
}

.gallery-card {
    position: relative;
}

.gallery-card:hover .view-btn {
    opacity: 1;
    visibility: visible;
}

.gallery-card .view-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.364);
    color: #f0e9e9;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: 42px;
    opacity: 0;
    visibility: none;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.thumb i {
    font-size: 22px;
}

.lightcase-icon-prev:before {
    content: "\f104" !important;
    font-family: "Line Awesome Free" !important;
    font-weight: 900 !important;
}

.lightcase-icon-next:before {
    content: "\f105" !important;
    font-family: "Line Awesome Free" !important;
    font-weight: 900 !important;
}

.lightcase-icon-close:before {
    content: "\f00d" !important;
    font-family: "Line Awesome Free" !important;
    font-weight: 900 !important;
}

.lightcase-icon-prev,
.lightcase-icon-next,
.lightcase-icon-close {
    border: 1px solid #ddd;
    font-size: 22px !important;
    width: 50px !important;
    height: 50px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #ffffff0f;
}

.nav-link {
    color: #2e3945;
}

/* plan-seminer-detials-photo-card-rating -end */

.form--control[readonly] {
    background-color: #f9f9f9;
    color: #6c757d;
    border: 1px solid #ced4da;
    cursor: not-allowed;
}

.btn--base:disabled {
    background-color: #d3d3d3;
    color: #6c757d;
    cursor: not-allowed;
    border: 1px solid #ced4da;
    opacity: 0.65;
}

.profile-area {
    padding: 30px;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

@media (max-width: 575px) {
    .profile-area {
        padding: 0;
        background: transparent !important;
        border: none;
    }
}

.user-profile {
    max-width: 350px;
}

@media (max-width: 991px) {
    .user-profile {
        margin: 0 auto 30px;
    }
}

.user-profile img {
    width: 100%;
}

.user-profile .thumb {
    position: relative;
    margin: 0 auto -50px;
    max-width: calc(100% - 30px);
    -webkit-border-radius: 10px 10px 0 0;
    -moz-border-radius: 10px 10px 0 0;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    height: 220px;
}

.user-profile .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-profile .content {
    background: rgba(30, 144, 255, 0.1);
    text-align: center;
    padding: 80px 15px 30px;
    -webkit-border-radius: 30px 30px 0 0;
    -moz-border-radius: 30px 30px 0 0;
    border-radius: 30px 30px 0 0;
}

.user-profile .content .title {
    font-weight: 700;
}

.user-profile .remove-image {
    display: none;
}

.profile-area {
    padding: 30px;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

@media (max-width: 575px) {
    .profile-area {
        padding: 0;
        background: transparent !important;
        border: none;
    }
}

.scroll-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    color: #fff;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    z-index: 5;
    transition: 0.5s;
    cursor: pointer;
    transform: scale(0);
    background-color: #5a70f7;
}

.scroll-top.show {
    transform: scale(1);
    color: #fff;
}

.search-area .find-form .select2-container .select2-selection--single {
    border-radius: 0 !important;
    border-color: #c0cad5 !important;
}

.search-area .nav.nav-tabs :is(.nav-link:hover, .nav-link.active, .nav-link:active) {
    color: #fff !important;
}

.contact-item .cont a {
    color: #464646;
}

.contact-item .cont a:hover {
    color: #f77c5a;
}

.blog-details__share-title {
    margin-bottom: 0;
}

.blog-details__share {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    border-top: 1px solid #fff;
    padding-top: 20px;
}

@media (max-width: 991px) {
    .not-found {
        padding: 15px 20px !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* === 3D Tours Carousel (Scoped) === */

/* 3D Tours Carousel Styles */
.tours-3d-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 50px 0;
}

.tours-3d-carousel {
    position: relative;
    width: 100%;
    height: 450px;
    perspective: 1200px;
    margin: 0 auto;
}

.tours-3d-carousel .carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tours-3d-carousel .carousel-slide {
    position: absolute;
    width: 320px;
    height: 420px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    transform-style: preserve-3d;
}

/* Preserve all existing card styles */
.tours-3d-carousel .tour-card {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tours-3d-carousel .tour-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Active slide positioning */
.tours-3d-carousel .carousel-slide.active {
    transform: translateX(0) translateZ(0) rotateY(0deg) scale(1);
    z-index: 10;
    opacity: 1;
}

/* Previous slide positioning */
.tours-3d-carousel .carousel-slide.prev {
    transform: translateX(-320px) translateZ(-200px) rotateY(25deg) scale(0.8);
    z-index: 5;
    opacity: 0.7;
}

/* Next slide positioning */
.tours-3d-carousel .carousel-slide.next {
    transform: translateX(320px) translateZ(-200px) rotateY(-25deg) scale(0.8);
    z-index: 5;
    opacity: 0.7;
}

/* Far left slide positioning */
.tours-3d-carousel .carousel-slide.far-prev {
    transform: translateX(-480px) translateZ(-400px) rotateY(45deg) scale(0.6);
    z-index: 1;
    opacity: 0.4;
}

/* Far right slide positioning */
.tours-3d-carousel .carousel-slide.far-next {
    transform: translateX(480px) translateZ(-400px) rotateY(-45deg) scale(0.6);
    z-index: 1;
    opacity: 0.4;
}

/* Hidden slides */
.tours-3d-carousel .carousel-slide.hidden {
    opacity: 0;
    transform: translateX(0) translateZ(-600px) scale(0.3);
    z-index: 0;
}

/* Navigation buttons */
.tours-3d-carousel-container .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #2A4737;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    z-index: 20;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tours-3d-carousel-container .carousel-nav:hover {
    background: white;
    color: #2A4737;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.tours-3d-carousel-container .carousel-nav.prev-btn {
    left: 20px;
}

.tours-3d-carousel-container .carousel-nav.next-btn {
    right: 20px;
}

/* Tours 3D Carousel Specific Indicators - Trending Promotions Theme */
.tours-3d-carousel-container .carousel-indicators {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
    justify-content: center;
    align-items: center;
    /* Center indicators horizontally and vertically within container */
    width: fit-content;
    margin: 0 auto;
    margin-top: 30px;
    padding: 0 20px;
}

.tours-3d-carousel-container .carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    flex-shrink: 0;
    min-width: 12px;
    min-height: 12px;
}

.tours-3d-carousel-container .carousel-indicator:hover {
    background: var(--color-secondary);
    transform: scale(1.1);
}

.tours-3d-carousel-container .carousel-indicator.active {
    background: var(--color-secondary);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.tours-3d-carousel-container .carousel-indicator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.tours-3d-carousel-container .carousel-indicator.active::after {
    border-color: rgba(255, 255, 255, 0.3);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .tours-3d-carousel {
        height: 420px;
        perspective: 800px;
    }

    .tours-3d-carousel .carousel-slide {
        width: 320px;
        height: 420px;
    }

    .tours-3d-carousel .carousel-slide.active {
        transform: translateX(0) translateZ(0) rotateY(0deg) scale(1);
    }

    .tours-3d-carousel .carousel-slide.prev {
        transform: translateX(-180px) translateZ(-100px) rotateY(15deg) scale(0.75);
    }

    .tours-3d-carousel .carousel-slide.next {
        transform: translateX(180px) translateZ(-100px) rotateY(-15deg) scale(0.75);
    }

    .tours-3d-carousel .carousel-slide.far-prev,
    .tours-3d-carousel .carousel-slide.far-next {
        opacity: 0;
        transform: translateX(0) translateZ(-300px) scale(0.3);
    }

    .tours-3d-carousel-container .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .tours-3d-carousel-container .carousel-nav.prev-btn {
        left: 10px;
    }

    .tours-3d-carousel-container .carousel-nav.next-btn {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .tours-3d-carousel {
        height: 420px;
        perspective: 600px;
    }

    .tours-3d-carousel .carousel-slide {
        width: 320px;
        height: 420px;
    }

    .tours-3d-carousel .carousel-slide.prev {
        transform: translateX(-140px) translateZ(-80px) rotateY(10deg) scale(0.7);
    }

    .tours-3d-carousel .carousel-slide.next {
        transform: translateX(140px) translateZ(-80px) rotateY(-10deg) scale(0.7);
    }

    .tours-3d-carousel-container .carousel-indicators {
        bottom: -45px;
        gap: 10px;
    }

    .tours-3d-carousel-container .carousel-indicator {
        width: 12px;
        height: 12px;
    }
}

/* Touch interaction improvements */
.tours-3d-carousel {
    touch-action: pan-y;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Prevent interference with other carousels */
.tours-3d-carousel-container .carousel-indicators {
    /* Override any global carousel indicator styles */
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    height: auto !important;
}

.tours-3d-carousel-container .carousel-indicator {
    /* Ensure our indicator styles take precedence */
    opacity: 1 !important;
    text-indent: 0 !important;
    margin: 0 !important;
}

/* Smooth transitions for all states */
.tours-3d-carousel .carousel-slide * {
    transition: none;
}

/* Ensure cards maintain their original styling */
.tours-3d-carousel .card-image {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    border-radius: 20px;
}

.tours-3d-carousel .popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #2A4737;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tours-3d-carousel .card-content {
    width: 100%;
}

.tours-3d-carousel .tour-title {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.tours-3d-carousel .tour-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.tours-3d-carousel .tour-details {
    margin-bottom: 20px;
}

.tours-3d-carousel .tour-duration {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
}

.tours-3d-carousel .days,
.tours-3d-carousel .nights {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 500;
}

.tours-3d-carousel .book-now-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.tours-3d-carousel .book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.tours-3d-carousel .book-now-btn i {
    transition: transform 0.3s ease;
}

.tours-3d-carousel .book-now-btn:hover i {
    transform: translateX(3px);
}




/* Fixed video background only - for tailor-made page */
.hero.video-banner.fixed-hero .video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
}

.hero.video-banner.fixed-hero #banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero.video-banner.fixed-hero .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

/* Hero section with scrollable content */
.hero.video-banner.fixed-hero {
    position: relative;
    height: 100vh;
    background: transparent;
    z-index: 1;
}

.hero.video-banner.fixed-hero .container {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    align-items: center;
}

/* Tailor-made content section styling */
.tailor-made-content {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    min-height: 100vh;
}

.tailor-made-content .content-block {
    margin-bottom: 60px;
}

.tailor-made-content .content-block:last-child {
    margin-bottom: 0;
}

.tailor-made-content h3 {
    color: var(--color-white);
    font-size: 2.5rem !important;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.tailor-made-content p {
    color: #444;
    font-size: 1.25rem !important;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 400;
}

.tailor-made-content .highlight-text {
    color: var(--color-white);
    font-weight: 700;
    font-size: 1.375rem !important;
}

/* Additional content sections styling for scroll effect */
.content-scrollable {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Ensure body allows scroll */
body.fixed-video-page {
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .hero.video-banner.fixed-hero .video-container {
        height: 70vh;
    }

    .hero.video-banner.fixed-hero .overlay {
        height: 70vh;
    }

    .hero.video-banner.fixed-hero {
        height: 70vh;
    }

    .hero.video-banner.fixed-hero .container {
        height: 70vh;
    }

    .tailor-made-content {
        padding: 60px 0;

        min-height: auto;
    }    .tailor-made-content .content-block {
        margin-bottom: 40px;
    }

    .tailor-made-content h3 {
        font-size: 2rem !important;
        margin-bottom: 20px;
    }

    .tailor-made-content p {
        font-size: 1.125rem !important;
        margin-bottom: 16px;
    }

    .tailor-made-content .highlight-text {
        font-size: 1.25rem !important;
    }
}

/* ========================================
   GLASS MORPHISM UTILITY CLASS
======================================== */

/* Glass Morphism Background Utility Class */
.glass-morphism-bg {
    background: rgba(0, 0, 0, 0.315) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
}

/* ========================================
   JOURNAL DETAILS PAGE STYLES
======================================== */

/* Main Container - Using Theme Structure */
.journal-details-section {
    position: relative;
}

.journal-details-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

/* Breadcrumb - Glass Background */
.journal-breadcrumb {
    border-radius: 30px;
    padding: 18px 30px;
    margin-bottom: 30px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.journal-breadcrumb a,
.journal-breadcrumb span {
    color: var(--color-white);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    font-size: 14px;
}

.journal-breadcrumb a:hover {
    color: var(--color-lightblue);
}

/* Main Article Card - Glass Background */
.journal-article-card {
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

/* Article card background removed - now uses glass-morphism-bg class */

.journal-article-image {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.journal-article-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.journal-article-image:hover img {
    transform: scale(1.05);
}

/* Article Meta */
.journal-article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.journal-article-meta > div {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 25px;
    color: var(--color-white);
    font-weight: var(--font-weight-bold);
    font-size: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.journal-article-meta > div:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.journal-meta-item i {
    font-size: 16px;
}

/* Article Content */
.journal-article-content {
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 30px;
}

.journal-article-content p {
    margin-bottom: 20px;
}

.journal-article-content h1,
.journal-article-content h2,
.journal-article-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: var(--font-weight-bold);
}

.journal-article-content li {
}

.journal-article-content strong {
}

/* Share Section */
.journal-share-section {
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.journal-share-title {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: 20px;
}

.journal-social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.journal-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.journal-social-icon.facebook:hover {
    background: #3b5998 !important;
}

.journal-social-icon.twitter:hover {
    background: #1da1f2 !important;
}

.journal-social-icon.linkedin:hover {
    background: #0077b5 !important;
}

.journal-social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
}

.journal-social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Gallery Section */
.journal-gallery {
    margin-top: 30px;
}

.journal-gallery-item {
    border-radius: 15px;
    overflow: hidden;
    padding: 8px;
    transition: all 0.3s ease;
}

.journal-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.journal-gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

/* Sidebar */
.journal-sidebar {
    padding-left: 30px;
}

.journal-sidebar-card {
    border-radius: 25px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

/* Sidebar card background removed - now uses glass-morphism-bg class */

.journal-sidebar-title {
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-lightblue);
}

/* Recent Posts */
.journal-recent-post {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--footer-border-light);
    transition: all 0.3s ease;
}

.journal-recent-post:last-child {
    border-bottom: none;
}

.journal-recent-post:hover {
    border-radius: 10px;
    padding: 15px;
    margin: 0 -15px;
}

.journal-recent-post-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.journal-recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.journal-recent-post-content h6 {
    font-size: 14px;
    font-weight: var(--font-weight-bold);
    line-height: 1.4;
    margin: 0;
}

.journal-recent-post-content a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.journal-recent-post-content a:hover {
    color: var(--color-lightblue);
}

/* Comments Section */
.journal-comments-section {
    border-radius: 25px;
    padding: 35px;
    margin-top: 30px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

/* Comments section background removed - now uses glass-morphism-bg class */

/* Global White Text Override for Glass Cards */
.journal-article-card *:not(i):not(.fab):not(.fas):not(.far):not(.la):not(.las),
.journal-sidebar-card *:not(i):not(.fab):not(.fas):not(.far):not(.la):not(.las),
.journal-share-section *:not(i):not(.fab):not(.fas):not(.far):not(.la):not(.las) {
    color: var(--color-white) !important;
}

.journal-article-card .text-muted,
.journal-sidebar-card .text-muted {
    color: var(--footer-text-muted) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .journal-details-content {
        padding: 40px 0;
    }

    .journal-article-card {
        padding: 25px;
        margin: 0 15px;
    }

    .journal-sidebar {
        padding-left: 0;
        margin-top: 30px;
    }

    .journal-sidebar-card {
        margin: 0 15px 30px;
    }

    .journal-article-meta {
        justify-content: center;
    }
}

/* Journal Category Tags Override */
.journal-sidebar-card .promo-tag {
    position: static;
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: var(--font-weight-medium);
    text-transform: none;
    letter-spacing: normal;
    margin: 4px 4px 4px 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.journal-sidebar-card .promo-tag:hover {
    background: var(--color-lightblue);
    color: var(--color-white);
    transform: translateY(-2px);
    text-decoration: none;
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Breadcrumb */
.contact-breadcrumb {
    padding: 1rem 2rem;
    margin-bottom: 2rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-family: var(--font-poppins);
}

.contact-breadcrumb a {
    color: var(--color-lightblue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-breadcrumb a:hover {
    color: var(--color-secondary);
}

.contact-breadcrumb i {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-breadcrumb span {
    color: var(--color-secondary);
    font-weight: 500;
}

/* Contact Intro Text */
.contact-intro-text {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.7;
    margin-top: 1rem;
}

/* Contact Form Card */
.contact-form-card {
    padding: 2.5rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(25px);
    color: white;
    height: fit-content;
}

.contact-form-header {
    margin-bottom: 2rem;
}

.contact-form-title {
    color: var(--color-white);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: var(--font-poppins);
}

.contact-form-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    font-family: var(--font-poppins);
}

/* Form Styles */
.contact-form .form-label {
    color: white;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-family: var(--font-poppins);

}

.contact-form .required {
    color: var(--color-white);
}

.contact-form .form-control {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 28px;
    padding: 12px 18px;
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: var(--font-poppins);
}

.contact-form .form-control:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 0.2rem rgba(var(--color-secondary-rgb), 0.25);
    background: rgba(255, 255, 255, 0.08);
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Contact Info Card */
.contact-info-card {
    padding: 2rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.contact-info-title {
    color: var(--color-secondary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-poppins);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-info-icon {
    width: 45px;
    height: 45px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info-content h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1rem;
    font-family: var(--font-poppins);
}

.contact-info-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    line-height: 1.5;
    font-family: var(--font-poppins);
}

/* Social Media Card */
.contact-social-card {
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.contact-social-title {
    color: var(--color-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-social-icon {
    width: 45px;
    height: 45px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-social-icon:hover {
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.contact-social-icon.facebook:hover {
    background: #3b5998;
    border-color: #3b5998;
}

.contact-social-icon.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
}

.contact-social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #e6683c;
}

.contact-social-icon.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
}

.contact-social-icon.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
}

/* Quick Links Card */
.contact-links-card {
    padding: 2rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.contact-links-title {
    color: var(--color-secondary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-poppins);
}

.contact-quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-quick-links li {
    margin-bottom: 0.75rem;
}

.contact-quick-links li:last-child {
    margin-bottom: 0;
}

.contact-quick-links a {
    color: var(--color-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-quick-links a {
    font-family: var(--font-poppins);
}



.contact-quick-links a i {
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

/* Map Section */
.contact-map-card {
    padding: 2rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.contact-map-title {
    color: var(--color-secondary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-poppins);
}

.contact-map-container {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.contact-map {
    width: 100%;
    height: 400px;
    border-radius: 28px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-form-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .contact-info-card,
    .contact-social-card,
    .contact-links-card {
        padding: 1.5rem;
    }

    .contact-social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contact-breadcrumb {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .contact-form-card {
        padding: 1.5rem;
    }

    .contact-form-title {
        font-size: 1.5rem;
    }

    .contact-info-card,
    .contact-social-card,
    .contact-links-card,
    .contact-map-card {
        padding: 1.25rem;
    }

    .contact-map {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .contact-intro-text {
        font-size: 1rem;
    }

    .contact-submit-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .contact-social-icons {
        gap: 0.75rem;
    }

    .contact-social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ===== GALLERY PAGE STYLES ===== */

/* Gallery Breadcrumb */
.gallery-breadcrumb {
    padding: 1rem 2rem;
    margin-bottom: 2rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-family: var(--font-poppins);
}

.gallery-breadcrumb a {
    color: var(--color-lightblue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.gallery-breadcrumb a:hover {
    color: var(--color-secondary);
}

.gallery-breadcrumb i {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.gallery-breadcrumb span {
    color: var(--color-secondary);
    font-weight: 500;
}

/* Gallery Intro Text */
.gallery-intro-text {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.7;
    margin-top: 1rem;
}

/* Gallery Filters */
.gallery-filters {
    padding: 1.5rem;
    border-radius: 28px;
    margin-bottom: 2rem;
}

.gallery-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.gallery-filter-btn {
    border-radius: 28px;
    color: white;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-poppins);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
     background: rgba(255, 255, 255, 0.123) !important;
        border-color: rgba(255, 255, 255, 0.5) !important;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2) !important;
        font-weight: 600 !important;
}

.gallery-filter-btn i {
    font-size: 1rem;
}

/* Gallery Grid - True Masonry Layout */
.gallery-grid {
    column-count: 4;
    column-gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    display: inline-block;
    width: 100%;
    opacity: 1;
    transition: all 0.5s ease;
}

.gallery-item.hide {
    opacity: 0;
    transform: scale(0.8);
    margin: 0;
    overflow: hidden;
}

.gallery-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.gallery-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 28px;
    transition: all 0.3s ease;
    object-fit: cover;
}

/* Varied Heights for Masonry Effect */
.gallery-item:nth-child(3n+1) .gallery-image {
    aspect-ratio: 4/5; /* Tall */
}

.gallery-item:nth-child(3n+2) .gallery-image {
    aspect-ratio: 4/3; /* Medium */
}

.gallery-item:nth-child(3n+3) .gallery-image {
    aspect-ratio: 16/9; /* Wide */
}

.gallery-item:nth-child(7n+1) .gallery-image {
    aspect-ratio: 1/1; /* Square */
}

.gallery-item:nth-child(5n+1) .gallery-image {
    aspect-ratio: 3/4; /* Portrait */
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.7) 70%, rgba(0, 0, 0, 0.9) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    border-radius: 28px;
}

.gallery-image-container:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    margin-bottom: 1rem;
}

.gallery-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: var(--font-poppins);
}

.gallery-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 0;
    font-family: var(--font-poppins);
}

.gallery-actions {
    display: flex;
    gap: 0.75rem;
}

.gallery-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: none;
    cursor: pointer;
}

.gallery-action-btn:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: white;
    transform: scale(1.1);
}

/* Gallery Sidebar */
.gallery-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Gallery Stats Card */
.gallery-stats-card {
    padding: 2rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.gallery-sidebar-title {
    color: var(--color-secondary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-poppins);
}

.gallery-stat-item {
    text-align: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-stat-item:last-child {
    border-bottom: none;
}

.gallery-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 0.25rem;
}

.gallery-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Gallery Categories Card */
.gallery-categories-card {
    padding: 2rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.gallery-categories-card .promo-tag {
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-categories-card .promo-tag:hover {
    background: var(--color-secondary);
    color: white;
    transform: translateY(-2px);
}

/* Recent Uploads Card */
.gallery-recent-card {
    padding: 2rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.gallery-recent-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-recent-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.gallery-recent-thumb {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
}

.gallery-recent-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-recent-info h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.gallery-recent-info small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

/* Download Guide Card */
.gallery-guide-card {
    padding: 2rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.gallery-guide-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.gallery-guide-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.gallery-guide-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.gallery-guide-feature i {
    color: var(--color-secondary);
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gallery-grid {
        column-count: 3;
        column-gap: 1.2rem;
    }
}

@media (max-width: 992px) {
    .gallery-grid {
        column-count: 3;
        column-gap: 1rem;
    }

    .gallery-filter-tabs {
        justify-content: flex-start;
    }

    .gallery-sidebar {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .gallery-breadcrumb {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .gallery-filters {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .gallery-filter-tabs {
        gap: 0.6rem;
        justify-content: center;
    }

    .gallery-filter-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
        flex: 0 0 auto;
        min-width: fit-content;
    }

    .gallery-grid {
        column-count: 2;
        column-gap: 1rem;
    }

    .gallery-stats-card,
    .gallery-categories-card,
    .gallery-recent-card,
    .gallery-guide-card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .gallery-filters {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .gallery-filter-tabs {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
        align-items: center;
    }

    .gallery-filter-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
        border-radius: 20px;
        flex: 0 0 auto;
        min-width: fit-content;
        white-space: nowrap;
    }

    .gallery-filter-btn i {
        font-size: 0.9rem;
        margin-right: 0.25rem;
    }

    .gallery-grid {
        column-count: 1;
        column-gap: 0;
    }

    .gallery-overlay {
        padding: 1rem;
    }

    .gallery-title {
        font-size: 1rem;
    }

    .gallery-description {
        font-size: 0.8rem;
    }
}

/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.image-modal-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 90vw;
    max-height: 90vh;
    width: 800px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.image-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.image-modal-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.image-modal-close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
}

.image-modal-close:hover {
    color: var(--color-secondary);
    transform: scale(1.1);
}

.image-modal-body {
    padding: 0;
    text-align: center;
}

.modal-image {
    width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: contain;
    display: block;
}

.image-modal-info {
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.3);
}

.image-modal-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.image-modal-category {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.category-badge {
    padding: 0.5rem 1rem;
    border-radius: 28px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: capitalize;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.image-modal-footer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-action-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.modal-action-btn i {
    font-size: 1.1rem;
}

.image-modal-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.modal-nav-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

.modal-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .image-modal-content {
        width: 95vw;
        max-height: 95vh;
        margin: 1rem;
    }

    .image-modal-header,
    .image-modal-info,
    .image-modal-footer {
        padding: 1rem 1.5rem;
    }

    .image-modal-title {
        font-size: 1.2rem;
    }

    .modal-image {
        max-height: 50vh;
    }

    .image-modal-footer {
        flex-direction: column;
        gap: 0.5rem;
    }

    .modal-action-btn {
        justify-content: center;
        width: 100%;
    }

    .image-modal-navigation {
        padding: 0 1rem;
    }

    .modal-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Social Media Section Styles */
.social-media-section {
    padding: 5rem 0;
}

.social-intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Social Media Slider Styles */
.social-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.social-slider-container {
    overflow: hidden;
    border-radius: 20px;
    padding: 0 60px;
}

.social-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.social-slide {
    min-width: 25%;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Navigation Buttons */
.social-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-prev-btn {
    left: 10px;
}

.social-next-btn {
    right: 10px;
}

.social-slider-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

/* Slider Indicators */
.social-slider-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2rem;
}

.social-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-indicator.active {
    background: white;
    transform: scale(1.2);
}

/* Social Media Screenshots */
.social-screenshot-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.screenshot-wrapper {
    border-radius: 20px;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.screenshot-wrapper:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.social-screenshot {
    width: 100%;
    height: auto;
    max-width: 250px;
    border-radius: 16px;
    display: block;
    transition: all 0.3s ease;
}

.social-screenshot:hover {
    transform: scale(1.02);
}



/* Social Links */
.social-link {
    text-align: center;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 28px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
}

/* Call to Action */
.social-cta {
    padding: 3rem 2rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-quick-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-quick-btn:hover {
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}

.social-quick-btn.facebook {
    background: linear-gradient(135deg, #4267B2, #365899);
}

.social-quick-btn.instagram {
    background: linear-gradient(135deg, #E4405F, #C13584);
}

.social-quick-btn.youtube {
    background: linear-gradient(135deg, #FF0000, #CC0000);
}

.social-quick-btn.tiktok {
    background: linear-gradient(135deg, #000, #fe2c55);
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-slide {
        min-width: 50%;
    }

    .social-slider-container {
        padding: 0 50px;
    }

    .social-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .social-screenshot {
        max-width: 220px;
    }

    .social-cta {
        padding: 2rem 1.5rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .social-buttons {
        flex-wrap: wrap;
        gap: 0.8rem;
    }
}

@media (max-width: 576px) {
    .social-slide {
        min-width: 100%;
    }

    .social-slider-container {
        padding: 0 40px;
    }

    .social-slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .social-prev-btn {
        left: 5px;
    }

    .social-next-btn {
        right: 5px;
    }

    .social-screenshot {
        max-width: 200px;
    }

    .screenshot-wrapper {
        padding: 0.4rem;
    }

    .social-cta {
        padding: 1.5rem 1rem;
    }

    .cta-title {
        font-size: 1.3rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .social-indicator {
        width: 10px;
        height: 10px;
    }
}

/* About Us Page - New Content Sections */
.about-us-section {
    padding: 5rem 0;
}

/* Welcome Section */
.welcome-section {
    padding: 3rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

.welcome-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 3rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.9;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.8rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.feature-description {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.mission-text {
    font-size: 1.2rem;
    font-weight: 500;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.7;
}

/* Owner Testimonial Section */
.owner-testimonial-container {
    padding: 3rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.owner-testimonial-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4F46E5, #7C3AED, #EC4899);
    border-radius: 28px 28px 0 0;
}

.owner-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.2);
    object-fit: cover;
}

.quote-icon {
    font-size: 3rem;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.owner-quote {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2rem;
    padding-left: 2rem;
    border-left: 3px solid rgba(255, 255, 255, 0.3);
}

.owner-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.owner-title {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
}

/* Signature Packages Section */
.packages-section {
    padding: 3rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

.package-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.package-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.package-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.package-icon i {
    font-size: 1.5rem;
}

.package-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.package-description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
}

/* Craft Your Story Section */
.craft-story-section {
    padding: 3rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-title {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
}

/* Responsive Design for About Us Page */
@media (max-width: 992px) {
    .welcome-section,
    .why-choose-section,
    .owner-testimonial-container,
    .packages-section,
    .craft-story-section {
        padding: 2rem;
    }

    .welcome-title {
        font-size: 2rem;
    }

    .feature-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .owner-testimonial-container {
        text-align: center;
    }

    .owner-quote {
        padding-left: 0;
        border-left: none;
        border-top: 3px solid rgba(255, 255, 255, 0.3);
        padding-top: 1rem;
    }
}

@media (max-width: 768px) {
    .welcome-section,
    .why-choose-section,
    .owner-testimonial-container,
    .packages-section,
    .craft-story-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .welcome-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .owner-img {
        width: 120px;
        height: 120px;
    }

    .quote-icon {
        font-size: 2.5rem;
    }

    .owner-quote {
        font-size: 1.1rem;
    }

    .feature-title {
        font-size: 1.2rem;
    }

    .package-name {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .welcome-section,
    .why-choose-section,
    .owner-testimonial-container,
    .packages-section,
    .craft-story-section {
        padding: 1rem;
    }

    .welcome-title {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .feature-icon,
    .package-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon i,
    .package-icon i {
        font-size: 1.5rem;
    }

    .owner-img {
        width: 100px;
        height: 100px;
    }
}

/* =========================================
   TAILOR MADE PAGE STYLES
   ======================================== */

/* Video Background Styles - Enhanced Design */
.tailor-made-video-background {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.tailor-made-video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.background-primary{
    background-color: var(--color-primary);
}
.tailor-made-video-background .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.tailor-made-page-title {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    color: #ffffff;
    display: inline-block;
    margin-bottom: 5px;
}

/* Main Content Container */
.tailor-made-main-content-container {
    position: relative;
    z-index: 1;
}

/* Hero Section Styles */
.tailor-made-hero {
    position: relative;
    padding: 60px 0;
    display: flex;
    align-items: center;
    background-color: var(--color-primary);
    z-index: 2;
}

.tailor-made-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
    color: #ffffff;
    margin: 0;
    padding-bottom: 5px;
}

.tailor-made-scroll-indicator {
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

.tailor-made-scroll-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 65px;
    border-radius: 30px;
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    animation: tailorMadeBounce 2s infinite;
}

.tailor-made-scroll-btn i {
    font-size: 1.5rem;
    font-weight: bold;
}

.tailor-made-scroll-btn:hover {
    color: var(--color-white);
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

@keyframes tailorMadeBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-7px);
    }
}

/* Description Section Styles */
.tailor-made-description {
    position: relative;
    z-index: 3;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.tailor-made-section-heading {
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.tailor-made-description .text-white {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.tailor-made-highlight-text {
    font-weight: 600;
    color: #ffffff;
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255, 107, 107, 0.7);
    border-radius: 4px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.tailor-made-safety-content {
    padding: 20px;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.3);
}

/* Form Section Styles */
.tailor-made-form-section {
    position: relative;
    z-index: 3;
}

.tailor-made-form-container {
    background: rgba(60, 85, 68, 0.12);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.4px);
    -webkit-backdrop-filter: blur(6.4px);
    border: 1px solid rgba(60, 85, 68, 0.3);
    /* Height will adjust to content */
}

.tailor-made-form-heading {
    color: var(--color-white);
    font-weight: 700;
}

.tailor-made-form-section-title {
    font-size: 1.4rem;
    color: var(--color-white);
    font-weight: 600;
    margin-bottom: 20px;
}

.tailor-made-form-label {
    font-weight: 500;
    color: var(--color-white);
}

.tailor-made-form-control,
.tailor-made-form-select {
    border-radius: 4px;
    border: 1px solid #ced4da;
    padding: 10px 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.tailor-made-form-control:focus,
.tailor-made-form-select:focus {
    border-color: #0b3f64;
    box-shadow: 0 0 0 0.25rem rgba(11, 63, 100, 0.25);
}

/* Wizard Form Styles */
.tailor-made-step-progress-container {
    overflow-x: auto;
    padding-bottom: 10px;
}

.tailor-made-step-progress {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
    min-width: 800px; /* Ensure all steps are visible on smaller screens */
}

.tailor-made-step-progress::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    height: 2px;
    background-color: var(--color-white);
    width: 100%;
    z-index: -1;
}

.tailor-made-step-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 10px;
}

.tailor-made-step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: #555;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tailor-made-step-icon {
    width: 60%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.tailor-made-step-number {
    position: absolute;
    font-size: 14px;
    z-index: 2;
    bottom: 3px;
    right: 3px;
    background: rgba(255, 255, 255, 0.7);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.tailor-made-step-label {
    font-size: 0.85rem;
    color: #c9c9c9;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.tailor-made-step-item.active .tailor-made-step-circle {
    background-color: var(--color-secondary);
    color: var(--color-white);
    box-shadow: 0 0 15px rgba(60, 85, 68, 0.4);
}

.tailor-made-step-item.active .tailor-made-step-icon {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1.1);
}

.tailor-made-step-item.active .tailor-made-step-number {
    background: var(--color-white);
    color: var(--color-secondary);
    font-weight: 700;
}

.tailor-made-step-item.active .tailor-made-step-label {
    color: var(--color-white);
    font-weight: 600;
}

.tailor-made-step-item.completed .tailor-made-step-circle {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.tailor-made-step-item.completed .tailor-made-step-icon {
    opacity: 0.8;
}

.tailor-made-step-item.completed .tailor-made-step-number {
    background: var(--color-white);
    color: var(--color-primary);
}

.tailor-made-step-content {
    display: none;
    padding: 20px 0;
    animation: tailorMadeFadeIn 0.5s ease;
    /* Height will adjust to content */
}

.tailor-made-step-content.active {
    display: block;
}

.tailor-made-form-navigation {
    margin-top: 20px;
}

@keyframes tailorMadeFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Effects for Step Circle */
.tailor-made-step-item:hover .tailor-made-step-circle {
    transform: scale(1.05);
}

.tailor-made-step-item:hover .tailor-made-step-icon {
    opacity: 0.85;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .tailor-made-hero-title {
        font-size: 2.5rem;
    }

    .tailor-made-form-section-title {
        font-size: 1.2rem;
    }

    .tailor-made-step-circle {
        width: 45px;
        height: 45px;
    }

    .tailor-made-step-number {
        font-size: 12px;
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 576px) {
    .tailor-made-hero-title {
        font-size: 2rem;
    }

    .tailor-made-step-circle {
        width: 40px;
        height: 40px;
    }

    .tailor-made-step-icon {
        width: 55%;
    }

    .tailor-made-step-number {
        width: 14px;
        height: 14px;
        font-size: 10px;
    }

    .tailor-made-step-label {
        font-size: 0.75rem;
    }
}


/* About Us Section */
.about-us-section {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

/* About Us Main Sections */
.about-us-main-section {
    position: relative;
    z-index: 2;
}

.about-us-content {
    position: relative;
    z-index: 3;
}

/* Welcome Section */
.about-welcome-section-container {
    padding: 40px;
    border-radius: 28px;
    margin-bottom: 2rem;
}

.about-welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Poppins', Arial, sans-serif;
    color: white;
}

.about-welcome-badge i {
    font-size: 18px;
    color: var(--color-secondary);
}

.about-welcome-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', Arial, sans-serif;
}

.about-welcome-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', Arial, sans-serif;
    color: white;
}

/* Info Cards Slider */
.about-info-cards-slider {
    margin-top: 2rem;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.info-cards-wrapper {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.info-cards-wrapper.infinite-scroll {
    overflow-x: visible;
    width: max-content;
    animation: infiniteScroll 40s linear infinite;
    will-change: transform;
}

.info-cards-wrapper.infinite-scroll:hover {
    animation-play-state: paused;
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.info-cards-wrapper::-webkit-scrollbar {
    height: 6px;
}

.info-cards-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.info-cards-wrapper::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.info-cards-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.info-card {
    flex: 0 0 auto;
    min-width: 180px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.info-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.12));
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.info-card-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.info-card-icon i {
    font-size: 22px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.info-card-content {
    flex: 1;
}

.info-card-content h6 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.info-card-content p {
    font-size: 12px;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.2;
}

@media (max-width: 768px) {
    .info-card {
        min-width: 160px;
        padding: 12px 15px;
    }

    .info-card-icon {
        width: 40px;
        height: 40px;
    }

    .info-card-icon i {
        font-size: 20px;
    }

    .info-card-content h6 {
        font-size: 14px;
    }

    .info-card-content p {
        font-size: 11px;
    }
}

.about-welcome-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    width: 100%;
    height: 80%;
}

.about-image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.about-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.about-image-container:hover img {
    transform: scale(1.05);
}

.about-image-overlay {
}

.about-intro-text {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Welcome Section */
.welcome-section {
    margin-bottom: 3rem;
}

.welcome-section-container {
    padding: 3rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
}

.welcome-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.welcome-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* Welcome Image Styles */
.welcome-image-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.welcome-image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.welcome-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.welcome-image-wrapper:hover .welcome-img {
    transform: scale(1.05);
}

.welcome-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.about-image-container:hover .about-image-overlay {
    transform: translateY(0);
}

.about-image-overlay i {
    font-size: 24px;
    color: var(--color-secondary);
}

.about-image-overlay span {
    font-size: 18px;
    font-weight: 600;
    font-family: 'Poppins', Arial, sans-serif;
    color: white;
}

/* Why Choose Us Section - Original */
.about-why-choose-container {
    padding: 50px 40px;
    border-radius: 28px;
}

/* Why Choose Us Section - New Compact Design */
.about-why-choose-new-container {
    padding: 40px 30px;
    border-radius: 24px;
}

.about-feature-compact {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 15px;
}

.about-feature-compact:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-compact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    border-radius: 12px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.welcome-image-wrapper:hover .welcome-image-overlay {
    transform: translateY(0);
}

.overlay-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.overlay-content i {
    font-size: 1.5rem;
    color: var(--color-secondary);
}

.overlay-text {
    font-size: 1rem;
    font-weight: 500;
}

/* Why Choose Us Section */
.why-choose-section {
    margin-bottom: 3rem;
}

.why-choose-container {
    padding: 3rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
}

.section-intro {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.features-grid {
    margin-top: 2rem;
}

.feature-card {
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    height: 100%;
    gap: 1.5rem;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));

    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    transition: all 0.3s ease;
}

.about-feature-compact:hover .feature-compact-icon {
    transform: scale(1.05);
}

.feature-compact-icon i {
    font-size: 1.4rem;
    color: white;
}

.feature-compact-content {
    flex: 1;
}

.feature-compact-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
    font-family: 'Poppins', Arial, sans-serif;
    color: white;
}

.feature-compact-text {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    color: white;
}

/* Mission Statement - Compact */
.about-mission-compact {
    padding: 30px 25px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.mission-compact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mission-compact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.mission-compact-icon i {
    font-size: 1.3rem;
    color: white;
}

.mission-compact-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    font-family: 'Poppins', Arial, sans-serif;
    color: white;
}

.mission-compact-text {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    color: white;
}

.about-feature-card {
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.about-feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.about-feature-card:hover .about-feature-icon {
    transform: scale(1.1);
}

.about-feature-icon i {
    font-size: 2rem;
    color: white;
}

.about-feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
    font-family: 'Poppins', Arial, sans-serif;
}

.about-feature-text {
    font-size: 1rem;
    line-height: 1.6;
    flex: 1;
    font-family: 'Poppins', Arial, sans-serif;
    color: white;
}

/* Mission Statement */
.about-mission-statement {
    padding: 40px 30px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.about-mission-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.about-mission-icon i {
    font-size: 1.5rem;
    color: white;
}

.about-mission-title {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Poppins', Arial, sans-serif;
    color: white;
}

.about-mission-text {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    font-family: 'Poppins', Arial, sans-serif;
    color: white;
}

/* Owner Statement Section - Original */
.about-owner-statement-container {
    padding: 50px 40px;
    border-radius: 28px;
}

/* New Owners Section with Infinity Slider */
.about-owners-container {
    padding: 50px 40px;
    border-radius: 28px;
}

.owners-slider-container {
    position: relative;
    overflow: hidden;
}

.owners-slider {
    position: relative;
    width: 100%;
}

.owner-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    animation-duration: 0.5s;
    animation-fill-mode: both;
}

.owner-slide.active {
    display: block;
    opacity: 1;
    animation-name: slideIn;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* New Owner Photo Styling - Larger Rounded Square */
.owner-photo-new-wrapper {
    position: relative;
}

.owner-photo-new {
    width: 280px;
    height: 280px;
    border-radius: 24px;
    overflow: hidden;
    margin: 0 auto;
    border: 4px solid var(--color-secondary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.owner-photo-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.owner-photo-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.owner-photo-new:hover img {
    transform: scale(1.05);
}

.owner-name-new {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'Poppins', Arial, sans-serif;
    color: white;
}

.owner-position-new {
    font-size: 1.1rem;
    font-weight: 500;
    font-family: 'Poppins', Arial, sans-serif;
    color: white;
}

.owner-testimonial-content {
    position: relative;
    padding-left: 20px;
}

.quote-icon-new {
    position: absolute;
    top: -10px;
    left: -20px;
    width: 60px;
    height: 60px;
    background: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-icon-new i {
    font-size: 1.5rem;
    color: white;
}

.owner-testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    margin-left: 40px;
    font-family: 'Poppins', Arial, sans-serif;
    color: white;
}

.owner-signature {
    margin-left: 40px;
}

.signature-img-new {
    max-width: 150px;
    height: auto;
    filter: invert(1);
}

/* Slider Controls */
.slider-controls {
    margin-top: 30px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--color-secondary);
    transform: scale(1.2);
}

.slider-arrows {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.slider-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.slider-arrow:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    transform: scale(1.1);
}

.about-owner-photo-wrapper {
    position: relative;
}

.about-owner-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 5px solid var(--color-secondary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.about-owner-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-owner-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
    font-family: 'Poppins', Arial, sans-serif;
    color: white;
}

.about-owner-title {
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Poppins', Arial, sans-serif;
    color: white;
}

.about-testimonial-content {
    position: relative;
    padding-left: 20px;
}

.about-quote-icon {
    position: absolute;
    top: -10px;
    left: -20px;
    width: 60px;
    height: 60px;
    background: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-quote-icon i {
    font-size: 1.5rem;
    color: white;
}

.about-testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    margin-left: 40px;
    font-family: 'Poppins', Arial, sans-serif;
    color: white;
}

.about-testimonial-signature {
    margin-left: 40px;
}

.about-signature-img {
    max-width: 150px;
    height: auto;
    filter: invert(1);
}

/* Call to Action Section */
.about-cta-container {
    padding: 50px 40px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.about-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    font-family: 'Poppins', Arial, sans-serif;
}

.about-cta-text {
    font-size: 1.1rem;
    line-height: 1.7;
    font-family: 'Poppins', Arial, sans-serif;
    color: white;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .about-welcome-section-container,
    .about-why-choose-container,
    .about-why-choose-new-container,
    .about-owner-statement-container,
    .about-owners-container,
    .about-cta-container {
        padding: 30px 25px;
    }

    .owner-photo-new {
        width: 220px;
        height: 220px;
        border-radius: 20px;
    }

    .owner-name-new {
        font-size: 1.4rem;
    }

    .owner-position-new {
        font-size: 1rem;
    }

    .about-feature-compact {
        padding: 18px;
        margin-bottom: 12px;
    }

    .feature-compact-icon {
        width: 45px;
        height: 45px;
    }

    .feature-compact-icon i {
        font-size: 1.2rem;
    }

    .feature-compact-title {
        font-size: 1rem;
    }

    .feature-compact-text {
        font-size: 0.85rem;
    }

    .about-mission-compact {
        padding: 25px 20px;
    }

    .about-welcome-title,
    .about-cta-title {
        font-size: 2rem;
    }

    .about-image-container img {
        height: 300px;
    }

    .about-owner-photo {
        width: 150px;
        height: 150px;
    }

    .about-testimonial-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .about-testimonial-text {
        margin-left: 0;
    }

    .about-testimonial-signature {
        margin-left: 0;
    }
}

@media (max-width: 767.98px) {
    .about-us-section {
        padding: 60px 0;
    }

    .about-welcome-section-container,
    .about-why-choose-container,
    .about-why-choose-new-container,
    .about-owner-statement-container,
    .about-owners-container,
    .about-cta-container {
        padding: 25px 20px;
        margin-bottom: 1.5rem;
    }

    .owner-photo-new {
        width: 180px;
        height: 180px;
        border-radius: 16px;
    }

    .owner-testimonial-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .owner-testimonial-text {
        margin-left: 0;
        font-size: 1rem;
    }

    .owner-signature {
        margin-left: 0;
    }

    .quote-icon-new {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 20px;
    }

    .about-feature-compact {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        gap: 12px;
    }

    .feature-compact-icon {
        margin: 0 auto;
    }

    .mission-compact-title {
        font-size: 1.2rem;
    }

    .mission-compact-text {
        font-size: 0.9rem;
    }

    .about-welcome-title {
        font-size: 1.8rem;
    }

    .about-cta-title {
        font-size: 1.6rem;
    }

    .about-feature-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }

    .about-feature-icon {
        width: 60px;
        height: 60px;
    }

    .about-feature-icon i {
        font-size: 1.5rem;
    }

    .about-image-container img {
        height: 250px;
    }

    .about-owner-photo {
        width: 120px;
        height: 120px;
    }

    .about-quote-icon {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 20px;
    }

    .about-welcome-text p,
    .about-testimonial-text {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .about-welcome-title,
    .about-cta-title {
        font-size: 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.mission-statement {
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(8px);
}

.mission-text {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Owner Testimonial Section */
.owner-testimonial-section {
    margin-bottom: 3rem;
}

.owner-testimonial-container {
    padding: 3rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
}

.owner-image-container {
    position: relative;
    display: inline-block;
}

.owner-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.owner-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.owner-badge i {
    font-size: 1.2rem;
    color: var(--color-secondary);
}

.testimonial-content {
    padding-left: 2rem;
}

.quote-icon {
    font-size: 4rem;
    color: var(--color-secondary);
    opacity: 0.7;
    margin-bottom: 1rem;
}

.owner-quote {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2rem;
    padding-left: 2rem;
    border-left: 4px solid var(--color-secondary);
    opacity: 0.95;
}

.owner-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.owner-title {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.signature-img {
    max-width: 150px;
    height: auto;
    opacity: 0.8;
}

/* Packages Section */
.packages-section {
    margin-bottom: 2rem;
}

.packages-container {
    padding: 3rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
}

.package-card {
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
}

.package-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.package-icon i {
    font-size: 2.5rem;
    color: white;
}

.package-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.package-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

/* Responsive Design for About Us Page */
@media (max-width: 992px) {
    .welcome-section-container,
    .why-choose-container,
    .owner-testimonial-container,
    .packages-container {
        padding: 2rem;
    }

    .welcome-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .welcome-image-container {
        margin-top: 2rem;
    }

    .welcome-img {
        height: 250px;
    }

    .testimonial-content {
        padding-left: 0;
        margin-top: 2rem;
    }

    .feature-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .owner-testimonial-container {
        text-align: center;
    }

    .owner-quote {
        padding-left: 0;
        border-left: none;
        border-top: 3px solid var(--color-secondary);
        padding-top: 1rem;
    }
}

@media (max-width: 768px) {
    .welcome-section-container,
    .why-choose-container,
    .owner-testimonial-container,
    .packages-container {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .welcome-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-feature-title {
        font-size: 1.1rem;
    }

    .about-mission-title {
        font-size: 1.3rem;
    }

    .about-welcome-badge {
        font-size: 13px;
        padding: 6px 15px;
    }

    .about-image-container img {
        height: 200px;
    }
    .welcome-image-container {
        text-align: center;
    }

    .welcome-image-wrapper {
        max-width: 300px;
        margin: 0 auto;
    }

    .welcome-img {
        height: 200px;
    }

    .owner-img {
        width: 120px;
        height: 120px;
    }

    .quote-icon {
        font-size: 2.5rem;
    }

    .owner-quote {
        font-size: 1.1rem;
    }

    .feature-title {
        font-size: 1.2rem;
    }

    .package-name {
        font-size: 1.2rem;
    }

    .mission-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .welcome-section-container,
    .why-choose-container,
    .owner-testimonial-container,
    .packages-container {
        padding: 1rem;
    }

    .welcome-title {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .feature-icon,
    .package-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon i,
    .package-icon i {
        font-size: 1.8rem;
    }

    .owner-img {
        width: 100px;
        height: 100px;
    }

    .owner-badge {
        width: 30px;
        height: 30px;
    }

    .owner-badge i {
        font-size: 1rem;
    }
}
