* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f8fc;
    color: #111;
}

.hero {
    min-height: 100vh;
    background:
        linear-gradient(rgba(15, 1, 71, 0.95), rgba(0, 238, 255, 0.55));
    background-size: cover;
    background-position: center;
    position: relative;
    padding-bottom: 120px;
}

.navbar {
    width: 90%;
    margin: auto;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ff7f00;
}

.nav-links a.active {
    color: #ff7f00;
}

.explore-btn {
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    border: none;
    padding: 14px 28px;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.explore-btn:hover {
    transform: translateY(-3px);
}

.hero-content {
    width: 85%;
    margin: auto;
    padding-top: 80px;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 65px;
    max-width: 900px;
    margin: auto;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 18px;
    max-width: 700px;
    margin: auto;
    color: #e8e8e8;
}

.search-panel {
    width: 90%;
    max-width: 1300px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    margin: 70px auto 0;
    padding: 30px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.search-item {
    display: flex;
    flex-direction: column;
}

.search-item label {
    color: #fff;
    margin-bottom: 10px;
    font-weight: 500;
}

.search-item select {
    padding: 14px;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    outline: none;
}

.search-btn {
    min-height: 50px;
    background: linear-gradient(135deg, #ff9966, #ff5e62);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 16px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
}

.search-btn:hover {
    transform: scale(1.04);
}

.location-type-section {
    padding: 15px;
    border-radius: 14px;
    border: 3px dotted #ffffff;
}

.featured-section {
    padding: 90px 7%;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 45px;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
}

.cards-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.destination-card {
    max-width: 400px;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
}

.destination-card:hover {
    transform: translateY(-10px);
}

.destination-image {
    height: 260px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.destination-card:hover img {
    transform: scale(1.08);
}

.destination-content {
    padding: 25px;
}

.location-tag {
    display: inline-block;
    background: #ebf6ff;
    color: #0077ff;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 15px;
    font-weight: 600;
}

.destination-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.destination-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 18px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.info-box {
    background: #f5f7fa;
    padding: 14px;
    border-radius: 14px;
}

.info-box span {
    font-size: 12px;
    color: #777;
}

.info-box h4 {
    margin-top: 6px;
    font-size: 15px;
}

.card-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    border: none;
    padding: 15px;
    border-radius: 16px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
}

.investor-section {
    position: relative;
    min-height: 500px;
    background:
        url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.investor-content {
    padding: 90px 0;
    position: relative;
    z-index: 2;
    color: #fff;
    width: 90%;
    max-width: 1000px;
}

.investor-content h2 {
    font-size: 52px;
    margin-bottom: 20px;
}

.investor-content p {
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 35px 20px;
}

.stat-box h3 {
    font-size: 36px;
    margin-bottom: 10px;
}

.worldmap-section .worldmap-container {
    width: 90%;
    max-width: 1400px;
    margin: 90px auto;
}

.worldmap-section .section-title {
    margin-bottom: 0;
}

.worldmap-container .worldmap-image {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

footer {
    background: #0f172a;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.footer-logo {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    margin-top: 25px;
}

.footer-links a {
    color: #ddd;
    margin: 0 15px;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ff7f00;
}

footer .copyright {
    margin-top: 20px;
    font-size: 14px;
    color: #aaa;
}

@media(max-width:1100px) {

    .search-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .navbar {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media(max-width:700px) {

    .search-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .section-title h2 {
        font-size: 35px;
    }

    .investor-content h2 {
        font-size: 36px;
    }

    .footer-links a {
        display: block;
        margin: 10px 0;
    }
}