/* =====================================
   Fonts & Reset
   ===================================== */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&display=swap");

html,
body,
header,
nav,
section,
article,
aside,
footer {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #777;
  background-color: #f7f7f7;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  overflow-x: hidden;
  margin: 0;
  /* reset */
  padding: 0;
  /* reset */
}

/* Container keeps content away from screen edges */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  /* space left/right */
}

/* Mobile container padding */
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
}


/* =====================================
   Headings
   ===================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #17233e;
  margin-bottom: 1rem;
  line-height: 1.4;
  text-transform: capitalize;
}

h1 {
  font-size: 58px;
}

h2 {
  font-size: 46px;
}

h3 {
  font-size: 26px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
  text-decoration: none;
  transition: 0.5s;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
  color: #029e9d;
}

@media (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }
}

@media (max-width: 735px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 21px;
  }
}

/* =====================================
   Links
   ===================================== */
a {
  color: #777;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover,
a:focus {
  color: #029e9d;
  outline: none;
}

/* =====================================
   Images
   ===================================== */
img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* =========================
   Header Base
   ========================= */
.main-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.main-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* =========================
   Logo
   ========================= */
.logo-img {
  max-height: 80px;
  width: auto;
  display: block;
}









/* =========================
   Navbar
   ========================= */
.navbar ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar ul li a {
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  color: #222;
  transition: color 0.3s ease;
}

.navbar ul li a:hover {
  color: var(--highlight-color, #0077cc);
}

/* =========================
   Auth + Book Buttons
   ========================= */
   /* User Dropdown */
.user-dropdown {
  position: relative;
  display: inline-block;
}

.user-dropdown .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #007bff; /* Replace with your theme color */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s;
}

.user-dropdown .avatar:hover {
  background-color: #0056b3; /* Slightly darker on hover */
}

.user-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  border-radius: 6px;
  margin-top: 5px;
  min-width: 120px;
  z-index: 10;
}

.user-dropdown:hover .dropdown-menu,
.user-dropdown.show .dropdown-menu {
  display: block;
}

.user-dropdown .dropdown-menu a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
  transition: background 0.2s;
}

.user-dropdown .dropdown-menu a:hover {
  background-color: #f0f0f0;
}




