/********** Template CSS **********/
:root {
    --primary: #8B5CF6;
    --secondary: #FF6B35;
    --light: #F5F5F5;
    --dark: #14141F;
    --bs-primary: #8B5CF6;
    --bs-secondary: #FF6B35;
}

/* Custom Cursor Effect */
* {
    cursor: none !important;
}

.custom-cursor {
    position: fixed;
    width: 30px;
    height: 30px;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease,
                width 0.3s ease,
                height 0.3s ease;
    opacity: 1;
    will-change: transform;
}

.custom-cursor i {
    font-size: 30px;
    color: var(--primary);
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.6));
    transition: all 0.3s ease;
    display: block;
}

.custom-cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, opacity 0.2s ease;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.8);
}

.custom-cursor.hover {
    width: 40px;
    height: 40px;
}

.custom-cursor.hover i {
    font-size: 40px;
    color: var(--secondary);
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.8));
    transform: scale(1.2);
}

.custom-cursor.click {
    width: 25px;
    height: 25px;
}

.custom-cursor.click i {
    font-size: 25px;
    color: var(--secondary);
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 1));
    transform: rotate(15deg) scale(0.9);
}

.custom-cursor.hidden {
    opacity: 0;
}

.custom-cursor-dot.hidden {
    opacity: 0;
}

/* Hide cursor on mobile devices */
@media (max-width: 768px) {
    * {
        cursor: auto !important;
    }
    .custom-cursor,
    .custom-cursor-dot {
        display: none !important;
    }
}

/* Toast Notification Styles */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
}

.toast-notification {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    border-left: 4px solid var(--primary);
    border-radius: 12px;
    padding: 20px 25px;
    min-width: 350px;
    max-width: 450px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: slideInRight 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: auto;
    position: relative;
    overflow: hidden;
}

.toast-notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 12px 0 0 12px;
}

.toast-notification.success {
    border-left-color: #28a745;
}

