/**
 * TravelVista - Modern Tourism Website
 * Custom Stylesheet
 */

/* ===================================
   1. GLOBAL STYLES & VARIABLES
   =================================== */

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --border-color: #e5e7eb;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

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

.section-padding {
    padding: 80px 0;
}

/* ===================================
   2. NAVIGATION
   =================================== */

.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    background-color: var(--white) !important;
}

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

.navbar-brand i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(37, 99, 235, 0.1);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

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

/* ===================================
   3. BUTTONS
   =================================== */

.btn {
    font-weight: 500;
    padding: 0.625rem 1.75rem;
    border-radius: 8px;
    transition: var(--transition);
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background-color: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    color: var(--white);
    border: 2px solid var(--white);
    background-color: transparent;
}

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

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

.btn-light:hover {
    background-color: var(--bg-light);
    color: var(--primary-dark);
}

/* ===================================
   4. HERO SLIDER SECTION
   =================================== */

.hero-slider-section {
    position: relative;
    overflow: hidden;
}

.hero-slider-section .carousel {
    height: 100vh;
}

.hero-slider-section .carousel-inner,
.hero-slider-section .carousel-item {
    height: 100%;
}

.hero-slide {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.7), rgba(16, 185, 129, 0.6));
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 2rem 0;
}

.carousel-indicators {
    z-index: 4;
    margin-bottom: 3rem;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--white);
    transition: var(--transition);
}

.carousel-indicators button.active {
    background-color: var(--white);
    transform: scale(1.2);
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: var(--transition);
    z-index: 4;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

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

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(37, 99, 235, 0.8);
    border-radius: 50%;
    padding: 12px;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: var(--primary-color);
}

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

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

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator i {
    font-size: 2rem;
    color: var(--white);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Animation Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.delay-1 {
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.delay-2 {
    animation-delay: 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

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

/* ===================================
   5. ABOUT US SECTION (HOME PAGE)
   =================================== */

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

.about-image-wrapper .main-image {
    width: 100%;
    border-radius: 16px;
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    min-width: 150px;
}

.about-badge h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.about-badge p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.section-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon-small {
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.about-feature h5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.about-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.whatsapp-btn {
    background-color: #25D366 !important;
    border-color: #25D366 !important;
    color: var(--white) !important;
}

.whatsapp-btn:hover {
    background-color: #20BA5A !important;
    border-color: #20BA5A !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===================================
   6. SEARCH SECTION
   =================================== */

.search-section {
    margin-top: -80px;
    position: relative;
    z-index: 10;
    padding: 0 0 80px;
}

.search-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

.search-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.search-form .form-control,
.search-form .form-select {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
}

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

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

/* ===================================
   6. SECTION HEADERS
   =================================== */

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

/* ===================================
   7. DESTINATION CARDS (SIMPLE STYLE)
   =================================== */

.destination-simple-card {
    display: block;
    text-decoration: none;
    transition: var(--transition);
}

.destination-simple-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    height: 280px;
    box-shadow: var(--shadow-sm);
}

.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.15);
}

.destination-simple-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
    transition: var(--transition);
}

.destination-simple-card:hover .destination-simple-overlay {
    background: linear-gradient(to bottom, rgba(37, 99, 235, 0.3) 0%, rgba(37, 99, 235, 0.8) 100%);
}

.destination-simple-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: var(--white);
    z-index: 2;
}

.destination-simple-name h4 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.destination-simple-name p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.destination-simple-card:hover .destination-simple-name h4 {
    transform: translateY(-5px);
    transition: var(--transition);
}

/* ===================================
   8. DESTINATION CARDS (DETAILED STYLE - FOR OTHER PAGES)
   =================================== */

.destination-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

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

.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: var(--transition);
}

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

.destination-badge-top {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--white);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.destination-content {
    padding: 1.75rem;
}

.destination-content h4 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.rating i {
    font-size: 0.875rem;
}

/* Destination List Items */
.destination-list-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.destination-list-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.destination-list-item img {
    height: 100%;
    object-fit: cover;
}

.destination-list-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.destination-list-item .badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
}