.auth-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.auth-buttons .btn {
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

/* Sign In button */
.auth-buttons .btn.login {
  color: #0077cc;
  background: transparent;
  border: 1px solid #0077cc;
}

.auth-buttons .btn.login:hover {
  background: #0077cc;
  color: #fff;
}

/* Book Now button */
.auth-buttons .btn.book {
  background: #0077cc;
  color: #fff;
}

.auth-buttons .btn.book:hover {
  background: #005fa3;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 900px) {
  .main-header .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar ul {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .auth-buttons {
    margin-top: 0.5rem;
    width: 100%;
    justify-content: flex-start;
  }
}











/* Hero Section */
.hero {
  position: relative;
  height: 95vh;
  /* almost full page height */
  width: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* gives parallax feel */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.hero h1 {
  color: #fff !important;
  /* Force white text */
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

/* Dark overlay for readability */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.45);
  /* dark transparent overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

/* Heading */
.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

/* Taglines / sub-text */
.hero p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

/* CTA Button */
.hero .cta-button {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  background: var(--highlight-color, #ff9800);
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.hero .cta-button:hover {
  background: #e68900;
  transform: scale(1.05);
}



/* =====================================
   Section Headings
   ===================================== */
.section-heading {
  text-align: center;
  max-width: 700px;
  margin: 4rem auto 3rem;
}

.section-heading h5 {
  color: #e0a96d;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-heading h2 {
  font-size: 2.5rem;
  color: #0d1b2a;
  margin-bottom: 1rem;
}

.section-heading p {
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.4;
}











/* ===============================
   General Body & Container
================================= */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===============================
   Header
================================= */
.main-header {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.main-header .logo img {
  height: 50px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.navbar ul li a {
  text-decoration: none;
  color: #0d1b2a;
  font-weight: 600;
}

.auth-buttons {
  display: flex;
  gap: 10px;
}

.btn.login,
.btn.book {
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 5px;
  font-weight: 600;
}

.btn.login {
  background: #0056b3;
  color: #fff;
}

.btn.book {
  background: #e0a96d;
  color: #0d1b2a;
}











/* ===============================
   Packages Section
================================= */
.packages-section {
  padding: 4rem 2rem;
  background: #f9f9f9;
}

/* Grid for packages: 4 fixed-width cards per row */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 4 columns */
  gap: 20px;
  /* spacing between cards */
  justify-content: center;
}

/* Individual package card */
.package-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  width: 100%;
  /* fill grid column */
  max-width: 280px;
  /* fixed width */
}

.package-card:hover,
.package-card:focus-within {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

/* Image inside card */
.package-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 3px solid #e0a96d;
}

/* Card content */
.package-info {
  padding: 1rem 1.2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.package-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #0d1b2a;
}

.package-info p {
  font-size: 0.9rem;
  color: #444;
  flex-grow: 1;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: #e0a96d;
  margin-top: 1rem;
}

/* Book button */
.btn-book {
  background: #e0a96d;
  color: #0d1b2a;
  text-align: center;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-weight: 600;
  margin-top: auto;
  box-shadow: 0 3px 6px rgba(224, 169, 109, 0.5);
  transition: 0.3s;
}

.btn-book:hover,
.btn-book:focus {
  background-color: #c89349;
  color: #fff;
  box-shadow: 0 6px 14px rgba(200, 147, 73, 0.7);
  outline: none;
}

/* Package Info Grid */
.package-info-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.info-item {
  flex: 1;
  background: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.info-item strong {
  display: block;
  margin-bottom: 8px;
  color: #0056b3;
  font-size: 16px;
}

/* Collapsible Description */
.package-description details {
  margin-bottom: 15px;
  background: #fff;
  border-radius: 8px;
  padding: 15px 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.package-description summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: #0d1b2a;
  list-style: none;
}

.package-description summary::-webkit-details-marker {
  display: none;
}

.package-description details[open] summary {
  color: #0077cc;
}

.package-description p {
  margin-top: 10px;
  color: #444;
  line-height: 1.6;
}


/* ===============================
   Responsive
================================= */

/* Responsive */
@media (max-width: 992px) {
  .info-row {
    flex-direction: column;
  }
}


@media (max-width: 1200px) {
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
}









/* ===============================
   Section Headings
================================= */
.package-detail h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  margin-top: 25px;
  color: #0d1b2a;
}

.package-detail p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

/* ===============================
   Footer
================================= */
.footer {
  background: #0d1b2a;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

/* ===============================
   Responsive
================================= */
@media (max-width: 992px) {
  .navbar ul {
    flex-direction: column;
    gap: 10px;
  }

  .package-info-grid .info-row {
    flex-direction: column;
  }

  .package-hero h1 {
    font-size: 2.2rem;
  }

  .package-hero p {
    font-size: 1rem;
  }
}








/* ===============================
   General styles for the blog section
================================= */
.recent-articles {
  padding: 40px 0;
  background-color: #f9f9f9;
}

/* Section title */
.recent-articles .section-title h4 {
  font-size: 28px;
  font-weight: 700;
  color: #0056b3;
  margin-bottom: 30px;
}

/* Blog row container */
.recent-articles .recent-blogs-row {
  display: flex;
  gap: 20px;
  align-items: stretch;
  /* Ensure columns stretch to same height */
}

/* ------------------------------
   Featured blog (left column)
-------------------------------- */
.recent-articles .trend-item.featured {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Featured blog image */
.recent-articles .trend-item.featured .trend-image.square-image {
  width: 100%;
  padding-top: 80%;
  /* Makes height 80% of width */
  position: relative;
  overflow: hidden;
}

.recent-articles .trend-item.featured .trend-image.square-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Featured blog content */
.recent-articles .trend-item.featured .trend-content-main {
  padding: 15px;
  text-align: left;
}

/* ------------------------------
   Small blogs (right column)
-------------------------------- */
.recent-articles .col-lg-6.d-flex.flex-column.gap-3 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: auto;
  /* Let it grow naturally */
}

/* Individual small blog */
.recent-articles .trend-item.small {
  display: flex;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  flex: 1;
}

/* Small blog image */
.recent-articles .trend-item.small .trend-image.square-image {
  width: 40%;
  padding-top: 0;
  /* Remove old padding */
  height: auto;
}

.recent-articles .trend-item.small .trend-image.square-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Small blog content */
.recent-articles .trend-item.small .trend-content-main {
  flex: 1;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ------------------------------
   Text styles
-------------------------------- */
.recent-articles h2,
.recent-articles h4,
.recent-articles h5 {
  margin: 0 0 5px;
  font-weight: 600;
}

.recent-articles h4,
.recent-articles h5 {
  color: #333;
  font-size: 16px;
}

.recent-articles h2 {
  font-size: 22px;
  line-height: 1.2;
}

.recent-articles p {
  font-size: 14px;
  color: #555;
  margin-top: 5px;
}

/* Read more button */
.recent-articles .nir-btn {
  display: inline-block;
  padding: 8px 16px;
  background-color: #0056b3;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
}

/* ------------------------------
   Responsive adjustments
-------------------------------- */
@media (max-width: 1024px) {
  .recent-articles .recent-blogs-row {
    gap: 15px;
  }

  .recent-articles .col-lg-6 {
    flex: 0 0 50%;
  }
}

@media (max-width: 768px) {
  .recent-articles .recent-blogs-row {
    flex-direction: column;
  }

  .recent-articles .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .recent-articles .trend-item.featured .trend-image.square-image {
    padding-top: 60%;
  }
}

/* =====================================
   Blog List Page CSS (Independent)
===================================== */

/* Blog Page Container */
.blog-page-container {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #f9f9f9;
}

/* Blog Page Title */
.blog-page-container h1 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 50px;
}

/* Blog Grid Layout */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Blog Card */
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Blog Image */
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Blog Card Content */
.blog-card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Blog Title */
.blog-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 10px;
}

/* Blog Excerpt */
.blog-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* Read More Button */
.blog-card a {
  display: inline-block;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  background-color: #0056b3;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.blog-card a:hover {
  background-color: #003f7f;
  transform: scale(1.05);
}

/* No Blog Message */
.blog-no-posts {
  text-align: center;
  font-size: 1.2rem;
  color: #777;
  margin-top: 30px;
}

/* ===============================
   Responsive
================================ */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .blog-page-container h1 {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .blog-card img {
    height: 180px;
  }

  .blog-card h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .blog-page-container h1 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .blog-card img {
    height: 150px;
  }

  .blog-card h3 {
    font-size: 1.1rem;
  }

  .blog-card p {
    font-size: 0.9rem;
  }

  .blog-card a {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
}










/* =====================================
   Testimonials
   ===================================== */
.testimonials-section {
  background: #1b263b;
  color: #fff;
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 12px;
}

.testimonials-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
}

.testimonials-row {
  overflow: hidden;
  white-space: nowrap;
  padding: 0.5rem 0;
  border-radius: 10px;
  background: #0d1b2a;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  cursor: grab;
}

.testimonials-row:active {
  cursor: grabbing;
}

.scrolling-wrapper {
  display: inline-flex;
  gap: 1.5rem;
  will-change: transform;
}

.testimonial-card {
  background: #1b263b;
  border-radius: 10px;
  padding: 1rem 1.2rem;
  min-width: 220px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.3;
}

.testimonial-card span {
  margin-top: 0.6rem;
  font-weight: 700;
  font-style: normal;
  color: #e0a96d;
  font-size: 0.9rem;
}

/* Scroll Animations */
@keyframes scroll-left-to-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0%);
  }
}

@keyframes scroll-right-to-left {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.testimonials-row.trustpilot .scrolling-wrapper {
  animation: scroll-left-to-right 30s linear infinite;
}

.testimonials-row.google .scrolling-wrapper {
  animation: scroll-right-to-left 30s linear infinite;
}

.testimonials-row:hover .scrolling-wrapper {
  animation-play-state: paused;
}

/* =====================================
   Footer
   ===================================== */
.footer {
  background-color: #111;
  color: #ccc;
  font-family: "Poppins", sans-serif;
  padding: 60px 10%;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer h3, .footer h4 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: #fff;
}

.learn-more {
  color: #4bb543;
  text-decoration: none;
  font-weight: 500;
}

.learn-more:hover {
  text-decoration: underline;
}

.footer-logos p {
  margin: 5px 0;
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
  flex-wrap: wrap;
}

.footer-logo {
  height: 45px;
}

.footer-bottom p {
  font-size: 13px;
  color: #999;
}

.social-icons {
  margin-top: 15px;
}

.social-icons img {
  width: 28px;
  height: 28px;
  margin-right: 15px;
  filter: brightness(0) invert(1);
  transition: 0.3s;
}

.social-icons img:hover {
  transform: scale(1.1);
}

/* ✅ Responsive Fix */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .social-icons {
    justify-content: center;
  }
}


/* =====================================
   Responsive
   ===================================== */
@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .blog-featured-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .blog-featured,
  .blog-small-grid {
    max-width: 100%;
    flex: none;
  }

  .blog-small-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (max-width: 767px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}