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

:root {
    --primary: #00a8cc;
    --secondary: #0fbcf9;
    --dark: #1e272e;
    --light: #f5f6fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background: var(--light);
}

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

a {
    text-decoration: none;
    color: inherit;
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--dark);
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 168, 204, 0.4);
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="1920" height="1080"><rect fill="%2300a8cc" width="1920" height="1080"/><text x="50%" y="50%" font-size="150" text-anchor="middle" fill="white">🕌</text></svg>');
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.search-box {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.search-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--light);
    border-radius: 10px;
    color: #666;
}

.search-item input {
    border: none;
    background: transparent;
    outline: none;
    width: 150px;
}

.btn-search {
    padding: 15px 30px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-search:hover {
    background: #0097b2;
}

.features {
    background: #fff;
    padding: 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: var(--light);
    transition: all 0.3s;
}

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

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.feature-card h3 {
    margin-bottom: 10px;
    color: var(--dark);
}

.feature-card p {
    color: #666;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--dark);
}

.tours, .destinations, .hotels, .testimonials {
    padding: 100px 0;
}

.tours {
    background: #fff;
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.tour-card {
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

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

.tour-card .tour-img {
    height: 220px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
}

.tour-card .duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.tour-card .tour-info {
    padding: 25px;
}

.tour-card h3 {
    margin-bottom: 10px;
    color: var(--dark);
}

.tour-card .location {
    color: #666;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-card .price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 15px;
}

.tour-card .price span {
    font-size: 0.9rem;
    color: #666;
    font-weight: normal;
}

.tour-card .btn-primary {
    width: 100%;
    text-align: center;
}

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

.destination-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.destination-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.destination-card.large {
    grid-row: span 2;
}

.destination-card .dest-img {
    height: 150px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.destination-card.large .dest-img {
    height: 320px;
    font-size: 6rem;
}

.destination-card .dest-info {
    padding: 20px;
}

.destination-card h3 {
    margin-bottom: 5px;
    color: var(--dark);
}

.destination-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.destination-card .price {
    color: var(--primary);
    font-weight: bold;
}

.hotels {
    background: #fff;
}

.hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.hotel-card {
    background: var(--light);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

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

.hotel-card .hotel-img {
    height: 180px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

.hotel-card .hotel-info {
    padding: 20px;
}

.hotel-card h3 {
    margin-bottom: 10px;
}

.hotel-card .rating {
    color: #f1c40f;
    margin-bottom: 10px;
}

.hotel-card .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary);
}

.testimonials {
    background: var(--light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.testimonial-card .avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.testimonial-card p {
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card h4 {
    color: var(--dark);
    margin-bottom: 5px;
}

.testimonial-card span {
    color: #999;
    font-size: 0.9rem;
}

.book {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 80px 0;
}

.book-content {
    text-align: center;
    color: #fff;
}

.book-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.book-content p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.book-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.book-form input {
    padding: 15px 25px;
    border: none;
    border-radius: 10px;
    width: 250px;
    outline: none;
}

.book-form .btn-primary {
    background: var(--dark);
}

.footer {
    background: var(--dark);
    color: #fff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 span {
    color: var(--primary);
}

.footer-col h4 {
    margin-bottom: 20px;
}

.footer-col p,
.footer-col a {
    color: #bdc3c7;
    margin-bottom: 10px;
    display: block;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--primary);
}

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

.social a {
    width: 40px;
    height: 40px;
    background: #34495e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social a:hover {
    background: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .search-box {
        flex-direction: column;
    }
    
    .search-item {
        width: 100%;
    }
    
    .search-item input {
        width: 100%;
    }
    
    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .destination-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .destination-card.large {
        grid-column: span 2;
    }
    
    .destination-card.large .dest-img {
        height: 200px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .book-form input {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}