* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #212529;
  --secondary-color: #fcfcfc;
  --accent-color: #a3efff;
  --highlight-color: #ffe366;
  --text-color: #212529;
  --text-muted: #6c757d;
  --border-color: #dee2e6;
  --error-color: #fe0000;
  
  --font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 2.5rem;
  --spacing-3xl: 3rem;
  
  --radius-sm: 10px;
  --radius-md: 30px;
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
}



img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* Navigation Bar */
.btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.btn-primary:hover {
  background-color: rgba(33, 37, 41, 0.9);
  transform: translateY(-2px);
}

.btn-icon {
  width: 51px;
  height: 51px;
  padding: 1rem;
  background-color: var(--secondary-color);
  border: 1px solid var(--border-color);
}
.btn-1 {
    padding: 0.75rem 1.25rem;
    font-size: 14px;
  }
.btn-icon:hover {
  background-color: rgba(252, 252, 252, 0.9);
}

.btn-full {
  width: 100%;
}

/* Main Content */
.main-content {
  padding: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2rem;
  align-items: start;
}

/* Article Section */
.article-section {
  background-color: white;
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  animation: fadeIn 1s ease;
  font-family:"Nunito Sans", Helvetica; ;
}

.article-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background-color: var(--accent-color);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 16px;
  color: #212529;
  width: fit-content;
}

.badge-highlight {
  background-color: var(--accent-color);
  color: var(--text-color);
  font-family:"Nunito Sans", Helvetica;
}

.article-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-color);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--text-muted);
}

.article-image {
  margin-bottom: 2rem;
}

.article-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.article-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.article-content h2 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 1rem;
  color: var(--text-color);
}

.article-content p {
  line-height: 1.5;
  color: #6C757D;
}

.article-content ul {
  list-style: disc;
  padding-left: 2rem;
}

.article-content li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
  color: #6C757D;
}

.contact-info {
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: sticky;
  top: 100px;
}

.card-1 {
  background-color: white;
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  animation: fadeIn 1s ease 0.2s backwards;
}

.card-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.divider {
  border: none;
  border-top: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-group label {
  font-weight: 600;
  font-size: 16px;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  background-color: var(--secondary-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 16px;
  color: var(--text-muted);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Destination Card */
.destination-card {
  animation: fadeIn 1s ease 0.4s backwards;
}

.destination-image {
  height: 360px;
  background: linear-gradient(180deg, rgba(33, 37, 41, 0) 0%, rgba(33, 37, 41, 1) 100%),
              linear-gradient(180deg, rgba(33, 37, 41, 0.6) 0%, rgba(33, 37, 41, 0) 100%),
              url('https://c.animaapp.com/mh0qre4moyHkJS/img/package-card---upd.png') center/cover;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.destination-image:hover {
  transform: scale(1.02);
}

.destination-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.destination-packages {
  color: var(--secondary-color);
  font-weight: 600;
}

.destination-info h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.destination-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary-color);
}

.price-label {
  color: var(--border-color);
}

/* Related Articles */
.related-articles {
  padding: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.section-title-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-title-wrapper h2 {
  font-size: 40px;
  font-weight: 700;
  font-family: "Nunito Sans", Helvetica;;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.article-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: fadeUp 1s ease backwards;
}

.article-card:nth-child(1) { animation-delay: 0s; }
.article-card:nth-child(2) { animation-delay: 0.2s; }
.article-card:nth-child(3) { animation-delay: 0.4s; }
.article-card:nth-child(4) { animation-delay: 0.6s; }

.article-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.article-card-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.article-card-content h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  font-family:"Nunito Sans", Helvetica ;
}

.article-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-muted);
  font-family:"Nunito Sans", Helvetica ;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  padding: 0.5rem;
  background-color: var(--secondary-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background-color: rgba(252, 252, 252, 0.9);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  padding: 2.5rem;
  background-color: transparent;
}

.footer-content {
  background-color: var(--primary-color);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 295px repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  width: 172.56px;
  height: 40px;
  object-fit: contain;
}

.footer-about p {
  color: var(--secondary-color);
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 0.375rem;
}

.social-link {
  width: 35px;
  height: 35px;
  border: 1px solid var(--text-muted);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: rgba(108, 117, 125, 0.1);
}

.social-link img {
  width: 19px;
  height: 19px;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--secondary-color);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--highlight-color);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
}

