:root {
    --primary: #1a73e8;
    --secondary: #34a853;
    --accent: #ff9800;
    --dark: #2c3e50;
    --light: #f8f9fa;
    --white: #ffffff;
    --primary-color: #ff6b6b;
    --secondary-color: #4ecdc4;
    --dark-color: #2d3436;
    --light-color: #f8f9fa;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--dark);
    padding-top: 80px; /* Account for fixed navbar */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;
}

/* Navbar Styles */
.navbar {
    padding: 15px 0;
    transition: all 0.4s ease;
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 1030;
}

.navbar.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.navbar-brand {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #000;
}

.navbar-brand span {
    color:  #000;
}

.navbar-brand i {
    color: #FDCB2F;
    margin-right: 8px;
}

.nav-link {
    font-weight: 500;
    color: #333333;
    margin: 0 5px;
    padding: 8px 16px !important;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #FDCB2F;
    background-color: rgba(26, 115, 232, 0.08);
}

.nav-link.active {
    color: var(--primary);
    background-color: rgba(26, 115, 232, 0.12);
}

.navbar-toggler {
    border: none;
    padding: 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.btn-book-now {
    background-color: #FDCB2F;
    color: #4e261b;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-book-now:hover {
    background-color: #0d62d0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(26, 115, 232, 0.3);
}

/* Dropdown Menu Styles */
.dropdown-menu {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 15px;
    min-width: 230px;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    transition-delay: 0.1s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
        visibility: hidden;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }
}

.dropdown-item {
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: 500;
    color: var(--dark);
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-item:hover {
    background-color: rgba(26, 115, 232, 0.08);
    color: var(--primary);
    transform: translateX(5px);
}

.dropdown-item i {
    margin-right: 10px;
    color: var(--primary);
    font-size: 0.9rem;
}

.dropdown-divider {
    margin: 8px 0;
    opacity: 0.1;
}

.dropdown-header {
    font-weight: 700;
    color: var(--primary);
    padding: 10px 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mega-dropdown {
    position: static !important;
}

.mega-dropdown-menu {
    padding: 20px;
    width: 100%;
    max-width: 1200px;
    left: 10%;
    transform: translateX(-50%);
    border-radius: 10px;
}

.mega-dropdown-column {
    margin-bottom: 15px;
}

.mega-dropdown-column h6 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mega-dropdown-column ul {
    list-style: none;
    padding-left: 0;
}

.mega-dropdown-column ul li {
    margin-bottom: 8px;
}

.mega-dropdown-column ul li a {
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
    font-size: 0.95rem;
}

.mega-dropdown-column ul li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.mega-dropdown-column ul li a i {
    margin-right: 8px;
    color: var(--primary);
    font-size: 0.8rem;
}

.featured-dropdown {
    background-color: rgba(26, 115, 232, 0.05);
    border-radius: 8px;
    padding: 15px;
    margin-top: 10px;
}

.featured-dropdown img {
    border-radius: 8px;
    margin-bottom: 10px;
}

.featured-dropdown h6 {
    margin-bottom: 5px;
    color: var(--dark);
    border-bottom: none;
    padding-bottom: 0;
}

.featured-dropdown p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 10px;
}

.featured-dropdown .btn-sm {
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 20px;
}

/* Hover Dropdown Styles */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu,
    .mega-dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transition: all 0.3s ease;
    }
}

