/* Reset and Base Styles */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      font-family: 'Inter', sans-serif;
      background: #f8fafc;
      color: #1e293b;
      line-height: 1.7;
      overflow-x: hidden;
    }
    a {
      text-decoration: none;
      color: inherit;
    }
    img {
      max-width: 100%;
      display: block;
    }
    ul {
      list-style: none;
    }
    button {
      cursor: pointer;
      border: none;
      background: none;
    }

    /* Container */
    .container {
      width: 92%;
      max-width: 1440px;
      margin: 0 auto;
    }

    /* Header */
    header {
      background: #ffffff;
      padding: 16px 0;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .top-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 0;
      border-bottom: 1px solid #e2e8f0;
    }
    .contact-info {
      display: flex;
      gap: 30px;
      font-size: 14px;
      font-weight: 500;
      color: #64748b;
    }
    .contact-info span {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .social-icons {
      display: flex;
      gap: 24px;
    }
    .social-icons a {
      font-size: 20px;
      color: #64748b;
      transition: color 0.3s ease;
    }
    .social-icons a:hover {
      color: #3b82f6;
    }

    /* Navigation */
    nav {
      padding: 20px 0;
    }
    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .logo {
      font-size: 32px;
      font-weight: 800;
      color: #3b82f6;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .logo img {
      height: 40px;
    }
    .nav-links {
      display: flex;
      gap: 40px;
      font-size: 16px;
      font-weight: 500;
      color: #1e293b;
    }
    .nav-links a {
      position: relative;
      padding: 8px 0;
      transition: color 0.3s ease;
    }
    .nav-links a:hover,
    .nav-links a.active {
      color: #3b82f6;
    }
    .nav-links a.active::after,
    .nav-links a:hover::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: #3b82f6;
      border-radius: 3px;
    }
    .btn-explore {
      background: #3b82f6;
      color: #ffffff;
      padding: 12px 28px;
      border-radius: 30px;
      font-size: 16px;
      font-weight: 600;
      transition: background 0.3s ease, transform 0.2s ease;
    }
    .btn-explore:hover {
      background: #2563eb;
      transform: translateY(-2px);
    }
    .profile-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #eff6ff;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #3b82f6;
      font-size: 18px;
      font-weight: 700;
      cursor: pointer;
      border: 2px solid transparent;
      transition: border-color 0.3s ease, transform 0.2s ease;
    }
    .profile-icon:hover {
      border-color: #3b82f6;
      transform: scale(1.1);
    }

    /* Hero Section */
    .hero {
      position: relative;
      height: 800px;
      background: url('https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgc0LxRSB8Gl4GOXi5PvKtcYp8wwEeskd5JtfRmjyogOGChMLxHK_4nlalOKhl-cky3tzVlZR1-oWN0zYolJKGFOOC5rIUa2AzyntTcFmDJR5_cPmJYflj5GE7KlK71IXgF2lP8bD-W8IIlNpJacQ-uPEMvy8UVTf4Z4Q-pmLQthbaiRwb0NUN1EHNcgw/w640-h380-rw/Super_Mario_Bros_O_Filme5.jpg') center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #ffffff;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
      z-index: 1;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 0 20px;
    }
    .hero-content h1 {
      font-size: 64px;
      font-weight: 800;
      margin-bottom: 20px;
      letter-spacing: -0.5px;
      text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    }
    .hero-content p {
      font-size: 24px;
      font-weight: 300;
      margin-bottom: 50px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    .hero-content button {
      background: #3b82f6;
      color: #ffffff;
      padding: 16px 40px;
      border-radius: 30px;
      font-size: 18px;
      font-weight: 600;
      transition: background 0.3s ease, transform 0.2s ease;
    }
    .hero-content button:hover {
      background: #2563eb;
      transform: translateY(-2px);
    }

    /* Search Bar */
    .search-bar {
      background: #ffffff;
      border-radius: 12px;
      padding: 24px;
      display: flex;
      gap: 24px;
      max-width: 1000px;
      margin: -80px auto 0;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
      position: relative;
      z-index: 3;
      border: 1px solid #e2e8f0;
    }
    .search-bar input,
    .search-bar select {
      flex: 1;
      padding: 14px 24px;
      border: 2px solid #e2e8f0;
      border-radius: 10px;
      font-size: 16px;
      color: #1e293b;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }
    .search-bar input:focus,
    .search-bar select:focus {
      outline: none;
      border-color: #3b82f6;
      box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }
    .search-bar button {
      background: #3b82f6;
      color: #ffffff;
      padding: 14px 36px;
      border-radius: 10px;
      font-size: 16px;
      font-weight: 600;
      transition: background 0.3s ease, transform 0.2s ease;
    }
    .search-bar button:hover {
      background: #2563eb;
      transform: translateY(-2px);
    }

    /* Section Styles */
    section {
      padding: 120px 0;
    }
    .section-subtitle {
      text-align: center;
      font-size: 20px;
      font-weight: 500;
      color: #3b82f6;
      margin-bottom: 16px;
      letter-spacing: 0.5px;
    }
    .section-title {
      text-align: center;
      font-size: 40px;
      font-weight: 700;
      margin-bottom: 60px;
      color: #1e293b;
      letter-spacing: -0.5px;
    }

    /* Featured Destinations */
    .featured-destinations {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1280px;
      margin: 0 auto;
    }
    .destination-card {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    .destination-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    }
    .destination-card img {
      height: 240px;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .destination-card:hover img {
      transform: scale(1.05);
    }
    .destination-info {
      position: absolute;
      bottom: 20px;
      left: 24px;
      color: #ffffff;
      font-size: 22px;
      font-weight: 600;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
    }
    .destination-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5));
    }

    /* Special Offers */
    .special-offers {
      background: #eff6ff;
      padding: 80px 20px;
      border-radius: 20px;
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 60px;
      align-items: center;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    }
    .offer-image {
      flex: 1 1 400px;
      position: relative;
    }
    .offer-image img {
      border-radius: 16px;
      width: 100%;
      height: auto;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }
    .offer-text {
      flex: 1 1 450px;
    }
    .offer-text h3 {
      font-size: 36px;
      font-weight: 700;
      color: #3b82f6;
      margin-bottom: 24px;
    }
    .offer-text p {
      font-size: 18px;
      color: #475569;
      margin-bottom: 30px;
      line-height: 1.8;
    }
    .offer-text ul {
      margin-bottom: 40px;
    }
    .offer-text ul li {
      position: relative;
      padding-left: 36px;
      margin-bottom: 16px;
      font-size: 16px;
      font-weight: 500;
      color: #1e293b;
    }
    .offer-text ul li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: #3b82f6;
      font-size: 20px;
      font-weight: 700;
    }
    .offer-text button {
      background: #3b82f6;
      color: #ffffff;
      padding: 14px 36px;
      border-radius: 30px;
      font-size: 16px;
      font-weight: 600;
      transition: background 0.3s ease, transform 0.2s ease;
    }
    .offer-text button:hover {
      background: #2563eb;
      transform: translateY(-2px);
    }

    /* Trending Tours */
    .trending-tours {
      max-width: 1280px;
      margin: 0 auto;
    }
    .tours-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }
    .tour-card {
      background: #ffffff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    .tour-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    }
    .tour-card img {
      height: 200px;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .tour-card:hover img {
      transform: scale(1.05);
    }
    .tour-info {
      padding: 24px;
      position: relative;
    }
    .tour-info h4 {
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 12px;
      color: #1e293b;
    }
    .tour-info p {
      font-size: 15px;
      color: #64748b;
      margin-bottom: 16px;
    }
    .tour-info .price {
      font-size: 20px;
      font-weight: 600;
      color: #3b82f6;
    }
    .tour-info .rating {
      position: absolute;
      top: 20px;
      right: 20px;
      background: #3b82f6;
      color: #ffffff;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 14px;
      font-weight: 600;
    }

    /* Testimonials Section */
    .testimonials {
      background: #f8fafc;
      padding: 100px 0;
      max-width: 1280px;
      margin: 0 auto;
    }
    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }
    .testimonial-card {
      background: #ffffff;
      border-radius: 16px;
      padding: 24px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease;
    }
    .testimonial-card:hover {
      transform: translateY(-8px);
    }
    .testimonial-card img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      margin: 0 auto 16px;
      border: 3px solid #3b82f6;
    }
    .testimonial-card .name {
      font-size: 18px;
      font-weight: 600;
      color: #1e293b;
      margin-bottom: 8px;
    }
    .testimonial-card .stars {
      color: #f59e0b;
      font-size: 16px;
      margin-bottom: 12px;
    }
    .testimonial-card .text {
      font-size: 15px;
      color: #64748b;
      font-style: italic;
    }

    /* Footer */
    footer {
      background: #1e293b;
      color: #d1d5db;
      padding: 80px 20px;
    }
    footer .container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 50px;
    }
    .footer-section h4 {
      color: #3b82f6;
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 24px;
    }
    .footer-section p {
      font-size: 15px;
      line-height: 1.8;
    }
    .footer-section ul li {
      margin-bottom: 14px;
    }
    .footer-section ul li a {
      font-size: 15px;
      color: #d1d5db;
      transition: color 0.3s ease;
    }
    .footer-section ul li a:hover {
      color: #3b82f6;
    }
    .newsletter form {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .newsletter input {
      padding: 14px 24px;
      border-radius: 10px;
      border: none;
      font-size: 15px;
      background: #334155;
      color: #d1d5db;
      transition: background 0.3s ease;
    }
    .newsletter input:focus {
      outline: none;
      background: #475569;
    }
    .newsletter button {
      background: #3b82f6;
      color: #ffffff;
      padding: 14px 24px;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 600;
      transition: background 0.3s ease, transform 0.2s ease;
    }
    .newsletter button:hover {
      background: #2563eb;
      transform: translateY(-2px);
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .nav-links {
        gap: 20px;
      }
      .hero-content h1 {
        font-size: 48px;
      }
      .hero-content p {
        font-size: 20px;
      }
      .search-bar {
        flex-direction: column;
        margin-top: -60px;
      }
      .search-bar input,
      .search-bar select,
      .search-bar button {
        width: 100%;
      }
      .special-offers {
        flex-direction: column;
        text-align: center;
      }
    }
    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }
      .hero {
        height: 600px;
      }
      .hero-content h1 {
        font-size: 36px;
      }
      .hero-content p {
        font-size: 18px;
      }
      .section-title {
        font-size: 32px;
      }
      .footer-section {
        text-align: center;
      }
    }