.contact-icon {
  width: 35px;
  height: 35px;
  border: 1px solid var(--text-muted);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon img {
  width: 19px;
  height: 19px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--highlight-color);
}

.contact-details a {
  color: var(--secondary-color);
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--highlight-color);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid #424d57;
  color: var(--secondary-color);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .navbar {
    padding: 1rem 1.5rem;
  }

  .nav-menu {
    display: none;
  }

  .main-content {
    padding: 1.5rem;
  }

  .content-wrapper {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .article-section {
    padding: 1.5rem;
  }

  .article-title {
    font-size: 32px;
  }

  .article-image img {
    height: 320px;
  }

  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .section-title-wrapper h2 {
    font-size: 32px;
  }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
  .navbar {
    padding: 1rem;
  }

  .logo {
    width: 130px;
    height: 30px;
  }

  .nav-menu {
    display: none;
  }

  .nav-actions .btn-primary {
    display: none;
  }

  .main-content {
    padding: 1rem;
  }

  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .sidebar {
    grid-template-columns: 1fr;
  }

  .article-section,
  .card {
    padding: 1.5rem;
  }

  .article-title {
    font-size: 24px;
  }

  .article-image img {
    height: 240px;
  }

  .related-articles {
    padding: 1rem;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .section-title-wrapper h2 {
    font-size: 24px;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }

  .carousel-controls {
    display: none;
  }

  .footer {
    padding: 1rem;
  }

  .footer-content {
    padding: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .destination-image {
    height: 280px;
  }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
  .article-title {
    font-size: 20px;
  }

  .card-title {
    font-size: 20px;
  }

  .article-image img {
    height: 200px;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 14px;
  }

  .section-title-wrapper h2 {
    font-size: 20px;
  }

  .article-card img {
    height: 200px;
  }
}

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
  .navbar-container,
  .main-content,
  .related-articles,
  .footer-content {
    max-width: 1600px;
  }
}

    .review-card-g {
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      padding: 40px 30px;
      text-align: center;
      max-width: 600px;
      width: 100%;
      transition: all 0.3s ease;
    }
    .profile-img {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 15px;
      position: relative;
    }

    .google-icon {
      width: 32px;
      position: absolute;
      bottom: 0;
      right: 0;
      border-radius: 50%;
    }

    .quote {
      font-size: 15px;
      color: #555;
      line-height: 1.7;
      margin: 40px 0;
      font-style: italic;
      font-family: "Nunito Sans", Helvetica;
    }

    .reviewer-name {
      font-weight: 600;
      color: #222;
      font-size: 18px;
      font-family: "Nunito Sans", Helvetica;
    }

    .review-date {
      color: #777;
      font-size: 14px;
      margin-top: 5px;
      font-family: "Nunito Sans", Helvetica;
    }

    /* Google Rating Box */
    .google-rating-box {
      margin-top: 40px;
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
      padding: 20px 25px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 15px;
      flex-wrap: wrap;
      max-width: 639px;
      width: 100%;
    }

    .google-left {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .google-left img {
      width: 32px;
    }

    .rating-text {
      font-weight: 500;
      color: #333;
      padding: 5px;
      font-family: "Nunito Sans", Helvetica;
    }

    .rating-stars {
      color: #fbbc05;
      font-size: 16px;
      font-family:  "Nunito Sans", Helvetica;
    }

    .review-btn {
      background: #f8f9fa;
      border: 1px solid #ddd;
      font-family: "Nunito Sans", Helvetica;
      border-radius: 30px;
      padding: 10px 22px;
      color: #333;
      font-weight: 500;
      text-decoration: none;
      transition: 0.3s;
    }

    .review-btn:hover {
      background: #e9ecef;
    }

    /* Responsive */
    @media (max-width: 480px) {
      .review-card {
        padding: 25px 20px;
      }
      .quote {
        font-size: 14px;
      }
      .reviewer-name {
        font-size: 16px;
      }
      .google-rating-box {
        flex-direction: column;
        text-align: center;
      }
    }
    .review-card-g::before {
      content: "";
      position: absolute;
      top:0;
      left: 0;
      height: 6px;
      width: 100%;
      background: linear-gradient(to right, #4285F4 25%, #EA4335 25% 50%, #FBBC05 50% 75%, #34A853 75% 100%);
      border-top-left-radius: 20px;
      border-top-right-radius: 20px;
    }
