/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --dark-color: #1f2937;
    --light-color: #f3f4f6;
    --white-color: #ffffff;
    --text-color: #374151;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --danger-color: #ef4444;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    z-index: 1030;
    background-color: #ffffff !important;
}

.navbar.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1030;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand i {
    font-size: 1.8rem;
}

.brand-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

/* Dropdown Menu Styling */
.navbar .dropdown .nav-link i {
    font-size: 0.75rem;
    margin-left: 0.25rem;
    transition: transform 0.3s ease;
}

.navbar .dropdown .nav-link:hover i,
.navbar .dropdown .nav-link[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.navbar .dropdown .nav-link {
    cursor: pointer;
}

.navbar .dropdown:hover .nav-link {
    color: var(--primary-color) !important;
}

.navbar .dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.navbar .dropdown-item {
    padding: 0.6rem 1.5rem;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar .dropdown-item:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1920&h=1080&fit=crop') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(245, 158, 11, 0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white-color);
}

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

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

/* Search Section */
.search-section {
    margin-top: -50px;
    position: relative;
    z-index: 100;
}

/* Destinations Section */
.destinations-section {
    position: relative;
    z-index: 5;
    background: #ffffff;
}

/* Tours Section */
.tours-section {
    position: relative;
    z-index: 5;
    background: #ffffff;
}

.search-card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 15px;
}

.search-card .form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.search-card .form-select,
.search-card .form-control {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.search-card .form-select:focus,
.search-card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.1);
}

/* Section Styles */
.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
}

/* Destination Cards */
.destination-card {
    background: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

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

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

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

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 99, 235, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.destination-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--white-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.destination-content {
    padding: 1.5rem;
}

.destination-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.destination-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.destination-meta span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Tour Cards */
.tour-card {
    background: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

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

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

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

.tour-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-color);
    color: var(--white-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.tour-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tour-rating {
    font-size: 0.9rem;
}

.tour-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

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

.tour-features li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

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

/* Feature Cards */
.feature-card {
    padding: 2rem 1.5rem;
    background: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white-color);
}

.feature-card h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
}

/* Testimonials */
.testimonial-card {
    background: var(--white-color);
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.testimonial-author h6 {
    font-weight: 600;
    color: var(--dark-color);
    margin-top: 1rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    padding: 20px;
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    height: 250px;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 99, 235, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.gallery-overlay i {
    font-size: 3rem;
    color: var(--white-color);
    margin-bottom: 1rem;
}

.gallery-title {
    color: var(--white-color);
    font-size: 1.1rem;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 4rem 0;
}

.cta-section h2 {
    color: var(--white-color);
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(37, 99, 235, 0.9), rgba(30, 64, 175, 0.9)),
                url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1920&h=400&fit=crop') center/cover;
    padding: 100px 0 60px;
    color: var(--white-color);
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--white-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--white-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--white-color);
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.filter-buttons .btn {
    border-radius: 25px;
    padding: 8px 25px;
}

.filter-buttons .btn.active {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* About Page */
.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 10px;
}

.mission-card,
.vision-card {
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white-color);
}

.value-card {
    padding: 2rem 1rem;
    transition: all 0.3s ease;
}

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

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

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

/* Team Cards */
.team-card {
    background: var(--white-color);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.team-image {
    margin-bottom: 1.5rem;
}

.team-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.team-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: var(--light-color);
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    color: var(--primary-color);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

/* Feature Box */
.feature-box {
    padding: 2rem;
    background: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

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

.feature-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: var(--white-color);
}

/* Contact Page */
.contact-info-card {
    background: var(--white-color);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white-color);
}

