/* Amy Travel - Modern Design */
:root {
    --primary: #0066cc;
    --secondary: #ffc72c;
    --success: #28a745;
    --dark: #1a1a1a;
    --light: #f8f9fa;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
    color: #333 !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary) !important;
}

/* Hero Stats */
.hero-stats .stat-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-stats .stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.hero-stats h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-stats small {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Enhanced badges */
.hero-badges .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Mobile responsive stats */
@media (max-width: 768px) {
    .hero-stats h3 {
        font-size: 1.5rem;
    }
    
    .hero-stats .stat-item {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,102,204,0.8), rgba(0,51,102,0.9)),
                url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1200&h=800&fit=crop') center/cover;
    z-index: -1;
}

/* Animated Airplanes */
.airplane {
    position: absolute;
    color: rgba(255,255,255,0.3);
    font-size: 2rem;
    z-index: 1;
    pointer-events: none;
}

.airplane-1 {
    top: 20%;
    left: -100px;
    animation: flyAcross 15s linear infinite;
    animation-delay: 0s;
}

.airplane-2 {
    top: 60%;
    left: -100px;
    animation: flyDiagonal 20s linear infinite;
    animation-delay: 7s;
    transform: rotate(15deg);
}

.airplane-3 {
    top: 40%;
    right: -100px;
    animation: flyReverse 18s linear infinite;
    animation-delay: 12s;
    transform: scaleX(-1);
}

@keyframes flyAcross {
    0% {
        left: -100px;
        transform: translateY(0px);
    }
    25% {
        transform: translateY(-20px);
    }
    50% {
        transform: translateY(10px);
    }
    75% {
        transform: translateY(-15px);
    }
    100% {
        left: calc(100vw + 100px);
        transform: translateY(0px);
    }
}

@keyframes flyDiagonal {
    0% {
        left: -100px;
        transform: translateY(0px) rotate(15deg);
    }
    30% {
        transform: translateY(-30px) rotate(15deg);
    }
    60% {
        transform: translateY(20px) rotate(15deg);
    }
    100% {
        left: calc(100vw + 100px);
        transform: translateY(-40px) rotate(15deg);
    }
}

@keyframes flyReverse {
    0% {
        right: -100px;
        transform: translateY(0px) scaleX(-1);
    }
    25% {
        transform: translateY(25px) scaleX(-1);
    }
    50% {
        transform: translateY(-10px) scaleX(-1);
    }
    75% {
        transform: translateY(20px) scaleX(-1);
    }
    100% {
        right: calc(100vw + 100px);
        transform: translateY(-5px) scaleX(-1);
    }
}

/* Promotional Flag */
.promo-flag {
    position: absolute;
    top: 120px;
    right: -150px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 15px 40px 15px 20px;
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 10;
    animation: flagWave 3s ease-in-out infinite;
}

.promo-flag::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-right: 10px solid #e6831a;
}

.promo-flag::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 10px solid #d4761a;
}

.flag-content {
    font-weight: bold;
    font-size: 0.9rem;
    white-space: nowrap;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

@keyframes flagWave {
    0%, 100% {
        transform: rotate(45deg) translateY(0px);
    }
    50% {
        transform: rotate(45deg) translateY(-5px);
    }
}

/* Floating Offer Badges */
.floating-badge {
    position: absolute;
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 5;
    animation: float 4s ease-in-out infinite;
}

.badge-1 {
    top: 25%;
    left: 10%;
    animation-delay: 0s;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
}

.badge-2 {
    top: 70%;
    right: 15%;
    animation-delay: 1.5s;
    background: linear-gradient(45deg, #6f42c1, #e83e8c);
}

.badge-3 {
    top: 45%;
    left: 5%;
    animation-delay: 3s;
    background: linear-gradient(45deg, #17a2b8, #20c997);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translateY(-10px) scale(1.05);
        opacity: 1;
    }
    50% {
        transform: translateY(5px) scale(0.95);
        opacity: 0.9;
    }
    75% {
        transform: translateY(-5px) scale(1.02);
        opacity: 1;
    }
}

.floating-badge i {
    margin-right: 5px;
}

/* Enhanced hover effects for destination cards */
.destination-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.destination-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

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

.destination-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Search Container */
.search-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    overflow: hidden;
}

.search-tabs {
    border-bottom: none;
    background: #f8f9fa;
}

.search-tabs .nav-link {
    border: none;
    background: transparent;
    color: #666;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0;
}

.search-tabs .nav-link.active {
    background: white;
    color: var(--primary);
    border-bottom: 3px solid var(--primary);
}

.search-form {
    padding: 2rem;
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(0,102,204,0.15);
}

.btn-warning {
    background: var(--secondary);
    border: none;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,199,44,0.4);
}