/* Hero Section Styles */
.hero-section {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.search-box {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.search-box .form-control {
    height: 50px;
    border-radius: 30px;
    padding-left: 20px;
    font-size: 1rem;
    border: 1px solid #e0e0e0;
}

.search-box .form-select {
    height: 50px;
    border-radius: 30px;
    padding-left: 20px;
    font-size: 1rem;
    border: 1px solid #e0e0e0;
}

.search-box .form-control:focus,
.search-box .form-select:focus {
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.2);
    border-color: #CCCCCC;
}

.search-box label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.btn-search {
    height: 50px;
    background-color: #FDCB2F;
    color: #4e261b;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: none;
}

.btn-search:hover {
    background-color: #2d9249;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(52, 168, 83, 0.3);
}

.featured-destinations {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    color: #FDCB2F;
}

.featured-destinations span {
    display: inline-block;
    margin: 0 15px;
    font-weight: 500;
    font-size: 1.1rem;
    opacity: 0.9;
    transition: all 0.3s ease;
    cursor: pointer;
}

.featured-destinations span:hover {
    opacity: 1;
    transform: translateY(-3px);
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    body {
        padding-top: 70px; /* Smaller padding for tablet */
    }

    .navbar-collapse {
        background-color: var(--white);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        margin-top: 15px;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .search-box {
        padding: 20px;
    }

    .dropdown-menu {
        width: 100%;
        margin-top: 0;
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, 0.1);
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mega-dropdown-menu {
        width: 100%;
        padding: 15px;
        left: 0;
        transform: none;
    }

    .mega-dropdown-column {
        margin-bottom: 20px;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-top: 60px; /* Smaller padding for mobile */
    }

    .hero-section {
        min-height: 800px;
        height: auto;
        padding: 100px 0 50px;
    }

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

    .featured-destinations {
        position: relative;
        margin-top: 30px;
        bottom: auto;
    }

    .featured-destinations span {
        margin: 5px 10px;
        font-size: 1rem;
        display: inline-block;
    }
}

/* Welcome Section Styles */
.welcome-section {
    padding: 120px 0 90px;
    background-color: var(--light);
}

.welcome-content .subtitle {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    margin-bottom: 15px;
    position: relative;
}

.welcome-content .subtitle:after {
    content: "";
    width: 50px;
    height: 2px;
    background-color: var(--primary);
    position: absolute;
    bottom: -5px;
    left: 0;
}

.welcome-content .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
    color: #4e261b;
}

.welcome-content .description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.welcome-stats {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    font-family: "Playfair Display", serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.welcome-image-container {
    position: relative;
    padding: 20px;
    height: 100%;
}

.welcome-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.welcome-image.main-image {
    z-index: 2;
    position: relative;
}

.welcome-image.accent-image {
    position: absolute;
    width: 60%;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.welcome-image img {
    transition: all 0.5s ease;
}

.welcome-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    top: 30px;
    left: 0;
    background-color: var(--primary);
    color: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(26, 115, 232, 0.3);
    z-index: 3;
}

.experience-badge .badge-content {
    text-align: center;
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    display: block;
    font-family: "Playfair Display", serif;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.btn-about-us {
    background-color:#FDCB2F;
    color: #4e261b;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-about-us:hover {
    background-color: #0d62d0;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(26, 115, 232, 0.2);
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .welcome-section {
        padding: 80px 0 60px;
    }

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

    .experience-badge {
        width: 100px;
        height: 100px;
    }

    .experience-badge .years {
        font-size: 2rem;
    }
}

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

    .welcome-image-container {
        margin-top: 30px;
        padding: 10px;
    }

    .welcome-content .section-title {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .welcome-image.accent-image {
        width: 50%;
    }

    .experience-badge {
        width: 90px;
        height: 90px;
        top: 20px;
        left: 20px;
    }

    .experience-badge .years {
        font-size: 1.8rem;
    }

    .experience-badge .text {
        font-size: 0.7rem;
    }
}

/* Featured Section Styles */
.featured-section {
    padding: 90px 0;
    background-color: white;
}

.featured-section .subtitle {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    margin-bottom: 15px;
    position: relative;
}

.featured-section .subtitle:after {
    content: "";
    width: 50px;
    height: 2px;
    background-color: var(--primary);
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.featured-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #4e261b;
}

.featured-section .section-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: #666;
}

/* Tab Styles */
.featured-tabs {
    margin-top: 20px;
}

.featured-tabs .nav-pills {
    gap: 10px;
    flex-wrap: wrap;
}

.featured-tabs .nav-link {
    background-color: white;
    color: var(--dark);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    padding: 12px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.featured-tabs .nav-link i {
    margin-right: 8px;
    color: var(--primary);
}

.featured-tabs .nav-link:hover {
    background-color: rgba(26, 115, 232, 0.05);
    border-color: var(--primary);
    color: var(--primary);
}

.featured-tabs .nav-link.active {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
}

.featured-tabs .nav-link.active i {
    color: white;
}

.featured-tabs .tab-content {
    margin-top: 40px;
}

/* Destination Card Styles */
.destination-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.destination-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 10px;
}

.destination-badges .badge {
    padding: 8px 15px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 30px;
}

.badge.bg-accent {
    background-color: var(--accent);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.destination-card:hover .destination-overlay {
    opacity: 1;
}

.btn-view-details {
    background-color: var(--primary);
    color: white;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view-details:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.destination-content {
    padding: 25px;
}

.destination-rating {
    margin-bottom: 10px;
}

.destination-rating i {
    color: #ffc107;
    font-size: 0.9rem;
}

.rating-count {
    color: #666;
    font-size: 0.85rem;
    margin-left: 8px;
}

.destination-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.destination-features {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.destination-features span i {
    color: var(--primary);
    margin-right: 5px;
}

.destination-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.destination-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.destination-price {
    display: flex;
    flex-direction: column;
}

.price-from {
    font-size: 0.85rem;
    color: #666;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}



.btn-book-now:hover {
    background-color: #2d9249;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 168, 83, 0.2);
    color: white;
}

.btn-view-all {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 30px;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-view-all i {
    margin-left: 8px;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background-color: var(--primary);
    color: white;
}

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

/* Experience Showcase Styles */
.experience-showcase {
    margin-top: 80px;
}

.showcase-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 30px;
}

.experience-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.experience-card .experience-image {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.experience-card .experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.experience-card.large {
    height: 500px;
}

.experience-card.medium {
    height: 235px;
}

.experience-card .experience-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    color: white;
    transition: all 0.3s ease;
}

.experience-card.large .experience-content {
    padding-bottom: 40px;
}

.experience-card:hover .experience-content {
    padding-bottom: calc(25px + 10px);
}

.experience-card .experience-label {
    display: inline-block;
    background-color: var(--accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 30px;
    margin-bottom: 15px;
}

.experience-card .experience-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.experience-card.medium .experience-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.experience-card .experience-description {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
}

.experience-card .experience-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 15px;
}

.experience-card.medium .experience-meta {
    margin-bottom: 0;
}

.experience-card .experience-meta i {
    margin-right: 5px;
}

.btn-experience {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(10px);
}

.experience-card:hover .btn-experience {
    opacity: 1;
    transform: translateY(0);
}

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

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .featured-section {
        padding: 70px 0;
    }

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

    .experience-card.large {
        height: 400px;
    }

    .experience-card.medium {
        height: 200px;
    }
}

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

    .featured-section .section-title {
        font-size: 1.8rem;
    }

    .featured-tabs .nav-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .experience-card.large {
        height: 350px;
        margin-bottom: 30px;
    }

    .experience-card.medium {
        height: 180px;
    }

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

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

    .experience-card:hover .experience-content {
        padding-bottom: calc(15px + 10px);
    }

    .experience-card .experience-title {
        font-size: 1.3rem;
    }

    .experience-card.medium .experience-title {
        font-size: 1rem;
    }
}
.site-footer {
    background-color: #365A8C;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    margin-top: 50px;
}

.footer-top {
    padding: 80px 0 50px;
    position: relative;
}

.footer-top:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        to right,
        var(--primary),
        var(--secondary),
        var(--accent)
    );
}

.footer-logo a {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 2rem;
    color: #000;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo span {
    color: #000;
}

.footer-logo i {
    color: #FDCB2F;
    margin-right: 8px;
}

.footer-desc {
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 0.95rem;
    color: #FDCB2F;
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-heading {
    color:#FDCB2F;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color:#fff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
    display: inline-block;
}

.footer-links li a:before {
    content: "›";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links li a:hover:before {
    color: var(--secondary);
}

.footer-text {
    margin-bottom: 20px;
    font-size: 0.95rem;
}


.footer-contact {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-contact li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    color:#fff;
}

.footer-contact li i {
    color: #FDCB2F;
    margin-right: 10px;
    margin-top: 5px;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    font-size: 0.9rem;
}

.payment-methods i {
    font-size: 1.5rem;
    color: white;
    margin-right: 8px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.payment-methods i:hover {
    opacity: 1;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.legal-links a:hover {
    color: white;
}

.legal-links .divider {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.3);
}

.back-to-top {
    position: absolute;
    right: 30px;
    bottom: 30px;
}

.back-to-top a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
    transition: all 0.3s ease;
}

.back-to-top a:hover {
    background-color: #0d62d0;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(26, 115, 232, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .footer-top {
        padding: 60px 0 30px;
    }
}

@media (max-width: 767.98px) {
    .footer-top {
        padding: 50px 0 20px;
    }

    .footer-heading {
        margin-bottom: 15px;
    }

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

    .payment-methods {
        margin-bottom: 15px;
    }

    .back-to-top {
        right: 20px;
        bottom: 20px;
    }
}

/* Add Back to Top Button Functionality */
#backToTop {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#backToTop.visible {
    opacity: 1;
    visibility: visible;
}
/* Why Choose Us Section Styles */
.why-choose-us-section {
    padding: 90px 0;
    background-color: #f9fbfd;
    position: relative;
    overflow: hidden;
}

.why-choose-us-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-color: rgba(26, 115, 232, 0.05);
    border-radius: 50%;
    transform: translate(150px, -150px);
    z-index: 0;
}

.why-choose-us-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 250px;
    height: 250px;
    background-color: rgba(52, 168, 83, 0.05);
    border-radius: 50%;
    transform: translate(-100px, 100px);
    z-index: 0;
}

