/* Back to Top Button Styles */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: none;
    color: #111;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: none;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.08);
}

.back-to-top i {
    display: block;
    position: absolute;
    top: 13px;
    left: 17px;
    right: 0;
    margin: 0 auto;
    font-size: 1.3rem;
    color: #111;
    z-index: 2;
    pointer-events: none;
    transition: color 0.3s;
}

.back-to-top:hover i {
    color: #1ea952;
}

.back-to-top::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 40px solid #D5F637;
    margin: 0 auto;
    transition: border-bottom-color 0.3s;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.back-to-top:hover::before {
    border-bottom-color: #1ea952;
}

/* WhatsApp Button Styles */
.whatsapp-button {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.whatsapp-button.show {
    opacity: 1;
    visibility: visible;
}

.whatsapp-button:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-button i {
    font-size: 20px;
}

/* FAQ Button Styles */
.faq-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: #007bff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.faq-button.show {
    opacity: 1;
    visibility: visible;
}

.faq-button:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
    background-color: #D5F637;
    color: #000;
}

.faq-button i {
    font-size: 22px;
}

@media (max-width: 768px) {
    .faq-button {
        width: 45px;
        height: 45px;
        left: 20px;
        bottom: 20px;
    }
}

/* Expertise Section - Unlock Your Adventure Skills */
.expertise-section {
    background-color: #000;
    color: #fff;
    padding: 5rem 0;
    position: relative;
    margin-top: 0 !important;
}

/* Consistent font family for all text */
body,
.expertise-section,
.expertise-heading,
.expertise-desc,
.expertise-card-title,
.expertise-card-text {
    font-family: 'Inter', Arial, sans-serif;
}

.expertise-heading {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.demand-section{
    margin-top: 60px;
}

.expertise-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.expertise-card {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    height: 300px;
    width: 100%;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
    transition: all 0.4s ease;
}

.expertise-card:hover::before {
    background: rgba(0, 0, 0, 0.4);
}

.expertise-card::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 5px;
    background: #D5F637;
    border-radius: 5px;
    opacity: 0;
    transition: all 0.4s ease;
}

.expertise-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.expertise-card:hover::after {
    opacity: 1;
    width: 70%;
}

.card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding: 30px;
    transition: all 0.3s ease;
}

.expertise-card:hover .card-content {
    transform: translateY(-10px);
}

.expertise-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.expertise-card-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

.expertise-card:hover .expertise-card-title::after {
    width: 50px;
}

.expertise-card-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.expertise-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 45px;
    height: 45px;
    background: #D5F637;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.expertise-btn:hover {
    background: #D5F637;
    color: white;
    transform: scale(1.1);
}

.book-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    background-color: #D5F637;
    color: #111 !important;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0;
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.expertise-card:hover .book-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.book-btn:hover {
    background-color: #D5F637 !important;
    border-color: #D5F637 !important;
    color: #111 !important;
}

/* Activity Book Button Styles */
.activity-book-btn {
    background-color: #D5F637 !important;
    color: #111 !important;
    padding: 10px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 100%;
    display: block;
}

.activity-book-btn:hover {
    background-color: #D5F637 !important;
    color: #111 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Navbar Logo */
.navbar-logo {
    height: 40px;
    width: auto;
    /* Add any additional styling for the logo here */
}

/* Booking & Enquiry Modal Custom Width */
@media (min-width: 576px) {

    #bookingModal .modal-dialog,
    #enquiryModal .modal-dialog {
        max-width: 650px;
        margin: 1.75rem auto;
    }
}

#bookingModal .modal-content,
#enquiryModal .modal-content {
    width: 100%;
}

/* Ensure consistent form field styling between both modals */
#enquiryModal .input-icon-wrapper i {
    left: 10px;
    pointer-events: none;
}

#enquiryModal input,
#enquiryModal select,
#enquiryModal .custom-multiselect .select-box {
    padding-left: 30px;
}

/* Required field asterisk */
.required-asterisk {
    color: red;
    margin-left: 2px;
    font-size: 1.1em;
}

/* Activity Description Modal */
#activityDescModal .modal-dialog {
    max-width: 850px;
}

#activityDescModal .modal-content {
    background-color: #121212;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#activityDescModal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#activityDescModal .modal-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.75rem;
}

#activityDescModal .btn-close {
    color: #fff;
    filter: invert(1) grayscale(100%) brightness(200%);
}

#activityDescText {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

#activityDescMediaWrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

#activityDescMediaWrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.activity-age {
    display: inline-block;
    background-color: rgba(213, 246, 55, 0.8);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 15px;
    font-weight: 600;
}

.activity-feature {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.activity-feature i {
    margin-right: 10px;
    color: #D5F637;
}

#activityDescModal #activityDescActionBtn {
    padding: 10px 30px;
    background-color: #D5F637 !important;
    border: none;
    color: white;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

#activityDescModal #activityDescActionBtn:hover {
    background-color: #D5F637 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.activity-video {
    max-width: 320px;
    width: 100%;
    height: auto;
}

.navbar {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

body {
    padding-top: 10px;
    background-color: #000;
}

/* Pulse animation for Vlogs tab */
.vlogs-pulse {
    position: relative;
    border: 3px solid #D5F637;
    /* Increased border width */
    border-radius: 10px;
    /* Slightly more rounded */
    animation: vlogs-pulse-anim 0.8s infinite;
    /* Faster pulse */
    box-shadow: 0 0 0 0 #D5F637;
    z-index: 1;
}

@keyframes vlogs-pulse-anim {
    0% {
        box-shadow: 0 0 0 0 rgba(213, 246, 55, 0.95);
        /* Stronger initial shadow */
    }

    70% {
        box-shadow: 0 0 0 18px rgba(213, 246, 55, 0);
        /* Larger spread */
    }

    100% {
        box-shadow: 0 0 0 0 rgba(213, 246, 55, 0);
    }
}

/* Responsive font sizes */
@media (max-width: 1200px) {
    .expertise-heading {
        font-size: 2.5rem;
    }
    .expertise-desc {
        font-size: 1rem;
    }
    .expertise-card-title {
        font-size: 1.1rem;
    }
    .expertise-card-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .expertise-heading {
        font-size: 2.1rem;
    }
    .expertise-desc {
        font-size: 0.95rem;
    }
    .expertise-card-title {
        font-size: 1rem;
    }
    .expertise-card-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .expertise-heading {
        font-size: 1.6rem;
    }
    .expertise-desc {
        font-size: 0.9rem;
    }
    .expertise-card-title {
        font-size: 0.95rem;
    }
    .expertise-card-text {
        font-size: 0.8rem;
    }
    #activityDescModal .modal-title {
        font-size: 1.3rem;
    }
    #activityDescText {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .expertise-heading {
        font-size: 1.3rem;
    }
    .expertise-desc {
        font-size: 0.85rem;
    }
    .expertise-card-title {
        font-size: 0.9rem;
    }
    .expertise-card-text {
        font-size: 0.75rem;
    }
    #activityDescModal .modal-title {
        font-size: 1rem;
    }
    #activityDescText {
        font-size: 0.95rem;
    }
    .activity-age {
        font-size: 0.8rem;
    }
}