/* Modern Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-container {
    width: 100%;
    padding: 0 15px;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.search-input-group {
    display: flex;
    background: white;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.search-input {
    flex: 1;
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
    border-radius: 50px 0 0 50px;
    outline: none;
}

.search-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #4a6cf7;
    color: white;
    border: none;
    padding: 0 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.search-button:hover {
    background: #3a5ce4;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    opacity: 0.7;
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator svg {
    margin-top: 5px;
}

/* Featured Cities Section */
.featured-section {
    padding: 100px 0;
    background: white;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.view-all-link {
    color: #4a6cf7;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    color: #3a5ce4;
    text-decoration: underline;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.city-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.city-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.city-card-link {
    text-decoration: none;
    color: inherit;
}

.city-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.city-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.city-card:hover .city-image {
    transform: scale(1.05);
}

.city-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #4a6cf7;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.city-info {
    padding: 20px;
}

.city-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.city-country {
    color: #4a6cf7;
    font-weight: 600;
}

.city-region {
    color: #7f8c8d;
}

.city-name {
    font-size: 1.5rem;
    margin: 0 0 15px 0;
    color: #2c3e50;
}

.city-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.city-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.rating-value {
    font-weight: 700;
    color: #2c3e50;
}

.review-count {
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.section-subtitle {
    color: #7f8c8d;
    margin: 10px 0 0 0;
    font-size: 1.1rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.category-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    color: #4a6cf7;
}

.category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #f0f4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    background: #4a6cf7;
    color: white;
}

.category-icon svg {
    width: 24px;
    height: 24px;
}

.category-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.3rem;
}

.category-card p {
    margin: 0;
    color: #7f8c8d;
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #2c3e50;
    margin: 15px 0 0 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    font-size: 1rem;
    color: #2c3e50;
}

.author-info p {
    margin: 5px 0 0 0;
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
   