.toast-notification.success::before {
    background: linear-gradient(180deg, #28a745 0%, #20c997 100%);
}

.toast-notification.error {
    border-left-color: #dc3545;
}

.toast-notification.error::before {
    background: linear-gradient(180deg, #dc3545 0%, #e74c3c 100%);
}

.toast-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.toast-notification.success .toast-icon {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.toast-notification.error .toast-icon {
    background: linear-gradient(135deg, #dc3545 0%, #e74c3c 100%);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 5px;
    font-family: 'Nunito', sans-serif;
}

.toast-message {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.toast-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    color: #999;
    font-size: 20px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    padding: 0;
}

.toast-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #333;
    transform: rotate(90deg);
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    animation: toastProgress 5s linear forwards;
    border-radius: 0 0 12px 12px;
}

.toast-notification.success .toast-progress {
    background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
}

.toast-notification.error .toast-progress {
    background: linear-gradient(90deg, #dc3545 0%, #e74c3c 100%);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes toastProgress {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

.toast-notification.hiding {
    animation: slideOutRight 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@media (max-width: 768px) {
    .toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .toast-notification {
        min-width: auto;
        max-width: 100%;
    }
}

/* Bootstrap Color Overrides */
.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-primary:hover {
    background-color: #7C3AED !important;
    border-color: #7C3AED !important;
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.btn-secondary {
    background-color: var(--secondary) !important;
    border-color: var(--secondary) !important;
}

.btn-secondary:hover {
    background-color: #FF5722 !important;
    border-color: #FF5722 !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 110px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: #FFFFFF !important;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-light .navbar-brand .main-logo {
    max-height: 60px;
    transition: .5s;
    object-fit: contain;
}

.navbar-light .navbar-brand .sticky-logo {
    max-height: 60px;
    transition: .5s;
    object-fit: contain;
}

.sticky-top.navbar-light .navbar-brand .main-logo {
    display: none;
}

.sticky-top.navbar-light .navbar-brand .sticky-logo {
    display: block;
}

.logo-img {
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-img.main-logo {
    height: 60px;
    max-width: 200px;
    display: block;
}

.logo-img.sticky-logo {
    height: 60px;
    max-width: 200px;
    display: none;
}

.logo-text {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
}

/* Show sticky logo when navbar becomes sticky */
.sticky-top .logo-img.main-logo,
.sticky-top.navbar-light .navbar-brand .main-logo,
.navbar.sticky-top .logo-img.main-logo,
.navbar.sticky-top .navbar-brand .main-logo {
    display: none !important;
    visibility: hidden !important;
}

.sticky-top .logo-img.sticky-logo,
.sticky-top.navbar-light .navbar-brand .sticky-logo,
.navbar.sticky-top .logo-img.sticky-logo,
.navbar.sticky-top .navbar-brand .sticky-logo {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

@media (max-width: 991.98px) {
    /* Mobile navbar - not sticky initially */
    .navbar-light {
        background: rgba(20, 20, 31, 0.95) !important;
        backdrop-filter: blur(10px);
        z-index: 10000 !important;
        position: relative;
    }

    /* Mobile sticky navbar - becomes fixed when scrolling */
    .sticky-top.navbar-light {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: #FFFFFF !important;
        backdrop-filter: blur(15px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 10000 !important;
    }

    .navbar {
        z-index: 10000 !important;
    }

    /* Ensure logo is visible on mobile */
    .navbar-light .navbar-brand img.main-logo,
    .navbar-light .navbar-brand .logo-img.main-logo {
        display: block !important;
        height: 50px !important;
        max-width: 180px !important;
        object-fit: contain;
    }

    /* Sticky header logo switch on mobile */
    .sticky-top.navbar-light .navbar-brand .main-logo {
        display: none !important;
    }

    .sticky-top.navbar-light .navbar-brand .sticky-logo {
        display: block !important;
        height: 50px !important;
        max-width: 180px !important;
        object-fit: contain;
    }

    .navbar-light .navbar-brand .sticky-logo {
        display: none !important;
    }

    /* Sticky header text colors on mobile - dark text for light background */
    .sticky-top.navbar-light .navbar-nav .nav-link {
        color: var(--dark) !important;
    }

    .sticky-top.navbar-light .navbar-toggler .fa-bars {
        color: var(--dark) !important;
    }

    .sticky-top.navbar-light .navbar-toggler {
        border-color: rgba(0, 0, 0, 0.1);
    }

    /* Ensure navbar container doesn't hide menu */
    .container-fluid.position-relative.p-0 {
        z-index: 1000;
    }

    /* Mobile menu slide from left to right - override Bootstrap collapse */
    .navbar-light .navbar-collapse {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 80% !important;
        max-width: 320px !important;
        height: 100vh !important;
        background: rgba(20, 20, 31, 0.98) !important;
        backdrop-filter: blur(15px);
        box-shadow: 2px 0 15px rgba(0, 0, 0, 0.3);
        z-index: 99999 !important;
        transition: left 0.3s ease-in-out !important;
        padding: 80px 25px 25px !important;
        overflow-y: auto !important;
        margin-top: 0 !important;
        border-top: none !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .navbar-light .navbar-collapse.show,
    .navbar-light .navbar-collapse.collapsing {
        left: 0 !important;
    }

    .navbar-light .navbar-collapse:not(.show) {
        left: -100% !important;
    }

    /* Close button for mobile menu */
    .navbar-light .navbar-collapse::before {
        content: '\f00d';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        position: absolute;
        top: 25px;
        right: 25px;
        font-size: 1.5rem;
        color: #FFFFFF;
        cursor: pointer;
        z-index: 10000;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .navbar-light .navbar-collapse::before:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: rotate(90deg);
    }

    .navbar-light .navbar-nav {
        width: 100% !important;
        margin-top: 20px !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 15px 0 !important;
        margin-left: 0 !important;
        color: #FFFFFF !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        display: block !important;
        width: 100% !important;
        font-weight: 500 !important;
        transition: all 0.3s ease !important;
        font-size: 1rem !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--primary) !important;
        padding-left: 10px !important;
        background: rgba(139, 92, 246, 0.1) !important;
        border-left: 3px solid var(--primary) !important;
    }

    .navbar-light .navbar-nav .nav-link:last-child {
        border-bottom: none !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 50px;
    }

    /* Mobile navbar toggler icon - white color */
    .navbar-light .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.3);
        z-index: 10001;
    }

    .navbar-light .navbar-toggler .fa-bars {
        color: #FFFFFF;
    }

    .navbar-light .navbar-toggler:focus {
        box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
    }

    /* Mobile menu buttons styling */
    .navbar-light .navbar-collapse .btn,
    .navbar-light .navbar-collapse .ms-3 {
        margin-top: 15px !important;
        width: 100% !important;
        text-align: center !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .navbar-light .navbar-collapse .btn-outline-primary {
        border-color: rgba(255, 255, 255, 0.3) !important;
        color: #FFFFFF !important;
        background: transparent !important;
    }

    .navbar-light .navbar-collapse .btn-outline-primary:hover {
        background: var(--primary) !important;
        border-color: var(--primary) !important;
        color: #FFFFFF !important;
    }

    .navbar-light .navbar-collapse .btn-primary {
        background: var(--primary) !important;
        border-color: var(--primary) !important;
        color: #FFFFFF !important;
    }

    .navbar-light .navbar-collapse .dropdown-toggle {
        width: 100% !important;
        text-align: center !important;
        margin-top: 15px !important;
    }

    .navbar-light .navbar-collapse .dropdown-menu {
        background: rgba(20, 20, 31, 0.95) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .navbar-light .navbar-collapse .dropdown-item {
        color: #FFFFFF !important;
    }

    .navbar-light .navbar-collapse .dropdown-item:hover {
        background: rgba(139, 92, 246, 0.2) !important;
        color: var(--primary) !important;
    }

    /* Overlay when menu is open */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .mobile-menu-overlay.show {
        opacity: 1;
        visibility: visible;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}


/*** Hero Header ***/
.hero-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.5) 100%), url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1920&h=600&fit=crop&q=80');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

/*** Upgraded Hero Header ***/
.hero-header-upgraded {
    min-height: 100vh;
    background: center center/cover no-repeat;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

.hero-header-upgraded::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1920&h=1080&fit=crop&q=80') center center/cover no-repeat;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-overlay-upgraded {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content-upgraded {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.hero-header-upgraded .breadcrumb,
.hero-header-upgraded .breadcrumb-item a,
.hero-header-upgraded .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.hero-header-upgraded .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-header-upgraded .breadcrumb-item a:hover {
    color: var(--primary);
    text-decoration: none;
}

.hero-header-upgraded .breadcrumb-item.active {
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
}

.hero-header-upgraded .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: rgba(255, 255, 255, 0.6);
    padding: 0 10px;
}

.hero-title-upgraded {
    font-size: 4.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 25px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
    font-family: 'Nunito', sans-serif;
    line-height: 1.2;
}

.hero-subtitle-upgraded {
    font-size: 1.25rem;
    color: #FFFFFF;
    margin-bottom: 40px;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.4);
    font-weight: 400;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-search-wrapper {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.hero-search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 18px 25px;
    font-size: 1.1rem;
    border-radius: 50px;
    color: #333;
    background: transparent;
}

.hero-search-input::placeholder {
    color: #999;
}

.hero-search-btn {
    background: var(--primary);
    color: #FFFFFF;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hero-search-btn:hover {
    background: #7C3AED;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

@media (max-width: 768px) {
    .hero-header-upgraded {
        min-height: 80vh;
        padding: 100px 0 60px;
    }
    
    .hero-title-upgraded {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-upgraded {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .hero-search-wrapper {
        flex-direction: column;
        border-radius: 15px;
        padding: 10px;
        max-width: 90%;
    }
    
    .hero-search-input {
        width: 100%;
        border-radius: 10px;
        margin-bottom: 10px;
    }
    
    .hero-search-btn {
        width: 100%;
        border-radius: 10px;
        padding: 15px;
    }
}

.hero-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../img/bg-hero.jpg) center center/cover no-repeat;
    z-index: 0;
    opacity: 0.3;
}

.hero-header .container {
    position: relative;
    z-index: 2;
}

.hero-header h1 {
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
    color: #FFFFFF !important;
}

.hero-header .breadcrumb,
.hero-header .breadcrumb-item a,
.hero-header .breadcrumb-item.active {
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
}

.hero-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.95) !important;
    text-decoration: none;
}

.hero-header .breadcrumb-item a:hover {
    color: #FFFFFF !important;
}

.hero-header .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Hero Search Form */
.hero-header .form-control {
    border: none;
    font-size: 1.1rem;
    padding: 15px 20px;
}

.hero-header .form-control:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.3);
}

.hero-header .btn-primary {
    background: var(--primary);
    border: none;
    font-weight: 600;
}

.hero-header .btn-primary:hover {
    background: #7C3AED;
}

/* New Hero Section Design */
.hero-section-new {
    position: relative;
    min-height: 100vh;
    background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2073&q=80') center center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

/* Fallback to local image if Unsplash fails */
.hero-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../img/bg-hero.jpg) center center/cover no-repeat;
    z-index: 0;
    opacity: 0;
}

/* Gradient overlay for better text readability */
.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(20, 20, 31, 0.4) 0%, rgba(30, 30, 50, 0.5) 100%);
    z-index: 1;
}

.hero-content-new {
    position: relative;
    z-index: 2;
    padding: 150px 0 100px;
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-text-content-new {
    max-width: 600px;
}

.hero-title-new {
    font-size: 4.5rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
    font-family: 'Nunito', sans-serif;
}

.hero-subtitle-new {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.8;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
}

.btn-hero-new {
    display: inline-block;
    padding: 18px 45px;
    background: #14141F;
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    font-family: 'Nunito', sans-serif;
    border: 2px solid #14141F;
}

.btn-hero-new:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

/* Feature Blocks at Bottom of Hero */
.hero-features {
    position: relative;
    z-index: 2;
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.feature-block {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-block:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.feature-number {
    font-size: 4rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'Nunito', sans-serif;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
    font-family: 'Nunito', sans-serif;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
}

.feature-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

/* Old hero styles kept for backward compatibility */
.hero-section {
    position: relative;
    min-height: 90vh;
    background: url(../img/bg-hero.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 20, 31, 0.85) 0%, rgba(30, 30, 50, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 100px 0;
    width: 100%;
}

.hero-text-content {
    padding-right: 40px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    font-family: 'Nunito', sans-serif;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 100%;
}

.btn-hero {
    display: inline-block;
    padding: 0;
    background: var(--secondary);
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    font-family: 'Nunito', sans-serif;
    border: none;
    overflow: hidden;
}

.elementor-button-content-wrapper {
    display: flex;
    align-items: center;
    padding: 18px 35px;
    gap: 12px;
}

.elementor-button-icon {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.elementor-button-text {
    display: inline-block;
}

.btn-hero:hover {
    background: #FF5722;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

.btn-hero:hover .elementor-button-icon i {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

/* Tour Packages Section Below Hero */
.tour-packages-section {
    background: #0a0e14;
    padding: 80px 0;
    margin-top: -50px;
    position: relative;
    z-index: 3;
}

.tour-card {
    position: relative;
    background: #FFFFFF;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    cursor: pointer;
    margin-bottom: 20px;
    min-height: 400px;
}

.tour-card:hover {
    transform: translateY(-5px);
}

.tour-card-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-card-image img {
    transform: scale(1.05);
}

.tour-card-content {
    padding: 30px 25px;
    position: relative;
    background: #FFFFFF;
}

.tour-destination {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.tour-divider {
    width: 50px;
    height: 2px;
    background: var(--primary);
    margin: 15px 0;
}

.tour-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #14141F;
    margin-bottom: 15px;
    line-height: 1.4;
    font-family: 'Nunito', sans-serif;
}

.tour-name a {
    color: #14141F;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tour-name a:hover {
    color: var(--primary);
}

.tour-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Nunito', sans-serif;
    margin: 0;
}

/* Section Headers */
.section-header-left {
    text-align: left;
}

.section-prefix {
    font-size: 1rem;
    color: #666;
    text-transform: lowercase;
    margin-bottom: 5px;
    font-weight: 400;
    letter-spacing: 1px;
}

.section-prefix-small {
    font-size: 0.9rem;
    color: #666;
    text-transform: lowercase;
    margin-bottom: 10px;
    font-weight: 400;
    letter-spacing: 1px;
}

.section-title-main {
    font-size: 2.5rem;
    font-weight: 700;
    color: #14141F;
    margin-bottom: 0;
    font-family: 'Nunito', sans-serif;
}

.btn-view-all {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-family: 'Nunito', sans-serif;
}

.btn-view-all:hover {
    background: var(--primary);
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* About Section */
.about-section-custom {
    background: #FFFFFF;
    padding: 100px 0;
}

/* About Image Hover Effect */
.about-image-hover-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-image-hover-wrapper:hover {
    box-shadow: 0 15px 50px rgba(139, 92, 246, 0.3);
    transform: translateY(-5px);
}

.about-image-hover {
    transition: transform 0.5s ease, filter 0.5s ease;
    border-radius: 15px;
}

.about-image-hover-wrapper:hover .about-image-hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0) 0%, rgba(139, 92, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease, background 0.5s ease;
    border-radius: 15px;
    pointer-events: none;
}

.about-image-hover-wrapper:hover .about-image-overlay {
    opacity: 1;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(255, 107, 53, 0.2) 100%);
}

/* About Content Wrapper Hover Effects */
.about-content-wrapper {
    transition: all 0.3s ease;
    position: relative;
    padding: 20px;
    border-radius: 15px;
}

.about-content-wrapper:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.02) 0%, rgba(255, 107, 53, 0.02) 100%);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.1);
}

/* Section Label - No Hover Effect */
.about-section-label {
    position: relative;
}

/* About Title - No Hover Effect */
.about-title {
    position: relative;
}

/* About Description Text Hover Effect */
.about-description-text {
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.about-content-wrapper:hover .about-description-text {
    color: #333;
    padding-left: 10px;
    border-left: 3px solid;
    border-image: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%) 1;
}

/* About Features List Hover Effect */
.about-feature-item {
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.about-feature-item::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    transition: left 0.3s ease;
    z-index: -1;
    border-radius: 8px;
}

.about-feature-item:hover {
    transform: translateX(10px);
    color: var(--primary);
    font-weight: 600;
}

.about-feature-item:hover::before {
    left: 0;
}

.about-feature-item:hover i {
    color: var(--secondary);
    transform: translateX(5px) scale(1.2);
}

.about-feature-item i {
    transition: all 0.3s ease;
    display: inline-block;
}

/* Read More Button Hover Effect */
.about-read-more-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    border: 2px solid var(--primary);
}

.about-read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary) 0%, #FF8C5A 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.about-read-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    border-color: var(--secondary);
    color: #FFFFFF;
}

.about-read-more-btn:hover::before {
    left: 0;
}

.about-read-more-btn i {
    transition: transform 0.3s ease;
}

.about-read-more-btn:hover i {
    transform: translateX(5px);
}

.about-content {
    padding-right: 40px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin: 30px 0;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Reviews Section */
.reviews-section {
    background: #0a0e14;
    padding: 100px 0;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.review-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 20px;
    min-height: 100px;
}

.review-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-stars .far {
    color: rgba(255, 255, 255, 0.3);
}

.review-author {
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    font-family: 'Nunito', sans-serif;
}

/* Popular Destinations Section */
.popular-destinations-section {
    padding: 120px 0;
    background: #FFFFFF;
}

.section-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.section-title-large {
    font-size: 3rem;
    font-weight: 800;
    color: #14141F;
    margin-bottom: 50px;
    font-family: 'Nunito', sans-serif;
}

.destination-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    min-height: 450px;
    transition: all 0.3s ease;
}

.destination-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 450px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.destination-card:hover .destination-overlay {
    background: rgba(0, 0, 0, 0);
}

.destination-card:hover .destination-image img {
    transform: scale(1.05);
}

.destination-content {
    position: absolute;
    bottom: 40px;
    left: 20px;
    right: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.destination-card:hover .destination-content {
    transform: translateY(-20px);
}

.destination-subtitle {
    font-size: 1.1rem;
    color: #FFFFFF;
    margin-bottom: 10px;
    font-weight: 600;
}

.destination-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.destination-link:hover {
    color: var(--secondary);
}

.destination-link i {
    font-size: 1.2rem;
}

/* About Features Section */
.about-features-section {
    padding: 120px 0;
    background: #f8f9fb;
}

.feature-item-box {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.feature-icon-box {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-fallback {
    font-size: 2rem;
    color: var(--primary);
}

.feature-content-box h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #14141F;
    margin-bottom: 15px;
    font-family: 'Nunito', sans-serif;
}

.feature-content-box p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Testimonial Video Section */
.testimonial-video-section {
    padding: 120px 0;
    background: #f8f9fb;
}

.testimonial-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #14141F;
    margin-bottom: 30px;
    line-height: 1.2;
    font-family: 'Nunito', sans-serif;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #14141F;
    margin-bottom: 5px;
    font-family: 'Nunito', sans-serif;
}

.author-info p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.video-thumbnail {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 35px 60px -15px rgba(28, 29, 30, 0.2);
    transition: all 0.3s ease;
}

.video-thumbnail:hover {
    box-shadow: 0px 35px 60px -15px rgba(28, 29, 30, 0.4);
}

.video-thumbnail img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: var(--primary);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    font-size: 1.5rem;
    color: #14141F;
    margin-left: 3px;
}

.play-button:hover i {
    color: #FFFFFF;
}

/* Completed Journeys Section */
.completed-journeys-section {
    padding: 120px 0;
    background: #0a0e14;
}

.completed-journeys-section .section-label {
    color: rgba(255, 255, 255, 0.7);
}

.completed-journeys-section .section-title-large {
    color: #FFFFFF;
}

.journey-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.journey-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.journey-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.journey-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.journey-card:hover .journey-overlay {
    background: rgba(0, 0, 0, 0);
}

.journey-card:hover .journey-image img {
    transform: scale(1.05);
}

.journey-rating {
    padding: 10px 60px;
    display: flex;
    gap: 5px;
    justify-content: center;
}

.journey-rating i {
    font-size: 1.2rem;
    color: var(--secondary);
}

.journey-rating i.far {
    color: #EBEBEB;
}

.journey-content {
    padding: 60px;
}

.journey-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Nunito', sans-serif;
}