/* Features */
.feature-item {
    padding: 2rem 1rem;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.feature-item i {
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-item h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Destinations */
.destination-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.destination-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-card:hover img {
    transform: scale(1.05);
}

.destination-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
}

.destination-info h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.destination-info p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* B2B Section */
.bg-primary {
    background: linear-gradient(135deg, var(--primary), #004499) !important;
}

/* Contact */
.contact-info {
    padding: 1rem;
}

.contact-info h5 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    border-radius: 8px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    border: none;
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,102,204,0.3);
}

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

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

/* Footer */
footer {
    background: var(--dark) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .search-form {
        padding: 1rem;
    }
    
    .search-tabs .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Hide some animations on mobile for performance */
    .airplane {
        display: none;
    }
    
    .floating-badge {
        font-size: 0.7rem;
        padding: 8px 12px;
    }
    
    .badge-1 {
        top: 20%;
        left: 5%;
    }
    
    .badge-2 {
        top: 75%;
        right: 5%;
    }
    
    .badge-3 {
        display: none; /* Hide third badge on mobile */
    }
    
    .promo-flag {
        top: 100px;
        right: -120px;
        padding: 12px 35px 12px 15px;
        font-size: 0.8rem;
    }
}

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

.feature-item, .destination-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading states */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Service Detail Cards */
.service-detail-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-detail-card .service-icon {
    margin-bottom: 1.5rem;
}

.service-detail-card h3 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-detail-card .pricing {
    background: var(--light);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    color: var(--primary);
    font-size: 1.1rem;
}

/* Contact Info Cards */
.contact-info-card {
    background: white;
    padding: 2rem 1rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-3px);
}

