* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #f9a825;
  --secondary-color: #e65100;
  --accent-color-blue: #0288d1; /* Added for consistency with blue button */
  --accent-color-green: #25D366; /* Added for consistency with WhatsApp button */
  --text-dark: #333;
  --text-light: #fff;
  --background-dark: #222;
  --background-light: #fff;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px; /* Base font size for rem units */
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--background-light);
}

/* Accessibility helper class */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--background-light); /* Ensure it covers the whole screen */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.75s ease, visibility 0.75s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  width: 50px;
  height: 50px; /* Consistent size */
  border: 5px solid #f3f3f3;
  border-top: 5px solid var(--primary-color); /* Orange */
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Hamburger Menu */
.hamburger-menu {
  display: none; /* Hidden by default on desktop */
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--text-light);
  transition: all 0.3s ease-in-out;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center; /* Vertically align items */
  padding: 1rem 1.5rem; /* Responsive padding */
  background: rgba(0, 0, 0, 0.0);
  position: fixed;
  width: 100%;
  transition: background-color 0.4s ease, padding 0.4s ease;
  z-index: 1000;
}

.navbar .logo {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
}

.logo a {
  text-decoration: none;
  color: inherit;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem; /* Responsive gap */
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary-color);
}

/* Add a visible focus state for keyboard navigation */
a:focus, button:focus, [tabindex="0"]:focus {
  outline: 2px solid var(--accent-color-blue);
  outline-offset: 2px;
}

.navbar.scrolled {
  background-color: var(--background-dark); /* Solid background when scrolled */
  padding: 0.8rem 1.5rem; /* Reduced padding when scrolled */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* Mobile Navbar Styles */
@media (max-width: 768px) {
  .hamburger-menu {
    display: block;
  }

  .hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    left: -100%;
    top: 0;
    height: 100vh; /* Full viewport height */
    width: 80%; /* Take up 80% of screen width */
    max-width: 300px; /* Max width for larger tablets in portrait */
    flex-direction: column;
    justify-content: center;
    padding-top: 60px; /* Space for potential fixed header */
    align-items: center;
    background-color: var(--background-dark);
    box-shadow: 2px 0 10px rgba(0,0,0,0.2);
    transition: left 0.4s ease-in-out;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 1rem 0; /* Responsive vertical spacing */
  }

  .nav-links a {
    font-size: 1.2rem; /* Larger for touch */
  }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Hero Section */
.hero-section {
  height: 100vh;
  background: url('images/image.jpg') no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden; /* Ensures video does not spill out */
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero {
  position: relative;
  color: var(--text-light);
  z-index: 2; /* Hero content on top of the overlay */
}

/* Specific hero for Desert Safari page */
.desert-safari-hero {
  background-image: url('images/morning.webp');
}

/* Specific hero for City Tour page */
.city-tour-hero {
  background-image: url('images/Modern Dubai City Tour.webp');
}

/* Specific hero for Dune Buggy page */
.dune-buggy-hero {
  background-image: url('images/9.webp');
}

/* Specific hero for Contact page */
.contact-hero {
  background-image: url('images/morning.webp');
}

.hero h1 {
  font-size: 2.5rem; /* Smaller on mobile */
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1rem; /* Smaller on mobile */
  margin-bottom: 20px;
}

.btn {
  background: var(--primary-color);
  color: var(--text-dark);
  padding: 12px 30px;
  border: none; /* No border by default */
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn:hover {
  background: #ffca28;
}

/* Section styling */
.section { /* Base padding for all sections */
  padding: 4rem 1rem; /* Responsive padding */
  text-align: center;
}

.section > h2 { /* Target direct h2 children of section */
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 40px;
}

/* About Section */
.about-section {
  padding: 4rem 1rem; /* Responsive padding */
  display: flex; /* Ensure flex behavior */
  justify-content: center; 
  background: var(--background-light);
}

.about-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap; /* Allow items to wrap on smaller screens */
  max-width: 1200px; /* Max width for content */
  gap: 2rem; /* Responsive gap */
  width: 100%; /* Ensure it takes full width of its parent */
}

.about-image img {
  width: 100%;
  max-width: 420px; /* Max width for the image */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  height: auto; /* Maintain aspect ratio */
}

.about-content {
  flex: 1;
  min-width: 280px; /* Minimum width before wrapping */
  text-align: left; /* Align text left within its container */
}

.about-content h2 {
  font-size: 1.8rem; /* Adjusted for mobile */
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.about-content h3 .highlight {
  color: #bf360c;
  font-size: 1.8rem;
  font-weight: 800;
}

.about-content .tagline {
  color: #2e7d32;
  margin: 0.5rem 0 1rem;
  font-size: 1rem;
  font-weight: 500;
}

.about-content p {
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Buttons */
.about-buttons {
  display: flex;
  flex-wrap: wrap; /* Allow buttons to wrap */
  justify-content: center; /* Center buttons on small screens */
  margin-top: 1.5rem;
  gap: 0.5rem; /* Space between buttons */
}

.btn.blue-btn {
  background: var(--accent-color-blue);
  color: var(--text-light);
  border-radius: 25px; /* Full rounded corners */
  padding: 0.8rem 1.5rem;
}

.btn.orange-btn {
  background: var(--secondary-color);
  color: var(--text-light);
  border-radius: 25px; /* Full rounded corners */
  padding: 0.8rem 1.5rem;
}

.divider {
  background: var(--background-light);
  color: var(--text-dark);
  padding: 0.3rem 0.5rem;
  font-weight: bold;
}

/* Right decorative image */
.about-right-img img {
  width: 200px;
  height: auto;
  align-self: flex-end;
}

/* Media query for about section */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-content {
    text-align: center; /* Center text when stacked */
  }

  .about-right-img {
    display: none; /* Hide decorative image on small screens */
  }

  .about-buttons {
    justify-content: center;
  }
}

/* Services */
.service-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Recommended Packages Section */
.packages {
  background: #f9f9f9; /* Light background to make cards pop */
  padding-bottom: 4rem; /* Responsive padding */
}

.packages h2 {
  font-size: 2rem;
  color: var(--text-dark); /* Consistent color */
  margin-bottom: 5px;
}

.packages .subtitle {
  color: #777;
  margin-bottom: 40px;
  font-style: italic;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; /* Responsive gap */
  max-width: 1200px;
  margin: 0 auto;
}

.package-card {
  background: var(--background-light);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  overflow: hidden;
  border: 1px solid #eee; /* Subtle border */
  display: flex; /* Use flexbox for better content alignment */
  flex-direction: column;

  /* Animation properties */
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-color: var(--primary-color);
}

.package-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.package-card img {
  width: 100%;
  height: 180px; /* Fixed height for images */
  object-fit: cover;
}

.package-content {
  padding: 1.2rem; /* Responsive padding */
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Allows content to fill space */
}

.package-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark); /* Consistent color */
  margin-bottom: 0.3rem;
}

.package-card h3 span {
  font-size: 0.85rem;
  font-weight: 500;
  color: #777; /* Lighter text for span */
  margin-left: 0.3rem;
}

.package-card ul {
  list-style: none;
  text-align: left;
  padding: 0;
  color: #555;
  margin-bottom: 1.2rem;
  flex-grow: 1; /* Pushes button to the bottom */
}

.package-card ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
  font-size: 0.9rem;
}