.journey-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 700px;
}

.journey-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.journey-link:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.journey-link i {
    transition: transform 0.3s ease;
}

.journey-link:hover i {
    transform: translateX(5px);
}

/* Gallery About Section */
.gallery-about-section {
    padding: 120px 0;
    background: #f8f9fb;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #14141F;
    margin-bottom: 30px;
    line-height: 1.2;
    font-family: 'Nunito', sans-serif;
}

.gallery-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.btn-explore {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: #14141F;
    border: 2px solid #bfc4cc;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.3s ease;
    font-family: 'Nunito', sans-serif;
}

.btn-explore:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
}

/* Final Info Section */
.final-info-section {
    padding: 120px 0;
    background: #FFFFFF;
}

.final-info-section h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #14141F;
    margin-bottom: 20px;
    font-family: 'Nunito', sans-serif;
}

.final-info-section p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* About Page Styles */
.about-content-section {
    padding: 120px 0;
    background: #FFFFFF;
}

.about-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.about-text-content {
    padding-left: 40px;
}

.section-label-about {
    font-size: 0.9rem;
    color: #666;
    text-transform: lowercase;
    margin-bottom: 10px;
    font-weight: 400;
    letter-spacing: 1px;
}

.section-title-about {
    font-size: 2.5rem;
    font-weight: 700;
    color: #14141F;
    margin-bottom: 30px;
    font-family: 'Nunito', sans-serif;
}