.contact-info-card h5 {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-info-card a {
    color: var(--primary);
    text-decoration: none;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

/* Tech Items */
.tech-item {
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-3px);
}

/* Map Container */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-placeholder {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* RTL Support for Arabic */
.rtl {
    direction: rtl;
    text-align: right;
}

.rtl .navbar-nav {
    flex-direction: row-reverse;
}

.rtl .d-flex {
    flex-direction: row-reverse;
}

.rtl .search-form .row {
    direction: rtl;
}

.rtl .feature-item {
    text-align: right;
}

.rtl .destination-info {
    text-align: right;
}

.rtl .floating-badge {
    left: auto;
    right: 10%;
}

.rtl .badge-2 {
    left: 15%;
    right: auto;
}

.rtl .promo-flag {
    left: -150px;
    right: auto;
    transform: rotate(-45deg);
}

/* Language Switcher */
.dropdown-menu {
    min-width: 150px;
}

.dropdown-item img {
    width: 16px;
    height: 12px;
}

/* Enhanced Mobile Styles */
@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .search-container {
        margin: 0 -0.5rem;
    }
    
    .search-form {
        padding: 1rem 0.5rem;
    }
    
    .floating-badge {
        font-size: 0.6rem;
        padding: 6px 10px;
    }
    
    .promo-flag {
        right: -100px;
        padding: 10px 30px 10px 12px;
    }
    
    .rtl .promo-flag {
        left: -100px;
        right: auto;
    }
    
    .service-detail-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .contact-info-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
    }
    
    .d-flex {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .rtl .d-flex {
        flex-direction: column;
    }
    
    .btn {
        margin-bottom: 0.5rem;
    }
    
    .hero-section {
        min-height: 60vh;
        padding-top: 80px;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .accordion-button {
        font-size: 0.9rem;
        padding: 1rem 0.75rem;
    }
    
    .accordion-body {
        padding: 1rem 0.75rem;
    }
}

/* World Map Background */
.hero-bg-map {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('images/worldwidemap.jpg') center/cover,
        url('images/worldwidetravel.jpg') center/cover,
        #1e3d72;
    background-attachment: fixed;
    z-index: -1;
}
    background-attachment: fixed;
    z-index: -1;
}

/* Flight Path Lines */
.flight-path {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    z-index: 1;
    animation: pathGlow 4s ease-in-out infinite;
}

.path-1 {
    top: 30%;
    left: 10%;
    width: 300px;
    transform: rotate(15deg);
    animation-delay: 0s;
}

.path-2 {
    top: 60%;
    right: 15%;
    width: 250px;
    transform: rotate(-20deg);
    animation-delay: 2s;
}

.path-3 {
    top: 45%;
    left: 50%;
    width: 200px;
    transform: rotate(45deg);
    animation-delay: 1s;
}

@keyframes pathGlow {
    0%, 100% {
        opacity: 0.3;
        box-shadow: 0 0 5px rgba(255,255,255,0.3);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 15px rgba(255,255,255,0.6);
    }
}

/* Enhanced Floating Badges */
.badge-4 {
    top: 35%;
    right: 25%;
    animation-delay: 2.5s;
    background: linear-gradient(45deg, #007bff, #0056b3);
}

/* Footer Enhancements */
footer a {
    color: #ffc72c;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Enhanced Service Cards */
.service-detail-card .service-icon i {
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-detail-card:hover .service-icon i {
    transform: scale(1.1);
    color: #0056b3;
}

/* Google Maps Enhancement */
iframe {
    transition: all 0.3s ease;
}

iframe:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Contact Info Cards Enhancement */
.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-3px);
}

.contact-info-card h5 {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-info-card .btn {
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-info-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Map Container */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

/* Flight Search Integration */
.flight-search-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-top: 2rem;
}

.flight-search-container iframe {
    width: 100%;
    min-height: 600px;
    border: none;
}

@media (max-width: 768px) {
    .flight-search-container iframe {
        min-height: 500px;
    }
}

/* Enhanced Buttons */
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Smooth Animations */
* {
    transition: all 0.3s ease;
}

/* Enhanced Typography */
h1, h2, h3, h4, h5 {
    font-weight: 600;
    line-height: 1.2;
}

/* Professional Spacing */
section {
    padding: 4rem 0;
}

/* Payment Methods Grid */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.payment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.payment-item i {
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.payment-item:hover i {
    transform: scale(1.1);
}

.payment-item span {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    section {
        padding: 2rem 0;
    }
    
    .payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
    
    .payment-item {
        padding: 1rem;
    }
    
    .payment-item i {
        font-size: 2rem !important;
    }
}

/* Religious Packages */
.religious-package {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.religious-package:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.religious-package .package-icon i {
    opacity: 0.9;
}

.religious-package h3 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.religious-package .package-features {
    margin: 1.5rem 0;
}

.religious-package .badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
}

/* Package Gallery */
.package-gallery {
    margin: 1.5rem 0;
}

.package-gallery img {
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid rgba(255,255,255,0.3);
}

.package-gallery img:hover {
    transform: scale(1.05);
    border-color: rgba(255,255,255,0.8);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* WhatsApp Form */
#whatsappForm .form-control,
#whatsappForm .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

#whatsappForm .form-control:focus,
#whatsappForm .form-select:focus {
    border-color: #25d366;
    box-shadow: 0 0 0 0.2rem rgba(37, 211, 102, 0.25);
}

.btn-success {
    background: linear-gradient(135deg, #25d366, #128c7e);
    border: none;
    font-weight: 600;
}

.btn-success:hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
    .religious-package {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .religious-package .package-icon i {
        font-size: 3rem !important;
    }
}

/* Animated Cruise Ships */
.cruise-ship {
    position: absolute;
    color: rgba(255,255,255,0.8);
    font-size: 2rem;
    z-index: 2;
    animation: cruiseMove 45s linear infinite;
}

.cruise-1 {
    bottom: 20%;
    right: -100px;
    animation-delay: 0s;
}

.cruise-2 {
    bottom: 35%;
    right: -100px;
    animation-delay: 15s;
}

.cruise-3 {
    bottom: 50%;
    right: -100px;
    animation-delay: 30s;
}

@keyframes cruiseMove {
    0% {
        right: -100px;
        transform: translateY(0px) scaleX(-1);
    }
    25% {
        transform: translateY(-10px) scaleX(-1);
    }
    50% {
        transform: translateY(5px) scaleX(-1);
    }
    75% {
        transform: translateY(-5px) scaleX(-1);
    }
    100% {
        right: calc(100% + 100px);
        transform: translateY(0px) scaleX(-1);
    }
}

/* Sea Wave Effect */
.cruise-ship::after {
    content: '〰️';
    position: absolute;
    right: -30px;
    top: 50%;
    font-size: 1rem;
    opacity: 0.6;
    animation: waveEffect 2s ease-in-out infinite;
    transform: scaleX(-1);
}

@keyframes waveEffect {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-5px);
        opacity: 0.3;
    }
}

/* Top Destinations Cards */
.top-destination-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 200px;
}

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

.top-destination-card img {
    width: 100%;
    height: 100%;
    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: 2rem 1rem 1rem;
    text-align: center;
}

.destination-overlay h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Tour Cards */
.tour-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

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

.tour-card.featured .featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff6b35;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.tour-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tour-info {
    padding: 1.5rem;
}

.tour-info h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #333;
}

.rating {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.1rem;
    color: #007bff;
    margin-bottom: 0.5rem;
}

.duration {
    font-size: 0.9rem;
    color: #666;
}

/* Excursion Cards */
.excursion-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.excursion-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.excursion-info {
    padding: 1rem;
}

.excursion-info h6 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
    line-height: 1.3;
}