.package-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.price-box {
  text-align: center; /* Center price details */
  margin: 1rem 0;
  font-family: 'Poppins', sans-serif;
}

.old-price {
  font-size: 1rem;
  color: var(--secondary-color); /* Consistent color */
  text-decoration: line-through;
  font-weight: 500;
}

.old-price span {
  margin-left: 0.2rem;
}

.new-price {
  color: #0277bd; /* deep sky blue */
  font-weight: 700;
  line-height: 1;
}

.new-price .currency {
  font-size: 1rem; /* Slightly smaller currency */
  vertical-align: top;
  margin-right: 0.2rem;
}

.new-price .amount {
  font-size: 2.5rem; /* Adjusted for mobile */
}

.price-note {
  font-size: 0.9rem;
  color: #d2691e;
  margin-top: 0.2rem;
}


.whatsapp-btn {
  display: inline-flex; /* Changed to inline-flex */
  position: relative; /* Needed for the shimmer effect */
  overflow: hidden; /* Hides the shimmer outside the button */
  align-items: center;
  justify-content: center; /* Center content */
  gap: 0.5rem; /* Space between icon and text */
  background: linear-gradient(45deg, var(--accent-color-green), #128C7E); /* WhatsApp colors */
  color: var(--text-light);
  text-decoration: none;
  font-weight: bold;
  padding: 5px 5px;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.3s;
  width: 100%; /* Make button full width of its container */
  border: none;
}

/* Shimmer effect */
.whatsapp-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 120%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: left 0.75s ease-in-out;
}

.whatsapp-btn:hover {
  transform: translateY(-0.1rem) scale(1.02);
  box-shadow: 0 6px 20px rgba(18, 140, 126, 0.4); /* Add a subtle glow */
}

