body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background-color: #fff;
  color: #333;
}


.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.site-header {
  background: #fff;
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #e60023;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 10px 0 0;
  padding: 0;
  flex-wrap: wrap;
}

.main-nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.hero {
  background: url('images/Visit-burundi.jpg') center/cover no-repeat;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
}

/* Use a different image on small screens */
@media (max-width: 768px) {
  .hero {
    background: url('images/Burundi-travel --Agency.jpg') center/cover no-repeat;
  }
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 10px;
}

.hero h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.search-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.search-box input {
  padding: 10px;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  border: none;
  border-radius: 4px;
  margin-bottom: 10px;
}

.search-box button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #0057ff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
}

section {
  padding: 40px 20px;
}

h3 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.dest-grid,
.attract-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.dest-card,
.attract-card {
  background: #f5f5f5;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  font-weight: bold;
}

footer {
  background: #1a1a1a;
  color: #ccc;
  text-align: center;
  padding: 20px;
}

footer a {
  color: #ccc;
  text-decoration: none;
}

/* Responsive styles */
@media (max-width: 768px) {
  .header-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav ul {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .main-nav ul li {
    width: 100%;
  }

  .main-nav ul li a {
    display: block;
    padding: 10px 0;
    border-top: 1px solid #eee;
  }
}































/* Position menu toggle top-right in header */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 10px;
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 1000;
}

.menu-toggle span {
  height: 3px;
  background: #333;
  margin: 4px 0;
  width: 25px;
  transition: 0.3s ease;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 999;
  }

  .main-nav ul.active {
    display: flex;
  }

  .main-nav ul li a {
    padding: 15px;
    border-bottom: 1px solid #eee;
  }

  .header-flex {
    position: relative;
  }
}




.top-header {
  background-color: #f5f5f5;
  padding: 5px 0;
  font-size: 14px;
}

.top-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-contact p {
  margin: 0;
}

.top-contact a {
  color: #333;
  text-decoration: none;
}










.text-red {
  color: #d62828; /* Burundi red */
}

.text-green {
  color: #007849; /* Burundi green */
}

.text-black {
  color: #000; /* Neutral word “and” */
}

.logo {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
}

.logo .tagline {
  font-size: 14px;
  font-weight: normal;
  color: #555;
}









.booking-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.92);
  padding: 10px 16px;
  border-radius: 5px;
  max-width: 900px;
  margin: 0 auto;
  font-size: 13px;
}

.booking-form .form-group {
  display: flex;
  flex-direction: column;
  margin: 3px;
}

.booking-form label {
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 3px;
  color: #333;
}

.booking-form input,
.booking-form select {
  padding: 6px 8px;
  font-size: 13px;
  border: 1px solid #ccc;
  border-radius: 4px;
  min-width: 140px;
}

.booking-form button {
  padding: 8px 14px;
  font-size: 13px;
  background-color: #0057ff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .booking-form {
    flex-direction: column;
    align-items: stretch;
  }

  .booking-form .form-group,
  .booking-form button {
    width: 100%;
  }
}





.dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }

  .dest-card {
    display: flex;
    flex-direction: column;
    background: #f0f8ff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: #1a1a1a;
    font-weight: bold;
  }

  .dest-card:hover {
    background: #e0f0ff;
    transform: translateY(-2px);
  }

  .province-name {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .attraction-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
  }

  .attraction-list button {
    background-color: #00a884;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 13px;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .attraction-list button:hover {
    background-color: #00795d;
  }







.tours {
  padding: 40px 20px;
  background: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
}

.tours h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 30px;
}

.tour-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.tour-card {
  background: white;
  border-left: 6px solid #4CAF50;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  border-radius: 10px;
  padding: 20px;
  transition: transform 0.2s ease;
}

.tour-card:hover {
  transform: translateY(-5px);
}

.tour-card h3 {
  margin: 0 0 15px;
  color: #333;
  font-size: 20px;
}