.section-title-about.with-lines {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    padding: 20px 30px;
    border-top: 4px solid var(--primary);
    border-bottom: 4px solid var(--primary);
    border-left: 4px solid var(--primary);
    border-right: 4px solid var(--primary);
    margin-bottom: 30px;
}

.about-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features-list {
    margin-top: 30px;
}

.feature-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.feature-list-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

.feature-list-item span {
    font-size: 1rem;
    color: #14141F;
    font-weight: 500;
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.7) 100%), url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.stat-box {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 3rem;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFFFFF;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 10px;
    min-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Mission Vision Section */
.mission-vision-section {
    padding: 120px 0;
    background: #f8f9fb;
}

.mission-box,
.vision-box {
    background: #FFFFFF;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.mission-box:hover,
.vision-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-icon,
.vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, #7C3AED 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.mission-icon i,
.vision-icon i {
    font-size: 2rem;
    color: #FFFFFF;
}

.mission-box h3,
.vision-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #14141F;
    margin-bottom: 20px;
    font-family: 'Nunito', sans-serif;
}

.mission-box p,
.vision-box p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Team Section */
.team-section {
    padding: 120px 0;
    background: #FFFFFF;
}

.team-card {
    text-align: center;
    transition: all 0.3s ease;
}

.team-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
    height: 350px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.9) 0%, rgba(124, 58, 237, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    display: flex;
    gap: 15px;
}

.team-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.team-social a:hover {
    background: #FFFFFF;
    color: var(--primary);
    transform: translateY(-3px);
}

.team-info h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #14141F;
    margin-bottom: 8px;
    font-family: 'Nunito', sans-serif;
}

.team-info p {
    font-size: 1rem;
    color: var(--primary);
    margin: 0;
    font-weight: 500;
}