.whatsapp-btn:hover::after {
  left: 150%; /* Move shimmer across the button on hover */
}

.whatsapp-btn svg {
  flex-shrink: 0; /* Prevents icon from shrinking */
}

/* Why Choose Us Section */
.why-choose {
  background: url('images/DXB.jpg') center/cover no-repeat fixed;
  position: relative;
  padding: 4rem 0; /* Responsive padding */
  color: var(--text-light);
}

.why-choose::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.why-content {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px; /* Max width for content */
  margin: 0 auto;
  padding: 0 1.5rem; /* Responsive padding */
  z-index: 1;
}

.why-text {
  flex: 1 1 50%;
  max-width: 550px; /* Max width for text block */
}

.why-text h2 {
  font-size: 2rem; /* Adjusted for mobile */
  color: #ffeb3b;
  margin-bottom: 1rem;
}

.why-text p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #f1f1f1;
  margin-bottom: 15px;
}

.why-text .highlight {
  color: #ffcc33;
  font-weight: 700;
}

.why-list {
  margin-top: 25px;
  list-style: none;
  padding: 0; /* Remove default padding */
}

.why-list li {
  font-weight: 600;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.why-list li span {
  color: #ffeb3b;
  margin-right: 0.5rem;
}

.why-image {
  position: relative;
  flex: 1 1 45%;
  text-align: right;
}

.image-frame {
  border: 8px solid #ffeb3b;
  display: inline-block; /* Keep image centered */
}

.image-frame img {
  width: 100%;
  max-width: 480px; /* Max width for image */
  display: block;
}

.burj {
  position: absolute;
  bottom: -2rem; /* Responsive positioning */
  right: -10%; /* Adjusted to prevent overflow */
  width: 180px; /* Smaller on mobile */
}

@media (max-width: 900px) {
  .why-content {
    flex-direction: column;
    text-align: center;
  }

  .why-image {
    margin-top: 40px;
    text-align: center; /* Center image when stacked */
  }

  .image-frame img {
    max-width: 90%;
  }

  .why-image .burj { /* Target specifically the burj in why-image */
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: -40px;
    width: 120px;
  }
}

/* What to Expect Section */
.expect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.expect-item {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 5px solid var(--primary-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.expect-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.expect-item h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.expect-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* What's Not Included Section */
.not-included-section {
  background-color: #fff8f0; /* A very light cream/orange background */
}

.not-included-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 2rem auto 0;
  text-align: left;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.not-included-list li {
  background-color: #fff;
  padding: 1rem 1rem 1rem 2.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  position: relative;
  color: #555;
}

.not-included-list li::before {
  content: "❌";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
}

.service {
  width: 300px;
  background: #fff3e0; /* A light orange, can be a variable too */
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem; /* Space between cards when wrapped */
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.service:hover {
  transform: translateY(-10px);
}

.service img {
  width: 100%;
  height: 200px;
  object-fit: cover; /* Cover the area */
}

.service h3 {
  margin: 1rem 0 0.5rem;
  color: var(--secondary-color); /* Consistent color */
}

.service p {
  padding: 0 20px 20px;
  color: #555;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Smaller min-width for mobile */
  gap: 1rem; /* Responsive gap */
}

.gallery-grid img,
.gallery-grid video {
  width: 100%; /* Ensure images scale */
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s;
}

.gallery-grid video {
  cursor: pointer;
}

.gallery-grid img:hover,
.gallery-grid video:hover {
  transform: scale(1.05);
}

/* Video Showcase Section */
.video-section {
  background-color: #f9f9f9; /* Light background to separate from other sections */
}

.video-section .subtitle {
  color: #777;
  margin-top: -30px;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Create a 3-column grid */
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem; /* Add horizontal padding for mobile */
}

.video-container {
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border-radius: 15px;
  overflow: hidden; /* Ensures video corners are rounded */
  background: var(--background-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.video-container video {
  width: 100%;
  height: auto;
  display: block; /* Removes any extra space below the video */
}

/* Set a poster image for the video */
video[poster] {
  object-fit: cover; /* Ensures the poster image covers the video area */
}

.video-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 1rem;
}

@media (max-width: 768px) {
  .video-grid {
    /* On mobile, stack the videos in a single column */
    grid-template-columns: 1fr;
  }
}

/* Contact */
/* The contact form section was removed in a previous step,
   so these styles are no longer directly applicable.
   However, if a form were to be re-added, these would be good starting points. */

/* .form-success-message {
  background-color: #d4edda;
  color: #155724; 
  border: 1px solid #c3e6cb;
  padding: 10px 15px;
  border-radius: 8px;
  margin-top: 15px;
  text-align: center;
} */
 
/* Back to Top Button */
.back-to-top-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--primary-color);
  color: var(--text-light);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none; /* Remove underline */
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

.back-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; /* Ensure it spans full width */
  width: 100%;
  background: #2c3e50;
  color: #ecf0f1;
  padding: 0.8rem 1.5rem; /* Responsive padding */
  display: flex; /* Use flex for content alignment */
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  z-index: 1001; /* Higher than other fixed elements */
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner p {
  margin: 0; /* Remove default margin */
  font-size: 0.9rem;
}

.cookie-banner .btn {
  padding: 8px 25px;
  margin-left: 20px;
}

/* Footer */
.site-footer {
  background: url('images/Hatta 1.jpg') no-repeat center center/cover;
  color: #ccc; 
  padding-top: 3rem; /* Responsive padding */
  font-size: 0.95rem;
  position: relative; /* Needed for the overlay */
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65); /* Dark overlay */
  z-index: 0;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto; /* Center content */
  padding: 0 1.5rem; /* Responsive padding */
  gap: 30px; 
  position: relative; /* To appear above the overlay */
  z-index: 1;
}

.footer-about,
.footer-links,
.footer-contact,
.footer-social {
  flex: 1 1 200px; /* Allow columns to grow and shrink, min-width 200px */
  margin-bottom: 1.5rem; /* Responsive margin */
  text-align: center; /* Center content in footer columns on small screens */
}

.site-footer h3 {
  font-size: 1.1rem; /* Adjusted for mobile */
  color: var(--primary-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.site-footer h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.5rem;
  height: 2px;
  background: var(--primary-color);
}

.footer-about p {
  line-height: 1.7;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s, padding-left 0.3s;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-links li a:hover {
  color: var(--text-light);
  padding-left: 0.3rem;
}

.footer-contact p, .footer-contact a {
  margin-bottom: 0.5rem;
}

.footer-contact i {
  margin-right: 10px;
  color: var(--primary-color);
}

.footer-contact a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: var(--text-light);
}

.social-icons a {
  display: inline-flex; /* Keep icons inline */
  justify-content: center;
  align-items: center;
  width: 40px;
  min-width: 40px; /* Ensure touch target size */
  height: 40px;
  background: var(--text-dark);
  color: var(--text-light);
  border-radius: 50%;
  margin-right: 10px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
}

.social-icons a:hover {
  background: var(--primary-color);
  transform: translateY(-0.2rem);
}

.footer-bottom {
  border-top: 1px solid #444;
  padding: 1rem 0;
  margin-top: 1.5rem;
  text-align: center;
  position: relative; /* To appear above the overlay */
  z-index: 1;
}

/* General Media Queries for larger screens */
@media (min-width: 769px) {
  .navbar {
    padding: 1.2rem 3rem; /* Larger padding for desktop */
  }
  .navbar.scrolled {
    padding: 0.8rem 3rem;
  }
  .hero h1 {
    font-size: 3rem; /* Larger font for desktop hero */
  }
  .hero p {
    font-size: 1.2rem;
  }
  .section {
    padding: 6rem 3rem; /* Larger section padding */
  }
  .about-content {
    text-align: left; /* Align text left on larger screens */
  }
  .about-buttons {
    justify-content: flex-start; /* Align buttons left on larger screens */
  }
  .site-footer h3::after {
    left: 50%; /* Center underline for centered text */
    transform: translateX(-50%);
  }
  .footer-about,
  .footer-links,
  .footer-contact,
  .footer-social {
    text-align: left; /* Align text left in footer columns */
  }
  .site-footer h3::after {
    left: 0; /* Align underline left for left-aligned text */
    transform: none;
  }
  .why-text h2 {
    font-size: 2.5rem;
  }
  .why-text p {
    font-size: 1rem;
  }
  .burj {
    width: 280px; /* Larger burj on desktop */
    bottom: -40px;
    right: -15%;
  }
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Larger min-width for desktop gallery */
  }
}

/* Specific adjustments for very small screens */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 0.9rem;
  }
  .section > h2 {
    font-size: 1.8rem;
  }
  .about-content h2 {
    font-size: 1.6rem;
  }
  .package-card .new-price .amount {
    font-size: 2.2rem;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .cookie-banner .btn {
    margin-left: 0;
    width: 100%;
  }
}