.contact-form-wrapper {
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-wrapper {
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.business-hours {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Benefits */
.benefit-card {
    padding: 2rem 1.5rem;
    background: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

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

.benefit-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #1f2937;
    color: #d1d5db;
}

.footer h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer p {
    color: #9ca3af;
    line-height: 1.8;
}

.footer ul {
    padding-left: 0;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

.footer a {
    color: #d1d5db;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer .text-muted {
    color: #9ca3af !important;
}

.footer .list-unstyled li {
    color: #9ca3af;
}

.footer .list-unstyled li i {
    margin-right: 8px;
    width: 20px;
    display: inline-block;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    color: #ffffff !important;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    padding-left: 0 !important;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .search-card {
        padding: 1.5rem;
    }
}

/* About Us Section */
.about-us-section {
    position: relative;
    overflow: hidden;
}

.about-image-wrapper {
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.experience-badge h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0;
}

.experience-badge p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.about-stat h3 {
    font-size: 2rem;
    font-weight: 700;
}

/* Tailormade Section */
.tailormade-section {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.tailormade-card {
    background: var(--white-color);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tailormade-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.tailormade-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--white-color);
}

.tailormade-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.tailormade-card p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

/* WhatsApp Button */
.btn-whatsapp {
    background: #25D366;
    color: var(--white-color);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp i {
    font-size: 1.3rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #128C7E;
    color: var(--white-color);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Destination Info & Booking Section */
.destination-info-section {
    background: #ffffff;
}

.destination-info-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.destination-highlights {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
}

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

.highlight-list li {
    padding: 0.5rem 0;
    font-size: 1rem;
}

/* Booking Form Card */
.booking-form-card {
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--border-color);
}

.sticky-booking {
    position: sticky;
    top: 100px;
}

.booking-form-header {
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 2rem;
}

.booking-form-header h4 {
    color: var(--dark-color);
    font-weight: 700;
}

.booking-form .form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.booking-form .form-control,
.booking-form .form-select {
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.1);
}

.booking-note {
    background: #fef3c7;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.booking-note small {
    color: #92400e;
}

/* Destination Showcase Sections */
.destination-showcase {
    position: relative;
}

.destination-showcase img {
    transition: transform 0.5s ease;
}

.destination-showcase img:hover {
    transform: scale(1.05);
}

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

.feature-list li {
    padding: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.8;
}

/* Package Details Page */
.package-details-section {
    background: #ffffff;
}

.package-overview img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.package-meta .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

/* Itinerary Section */
.itinerary-section .accordion-item {
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.itinerary-section .accordion-button {
    background: var(--light-color);
    color: var(--dark-color);
    font-weight: 600;
    padding: 1.25rem;
}

.itinerary-section .accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--white-color);
}

.itinerary-section .accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

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

.itinerary-list li {
    padding: 0.5rem 0;
    line-height: 1.8;
}

/* Includes & Excludes */
.includes-card,
.excludes-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    height: 100%;
}

.includes-card h4 {
    color: var(--success-color);
}

.excludes-card h4 {
    color: var(--danger-color);
}

.includes-list,
.excludes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.includes-list li,
.excludes-list li {
    padding: 0.5rem 0;
    line-height: 1.8;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.includes-list li:last-child,
.excludes-list li:last-child {
    border-bottom: none;
}

/* Important Info */
.important-info {
    background: #fff3cd;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
}

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

.info-list li {
    padding: 0.5rem 0;
    line-height: 1.8;
}

/* Price Box */
.price-box {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white-color);
    padding: 2rem;
    border-radius: 15px;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white-color);
}

.rating-box .stars {
    font-size: 1rem;
}

/* Contact Info Box */
.contact-info {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
}

.contact-info h5 {
    color: var(--dark-color);
    font-weight: 600;
}

.contact-info p {
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

/* Popular Destinations - Simple Card Design */
.popular-destinations-section {
    background: #ffffff;
}

.destination-simple-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.destination-simple-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 1.5rem 1.5rem;
    color: var(--white-color);
}

.destination-simple-overlay h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--white-color);
}

.destination-simple-overlay p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* TripAdvisor Style Testimonials */
.tripadvisor-header {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.tripadvisor-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.tripadvisor-logo img {
    max-width: 200px;
    height: auto;
}

.tripadvisor-logo i {
    font-size: 2rem;
}

.tripadvisor-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    font-family: 'Georgia', serif;
}

#reviewsCarousel .carousel-control-prev,
#reviewsCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

#reviewsCarousel .carousel-control-prev {
    left: -25px;
}

#reviewsCarousel .carousel-control-next {
    right: -25px;
}

#reviewsCarousel .carousel-control-prev:hover,
#reviewsCarousel .carousel-control-next:hover {
    opacity: 1;
}

#reviewsCarousel .carousel-indicators {
    margin-bottom: -3rem;
}

#reviewsCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #00AF87;
}

/* TripAdvisor Button */
.btn-tripadvisor {
    background-color: #00AF87;
    color: var(--white-color);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 175, 135, 0.3);
}

.btn-tripadvisor:hover {
    background-color: #009874;
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 175, 135, 0.4);
}

.tripadvisor-rating .rating-bubble i {
    color: #00AF87;
    font-size: 1.5rem;
    margin: 0 0.1rem;
}

.tripadvisor-stats {
    font-size: 1.1rem;
    color: var(--text-color);
}

.tripadvisor-review-card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.tripadvisor-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.review-rating i {
    color: #00AF87;
    font-size: 1rem;
    margin-right: 0.1rem;
}

.review-title {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.review-text {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.review-footer {
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* Tailormade Section Background */
.tailormade-section {
    min-height: 500px;
    overflow: hidden;
}

.tailormade-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1920&h=800&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.tailormade-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.85), rgba(255, 107, 107, 0.85));
    z-index: 1;
}

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

/* Step Cards - How It Works */
.step-card {
    padding: 2rem 1.5rem;
    background: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.step-card h5 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}
