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

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    backdrop-filter: blur(12px);
    background-color: rgba(255, 255, 255, 0.8) !important;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0d9488, #06b6d4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

.nav-link {
    color: #6b7280 !important;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #0d9488 !important;
}

.btn-cta {
    background: linear-gradient(135deg, #0d9488, #06b6d4);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(13, 148, 136, 0.2);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    box-shadow: 0 6px 12px rgba(13, 148, 136, 0.3);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 50%, #fff7ed 100%);
    z-index: -1;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    mix-blend-mode: multiply;
    opacity: 0.3;
    animation: blob 7s infinite;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: #5eead4;
    top: 80px;
    left: 40px;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: #67e8f9;
    top: 160px;
    right: 40px;
    animation-delay: 2s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: #fcd34d;
    bottom: 80px;
    left: 50%;
    animation-delay: 4s;
}

@keyframes blob {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #0d9488, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

/* Search Card */
.search-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.search-card .form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.search-card .form-control {
    border-radius: 12px;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.search-card .form-control:focus {
    border-color: #0d9488;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.btn-search {
    background: linear-gradient(135deg, #0d9488, #06b6d4);
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(13, 148, 136, 0.3);
    transition: all 0.3s ease;
}

.btn-search:hover {
    box-shadow: 0 12px 24px rgba(13, 148, 136, 0.4);
    transform: scale(1.05);
}

/* Stats Section */
.stats-section {
    margin-top: 3rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #0d9488;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b7280;
    font-size: 1.1rem;
}

/* Section Styles */
.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

/* Features */
.features-section {
    background: white;
    padding: 6rem 0;
}

.feature-card {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    border-color: #5eead4;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0d9488, #06b6d4);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: white;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.7;
}

/* Destinations */
.destinations-section {
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    padding: 6rem 0;
}

.destination-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.destination-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

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

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.destination-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.rating-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 1;
}

.rating-badge i {
    color: #fbbf24;
}

.destination-content {
    padding: 1.5rem;
}

.destination-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.destination-content .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0d9488;
}

.destination-content .btn {
    background: linear-gradient(135deg, #0d9488, #06b6d4);
    border: none;
    border-radius: 12px;
    padding: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.destination-content .btn:hover {
    box-shadow: 0 8px 16px rgba(13, 148, 136, 0.3);
}

/* How It Works */
.how-it-works-section {
    background: white;
    padding: 6rem 0;
}

.step-card {
    position: relative;
    background: white;
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    text-align: center;
}

.step-card:hover {
    border-color: #5eead4;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0d9488, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
    box-shadow: 0 8px 16px rgba(13, 148, 136, 0.3);
    transition: transform 0.3s ease;
}

.step-card:hover .step-number {
    transform: translateX(-50%) scale(1.1);
}

.step-icon {
    width: 48px;
    height: 48px;
    background: #ecfdf5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 1.5rem;
    font-size: 1.5rem;
    color: #0d9488;
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.step-card p {
    color: #6b7280;
    line-height: 1.7;
}

/* Pricing */
.pricing-section {
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    padding: 6rem 0;
}

.pricing-card {
    position: relative;
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
}

.pricing-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.pricing-card.popular {
    border-color: #0d9488;
    box-shadow: 0 20px 50px rgba(13, 148, 136, 0.15);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0d9488, #06b6d4);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.pricing-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 2rem;
}

.pricing-card .price span {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #6b7280;
}

.features-list i {
    color: #0d9488;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Testimonials */
.testimonials-section {
    background: white;
    padding: 6rem 0;
}

.testimonial-card {
    position: relative;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    border-color: #5eead4;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    position: absolute;
    top: -16px;
    left: 2rem;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0d9488, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.rating {
    color: #fbbf24;
}

.testimonial-text {
    color: #374151;
    font-style: italic;
    line-height: 1.7;
    margin-top: 2rem;
}

.avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0d9488, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    border: 2px solid #5eead4;
}

/* Footer */
.footer {
    background: #1f2937;
    color: #d1d5db;
}

.footer h5 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #5eead4;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, #0d9488, #06b6d4);
    transform: scale(1.1);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #0d9488, #06b6d4);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0f766e, #0891b2);
}

.btn-outline-primary {
    border-color: #0d9488;
    color: #0d9488;
}

.btn-outline-primary:hover {
    background: #0d9488;
    border-color: #0d9488;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .search-card {
        padding: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}