.tour-card .description {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

.tour-card .transport {
  font-size: 14px;
  color: #777;
  font-style: italic;
}








.footer {
  background-color: #222;
  color: #f1f1f1;
  padding: 40px 20px 10px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.footer-section {
  flex: 1 1 250px;
}

.footer-section h4 {
  margin-bottom: 10px;
  color: #4CAF50;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 8px;
}

.footer-section a {
  color: #f1f1f1;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #aaa;
}

.social-links li {
  display: inline-block;
  margin-right: 10px;
}




.whatsapp-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 48px;
  height: 48px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}

.whatsapp-button svg {
  width: 24px;
  height: 24px;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}




.email-button {
  position: fixed;
  bottom: 20px;
  right: 20px; /* THIS makes it appear bottom-right */
  width: 48px;
  height: 48px;
  background-color: #007BFF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}

.email-button svg {
  width: 24px;
  height: 24px;
}

.email-button:hover {
  transform: scale(1.1);
}






.attraction-button {
  display: inline-block;
  padding: 10px 16px;
  margin: 5px;
  background-color: #008CBA;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  border: none;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.attraction-button:hover {
  background-color: #005f73;
}



.services {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.services h3 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.service-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 20px;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #444;
}


.about-us {
  padding: 60px 20px;
  background-color: #ffffff;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.about-logo {
  flex: 1 1 300px;
  text-align: center;
}

.about-logo img {
  max-width: 200px;
  width: 100%;
  height: auto;
}

.about-content {
  flex: 2 1 500px;
}

.about-content h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
}




.tours-available {
  padding: 60px 20px;
  background-color: #f1f9f9;
  text-align: center;
}

.tours-available h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.tours-intro {
  font-size: 16px;
  margin-bottom: 30px;
  color: #555;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.tour-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  padding: 20px;
  transition: transform 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-5px);
}

.tour-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.tour-card p {
  font-size: 14px;
  color: #333;
}






.hotel-booking {
  background-color: #fff;
  padding: 60px 20px;
}

.hotel-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.hotel-content h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.hotel-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
}

.hotel-content .attraction-button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #008CBA;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.hotel-content .attraction-button:hover {
  background-color: #005f73;
}










.airport-transfer {
  background-color: #f8f9fa;
  padding: 60px 20px;
}

.transfer-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1100px;
  margin: auto;
  gap: 30px;
}

.transfer-image {
  flex: 1 1 300px;
  text-align: center;
}

.transfer-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.transfer-content {
  flex: 2 1 500px;
}

.transfer-content h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.transfer-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

.transfer-content .attraction-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #008CBA;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.transfer-content .attraction-button:hover {
  background-color: #005f73;
}




.lake-tours {
  background-color: #f0f8ff;
  padding: 60px 20px;
}

.lake-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1100px;
  margin: auto;
  gap: 30px;
}

.lake-content {
  flex: 2 1 500px;
}

.lake-content h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.lake-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

.lake-content .attraction-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #008CBA;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.lake-content .attraction-button:hover {
  background-color: #005f73;
}

.lake-image {
  flex: 1 1 300px;
  text-align: center;
}

.lake-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}






.why-us {
  background-color: #ffffff;
  padding: 60px 20px;
}

.why-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1100px;
  margin: auto;
  gap: 30px;
}

.why-image {
  flex: 1 1 350px;
  text-align: center;
}

.why-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.why-text {
  flex: 2 1 600px;
}

.why-text h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.why-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 15px;
}

.why-text .attraction-button {
  margin-top: 15px;
  display: inline-block;
  padding: 10px 20px;
  background-color: #008CBA;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.why-text .attraction-button:hover {
  background-color: #005f73;
}













.quick-guide {
  background-color: #fefefe;
  padding: 60px 20px;
}

.guide-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  align-items: center;
}

.guide-image {
  flex: 1 1 400px;
  text-align: center;
}

.guide-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.guide-content {
  flex: 2 1 600px;
}

.guide-content h3 {
  font-size: 28px;
  margin-bottom: 10px;
  text-align: left;
}

.guide-intro {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  text-align: left;
}

.guide-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.guide-step h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.guide-step p {
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
}