.why-choose-us-section .subtitle {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    margin-bottom: 15px;
    position: relative;
}

.why-choose-us-section .subtitle:after {
    content: "";
    width: 50px;
    height: 2px;
    background-color: var(--primary);
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.why-choose-us-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #4e261b;
}

.why-choose-us-section .section-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: #666;
}

/* Feature Cards */
.feature-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: all 0.3s ease;
    opacity: 0;
}

.feature-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(26, 115, 232, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: var(--primary);
    transform: rotateY(180deg);
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    color: white;
    transform: rotateY(-180deg);
}

.feature-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
    transition: all 0.3s ease;
}

.feature-content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Testimonial Styles */
.testimonial-container {
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.testimonial-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.testimonial-carousel {
    position: relative;
    overflow: hidden;
    padding: 20px 10px;
}

.testimonial-card {
    background-color: #f9fbfd;
    border-radius: 15px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 1.2rem;
    margin-right: 3px;
}

.testimonial-text {
    margin-bottom: 20px;
}

.testimonial-text p {
    font-style: italic;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    position: relative;
}

.testimonial-text p::before {
    content: '"';
    font-size: 5rem;
    color: rgba(26, 115, 232, 0.1);
    position: absolute;
    top: -40px;
    left: -20px;
    font-family: serif;
    z-index: -1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--primary);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
    background-color: var(--light);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: var(--primary);
    color: white;
}

