/* Uganda Tour Guide - Professional Styling */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary-color: #2E8B57; /* Sea Green - representing Uganda's nature */
    --secondary-color: #FFD700; /* Gold - representing Uganda's wealth */
    --accent-color: #FF6347; /* Tomato - warm accent */
    --dark-color: #2C3E50;
    --light-color: #F8F9FA;
    --success-color: #28A745;
    --warning-color: #FFC107;
    --danger-color: #DC3545;
    --info-color: #17A2B8;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
}

.main-content {
    margin-top: 76px; /* Account for fixed navbar */
    min-height: calc(100vh - 200px);
}

/* Navigation Styles */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    background-color: rgba(46, 139, 87, 0.95) !important;
}

.navbar-brand {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.navbar-nav .nav-link.active {
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.navbar-nav .nav-link i {
    width: 16px;
    text-align: center;
}

/* User Profile Dropdown */
.avatar-sm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 0.75rem;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.dropdown-item i {
    width: 20px;
    text-align: center;
}

.dropdown-header {
    padding: 1rem 1.5rem 0.5rem;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

/* Role-based Navigation Colors */
.navbar-nav .nav-link[href*="/host/"] {
    color: #FFD700 !important;
}

.navbar-nav .nav-link[href*="/admin/"] {
    color: #FF6347 !important;
}

.navbar-nav .nav-link[href*="/itinerary"],
.navbar-nav .nav-link[href*="/my-bookings"] {
    color: #87CEEB !important;
}

/* Mobile Navigation */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(46, 139, 87, 0.98);
        border-radius: 0.5rem;
        margin-top: 1rem;
        padding: 1rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0.25rem 0;
        padding: 0.75rem 1rem;
    }
    
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none;
        background-color: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .dropdown-item {
        color: white;
    }
    
    .dropdown-item:hover {
        background-color: rgba(255, 255, 255, 0.2);
        transform: none;
    }
}

/* Map Styles */
.leaflet-container {
    font-family: inherit;
}

/* Circular Avatar Markers */
.circular-marker {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.circular-marker:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    z-index: 1000;
}

/* Hotel Marker */
.hotel-marker {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.hotel-marker:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
}

/* Destination Marker */
.destination-marker {
    background: linear-gradient(135deg, #28a745, #1e7e34);
}

.destination-marker:hover {
    background: linear-gradient(135deg, #1e7e34, #155724);
}

/* User Location Marker */
.user-location-marker {
    background: linear-gradient(135deg, #dc3545, #c82333);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Map Popup Styling */
.map-popup {
    min-width: 250px;
    max-width: 300px;
}

.map-popup h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.map-popup .popup-meta {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 12px;
}

.map-popup .popup-price {
    font-weight: 600;
    color: #28a745;
    margin-bottom: 12px;
}

.map-popup .popup-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.map-popup .btn {
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 4px;
}

/* Hover Tooltip */
.leaflet-tooltip {
    background: rgba(0,0,0,0.8);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 0.85rem;
    font-weight: 500;
}

.leaflet-tooltip-top:before {
    border-top-color: rgba(0,0,0,0.8);
}

/* Map Controls */
.leaflet-control-zoom a {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.leaflet-control-zoom a:hover {
    background-color: #228B22;
    transform: scale(1.05);
}

/* Map Filter Panel */
.map-filter-panel {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 15px;
    z-index: 1000;
    min-width: 250px;
}

.map-filter-panel h6 {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

.map-filter-panel .form-control,
.map-filter-panel .form-select {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.map-filter-panel .btn {
    font-size: 0.8rem;
    padding: 6px 12px;
}

/* Map Legend */
.map-legend {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 10px;
    z-index: 1000;
    font-size: 0.8rem;
}

.map-legend .legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.map-legend .legend-marker {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-right: 8px;
    border: 2px solid white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Map Popup Styling */
.leaflet-popup-content-wrapper {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.1);
}

.leaflet-popup-content {
    margin: 15px;
    line-height: 1.5;
}

.leaflet-popup-tip {
    background: white;
    border: 1px solid rgba(0,0,0,0.1);
}

/* Map Loading State */
.map-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.9);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    z-index: 1000;
}

.map-loading .spinner-border {
    color: var(--primary-color);
}

/* Responsive Map */
@media (max-width: 768px) {
    .map-filter-panel {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 15px;
        width: 100%;
    }
    
    .map-legend {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 15px;
        width: 100%;
    }
    
    .circular-marker {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    color: var(--dark-color);
    letter-spacing: -0.02em;
}

.display-1, .display-2, .display-3, .display-4 {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    letter-spacing: -0.03em;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #228B22;
    border-color: #228B22;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(46, 139, 87, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--dark-color);
    font-weight: 500;
}

.btn-secondary:hover {
    background-color: #E6C200;
    border-color: #E6C200;
    color: var(--dark-color);
}

/* Cards */
.card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.card-text {
    color: #6c757d;
    line-height: 1.5;
}

/* Hotel Cards */
.hotel-card {
    position: relative;
    overflow: hidden;
}

.hotel-card .card-img-top {
    height: 250px;
}

.hotel-card .price-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.hotel-card .rating {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.85rem;
}

/* Forms */
.form-control {
    border-radius: 0.5rem;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(46, 139, 87, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.form-select {
    border-radius: 0.5rem;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
}

/* Search Section */
.search-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #228B22 100%);
    color: white;
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.search-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.search-card .form-control {
    border: 2px solid #e9ecef;
    border-radius: 0.5rem;
    padding: 1rem;
    font-size: 1.1rem;
}

.search-card .btn-primary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 0.5rem;
}

.hero-section {
    background: linear-gradient(135deg, #1a5d1a 0%, #2d8a2d 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Left Content Styles */
.hero-content {
    color: white;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 90%;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary.hero-btn {
    background: white;
    color: #1a5d1a;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-primary.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary.hero-btn {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-secondary.hero-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Right Carousel Styles */
.hero-carousel {
    position: relative;
    height: 500px;
    perspective: 1000px;
    z-index: 1;
}

.carousel-container {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
    will-change: transform;
}

.carousel-item {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    min-width: 100%;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.carousel-item.active .carousel-image {
    transform: scale(1.05);
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.carousel-item.active .carousel-caption {
    transform: translateY(0);
}

.carousel-title {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.carousel-location {
    font-size: 1rem;
    opacity: 0.9;
}

.carousel-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.nav-dot.active {
    background: white;
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.carousel-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.arrow {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    pointer-events: auto;
    font-size: 18px;
    color: white;
    font-weight: bold;
    user-select: none;
}

.arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.arrow:active {
    transform: scale(0.95);
}

/* Stats Section */
.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-carousel {
        height: 400px;
        order: -1;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .carousel-arrows {
        padding: 0 15px;
    }
    
    .arrow {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-carousel {
        height: 300px;
    }
    
    .carousel-arrows {
        padding: 0 10px;
    }
    
    .arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .carousel-nav {
        bottom: 15px;
    }
    
    .nav-dot {
        width: 10px;
        height: 10px;
    }
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background-color: var(--light-color);
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
    letter-spacing: -0.01em;
}

.feature-description {
    color: #6c757d;
    line-height: 1.6;
}

/* Destinations Section */
.destinations-section {
    padding: 4rem 0;
}

.destination-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.destination-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1.5rem;
}

/* Booking Form */
.booking-form {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
}

.booking-step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step.active {
    background: var(--primary-color);
    color: white;
}

.step.completed {
    background: var(--success-color);
    color: white;
}

/* Dashboard Styles */
.dashboard-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
}

.dashboard-stat {
    text-align: center;
    padding: 1.5rem;
}

.dashboard-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.dashboard-stat .stat-label {
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* Tables */
.table {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.table thead th {
    background-color: var(--primary-color);
    color: white;
    border: none;
    font-weight: 600;
    padding: 1rem;
}

.table tbody td {
    padding: 1rem;
    vertical-align: middle;
    border-color: #e9ecef;
}

.table tbody tr:hover {
    background-color: #f8f9fa;
}

/* Status Badges */
.badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 500;
}

.badge-pending {
    background-color: var(--warning-color);
    color: var(--dark-color);
}

.badge-approved {
    background-color: var(--success-color);
    color: white;
}

.badge-rejected {
    background-color: var(--danger-color);
    color: white;
}

.badge-blocked {
    background-color: var(--dark-color);
    color: white;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .search-card {
        padding: 1.5rem;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .dashboard-stat .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .search-section {
        padding: 2rem 0;
    }
    
    .features-section {
        padding: 2rem 0;
    }
    
    .destinations-section {
        padding: 2rem 0;
    }
}

/* Utility Classes */
.text-primary { color: var(--primary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.border-primary { border-color: var(--primary-color) !important; }

.text-secondary { color: var(--secondary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }

.shadow-sm { box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important; }
.shadow { box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important; }
.shadow-lg { box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important; }

.rounded-lg { border-radius: 1rem !important; }
.rounded-xl { border-radius: 1.5rem !important; }

/* Montserrat Font Utilities */
.font-montserrat { font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important; }
.font-montserrat-light { font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important; font-weight: 300 !important; }
.font-montserrat-regular { font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important; font-weight: 400 !important; }
.font-montserrat-medium { font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important; font-weight: 500 !important; }
.font-montserrat-semibold { font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important; font-weight: 600 !important; }
.font-montserrat-bold { font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important; font-weight: 700 !important; }
.font-montserrat-extrabold { font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important; font-weight: 800 !important; }
.font-montserrat-black { font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important; font-weight: 900 !important; }

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-up {
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
