:root {
    --bs-success: #28a745;
    --bs-success-rgb: 40, 167, 69;
}

.hero-section {
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.hero-video-bg img {
    height: 100vh;
    min-height: 600px;
    object-fit: cover;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.search-card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
}

.icon-circle {
    width: 80px;
    height: 80px;
}

.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
}

.destination-image {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.destination-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:hover {
    background-color: #218838;
    border-color: #218838;
}

.btn-outline-success {
    color: #28a745;
    border-color: #28a745;
}

.btn-outline-success:hover {
    background-color: #28a745;
    border-color: #28a745;
}

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

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

.testimonial-card {
    border-top: 4px solid #28a745;
}

.newsletter-form .form-control:focus {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
    }

    .display-3 {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
        text-align: center;
    }

    .stat-item {
        min-width: 100px;
    }

    .search-card-wrapper {
        margin-top: 2rem;
    }

    .destination-image {
        height: 200px;
    }

    .newsletter-form .input-group {
        flex-direction: column;
    }

    .newsletter-form .btn {
        border-top-left-radius: 0;
        border-top-right-radius: 0.375rem;
        border-bottom-left-radius: 0.375rem;
    }

    .newsletter-form .form-control {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
}

.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-success);
    font-weight: 600;
}