/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #663399;
    --secondary-color: #ff6b35;
    --accent-color: #20c997;
    --green-accent: #27ae60;
    --golden-yellow: #ffc107;
    --white: #FFFFFF;
    --light-gray: #f8f9fa;
    --dark-gray: #495057;
    --shadow: 0 8px 32px rgba(102, 51, 153, 0.12);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, #663399 0%, #8e44ad 100%);
    --gradient-secondary: linear-gradient(135deg, #ff6b35 0%, #f4511e 100%);
    --gradient-golden: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
}

body {
    font-family: 'Tajawal', sans-serif;
    line-height: 1.7;
    color: var(--primary-color);
    background-color: var(--white);
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(243, 156, 18, 0.3);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    font-weight: 500;
    opacity: 0.8;
}

.highlight-text {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.2rem;
    opacity: 1;
    text-shadow: 0 2px 4px rgba(255, 107, 53, 0.2);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 32px rgba(30, 58, 95, 0.08);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(30, 58, 95, 0.05);
}

.navbar {
    padding: 0.8rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    min-width: 20px;
}

.nav-action-btn:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 51, 153, 0.3);
}

.cart-btn:hover {
    background: var(--gradient-secondary);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    height: 45px;
    flex-shrink: 0;
}

.logo-image {
    height: 40px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 15px;
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    background: transparent;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--white);
    background: var(--gradient-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.2);
}

.nav-link.active {
    color: var(--white);
    background: var(--gradient-secondary);
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.whatsapp-btn {
    background: var(--green-accent);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.whatsapp-btn:hover::before {
    left: 100%;
}

.whatsapp-btn:hover {
    background: #229954;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(39, 174, 96, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 50vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: brightness(0.7) contrast(1.1);
    transition: transform 0.3s ease;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.85) 0%, rgba(41, 128, 185, 0.6) 50%, rgba(243, 156, 18, 0.3) 100%);
    z-index: -1;
    transition: opacity 0.3s ease;
}

.hero:hover .hero-overlay {
    opacity: 0.9;
}

/* إضافة تأثير الجسيمات المتحركة */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-particles" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"><animate attributeName="opacity" values="0.1;0.3;0.1" dur="3s" repeatCount="indefinite"/></circle></pattern></defs><rect width="100" height="100" fill="url(%23hero-particles)"/></svg>');
    z-index: 0;
    pointer-events: none;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-20px); }
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.3s both;
    font-weight: 500;
    opacity: 0.95;
}

.hero-btn {
    display: inline-block;
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 20px 45px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: 0 10px 35px rgba(243, 156, 18, 0.4);
    animation: fadeInUp 1s ease-out 0.6s both;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 50px rgba(243, 156, 18, 0.5);
}

/* Global Destinations Section */
.global-destinations {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.destination-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(102, 51, 153, 0.1);
    transition: var(--transition);
    border: 2px solid rgba(255, 107, 53, 0.1);
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(102, 51, 153, 0.15);
    border-color: var(--secondary-color);
}

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

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.destination-overlay {
    position: absolute;
    top: 8px;
    right: 8px;
    left: 8px;
    display: flex;
    justify-content: space-between;
}

.rating, .visitors {
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 0.75rem;
    font-weight: 600;
}

.rating {
    color: #ffc107;
}

.visitors {
    color: var(--primary-color);
}

.destination-content {
    padding: 15px;
    text-align: center;
}

.destination-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 8px 0;
}

.destination-content p {
    font-size: 0.8rem;
    color: var(--dark-gray);
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.destination-stats {
    text-align: center;
}

.rank {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary-color);
    background: rgba(255, 107, 53, 0.1);
    padding: 3px 8px;
    border-radius: 10px;
    display: inline-block;
}

@media (max-width: 768px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}



/* Stats Section */
.stats {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(30, 58, 95, 0.1);
    border-bottom: 1px solid rgba(30, 58, 95, 0.1);
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="hexagon" width="60" height="60" patternUnits="userSpaceOnUse"><polygon points="30,5 50,20 50,40 30,55 10,40 10,20" fill="none" stroke="%23f39c12" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="60" height="60" fill="url(%23hexagon)"/></svg>');
    pointer-events: none;
}

.stats .section-title {
    color: var(--primary-color);
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 250px;
    padding: 50px 30px;
    border-radius: 25px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(30, 58, 95, 0.08),
        0 4px 20px rgba(243, 156, 18, 0.12);
    backdrop-filter: blur(20px);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 25px 25px 0 0;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.8s ease;
}

.stat-item:hover::after {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(30, 58, 95, 0.15),
        0 8px 30px rgba(243, 156, 18, 0.2);
}

.stat-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    transition: var(--transition);
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotateY(10deg);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: 'Cairo', sans-serif;
    text-shadow: 0 2px 4px rgba(30, 58, 95, 0.1);
    transition: var(--transition);
}