/* Booking Form Sticky */
.booking-form-sticky {
    position: sticky;
    top: 100px;
}

/* ===================================
   8. TOUR CARDS
   =================================== */

.tour-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
    position: relative;
}

.tour-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.tour-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 5;
}

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

.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-content {
    padding: 1.75rem;
}

.tour-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.tour-meta i {
    color: var(--primary-color);
}

.tour-content h4 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

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

.tour-features li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

.tour-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

/* ===================================
   9. FEATURE BOXES
   =================================== */

.feature-box {
    padding: 2rem;
    transition: var(--transition);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.feature-box:hover .feature-icon {
    background: var(--white);
    color: var(--primary-color);
    transform: scale(1.1);
    border-color: var(--white);
}

.feature-box h5 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

/* ===================================
   10. TESTIMONIALS
   =================================== */

/* TripAdvisor Logo */
.tripadvisor-logo {
    display: inline-block;
}

.tripadvisor-logo svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* TripAdvisor Rating */
.tripadvisor-rating {
    display: inline-block;
}

.tripadvisor-stars i {
    font-size: 1.25rem;
    margin: 0 2px;
}

/* TripAdvisor Card */
.tripadvisor-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    transition: var(--transition);
}

.tripadvisor-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tripadvisor-card .testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #00AA6C;
    flex-shrink: 0;
}

.tripadvisor-card .testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tripadvisor-card .testimonial-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.tripadvisor-card .testimonial-text {
    font-size: 1rem;
    font-style: normal;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.tripadvisor-card .tripadvisor-stars i {
    font-size: 0.75rem;
}

/* TripAdvisor Button */
.tripadvisor-btn {
    background: #00AA6C;
    border-color: #00AA6C;
    color: var(--white);
    font-weight: 600;
    padding: 0.875rem 2rem;
    transition: var(--transition);
}

.tripadvisor-btn:hover {
    background: #008c59;
    border-color: #008c59;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 170, 108, 0.3);
}

/* Legacy Testimonial Styles */
.testimonial-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 4px solid var(--primary-color);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

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

/* ===================================
   11. GALLERY
   =================================== */

.gallery-preview-item,
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    height: 280px;
}

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

.gallery-preview-overlay,
.gallery-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: var(--transition);
}

.gallery-preview-overlay i,
.gallery-overlay i {
    font-size: 3rem;
    color: var(--white);
}

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

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

/* ===================================
   12. CTA SECTION
   =================================== */

.cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(16, 185, 129, 0.9)),
                url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?w=1920&h=600&fit=crop') center/cover;
    background-attachment: fixed;
    color: var(--white);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn {
    position: relative;
    z-index: 3;
}

/* ===================================
   13. PAGE HERO
   =================================== */

.page-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(16, 185, 129, 0.8)),
                url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&h=600&fit=crop') center/cover;
    color: var(--white);
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.page-hero-subtitle {
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    opacity: 0.95;
}

/* ===================================
   14. FILTER SECTION
   =================================== */

