/* Flashy Banner */
.flashy-banner {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
    color: white;
    padding: 15px 0;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flashy-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.banner-content i {
    animation: pulse 2s infinite;
}

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

/* Navigation */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #4ecdc4 !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

/* Carousel Styling */
.carousel-item {
    height: 400px;
    background-color: #f8f9fa;
    overflow: hidden;
}

.carousel-item img {
    object-fit: contain;
    height: 100%;
    width: 100%;
    max-width: 1280px;
    max-height: 720px;
    margin: 0 auto;
    display: block;
}

/* Optimize for 1280x720 aspect ratio */
@media (min-width: 1280px) {
    .carousel-item {
        height: 500px;
    }
    
    .carousel-item img {
        object-fit: contain;
        max-height: 500px;
    }
}

/* Mobile optimization */
@media (max-width: 767px) {
    .carousel-item {
        height: 300px;
    }
    
    .carousel-item img {
        object-fit: cover;
    }
}

/* Clickable Carousel Images */
.carousel-image-clickable {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.carousel-image-clickable:hover {
    transform: scale(1.02);
}

/* Image Modal Styling */
.modal-xl {
    max-width: 90%;
}

#modalImage {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
}

/* Carousel Controls Styling */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.9);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

/* Carousel Indicators Styling - Reverted to Bootstrap Default */
.carousel-indicators {
    /* Bootstrap default positioning */
}

.carousel-caption {
    background: rgba(0,0,0,0.7);
    border-radius: 10px;
    padding: 20px;
}

/* Package Cards */
.package-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: 100%;
}

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

.package-card .card-header {
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    color: white;
    font-weight: bold;
    text-align: center;
}

/* Testimonials */
.testimonial-card {
    background: #f8f9fa;
    border-left: 4px solid #4ecdc4;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

.testimonial-card .quote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.testimonial-card .author {
    font-weight: bold;
    color: #4ecdc4;
}

/* Social Links */
.social-links a {
    transition: transform 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    margin-top: auto;
}

footer a:hover {
    text-decoration: none;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    .banner-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .banner-text {
        font-size: 1rem;
    }
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-gradient {
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