.stat-item:hover .stat-number {
    color: var(--secondary-color);
    transform: scale(1.05);
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-gray);
    font-family: 'Cairo', sans-serif;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.stat-item:hover .stat-label {
    color: var(--primary-color);
}

/* Featured Trips Section */
.featured-trips {
    padding: 100px 0;
}

.featured-trips .trip-card {
    position: relative;
    overflow: hidden;
}

.featured-trips .trip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
    z-index: 1;
}

.trips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.trip-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.trip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.trip-content {
    padding: 30px;
}

.trip-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.trip-content p {
    color: var(--dark-gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.trip-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e67e22 100%);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trip-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.trip-btn:hover::before {
    left: 100%;
}

.trip-btn::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.trip-btn:hover {
    background: linear-gradient(135deg, #e67e22 0%, var(--secondary-color) 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(243, 156, 18, 0.4);
}

.trip-btn:hover::after {
    transform: translateX(5px);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--light-gray);
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.testimonial-item {
    display: none;
    padding: 50px 40px;
    background: var(--white);
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--secondary-color);
    position: relative;
}

.testimonial-item::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 4rem;
    color: var(--secondary-color);
    font-family: serif;
}

.testimonial-item.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial-content p {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-style: italic;
    font-weight: 500;
}

.testimonial-author h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--secondary-color);
    font-weight: 600;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--secondary-color);
}

/* Final CTA Section */
.final-cta {
    padding: 150px 0;
    background: url('https://images.unsplash.com/photo-1541432901042-2d8bd64b4a9b?ixlib=rb-4.0.3') center/cover;
    position: relative;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 44, 79, 0.8);
}

.cta-content {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 20px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    background: #e6c547;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    height: 50px;
}

.footer-logo-image {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.footer-logo-image:hover {
    transform: scale(1.05);
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--secondary-color);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

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

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

/* Hero Search Styles */
.hero-search {
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-container {
    display: flex;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.search-input {
    flex: 1;
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
    border-radius: 50px;
    background: transparent;
    color: var(--primary-color);
}

.search-input::placeholder {
    color: var(--dark-gray);
}

.search-btn {
    background: var(--secondary-color);
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    background: #f4511e;
}

.search-suggestions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.suggestion-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.suggestion-tag:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Luxury Experience Styles */
.luxury-experience {
    padding: 60px 0;
    background: var(--white);
}

.luxury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.luxury-item {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    background: var(--light-gray);
    transition: var(--transition);
}

.luxury-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 51, 153, 0.1);
    background: var(--white);
}

.luxury-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.luxury-icon i {
    font-size: 2.5rem;
    color: white;
}

.luxury-item:hover .luxury-icon {
    transform: scale(1.1);
}

.luxury-item h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.luxury-item p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Best Hotels Styles */
.best-hotels {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.best-hotels::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="hotel-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><polygon points="30,10 35,20 30,30 25,20" fill="%23663399" opacity="0.03"/></pattern></defs><rect width="60" height="60" fill="url(%23hotel-pattern)"/></svg>');
    pointer-events: none;
}

.hotels-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.hotel-tab {
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(102, 51, 153, 0.1);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    color: var(--dark-gray);
    backdrop-filter: blur(10px);
}

.hotel-tab:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.hotel-tab.active {
    background: var(--gradient-secondary);
    color: white;
    border-color: var(--secondary-color);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.hotels-content {
    position: relative;
    z-index: 1;
}

.country-hotels {
    display: none;
}

.country-hotels.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.hotel-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(102, 51, 153, 0.1);
    transition: var(--transition);
    border: 2px solid rgba(255, 107, 53, 0.1);
    position: relative;
}

.hotel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 20px 20px 0 0;
}

.hotel-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(102, 51, 153, 0.15);
    border-color: var(--secondary-color);
}

.hotel-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

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

.hotel-content {
    padding: 20px;
}

.hotel-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.hotel-rating i {
    color: #ffc107;
    font-size: 1rem;
}

.hotel-rating span {
    margin-right: 10px;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.hotel-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    transition: var(--transition);
}

.hotel-card:hover .hotel-content h3 {
    color: var(--secondary-color);
}

.hotel-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.hotel-location i {
    color: var(--secondary-color);
}

.hotel-content p {
    color: var(--dark-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Comprehensive Search Styles */
.comprehensive-search {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 1px solid rgba(102, 51, 153, 0.1);
}

.search-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(102, 51, 153, 0.1);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    color: var(--dark-gray);
    backdrop-filter: blur(10px);
}

.tab:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.tab.active {
    background: var(--gradient-secondary);
    color: white;
    border-color: var(--secondary-color);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.tab i {
    font-size: 1.2rem;
}

.search-form-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(102, 51, 153, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 193, 7, 0.2);
    max-width: 1200px;
    margin: 0 auto;
}

.luxury-search-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 5px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    right: 15px;
    color: var(--secondary-color);
    font-size: 1.1rem;
    z-index: 2;
}

