/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2563eb;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2563eb;
}

.language-switcher {
    padding: 0.5rem 1rem;
    border: 1px solid #2563eb;
    border-radius: 4px;
    background: none;
    color: #2563eb;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Search Bar Styles */
.search-container {
    max-width: 600px;
    margin: 0 auto 2rem;
    padding: 0 20px;
}

.search-bar {
    position: relative;
    width: 100%;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.search-bar:focus-within {
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.2);
    transform: translateY(-2px);
}

.search-icon {
    color: #2563eb;
    font-size: 1.2rem;
    margin-right: 1rem;
}

#destinationSearch {
    width: 100%;
    border: none;
    font-size: 1rem;
    color: #1a365d;
    background: transparent;
}

#destinationSearch:focus {
    outline: none;
}

#destinationSearch::placeholder {
    color: #94a3b8;
}

/* No Results Message */
.no-results {
    text-align: center;
    padding: 3rem;
    color: #64748b;
}

.no-results i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #94a3b8;
}

.no-results p {
    font-size: 1.2rem;
}

/* Animation for search results */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.destination-card {
    animation: fadeIn 0.5s ease forwards;
}

/* Enhanced hover effects */
.destination-card:hover .destination-img {
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

.destination-card:hover .destination-badge {
    background: #2563eb;
    color: white;
}

/* Destinations Section */
/* Enhanced Destinations Section Styles */
.destinations {
    background: linear-gradient(135deg, #f6f8ff 0%, #f1f4ff 100%);
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    border-radius: 2px;
}

.destination-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 30px;
    background: white;
    color: #2563eb;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.filter-btn.active {
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    color: white;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.destination-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

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

.destination-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.destination-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: #2563eb;
    font-weight: 600;
    font-size: 0.875rem;
}

.destination-info {
    padding: 1.5rem;
}

.destination-info h3 {
    font-size: 1.5rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.destination-meta {
    display: flex;
    gap: 1.5rem;
    color: #64748b;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.destination-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.destination-meta i {
    color: #2563eb;
}

.destination-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.destination-tags span {
    padding: 0.4rem 1rem;
    background: #f1f5f9;
    border-radius: 20px;
    font-size: 0.875rem;
    color: #1a365d;
    transition: all 0.3s ease;
}

.destination-tags span:hover {
    background: #2563eb;
    color: white;
}

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

    .destination-filter {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .destination-grid {
        grid-template-columns: 1fr;
    }

    /* Responsive adjustments */
@media (max-width: 768px) {
    .search-container {
        max-width: 100%;
    }

    .search-bar {
        padding: 0.6rem 1rem;
    }

    #destinationSearch {
        font-size: 0.9rem;
    }
}
}
/* Trip Planning Tools */
.planning-tools {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tool-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.tool-card i {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.try-button {
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background-color: #2563eb;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.try-button:hover {
    background-color: #1d4ed8;
}

/* Community Section */
.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.community-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tip-list,
.event-list {
    margin-top: 1rem;
}

.tip-item,
.event-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.event-date {
    padding: 0.5rem;
    background-color: #2563eb;
    color: white;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
}

.forum-topics {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.topic {
    padding: 0.5rem;
    background-color: #f3f4f6;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s;
}

.topic:hover {
    background-color: #e5e7eb;
}

/* Travel Safety Section */
.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.safety-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.safety-list {
    list-style: none;
    margin-top: 1rem;
    text-align: left;
}

.safety-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.safety-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
}

.update-btn {
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background-color: #dc2626;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.update-btn:hover {
    background-color: #b91c1c;
}

/* Smart Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.smart-feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px ;
}
/* footer */

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 0;
    margin-top: 4rem;
    font-family: 'Arial', sans-serif;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }

  .footer-logo img {
    height: 50px;
    margin-right: 1rem;
  }

  .footer-section h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
  }

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

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

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

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

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

  .social-links a {
    color: #ffffff;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
  }

  .social-links a:hover {
    transform: translateY(-3px);
  }

  .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #333;
  }

  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
    }
  }