/* ============================================
   Global Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #1a73e8 !important;
}

.nav-link {
    font-weight: 500;
    color: #333 !important;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #1a73e8 !important;
}

.nav-link.active {
    color: #ff6b6b !important;
}

.nav-btn {
    margin-left: 15px;
    padding: 10px 25px;
    background: transparent;
    color: #333 !important;
    border: 2px solid #333;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #333;
    color: white !important;
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* ============================================
   Hero Slider
   ============================================ */
.hero-slider-container {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.hero-slide h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0;
    animation: fadeInUp 0.8s ease-out;
}

.hero-slide p {
    font-size: 1.2rem;
    margin-bottom: 0;
    animation: fadeInUp 0.8s ease-out;
}

.hero-slide .btn {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn i {
    font-size: 1.5rem;
}

.slider-btn-prev {
    left: 30px;
}

.slider-btn-next {
    right: 30px;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.indicator.active {
    background: white;
    width: 30px;
    border-radius: 6px;
    border-color: white;
}

/* Responsive Design for Slider */
@media (max-width: 768px) {
    .hero-slide h1 {
        font-size: 2.5rem;
    }
    
    .hero-slide p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-btn-prev {
        left: 15px;
    }
    
    .slider-btn-next {
        right: 15px;
    }
    
    .slider-indicators {
        bottom: 20px;
    }
    
    .hero-slider-container {
        min-height: 350px;
    }
    
    .hero-slide {
        min-height: 350px;
    }
}

/* ============================================
   Page Header
   ============================================ */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 76px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* ============================================
   Buttons
   ============================================ */
.btn-primary-custom {
    background: #ff6b6b;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,107,107,0.4);
    background: #ff6b6b;
}

/* ============================================
   Sections
   ============================================ */
.content-section {
    padding: 100px 0 80px;
    margin-top: 76px;
}

.services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-choose-section {
    padding: 80px 0;
    background: white;
}

.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.destinations-section {
    padding: 80px 0;
}

.vision-mission-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
}

/* ============================================
   Service Cards
   ============================================ */
.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    margin-bottom: 30px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    cursor: pointer;
}

.service-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 20px;
}

.service-icon .route-icon {
    transition: transform 0.6s ease;
}

.service-card:hover .service-icon .route-icon {
    transform: rotate(360deg);
    cursor: pointer;
}

/* ============================================
   Destination Cards
   ============================================ */
.destination-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    margin-bottom: 30px;
}

.destination-card:hover {
    transform: scale(1.05);
}

.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destination-card-body {
    padding: 20px;
    text-align: center;
}

/* ============================================
   Content Sections (About Page)
   ============================================ */
.content-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.content-text {
    padding: 20px 0;
}

.content-text h3 {
    color: #333;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.content-text h5 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.content-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1rem;
}

.goal-text {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 30px;
}

/* ============================================
   Vision Mission Values
   ============================================ */
.vm-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.vm-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.vm-box .icon {
    font-size: 2.5rem;
    color: #FFC107;
    margin-bottom: 15px;
}

.vm-box h4 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.3rem;
}

.vm-box p {
    color: #666;
    line-height: 1.8;
}

/* ============================================
   Contact Form
   ============================================ */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
}

.contact-info-item {
    margin-bottom: 30px;
}

.contact-info-item i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 15px;
}

.form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: none;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

.footer h5 {
    margin-bottom: 20px;
    font-weight: 600;
}

.footer a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
}

.footer-icon {
    margin-right: 10px;
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icons a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.social-icons a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

/* ============================================
   WhatsApp Float Button
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 2rem;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
    }
}

/* ============================================
   Scroll to Top Button
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    border: none;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
}

.scroll-to-top.show {
    display: flex;
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: bounceIn 0.5s ease;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6);
}

.scroll-to-top i {
    font-size: 1.5rem;
    animation: arrowPulse 2s infinite;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    50% {
        transform: translateY(-5px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes arrowPulse {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