/* Responsive Design for Hero */
@media (max-width: 992px) {
    .hero-section-new {
        min-height: 90vh;
        background-attachment: scroll;
    }
    
    .hero-title-new {
        font-size: 3.5rem;
    }
    
    .hero-subtitle-new {
        font-size: 1rem;
    }
    
    .hero-content-new {
        padding: 120px 0 80px;
    }
    
    .hero-features {
        padding: 40px 0;
    }
    
    .feature-number {
        font-size: 3rem;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    .hero-overlay-left {
        width: 100%;
        background: linear-gradient(135deg, rgba(20, 20, 31, 0.75) 0%, rgba(30, 30, 50, 0.8) 100%);
    }
    
    .hero-text-content {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .tour-packages-section {
        padding: 60px 0;
    }
    
    .section-title-main {
        font-size: 2rem;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .hero-section-new {
        min-height: 80vh;
    }
    
    .hero-content-new {
        padding: 100px 0 60px;
    }
    
    .hero-title-new {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-new {
        font-size: 0.95rem;
    }
    
    .btn-hero-new {
        padding: 15px 35px;
        font-size: 1rem;
    }
    
    .hero-features {
        padding: 30px 0;
    }
    
    .feature-block {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .feature-number {
        font-size: 2.5rem;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .feature-text {
        font-size: 0.9rem;
    }
    
    .popular-destinations-section,
    .about-features-section,
    .testimonial-video-section,
    .completed-journeys-section,
    .gallery-about-section,
    .final-info-section {
        padding: 80px 0;
    }
    
    .section-title-large {
        font-size: 2rem;
    }
    
    .destination-card {
        min-height: 420px;
    }
    
    .testimonial-content h2,
    .gallery-content h2 {
        font-size: 2rem;
    }
    
    .journey-content {
        padding: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content-section,
    .stats-section,
    .mission-vision-section,
    .team-section {
        padding: 80px 0;
    }
    
    .about-text-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .about-image-wrapper img {
        height: 400px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .mission-box,
    .vision-box {
        padding: 40px 30px;
        margin-bottom: 30px;
    }
    
    .team-image {
        height: 300px;
    }
    
    .hero-section {
        min-height: 70vh;
    }
    
    .hero-overlay-left {
        width: 100%;
    }
    
    .hero-text-content {
        padding: 0 20px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .elementor-button-content-wrapper {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .tour-packages-section {
        padding: 40px 0;
        margin-top: -30px;
    }
    
    .tour-card-image {
        height: 220px;
    }
    
    .tour-card {
        min-height: 350px;
    }
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-item .p-4 {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-item h5 {
    margin-bottom: 15px;
    min-height: 30px;
}

.service-item p {
    flex: 1;
    margin-bottom: 0;
    line-height: 1.6;
}

.service-item:hover {
    background: var(--primary);
    background: #8B5CF6;
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}

/* Service Feature Card */
.service-feature-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.service-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
}

.service-feature-card h5 {
    color: #14141F;
    font-weight: 700;
    transition: all 0.3s ease;
}

.service-feature-card:hover h5 {
    color: var(--primary);
    transform: translateX(5px);
}

.service-feature-card p {
    color: #666;
    transition: all 0.3s ease;
}

.service-feature-card:hover p {
    color: #444;
}

.service-feature-card:hover .service-feature-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

/* Service Feature Icon */
.service-feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #7C3AED 100%);
    border-radius: 50%;
    font-size: 1.5rem;
    color: #FFFFFF;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.service-feature-icon i {
    color: #FFFFFF;
    transition: all 0.3s ease;
}

/* Process Step Icon */
.process-step-icon {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.process-step-icon:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.process-step-icon i {
    font-size: 3rem;
    color: #FFFFFF;
    z-index: 2;
    position: relative;
}

.process-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: 800;
    font-size: 1.2rem;
    border: 4px solid #FFFFFF;
    z-index: 3;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}


/*** Destination ***/
.destination {
    background: #f8f9fb;
}

.destination img {
    transition: .5s;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination a {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.destination a:hover img {
    transform: scale(1.1);
}

.destination .text-danger {
    color: var(--secondary) !important;
}

.destination .text-primary {
    color: var(--primary) !important;
}

/* Packages Section */
.packages-section {
    padding: 100px 0;
    background: #FFFFFF;
}

/* Unified Section Label Style */
.section-label-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
    position: relative;
}

.section-label-wrapper.text-start {
    justify-content: flex-start;
}

.section-label-wrapper.text-center {
    justify-content: center;
}

.section-label-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    position: relative;
}

/* Left side lines */
.section-label-wrapper .section-label-lines:first-child {
    align-items: flex-end;
}

.section-label-wrapper .section-label-lines:first-child .section-label-line:first-child {
    width: 30px;
    margin-left: 10px;
}

.section-label-wrapper .section-label-lines:first-child .section-label-line:last-child {
    width: 40px;
    margin-left: 0;
}

/* Right side lines */
.section-label-wrapper .section-label-lines:last-child {
    align-items: flex-start;
}

.section-label-wrapper .section-label-lines:last-child .section-label-line:first-child {
    width: 30px;
    margin-right: 10px;
}

.section-label-wrapper .section-label-lines:last-child .section-label-line:last-child {
    width: 40px;
    margin-right: 0;
}

.section-label-line {
    height: 2px;
    background: var(--primary);
    display: block;
}

.section-label-text {
    font-size: 1rem;
    font-weight: 800 !important;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Nunito', sans-serif;
    position: relative;
    padding: 0 5px;
}

.packages-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #14141F;
    margin-bottom: 50px;
    font-family: 'Nunito', sans-serif;
}

.package-card {
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.package-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.package-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-card:hover .package-image {
    transform: scale(1.1);
}

.package-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
}

.package-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.package-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

.package-detail-item i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 18px;
    text-align: center;
}

.package-detail-item span {
    color: #333;
    font-weight: 500;
}

.package-price-wrapper {
    margin-bottom: 15px;
}

.package-price-main {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 5px;
}

.package-price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Nunito', sans-serif;
}

.package-price-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: #14141F;
    font-family: 'Nunito', sans-serif;
    line-height: 1;
}

.package-price-label {
    font-size: 0.85rem;
    color: #999;
    font-weight: 500;
    text-transform: lowercase;
}

.package-rating {
    margin-bottom: 18px;
    display: flex;
    gap: 3px;
}

.package-rating i {
    color: var(--primary);
    font-size: 1.1rem;
}

.package-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
    flex: 1;
    min-height: 60px;
}

.package-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #14141F;
    margin-bottom: 15px;
    font-family: 'Nunito', sans-serif;
    transition: color 0.3s ease;
}

.package-card:hover .package-title {
    color: var(--primary);
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--secondary) 0%, #FF5722 100%);
    color: #FFFFFF;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.4);
    z-index: 2;
}

.package-badge i {
    font-size: 0.9rem;
}

.package-search-filter {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.package-search-filter .form-control,
.package-search-filter .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.package-search-filter .form-control:focus,
.package-search-filter .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25);
}

.package-search-filter .input-group-text {
    border: 2px solid var(--primary);
    border-right: none;
    border-radius: 10px 0 0 10px;
}

.package-search-filter .btn-primary {
    border-radius: 10px;
    padding: 12px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.package-search-filter .btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.no-packages-found {
    padding: 60px 20px;
}

.no-packages-found i {
    opacity: 0.5;
}

.package-buttons {
    display: flex;
    gap: 0;
    margin-top: auto;
    padding-top: 10px;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-package-read-more,
.btn-package-book-now {
    flex: 1;
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-package-read-more {
    background: var(--primary);
    color: #FFFFFF;
    border-radius: 50px 0 0 50px;
}

.btn-package-read-more:hover {
    background: #7C3AED;
    color: #FFFFFF;
}

.btn-package-book-now {
    background: var(--secondary);
    color: #FFFFFF;
    border-radius: 0 50px 50px 0;
}

.btn-package-book-now:hover {
    background: #FF5722;
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .packages-section-title {
        font-size: 2rem;
    }
    
    .package-buttons {
        flex-direction: column;
        border-radius: 10px;
    }
    
    .btn-package-read-more {
        border-radius: 10px 10px 0 0;
    }
    
    .btn-package-book-now {
        border-radius: 0 0 10px 10px;
    }
    
    .btn-package-read-more,
    .btn-package-book-now {
        width: 100%;
    }
}

/* Booking Section */
.booking-section {
    position: relative;
    min-height: 600px;
    background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1920&h=800&fit=crop&q=80') center center/cover no-repeat;
    background-attachment: fixed;
    padding: 100px 0;
    display: flex;
    align-items: center;
}

.booking-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.booking-section .container {
    position: relative;
    z-index: 2;
}

.booking-info {
    color: #FFFFFF;
}

.booking-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FFFFFF;
    margin-bottom: 15px;
    opacity: 0.9;
}

.booking-title {
    font-size: 3rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 25px;
    font-family: 'Nunito', sans-serif;
    line-height: 1.2;
}

.booking-text {
    font-size: 1.1rem;
    color: #FFFFFF;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.btn-booking-read-more {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-booking-read-more:hover {
    background: #FFFFFF;
    color: #14141F;
    transform: translateY(-2px);
}

.booking-form-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.booking-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #8B5CF6 0%, #FF6B35 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-form-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 50px rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.5);
}

.booking-form-wrapper:hover::before {
    opacity: 1;
}

.booking-form-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 30px;
    font-family: 'Nunito', sans-serif;
    position: relative;
    padding-bottom: 15px;
}

.booking-form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #8B5CF6 0%, #FF6B35 100%);
    border-radius: 2px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    width: 100%;
    position: relative;
}

.form-control-booking {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
    font-family: 'Nunito', sans-serif;
    position: relative;
}

.form-control-booking::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-control-booking:focus {
    border-color: #8B5CF6;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.2);
    transform: translateY(-2px);
    color: #FFFFFF;
}

.form-control-booking:hover:not(:focus) {
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(255, 255, 255, 0.12);
}

.form-control-booking option {
    background: rgba(20, 20, 31, 0.95);
    color: #FFFFFF;
    padding: 10px;
}

.btn-booking-submit {
    width: 100%;
    padding: 18px 40px;
    border: none;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    font-family: 'Nunito', sans-serif;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-booking-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
    transition: left 0.3s ease;
    z-index: 0;
}

.btn-booking-submit span {
    position: relative;
    z-index: 1;
}

.btn-booking-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-booking-submit:hover::before {
    left: 0;
}

@media (max-width: 991.98px) {
    .booking-section {
        background-attachment: scroll;
        padding: 80px 0;
    }
    
    .booking-title {
        font-size: 2.5rem;
    }
    
    .booking-form-title {
        font-size: 2rem;
    }
    
    .booking-form-wrapper {
        padding: 30px 20px;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .booking-title {
        font-size: 2rem;
    }
    
    .booking-form-title {
        font-size: 1.8rem;
    }
    
    .booking-text {
        font-size: 1rem;
    }
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: #FFFFFF;
}


.process-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #14141F;
    margin-bottom: 50px;
    font-family: 'Nunito', sans-serif;
}

.process-step {
    position: relative;
    text-align: center;
    padding-top: 80px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.process-icon-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.process-step:not(.process-step-last)::after {
    content: '';
    position: absolute;
    top: 50px;
    left: calc(50% + 50px);
    width: calc(100% - 100px);
    height: 2px;
    background: rgba(139, 92, 246, 0.2);
    z-index: 1;
}

@media (max-width: 991.98px) {
    .process-step::after {
        display: none;
    }
}

.process-icon-circle {
    position: relative;
    z-index: 2;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.process-icon-circle i {
    font-size: 2.5rem;
    color: #FFFFFF;
}

.process-step:hover .process-icon-circle {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
    background: var(--secondary);
}

.process-content-box {
    background: #FFFFFF;
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 10px;
    padding: 30px 25px;
    min-height: 200px;
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.process-step:hover .process-content-box {
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.1);
}

.process-step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #14141F;
    margin-bottom: 15px;
    font-family: 'Nunito', sans-serif;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

@media (max-width: 991.98px) {
    .process-connector-line {
        display: none;
    }
    
    .process-icon-wrapper {
        margin-bottom: 25px;
    }
    
    .process-content-box {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 80px 0;
    }
    
    .process-section-title {
        font-size: 2rem;
    }
    
    .process-icon-circle {
        width: 80px;
        height: 80px;
    }
    
    .process-icon-circle i {
        font-size: 2rem;
    }
    
    .process-step-title {
        font-size: 1.3rem;
    }
}

/* Travel Guide Section */
.travel-guide-section {
    padding: 100px 0;
    background: #FFFFFF;
}


.travel-guide-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #14141F;
    margin-bottom: 50px;
    font-family: 'Nunito', sans-serif;
}

.guide-card {
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.guide-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.guide-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.guide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.guide-card:hover .guide-image {
    transform: scale(1.1);
}

.guide-social-icons {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.guide-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.guide-social-icon:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.guide-social-icon i {
    font-size: 1rem;
}

.guide-info {
    padding: 25px 20px;
    text-align: center;
}

.guide-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #14141F;
    margin-bottom: 8px;
    font-family: 'Nunito', sans-serif;
}

.guide-designation {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .travel-guide-section {
        padding: 80px 0;
    }
    
    .travel-guide-section-title {
        font-size: 2rem;
    }
    
    .guide-image-wrapper {
        height: 250px;
    }
    
    .guide-name {
        font-size: 1.2rem;
    }
}

/* Testimonial Section */
.testimonial-section {
    padding: 100px 0;
    background: #f8f9fb;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
    box-sizing: border-box;
}

.testimonial-section .container-fluid {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

.testimonial-section .container {
    max-width: 100%;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
    margin: 0 auto;
}

.testimonial-section .container > * {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

/* Testimonial Slider */
.testimonial-slider-wrapper {
    position: relative;
    padding: 0 50px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.testimonial-slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.testimonial-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

.testimonial-slider-item {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 0;
    box-sizing: border-box;
}

/* Mobile Responsive Styles for Testimonial Section */
@media (max-width: 1200px) {
    .testimonial-section {
        padding: 80px 0;
    }
    
    .testimonial-slider-wrapper {
        padding: 0 55px;
    }
}

@media (max-width: 991.98px) {
    .testimonial-section {
        padding: 60px 0;
    }
    
    .testimonial-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .testimonial-slider-wrapper {
        padding: 0 55px;
        margin: 0 auto;
    }
    
    .testimonial-slider-item {
        flex: 0 0 calc(50% - 10px) !important;
        min-width: calc(50% - 10px) !important;
        max-width: calc(50% - 10px) !important;
    }
    
    .testimonial-slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 25px 18px;
        max-width: 100%;
        min-height: auto;
    }
    
    .testimonial-avatar {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    
    .testimonial-name {
        font-size: 1.05rem;
    }
    
    .testimonial-location {
        font-size: 0.85rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: 40px 0 !important;
        min-height: auto !important;
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    .testimonial-section .container-fluid {
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    .testimonial-section .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 auto !important;
    }
    
    .testimonial-section .container > * {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .testimonial-slider-wrapper {
        padding: 0 50px !important;
        margin: 0 auto !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        position: relative !important;
    }
    
    .testimonial-slider-container {
        width: 100% !important;
        margin: 0 auto !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        position: relative !important;
        overflow: hidden !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    .testimonial-slider-track {
        gap: 15px !important;
        width: 100% !important;
        display: flex !important;
        box-sizing: border-box !important;
        will-change: transform !important;
        flex-wrap: nowrap !important;
    }
    
    .testimonial-slider-item {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        scroll-snap-align: start !important;
        flex-shrink: 0 !important;
    }
    
    .testimonial-slider-btn {
        width: 42px !important;
        height: 42px !important;
        font-size: 0.9rem !important;
        z-index: 15 !important;
        position: absolute !important;
    }
    
    .testimonial-slider-prev {
        left: 8px !important;
    }
    
    .testimonial-slider-next {
        right: 8px !important;
    }
    
    .testimonial-card {
        padding: 25px 20px !important;
        border-radius: 12px !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        word-wrap: break-word !important;
        min-height: auto !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        flex-shrink: 0 !important;
        align-items: center !important;
    }
    
    .testimonial-content {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        text-align: center !important;
    }
    
    .testimonial-avatar {
        width: 65px !important;
        height: 65px !important;
        margin-bottom: 15px !important;
        border-width: 2px !important;
    }
    
    .testimonial-name {
        font-size: 1rem !important;
        margin-bottom: 5px !important;
        word-wrap: break-word !important;
    }
    
    .testimonial-location {
        font-size: 0.8rem !important;
        margin-bottom: 12px !important;
        word-wrap: break-word !important;
    }
    
    .testimonial-text {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }
    
    .testimonial-rating {
        font-size: 0.85rem !important;
        margin-bottom: 12px !important;
    }
    
    .testimonial-rating i {
        font-size: 0.85rem !important;
    }
    
    .packages-section-title {
        font-size: 1.8rem !important;
        padding: 0 10px !important;
        word-wrap: break-word !important;
    }
    
    .section-label-wrapper {
        margin-bottom: 15px !important;
    }
}

@media (max-width: 576px) {
    .testimonial-section {
        padding: 35px 0 !important;
    }
    
    .testimonial-section .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .testimonial-slider-wrapper {
        padding: 0 42px !important;
    }
    
    .testimonial-slider-item {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .testimonial-slider-btn {
        width: 38px !important;
        height: 38px !important;
        font-size: 0.85rem !important;
    }
    
    .testimonial-slider-prev {
        left: 5px !important;
    }
    
    .testimonial-slider-next {
        right: 5px !important;
    }
    
    .testimonial-card {
        padding: 22px 18px !important;
        border-radius: 10px !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .testimonial-avatar {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 12px !important;
    }
    
    .testimonial-name {
        font-size: 0.95rem !important;
    }
    
    .testimonial-location {
        font-size: 0.75rem !important;
        margin-bottom: 10px !important;
    }
    
    .testimonial-text {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .testimonial-rating {
        font-size: 0.8rem !important;
        margin-bottom: 10px !important;
    }
    
    .testimonial-rating i {
        font-size: 0.8rem !important;
    }
    
    .packages-section-title {
        font-size: 1.6rem !important;
        padding: 0 8px !important;
    }
    
    .section-label-text {
        font-size: 0.7rem !important;
    }
}

@media (max-width: 480px) {
    .testimonial-section {
        padding: 30px 0 !important;
    }
    
    .testimonial-section .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    .testimonial-slider-wrapper {
        padding: 0 38px !important;
    }
    
    .testimonial-slider-btn {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.8rem !important;
    }
    
    .testimonial-slider-prev {
        left: 3px !important;
    }
    
    .testimonial-slider-next {
        right: 3px !important;
    }
    
    .testimonial-card {
        padding: 20px 15px !important;
    }
    
    .testimonial-avatar {
        width: 55px !important;
        height: 55px !important;
    }
    
    .testimonial-name {
        font-size: 0.9rem !important;
    }
    
    .testimonial-location {
        font-size: 0.7rem !important;
    }
    
    .testimonial-text {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }
    
    .testimonial-rating {
        font-size: 0.75rem !important;
    }
    
    .testimonial-rating i {
        font-size: 0.75rem !important;
    }
    
    .packages-section-title {
        font-size: 1.4rem !important;
        padding: 0 5px !important;
    }
}

@media (max-width: 360px) {
    .testimonial-section {
        padding: 25px 0 !important;
    }
    
    .testimonial-slider-wrapper {
        padding: 0 35px !important;
    }
    
    .testimonial-slider-btn {
        width: 34px !important;
        height: 34px !important;
        font-size: 0.75rem !important;
    }
    
    .testimonial-card {
        padding: 18px 12px !important;
    }
    
    .testimonial-avatar {
        width: 50px !important;
        height: 50px !important;
    }
    
    .testimonial-name {
        font-size: 0.85rem !important;
    }
    
    .testimonial-text {
        font-size: 0.75rem !important;
    }
    
    .packages-section-title {
        font-size: 1.3rem !important;
    }
}

.testimonial-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
    color: #FFFFFF;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.testimonial-slider-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

.testimonial-slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.testimonial-slider-prev {
    left: 0;
}

.testimonial-slider-next {
    right: 0;
}

.testimonial-slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.testimonial-slider-btn:disabled:hover {
    transform: translateY(-50%);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}


.testimonial-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #14141F;
    margin-bottom: 50px;
    font-family: 'Nunito', sans-serif;
}

.testimonial-card {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(139, 92, 246, 0.25);
    border-color: rgba(139, 92, 246, 0.3);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1);
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.testimonial-card:hover .testimonial-name {
    color: var(--primary);
    transform: translateY(-2px);
}

.testimonial-card:hover .testimonial-text {
    color: #333;
}

/* Keep text white on active card hover */
.testimonial-card-active:hover .testimonial-name {
    color: #FFFFFF !important;
    transform: translateY(-2px);
}

.testimonial-card-active:hover .testimonial-text {
    color: #FFFFFF !important;
}

.testimonial-card-active:hover .testimonial-location {
    color: rgba(255, 255, 255, 0.9) !important;
}

.testimonial-card-active {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.testimonial-card-active .testimonial-avatar {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.testimonial-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #14141F;
    margin-bottom: 6px;
    font-family: 'Nunito', sans-serif;
    transition: all 0.3s ease;
}

.testimonial-card-active .testimonial-name {
    color: #FFFFFF;
}

.testimonial-location {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

.testimonial-card-active .testimonial-location {
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-text {
    font-size: 0.875rem;
    color: #999;
    line-height: 1.6;
    margin: 0;
    flex: 1;
    transition: all 0.3s ease;
}

.testimonial-card-active .testimonial-text {
    color: #FFFFFF;
}

/* Testimonial Rating Stars */
.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 12px;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-rating i {
    color: var(--secondary);
    transform: scale(1.2);
}

.testimonial-card-active .testimonial-rating i {
    color: #FFD700;
    filter: brightness(1.2);
}

.testimonial-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(139, 92, 246, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 0 5px;
}

.testimonial-dot:hover {
    border-color: var(--primary);
    background: rgba(139, 92, 246, 0.2);
    transform: scale(1.2);
}

.testimonial-dot-active {
    background: var(--primary);
    border-color: var(--primary);
    width: 14px;
    height: 14px;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.4);
}

@media (max-width: 991.98px) {
    .testimonial-slider-item {
        flex: 0 0 calc(50% - 15px);
    }
    
    .testimonial-slider-wrapper {
        padding: 0 50px;
    }
    
    .testimonial-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: 80px 0;
    }
    
    .testimonial-section-title {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-avatar {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .testimonial-name {
        font-size: 1.2rem;
    }
    
    .testimonial-slider-item {
        flex: 0 0 100%;
    }
    
    .testimonial-slider-wrapper {
        padding: 0 45px;
    }
    
    .testimonial-slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Contact Page Styles */
.contact-info-card {
    background: #FFFFFF;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
    border-color: var(--primary);
}

.contact-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.contact-info-card:hover .contact-icon-wrapper {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

.contact-icon-wrapper i {
    font-size: 2rem;
    color: #FFFFFF;
}

.contact-info-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #14141F;
    margin-bottom: 15px;
    font-family: 'Nunito', sans-serif;
    transition: color 0.3s ease;
}

.contact-info-card:hover .contact-info-title {
    color: var(--primary);
}

.contact-info-text {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-info-subtext {
    font-size: 0.9rem;
    color: #999;
    margin: 0;
}

.contact-form-wrapper {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form .form-floating {
    margin-bottom: 20px;
}

.contact-input {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px 20px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.contact-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25);
    outline: none;
}

.contact-input:hover {
    border-color: var(--secondary);
}

.contact-form .form-floating label {
    color: #666;
    font-weight: 500;
}

.contact-form .form-floating > .form-control:focus ~ label,
.contact-form .form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--primary);
}

.contact-submit-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
    background: linear-gradient(135deg, #7C3AED 0%, #FF5722 100%);
}

.contact-map-wrapper {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 450px;
}

.contact-map {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

.contact-feature-box {
    background: #FFFFFF;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.contact-feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
    border-color: var(--primary);
}

.contact-feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.contact-feature-box:hover .contact-feature-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

.contact-feature-icon i {
    font-size: 1.8rem;
    color: #FFFFFF;
}

.contact-feature-box h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #14141F;
    font-family: 'Nunito', sans-serif;
    transition: color 0.3s ease;
}

.contact-feature-box:hover h5 {
    color: var(--primary);
}

.contact-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.contact-social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(139, 92, 246, 0.3);
}

.contact-social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.5);
    color: #FFFFFF;
}

.contact-social-link i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .contact-form-wrapper,
    .contact-map-wrapper {
        padding: 30px 20px;
    }
    
    .contact-map-container {
        height: 350px;
    }
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: all 0.3s ease;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* Contact Section Hover Effects */
.footer .col-lg-3.col-md-6 p.mb-2 {
    transition: all 0.3s ease;
    cursor: default;
    padding: 5px 0;
    border-radius: 5px;
}

.footer .col-lg-3.col-md-6 p.mb-2:hover {
    color: var(--primary);
    transform: translateX(5px);
    padding-left: 5px;
}

.footer .col-lg-3.col-md-6 p.mb-2 i {
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
}

.footer .col-lg-3.col-md-6 p.mb-2:hover i {
    color: var(--secondary);
    transform: scale(1.2);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
    text-decoration: none !important;
    color: var(--primary);
    transform: translateX(5px);
    padding-left: 5px;
}

.footer .btn.btn-link:hover::before {
    color: var(--secondary);
    transform: translateX(-3px);
}

/* Footer Gallery Hover Effects */
.footer .col-lg-3.col-md-6 .row.g-2 img {
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-radius: 5px;
}

.footer .col-lg-3.col-md-6 .row.g-2 img:hover {
    transform: scale(1.1);
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
    z-index: 10;
    position: relative;
}

.footer .col-lg-3.col-md-6 .row.g-2 {
    position: relative;
}

.footer .col-lg-3.col-md-6 .row.g-2 .col-4 {
    overflow: hidden;
    border-radius: 5px;
}

/* Footer Newsletter Hover Effects */
.footer .col-lg-3.col-md-6 p {
    transition: all 0.3s ease;
}

.footer .col-lg-3.col-md-6 p:hover {
    color: var(--primary);
    transform: translateX(3px);
}

.footer .col-lg-3.col-md-6 form input.form-control {
    transition: all 0.3s ease;
    border-color: var(--primary) !important;
}

.footer .col-lg-3.col-md-6 form input.form-control:focus {
    border-color: var(--secondary) !important;
    box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25) !important;
    transform: translateY(-2px);
}

.footer .col-lg-3.col-md-6 form input.form-control:hover {
    border-color: var(--secondary) !important;
    box-shadow: 0 0 0 0.1rem rgba(255, 107, 53, 0.2) !important;
}

.footer .col-lg-3.col-md-6 form button.btn-primary {
    transition: all 0.3s ease;
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.footer .col-lg-3.col-md-6 form button.btn-primary:hover {
    background: var(--secondary) !important;
    border-color: var(--secondary) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.footer .col-lg-3.col-md-6 form button.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
    transition: all 0.3s ease;
}

.footer .copyright .col-md-6 {
    transition: all 0.3s ease;
    cursor: default;
}

.footer .copyright .col-md-6:hover {
    color: rgba(255, 255, 255, 0.9);
    transform: translateX(3px);
}

.footer .copyright a {
    color: var(--light);
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.footer .copyright a:hover {
    color: var(--primary);
    text-decoration: none !important;
    transform: translateX(3px);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
    text-decoration: none !important;
    color: var(--light);
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer .footer-menu a:hover {
    color: var(--primary);
    transform: translateY(-2px);
    text-decoration: none !important;
}

.footer .footer-menu a:hover::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary);
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

.footer .footer-menu a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* Footer Logo Section */
.footer-logo-section {
    position: relative;
}

.footer-logo {
    transition: all 0.3s ease;
    filter: brightness(1);
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.footer-logo-lines {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 15px 0;
    padding: 0 20px;
}

.footer-line-top {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 20%, var(--secondary) 80%, transparent 100%);
    width: 60%;
    margin: 0 auto;
    border-radius: 2px;
}

.footer-line-bottom {
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 10%, var(--secondary) 90%, transparent 100%);
    width: 80%;
    margin: 0 auto;
    border-radius: 3px;
}

.footer-logo-section p {
    transition: all 0.3s ease;
}

.footer-logo-section p:hover {
    color: rgba(255, 255, 255, 0.9) !important;
    transform: translateX(3px);
}

@media (max-width: 991.98px) {
    .footer-logo {
        max-height: 60px !important;
    }
    
    .footer-logo-lines {
        padding: 0 15px;
    }
    
    .footer-line-top {
        width: 50%;
    }
    
    .footer-line-bottom {
        width: 70%;
    }
}