.excursion-info .rating {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.excursion-info .price {
    font-size: 1rem;
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero {
        min-height: 70vh;
        padding: 2rem 0;
    }
    
    .hero-content h1 {
        font-size: 2rem !important;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1rem !important;
        margin-bottom: 2rem;
    }
    
    /* Search Form Mobile */
    .search-form .row {
        margin: 0;
    }
    
    .search-form .col-md-3,
    .search-form .col-md-2 {
        padding: 0.25rem;
        margin-bottom: 1rem;
    }
    
    .search-form .form-control,
    .search-form .form-select {
        font-size: 16px;
        padding: 0.75rem;
        border-radius: 8px;
    }
    
    .search-form .btn {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
        margin-top: 1rem;
    }
    
    /* Navigation Mobile */
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        font-size: 1.1rem;
    }
    
    /* Feature Cards Mobile */
    .feature-item {
        text-align: center;
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }
    
    .feature-item i {
        font-size: 2.5rem !important;
    }
    
    .feature-item h5 {
        font-size: 1.2rem;
        margin: 1rem 0;
    }
    
    /* Destination Cards Mobile */
    .destination-card {
        margin-bottom: 2rem;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .destination-card img {
        height: 200px;
        object-fit: cover;
    }
    
    .destination-info {
        padding: 1.5rem;
    }
    
    .destination-info h5 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    /* Religious Package Mobile */
    .religious-package {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .religious-package .package-icon i {
        font-size: 3rem !important;
    }
    
    .religious-package h3 {
        font-size: 1.3rem;
    }
    
    .religious-package p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* WhatsApp Form Mobile */
    #whatsappForm .form-control,
    #whatsappForm .form-select {
        font-size: 16px;
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    
    #whatsappForm .btn {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    /* Flight Search Mobile */
    .flight-search-container {
        margin: 1rem 0;
        padding: 1rem;
    }
    
    /* Animations Mobile - Disable for performance */
    .airplane,
    .cruise-ship {
        display: none;
    }
    
    /* Typography Mobile */
    .display-5 {
        font-size: 2rem !important;
    }
    
    .lead {
        font-size: 1.1rem !important;
    }
    
    /* Container Mobile */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
/* Hero Stats Enhancement */
.hero-stats .stat-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-stats .stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.hero-stats h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-stats small {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.hero-badges .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .hero-stats h3 {
        font-size: 1.5rem;
    }
    
    .hero-stats .stat-item {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
}
/* Get Directions Enhancement */
.contact-info-card h5 {
    color: #ffffff !important;
    font-weight: 700 !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8) !important;
    font-size: 1.3rem !important;
    margin-bottom: 1rem !important;
    background: rgba(0,0,0,0.3) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 8px !important;
}

.contact-info-card h5 i {
    color: #ffc107 !important;
    font-size: 1.2em !important;
}

/* Maps buttons enhancement */
.contact-info-card .btn {
    font-weight: 600 !important;
    padding: 0.75rem 1rem !important;
    border: 2px solid transparent !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2) !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3) !important;
}

.contact-info-card .btn-primary {
    background: #dc3545 !important;
    border-color: #dc3545 !important;
    color: white !important;
}

.contact-info-card .btn-secondary {
    background: #6c757d !important;
    border-color: #6c757d !important;
    color: white !important;
}

.contact-info-card .btn-info {
    background: #17a2b8 !important;
    border-color: #17a2b8 !important;
    color: white !important;
}
/* Fix horizontal scrolling */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

.container-fluid {
    max-width: 100%;
    overflow-x: hidden;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

.col-12, .col-md-6, .col-lg-4, .col-lg-3, .col-lg-8, .col-lg-10 {
    padding-left: 15px;
    padding-right: 15px;
}

/* Ensure hero stats don't overflow */
.hero-stats {
    max-width: 100%;
    overflow: hidden;
}