.filter-section {
    padding: 2rem 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.filter-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-filter {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    padding: 0.625rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-filter:hover,
.btn-filter.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* ===================================
   15. ABOUT PAGE
   =================================== */

.stat-card {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
}

.about-story-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.mission-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    height: 100%;
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.value-card {
    padding: 2rem;
    transition: var(--transition);
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Service Cards */
.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.service-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Feature Boxes */
.feature-box {
    padding: 2rem;
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}

.feature-box:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.feature-icon-large {
    width: 90px;
    height: 90px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-box:hover .feature-icon-large {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.feature-box h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Step Numbers */
.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
}

.team-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.team-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 4px solid var(--bg-light);
}

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

.team-social {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1rem;
}

.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: var(--transition);
}

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

/* ===================================
   16. CONTACT PAGE
   =================================== */

.contact-form-card,
.contact-info-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

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

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

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

.contact-info-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-info-content h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.social-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.social-links-large {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link-item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.25rem;
    transition: var(--transition);
}

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

.map-section iframe {
    width: 100%;
    border: none;
}

/* ===================================
   17. INCLUDED ITEMS
   =================================== */

.included-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.included-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.included-icon {
    width: 70px;
    height: 70px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: var(--primary-color);
}

/* ===================================
   18. FOOTER
   =================================== */

.footer {
    background: #1f2937;
    color: rgba(255, 255, 255, 0.8);
}

.footer h5,
.footer h6 {
    color: var(--white);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-block;
}

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

/* Footer Social Icons */
.footer-social-links {
    display: flex;
    gap: 0.75rem;
}

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

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

.social-links a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

/* ===================================
   19. UTILITIES
   =================================== */

.bg-light {
    background-color: var(--bg-light) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

.shadow-md {
    box-shadow: var(--shadow-md) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

/* ===================================
   20. RESPONSIVE DESIGN
   =================================== */

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-hero-title {
        font-size: 2.25rem;
    }
    
    .search-section {
        margin-top: 0;
        padding: 40px 0;
    }
    
    .navbar-collapse {
        background: var(--white);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 8px;
        box-shadow: var(--shadow-sm);
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .search-card {
        padding: 1.5rem;
    }
    
    .destination-image,
    .tour-image,
    .gallery-preview-item,
    .gallery-item {
        height: 220px;
    }
    
    /* Tour Details Hero */
    .tour-details-hero {
        padding: 120px 0 60px;
    }
    
    .tour-details-hero h1 {
        font-size: 2rem;
    }
    
    /* Itinerary on Mobile */
    .itinerary-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .itinerary-day {
        width: 80px;
        height: 80px;
        font-size: 0.85rem;
    }
    
    /* Booking Form Sticky - Disable on Mobile */
    .booking-form-sticky {
        position: static;
    }
    
    /* About Story Buttons */
    .about-story-buttons {
        flex-direction: column;
    }
    
    .about-story-buttons .btn {
        width: 100%;
    }
    
    /* Destination List Items */
    .destination-list-item .col-md-5,
    .destination-list-item .col-md-7 {
        width: 100%;
    }
    
    /* Footer Social Icons */
    .footer-social-links {
        justify-content: center;
    }
    
    /* Page Hero */
    .page-hero {
        padding: 100px 0 60px;
    }
    
    .page-hero-title {
        font-size: 2rem;
    }
    
    /* Step Numbers */
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    /* Feature Icons */
    .feature-icon-large {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    /* Service Cards */
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 575px) {
    /* Extra small devices */
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .page-hero-title {
        font-size: 1.75rem;
    }
    
    .tour-details-hero h1 {
        font-size: 1.75rem;
    }
    
    /* Buttons */
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Cards */
    .destination-card,
    .tour-card,
    .service-card,
    .feature-box {
        margin-bottom: 1rem;
    }
    
    /* Contact Form */
    .contact-form-card,
    .contact-info-card {
        padding: 1.5rem;
    }
    
    /* Stat Numbers */
    .stat-number {
        font-size: 2rem;
    }
    
    /* Experience Badge */
    .experience-badge {
        width: 120px;
        height: 120px;
    }
    
    .experience-badge h3 {
        font-size: 2rem;
    }
    
    /* Navbar Brand */
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    /* Footer */
    .footer {
        text-align: center;
    }
    
    .footer .col-lg-4,
    .footer .col-lg-2,
    .footer .col-lg-3 {
        margin-bottom: 2rem;
    }
}

/* ===================================
   21. ANIMATIONS
   =================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-in;
}

/* ===================================
   22. BACK TO TOP BUTTON
   =================================== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ===================================
   23. TOUR DETAILS PAGE
   =================================== */

.tour-details-hero {
    padding: 150px 0 80px;
    position: relative;
}

.tour-details-hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

.tour-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Itinerary */
.itinerary-list {
    position: relative;
}

.itinerary-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

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

.itinerary-day {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: var(--shadow-md);
}

.itinerary-content h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Included/Excluded Lists */
.included-box,
.excluded-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    height: 100%;
}

.included-list,
.excluded-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.included-list li,
.excluded-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.included-list li:last-child,
.excluded-list li:last-child {
    border-bottom: none;
}

/* ===================================
   24. FLOATING WHATSAPP BUTTON
   =================================== */

.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float.show {
    opacity: 1;
    visibility: visible;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}