.guide-button {
  display: inline-block;
  padding: 8px 16px;
  background-color: #008CBA;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.guide-button:hover {
  background-color: #005f73;
}

@media screen and (max-width: 768px) {
  .guide-container {
    flex-direction: column;
  }

  .guide-content h3,
  .guide-intro {
    text-align: center;
  }

  .guide-steps {
    text-align: center;
  }
}






.partnership {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.partnership-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.partnership-text {
  flex: 1 1 500px;
}

.partnership-text h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.partnership-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 15px;
}

.partnership-text .attraction-button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #008CBA;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.partnership-text .attraction-button:hover {
  background-color: #005f73;
}

.partnership-image {
  flex: 1 1 400px;
  text-align: center;
}

.partnership-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
  .partnership-container {
    flex-direction: column;
  }

  .partnership-text,
  .partnership-image {
    text-align: center;
  }

  .partnership-text .attraction-button {
    margin-top: 25px;
  }
}



.contact-us {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.contact-logo img {
  width: 200px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-details {
  flex: 1;
  max-width: 600px;
}

.contact-details h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}

.contact-details p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

.contact-details ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.contact-details ul li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #444;
}

.contact-details a {
  color: #008CBA;
  text-decoration: none;
  font-weight: 500;
}

.contact-details a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-details {
    max-width: 100%;
  }

  .contact-logo img {
    width: 160px;
    margin-bottom: 20px;
  }
}










/* === GALLERY SECTION === */
.gallery-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: 'Inter', sans-serif;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
  gap: 20px;
}

.gallery-logo {
  width: 100px;
  height: auto;
}

.gallery-intro h3 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.gallery-intro p {
  font-size: 16px;
  color: #555;
  max-width: 600px;
}

/* === GRID === */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.caption {
  padding: 10px 15px;
  font-size: 14px;
  color: #444;
  background-color: #fff;
}



.btn-book-now {
  display: inline-block;
  background-color: #008CBA; /* Change to match your brand color */
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-book-now:hover {
  background-color: #005f7a; /* Darker on hover */
}
























.story-time {
  background-color: white;
  height: 30vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Inter', sans-serif;
  padding: 0 20px;
  box-sizing: border-box;
}




.story-container {
  text-align: center;
  max-width: 600px;
  width: 130%;
  padding: 16px;
  margin: 0 auto;
  border-radius: 12px;
  
  background-color: white;
}


.typing-text {
  font-size: 1.8rem;
  font-weight: 500;
  color: #202124;
  min-height: 100px;
  line-height: 1.6;
  letter-spacing: 0.3px;
  white-space: pre-wrap;
}







.about-us {
  background-color: #fff;
  padding: 60px 20px;
  font-family: 'Inter', sans-serif;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.about-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  width: 100%;
  flex-wrap: wrap;
}

.about-video {
  flex: 1;
  min-width: 300px;
}

.about-video video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-content h3 {
  font-size: 26px;
  color: #1d1d1d;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-content h3 {
    font-size: 22px;
  }

  .about-content p {
    font-size: 15px;
  }
}




.about-video {
  flex: 1;
  min-width: 400px;
}

.youtube-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 60%; /* was 56.25%, now slightly taller */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.youtube-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}





.partner-hotel {
  background-color: #f8f8f8;
  padding: 40px 20px;
}

.partner-hotel-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.hotel-text {
  flex: 1;
  min-width: 300px;
}

.hotel-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hotel-images img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}









    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    /* Mobile version */
@media (max-width: 768px) {
  .mobile-footer-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    background: transparent;
    padding: 8px 0;
    position: fixed;
    bottom: 25px; /* Just a little bit above the bottom */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
  }

  .footer-button {
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  .blue-button {
    background-color: blue;
  }

  .blue-button:hover {
    background-color: #0056b3;
  }

  .green-button {
    background-color: #28a745;
  }

  .green-button:hover {
    background-color: #1e7e34;
  }
}



.footer-button.blue-button {
  background-color: blue !important;
  color: white !important;
}

.footer-button.green-button {
  background-color: #28a745 !important;
  color: white !important;
}















