.input-wrapper input,
.input-wrapper select {
    width: 100%;
    padding: 18px 50px 18px 20px;
    border: 2px solid rgba(102, 51, 153, 0.1);
    border-radius: 15px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    transition: var(--transition);
    font-weight: 500;
}

.input-wrapper input:focus,
.input-wrapper select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    background: white;
}

.input-wrapper input::placeholder {
    color: var(--dark-gray);
    opacity: 0.7;
}

.search-btn-group {
    display: flex;
    align-items: end;
}

.luxury-search-btn {
    width: 100%;
    padding: 20px 30px;
    background: var(--gradient-secondary);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.luxury-search-btn:hover {
    background: linear-gradient(135deg, #ff7849 0%, #ff5722 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.luxury-search-btn i {
    font-size: 1.2rem;
}

/* Travel Partners Styles */
.travel-partners {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.travel-partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="travel-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="%23663399" opacity="0.05"/></pattern></defs><rect width="60" height="60" fill="url(%23travel-pattern)"/></svg>');
    pointer-events: none;
}

.partners-category {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.category-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
}

.category-title i {
    color: var(--secondary-color);
    font-size: 2rem;
    animation: pulse 2s infinite;
}

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

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.partner-logo {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(102, 51, 153, 0.1);
    transition: var(--transition);
    border: 2px solid rgba(255, 107, 53, 0.1);
    width: 200px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.partner-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 20px 20px 0 0;
}

.partner-logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
}

.partner-logo:hover::after {
    left: 100%;
}

.partner-logo:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(102, 51, 153, 0.15);
    border-color: var(--secondary-color);
}

.partner-logo img {
    max-width: 150px;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(1) contrast(1.1);
    transition: var(--transition);
}

.partner-logo:hover img {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 0.5rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .whatsapp-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .nav-actions {
        order: 1;
    }
    
    .nav-menu {
        order: 2;
    }
    
    .nav-logo {
        order: 3;
    }
    
    .floating-whatsapp {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 26px;
    }
    
    .hero {
        height: 45vh;
        min-height: 350px;
    }
    
    .hero-image {
        object-position: center center;
    }
    
    .comprehensive-search {
        padding: 60px 0;
    }
    
    .search-tabs {
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .tab {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .tab span {
        display: none;
    }
    
    .search-form-container {
        padding: 25px 20px;
        border-radius: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .input-wrapper input,
    .input-wrapper select {
        padding: 15px 45px 15px 15px;
    }
    
    .luxury-search-btn {
        padding: 18px 25px;
        font-size: 1rem;
    }
    
    .search-suggestions {
        gap: 10px;
    }
    
    .suggestion-tag {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .luxury-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .partner-logo {
        width: 170px;
        height: 110px;
        padding: 20px;
    }
    
    .partner-logo img {
        max-width: 130px;
        max-height: 70px;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 30px;
        transition: var(--transition);
        box-shadow: var(--shadow);
        gap: 1rem;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-cta {
        display: none;
    }
    
    .navbar {
        padding: 0.6rem 0;
    }
    
    .logo {
        height: 40px;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .destinations-track {
        gap: 20px;
        padding: 0 15px;
    }
    
    .destination-item {
        padding: 12px;
        min-width: 140px;
    }
    
    .destination-item img {
        width: 120px;
        height: 80px;
    }
    
    .stats-grid {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 0 20px;
    }
    
    .stat-item {
        min-width: 300px;
        max-width: 400px;
        padding: 40px 25px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-icon {
        font-size: 3rem;
    }
    
    .hotels-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .hotels-tabs {
        gap: 10px;
        margin-bottom: 40px;
    }
    
    .hotel-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hotels-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hotel-content h3 {
        font-size: 1.1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .hero-image {
        object-position: center center;
        filter: brightness(0.6) contrast(1.2);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        gap: 20px;
        padding: 0 15px;
    }
    
    .stat-item {
        min-width: 280px;
        padding: 35px 20px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-icon {
        font-size: 2.8rem;
    }
    
    .stat-label {
        font-size: 1.1rem;
    }
    
    .destination-item img {
        width: 80px;
        height: 80px;
    }
    
    .destinations-track {
        gap: 15px;
        padding: 0 10px;
    }
    
    .destination-item {
        min-width: 120px;
        padding: 10px;
    }
    
    .destination-item img {
        width: 100px;
        height: 70px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .logo {
        height: 35px;
    }
    
    .logo-image {
        height: 30px;
    }
}