.testimonial-dots {
    display: flex;
    align-items: center;
    margin: 0 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary);
    width: 25px;
    border-radius: 10px;
}

/* Trust Badges */
.trust-badges {
    margin-top: 40px;
    padding: 30px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    z-index: 1;
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: 10px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.trust-badge img {
    max-height: 100%;
    max-width: 100%;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.trust-badge:hover img {
    filter: grayscale(0%);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .why-choose-us-section {
        padding: 70px 0;
    }

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

    .feature-card {
        padding: 25px 20px;
    }

    .testimonial-container {
        padding: 30px 20px;
    }
}

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

    .why-choose-us-section .section-title {
        font-size: 1.8rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }

    .feature-content h3 {
        font-size: 1.2rem;
    }

    .testimonial-header h3 {
        font-size: 1.6rem;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-text p {
        font-size: 1rem;
    }

    .trust-badge {
        height: 60px;
        margin-bottom: 15px;
    }
}

/* Packages Section Styles */
.packages-section {
    background-color: #f9fbfd;
    padding: 90px 0;
}

.packages-section .subtitle {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    margin-bottom: 15px;
    position: relative;
}

.packages-section .subtitle:after {
    content: "";
    width: 50px;
    height: 2px;
    background-color: var(--primary);
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.packages-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.packages-section .section-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: #666;
}

/* Package Card Styles */
.package-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.package-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.package-banner {
    position: absolute;
    top: 20px;
    left: -5px;
    background-color: #ff3d71;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 5px 15px;
    z-index: 10;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    box-shadow: 0 5px 10px rgba(255, 61, 113, 0.3);
}

.package-banner:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 5px;
    height: 5px;
    background-color: #c82554;
    border-top-left-radius: 5px;
    border-bottom-right-radius: 5px;
    z-index: -1;
}

.package-trending .package-banner {
    background-color: var(--primary);
    box-shadow: 0 5px 10px rgba(26, 115, 232, 0.3);
}

.package-trending .package-banner:before {
    background-color: #0d62d0;
}

.package-limited .package-banner {
    background-color: var(--secondary);
    box-shadow: 0 5px 10px rgba(52, 168, 83, 0.3);
}

.package-limited .package-banner:before {
    background-color: #2d9249;
}

.package-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-wishlist {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
}

.package-wishlist i {
    color: #ccc;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.package-wishlist:hover {
    background-color: white;
    transform: scale(1.1);
}

.package-wishlist:hover i {
    color: #ff3d71;
}

.package-wishlist.active i {
    color: #ff3d71;
}

.package-details {
    padding: 25px;
}

.package-rating {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.stars {
    color: #ffaa00;
    margin-right: 8px;
}

.rating-count {
    font-size: 0.85rem;
    color: #666;
}

.package-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
    transition: all 0.3s ease;
}

.package-card:hover .package-title {
    color: var(--primary);
}

.package-features {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.package-features span {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
}

.package-features span i {
    color: var(--primary);
    margin-right: 5px;
    font-size: 0.85rem;
}

.package-highlights {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 15px;
}

.package-highlights span {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
}

.package-highlights span i {
    color: var(--secondary);
    margin-right: 8px;
    font-size: 0.85rem;
}

.package-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.price-value {
    display: flex;
    flex-direction: column;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.price-unit {
    font-size: 0.85rem;
    color: #999;
}

.btn-view-deal {
    background-color: var(--primary);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 18px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view-deal:hover {
    background-color: #0d62d0;
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(26, 115, 232, 0.2);
    color: white;
}

.btn-view-all-packages {
    background-color: transparent;
    color: var(--primary);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    border: 2px solid var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-view-all-packages i {
    margin-left: 8px;
    transition: all 0.3s ease;
}

.btn-view-all-packages:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(26, 115, 232, 0.15);
}

.btn-view-all-packages:hover i {
    transform: translateX(5px);
}

/* Newsletter Styles */
.newsletter-container {
    background: linear-gradient(135deg, var(--primary) 0%, #0d62d0 100%);
    border-radius: 15px;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 15px 30px rgba(26, 115, 232, 0.2);
    position: relative;
    overflow: hidden;
}

.newsletter-container:before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.newsletter-container:after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

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

.newsletter-content h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.newsletter-form {
    position: relative;
    z-index: 2;
}

.newsletter-form .input-group {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.newsletter-form .form-control {
    height: 54px;
    padding-left: 20px;
    font-size: 1rem;
    border: none;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

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

.btn-subscribe {
    background-color: var(--secondary);
    color: white;
    font-weight: 600;
    padding: 0 30px;
    border: none;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    background-color: #2d9249;
}

.form-check-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.form-check-label a {
    color: white;
    text-decoration: underline;
}

.form-check-input {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.form-check-input:checked {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .packages-section {
        padding: 70px 0;
    }

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

    .newsletter-container {
        padding: 30px;
    }

    .newsletter-content h3 {
        font-size: 1.6rem;
    }
}

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

    .packages-section .section-title {
        font-size: 1.8rem;
    }

    .package-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .newsletter-container {
        padding: 25px;
    }

    .newsletter-content h3 {
        font-size: 1.4rem;
    }

    .newsletter-form .form-control {
        height: 48px;
        font-size: 0.9rem;
    }

    .btn-subscribe {
        padding: 0 20px;
        font-size: 0.9rem;
    }
}

/* Destination Page Specific Styles */

/* Destination Hero Section */
.destination-hero {
    position: relative;
    height: 80vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.destination-hero .hero-content {
    position: relative;
    z-index: 1;
}

.destination-hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: "Playfair Display", serif;
}

.destination-hero .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 1.1rem;
}

.hero-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Quick Info Section */
.quick-info {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    margin-top: -50px;
    position: relative;
    z-index: 2;
    border-radius: 10px;
}

.info-card {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.info-card p {
    color: #666;
    margin: 0;
}

/* Destination Overview Section */
.destination-overview {
    background: #fff;
}

.destination-overview h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.destination-overview .lead {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.highlights {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.highlight-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.highlight-list i {
    color: var(--primary-color);
}

/* Destination Sidebar */
.destination-sidebar {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.weather-widget {
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.weather-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.weather-info i {
    font-size: 2rem;
    color: #ffd700;
}

.temperature {
    font-size: 2rem;
    font-weight: 600;
}

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

.quick-links li {
    margin-bottom: 0.8rem;
}

.quick-links a {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.quick-links a:hover {
    color: var(--primary-color);
}

/* Attractions Section */
.attraction-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.attraction-card:hover {
    transform: translateY(-5px);
}

.attraction-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.attraction-content {
    padding: 1.5rem;
}

.attraction-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.attraction-meta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Activities Section */
.activity-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
}

.activity-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.activity-icon i {
    font-size: 2rem;
    color: #fff;
}

.activity-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: 1rem;
}

/* Accommodation Section */
.accommodation-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.accommodation-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.accommodation-content {
    padding: 1.5rem;
}

.accommodation-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.price-range {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Travel Tips Section */
.tips-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.tips-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tips-card h3 i {
    color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .destination-hero {
        height: 60vh;
    }

    .destination-hero h1 {
        font-size: 3rem;
    }

    .hero-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .quick-info {
        margin-top: -30px;
    }
}

@media (max-width: 767.98px) {
    .destination-hero {
        height: 50vh;
    }

    .destination-hero h1 {
        font-size: 2.5rem;
    }

    .info-card {
        padding: 1.5rem;
    }
}

/* Recommended Packages Section Styles */
.recommended-packages {
    background-color: #f9fbfd;
}

.package-comparison {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.package-comparison h3 {
    color: var(--dark);
    font-weight: 700;
}

.package-comparison table {
    margin-bottom: 0;
}

.package-comparison th {
    background-color: var(--light);
    font-weight: 600;
    color: var(--dark);
    text-align: center;
    padding: 1rem;
}

.package-comparison th:first-child {
    text-align: left;
}

.package-comparison td {
    text-align: center;
    padding: 1rem;
    color: #666;
}

.package-comparison td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--dark);
}

.package-comparison tr:hover {
    background-color: rgba(26, 115, 232, 0.05);
}

.package-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #0d62d0 100%);
    border-radius: 15px;
    padding: 3rem 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.package-cta::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 60%
    );
    transform: rotate(45deg);
}

.package-cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.btn-custom-package {
    background-color: white;
    color: var(--primary);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-custom-package i {
    transition: transform 0.3s ease;
}

.btn-custom-package:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: var(--primary);
}

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

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .package-comparison {
        padding: 1.5rem;
    }

    .package-cta {
        padding: 2rem 1.5rem;
    }

    .package-cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .package-comparison {
        padding: 1rem;
    }

    .package-comparison th,
    .package-comparison td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .package-cta {
        padding: 2rem 1rem;
    }

    .package-cta p {
        font-size: 1rem;
    }

    .btn-custom-package {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Dynamic Destination Detail Page Styles */

/* Destination Info Card */
.destination-info-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.destination-info-card h4 {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.info-item i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Gallery Styles */
.destination-gallery .gallery-item img {
    transition: all 0.3s ease;
    border-radius: 8px;
}

.destination-gallery .gallery-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Itinerary Accordion Styles */
.itinerary-title {
    color: #e74c3c;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.itinerary-accordion {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.itinerary-item {
    border-bottom: 1px solid #f0f0f0;
}

.itinerary-item:last-child {
    border-bottom: none;
}

.itinerary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
}

.itinerary-header:hover {
    background-color: #f8f9fa;
}

.itinerary-header[aria-expanded="true"] {
    background-color: #f8f9fa;
}

.itinerary-day-title {
    color: #3498db;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.itinerary-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.itinerary-toggle i {
    color: #e74c3c;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.itinerary-content {
    padding: 0 2rem 1.5rem 2rem;
    color: #666;
    line-height: 1.6;
}

.itinerary-content p {
    margin-bottom: 0;
}

/* Related Destinations */
.related-destinations .destination-card {
    transition: all 0.3s ease;
}

.related-destinations .destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.destination-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.destination-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.destination-meta i {
    color: var(--primary);
    width: 16px;
}

.destination-actions {
    margin-top: 1rem;
}

.destination-actions .btn {
    width: 100%;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.destination-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--primary) 0%, #0d62d0 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 60%);
    transform: rotate(45deg);
}

.contact-buttons {
    position: relative;
    z-index: 2;
}

.contact-buttons .btn {
    border-radius: 30px;
    font-weight: 600;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.contact-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-info {
    position: relative;
    z-index: 2;
}

.contact-info i {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-weight: 500;
}

/* Responsive Adjustments for Destination Details */
@media (max-width: 991.98px) {
    .itinerary-title {
        font-size: 1.8rem;
    }

    .itinerary-header {
        padding: 1.25rem 1.5rem;
    }

    .itinerary-day-title {
        font-size: 1.1rem;
    }

    .itinerary-content {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .destination-hero h1 {
        font-size: 2.5rem;
    }

    .destination-hero .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .itinerary-title {
        font-size: 1.6rem;
    }

    .itinerary-header {
        padding: 1rem 1.25rem;
    }

    .itinerary-day-title {
        font-size: 1rem;
    }

    .itinerary-content {
        padding: 0 1.25rem 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .contact-buttons .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
}nt-size: 0.9rem;
    }
}

/* Monkey Forest Page Styles */

/* Attraction Hero Section */
.attraction-hero {
    position: relative;
    height: 70vh;
    background: url("https://images.unsplash.com/photo-1537996194471-e657df975ab4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80")
        no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    color: #fff;
    margin-top: 76px;
}

.attraction-category {
    background-color: var(--accent);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Overview Section */
.overview-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.overview-gallery img {
    height: 300px;
    object-fit: cover;
    width: 100%;
}

.feature-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
}

/* Safety Guidelines */
.safety-guidelines {
    background: #fff8f8;
    padding: 2rem;
    border-radius: 10px;
}

.guideline-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.guideline-item i {
    font-size: 1.5rem;
    color: #ff6b6b;
}

.guideline-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.guideline-content p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

/* Sidebar Widgets */
.book-tour-widget {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.tour-price {
    margin: 1.5rem 0;
    text-align: center;
}

.tour-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.tour-price .per-person {
    color: #666;
    font-size: 0.9rem;
}

.tour-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.tour-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tour-features i {
    color: var(--secondary);
}

.btn-book-tour {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-book-tour:hover {
    background: #0d62d0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.2);
}

.map-widget {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    margin: 1rem 0;
}

.btn-directions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--secondary);
    color: white;
    text-decoration: none;
    padding: 10px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-directions:hover {
    background: #2d9249;
    color: white;
}

/* Photo Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Reviews Section */
.review-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark);
}

.rating {
    color: #ffc107;
    font-size: 0.9rem;
}

.review-text {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
}

.review-date {
    color: #999;
    font-size: 0.9rem;
}

/* Related Attractions */
.attraction-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.attraction-card:hover {
    transform: translateY(-5px);
}

.attraction-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
}

.card-content p {
    color: #666;
    margin-bottom: 1rem;
}

.btn-view-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-view-more:hover {
    color: #0d62d0;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .attraction-hero {
        height: 60vh;
    }

    .overview-gallery img {
        height: 250px;
    }
}

@media (max-width: 767.98px) {
    .attraction-hero {
        height: 50vh;
    }

    .overview-gallery img {
        height: 200px;
    }

    .feature-item {
        padding: 1rem;
    }

    .safety-guidelines {
        padding: 1rem;
    }

    .guideline-item {
        padding: 0.8rem;
    }
}

/* Packages Page Styles */

/* Packages Hero Section */
.packages-hero {
    position: relative;
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    margin-top: 76px;
}

/* Package Filter Section */
.package-filter {
    background: white;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.filter-wrapper {
    background: var(--light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.btn-filter-search {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-filter-search:hover {
    background: #0d62d0;
    transform: translateY(-2px);
}

/* Category Cards */
.category-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    background: var(--primary);
    transform: rotateY(180deg);
}

.category-icon i {
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.category-card:hover .category-icon i {
    color: white;
    transform: rotateY(-180deg);
}

.category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.category-card p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.package-count {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Special Offers */
.offer-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.offer-content {
    padding: 2rem;
    flex: 1;
}

.offer-tag {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.offer-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.offer-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.offer-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.offer-features i {
    color: var(--secondary);
}

.btn-view-offer {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-view-offer:hover {
    background: #0d62d0;
    transform: translateY(-2px);
    color: white;
}

.offer-image {
    width: 40%;
    position: relative;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.offer-card:hover .offer-image img {
    transform: scale(1.1);
}

/* Benefits Section */
.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 1.8rem;
    color: var(--primary);
}

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.benefit-card p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .packages-hero {
        height: 50vh;
    }

    .offer-card {
        flex-direction: column;
    }

    .offer-image {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 767.98px) {
    .packages-hero {
        height: 40vh;
    }

    .filter-wrapper {
        padding: 1.5rem;
    }

    .category-card {
        padding: 1.5rem;
    }

    .offer-content {
        padding: 1.5rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }
}


/* Attraction Card Styling */
.attraction-card {
    display: block;
    width: 100%;
    max-width: 350px;
    margin: 20px auto;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.attraction-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.attraction-content {
    padding: 18px;
}

.attraction-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #2a2a2a;
    font-weight: 600;
}

.attraction-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
}

.attraction-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #888;
}

.attraction-meta span {
    display: flex;
    align-items: center;
}

.attraction-meta i {
    margin-right: 5px;
    color: #4a89dc;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .attraction-card {
        display: inline-block;
        margin: 15px;
        vertical-align: top;
    }
}

/* For a grid layout of multiple cards */
.attractions-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 20px;
}

/* About Page Styles */
.about-hero {
    position: relative;
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    margin-top: 76px;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
}

.mission-content .subtitle {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
}

.mission-content .subtitle:after {
    content: "";
    width: 50px;
    height: 2px;
    background-color: var(--primary);
    position: absolute;
    bottom: -5px;
    left: 0;
}

.mission-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.mission-content .lead {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
}

.mission-image {
    position: relative;
    padding: 20px;
}

.mission-image img {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mission-image .experience-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary);
    color: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(26, 115, 232, 0.3);
}

.mission-image .experience-badge span {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.mission-image .experience-badge small {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Values Section */
.value-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(26, 115, 232, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--primary);
}

.value-icon i {
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon i {
    color: white;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

/* Team Section */
.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

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

.team-image {
    height: 250px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

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

.team-content h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.team-content .position {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-content .bio {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(26, 115, 232, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Awards Section */
.award-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.award-card:hover {
    transform: translateY(-5px);
}

.award-icon {
    width: 70px;
    height: 70px;
    background: rgba(26, 115, 232, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.award-card:hover .award-icon {
    background: var(--primary);
}

.award-icon i {
    font-size: 1.8rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.award-card:hover .award-icon i {
    color: white;
}

.award-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.award-card p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #0d62d0 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section:before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 60%
    );
    transform: rotate(45deg);
}

.cta-content {
    position: relative;
    z-index: 1;
    padding: 60px 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.btn-cta {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
}

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

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .about-hero {
        height: 50vh;
    }

    .mission-content h2 {
        font-size: 2rem;
    }

    .mission-image .experience-badge {
        width: 100px;
        height: 100px;
    }

    .mission-image .experience-badge span {
        font-size: 1.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .about-hero {
        height: 40vh;
    }

    .mission-content h2 {
        font-size: 1.8rem;
    }

    .mission-image {
        margin-top: 30px;
    }

    .value-card,
    .team-card,
    .award-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .btn-cta {
        padding: 12px 30px;
    }
}

/* Booking Page Styles */
.booking-hero {
    position: relative;
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
}
.category-hero {
    position: relative;
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
}


.booking-section {
    position: relative;
    margin-top: -50px;
}

.booking-form-container {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.form-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.section-title {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 25px;
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark);
    font-weight: 500;
}

.form-control,
.form-select {
    height: 50px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

textarea.form-control {
    height: auto;
    resize: vertical;
}

.form-check {
    margin: 20px 0;
}

.form-check-label {
    color: #666;
}

.form-check-label a {
    color: var(--primary);
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-submit {
    background: var(--primary);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #0d62d0;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(26, 115, 232, 0.2);
}

/* Booking Features */
.booking-features {
    padding: 60px 0;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(26, 115, 232, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: #FDCB2F;
}

.feature-icon i {
    font-size: 1.8rem;
    color: #FDCB2F;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color:#4e261b;
}

.feature-card p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* Flatpickr Custom Styles */
.flatpickr-calendar {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: none;
}

.flatpickr-day.selected {
    background: var(--primary);
    border-color: var(--primary);
}

.flatpickr-day.selected:hover {
    background: #0d62d0;
    border-color: #0d62d0;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .booking-hero {
        height: 40vh;
    }

    .booking-form-container {
        padding: 30px;
    }

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

@media (max-width: 767.98px) {
    .booking-hero {
        height: 30vh;
    }

    .booking-form-container {
        padding: 20px;
    }

    .form-section {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .btn-submit {
        width: 100%;
        padding: 12px;
    }

    .feature-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Enhanced Destination Details Styles */
.quick-info-section .info-card {
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.quick-info-section .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.quick-info-section .icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff, #6610f2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.quick-info-section .icon-wrapper i {
    font-size: 1.5rem;
    color: white;
}

.quick-info-section .card-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.quick-info-section .card-label {
    font-size: 1rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 5px;
}

.quick-info-section .price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 10px;
}

.quick-info-section .currency {
    font-size: 1.2rem;
    margin-right: 5px;
}

.quick-info-section .discount-badge {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 10px;
}

.quick-info-section .price-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d;
}

/* Highlight Items */
.highlight-item {
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(5px);
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* List group hover effects */
.list-group-item-action:hover {
    background-color: rgba(0, 123, 255, 0.1);
    border-color: rgba(0, 123, 255, 0.2);
}

.list-group-item-action:hover .fas {
    transform: translateX(3px);
}

/* Card hover effects */
.card {
    transition: all 0.3s ease;
}

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