/* Variables */
:root {
  --primary-color: #f0a500;
  --secondary-color: #00796b;
  --spacing-unit: 20px;
  --font-size-base: 1rem;
}

/* Reset & Base */
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
section { opacity: 0; transition: opacity 0.5s; }
section.visible { opacity: 1; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Navigation */
nav .logo {
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
nav ul li { position: relative; }
nav a {
  color: white;
  font-weight: 600;
  transition: color .3s;
}
nav a:hover { color: var(--primary-color); }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #222;
  min-width: 180px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  z-index: 100;
  border-radius: 0 0 8px 8px;
  padding: 10px 0;
}
nav ul li:hover > .dropdown,
nav ul li:focus-within > .dropdown { display: block; }
.dropdown li { width: 100%; padding: 0; }
.dropdown a {
  display: block;
  padding: 10px 20px;
  color: #fff;
  font-weight: 500;
  background: none;
  transition: background 0.2s, color 0.2s;
}
.dropdown a:hover {
  background: var(--primary-color);
  color: #222;
}
@media (max-width: 600px) {
  .dropdown {
    position: static;
    background: #333;
    box-shadow: none;
    padding: 0.5rem 0;
  }
  .dropdown a {
    padding: 8px 20px;
  }
}

/* Hero Section */
body {
  background: #fff; /* Override body background to white to hide brownish gap */
}
.hero {
  margin: 0; /* Remove any margin */
  padding: 0; /* Remove any padding */
}
.about {
  margin: 0; /* Remove margin to close gap */
  padding-top: 0; /* Remove top padding to align with hero */
}
.hero {
  background: #fff; /* White background */
  min-height: calc(100vh - 130px); /* Maintain height */
  position: relative;
  overflow: hidden;
}
.slides img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.slides img.active { opacity: 1; }
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1;
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 20px;
  width: 100%;
  max-width: 800px;
}
.hero-content h1 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  text-shadow: 0 0 10px rgba(0,0,0,.7);
}
.hero-content p {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  margin: 15px 0;
  text-shadow: 0 0 8px rgba(0,0,0,.6);
}
.hero-content .btn {
  background: var(--primary-color);
  color: #000;
  padding: 10px 25px;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  transition: background .3s;
}
.hero-content .btn:hover { background: #c17a00; }
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}
.arrow.left { left: 15px; }
.arrow.right { right: 15px; }
@media (max-width: 600px) {
  .hero-content h1 { font-size: clamp(1.2rem, 3.5vw, 1.8rem); }
  .hero-content p { font-size: clamp(0.8rem, 2vw, 1rem); }
  .hero-content .btn { padding: 8px 20px; font-size: 0.9rem; }
  .arrow { font-size: 2rem; padding: 6px; }
}

/* About Section */
.about {
  background: #f9f6f2;
  padding: 60px 20px;
  text-align: center;
  margin-top: 40px;
}
.about h2 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  margin-bottom: 20px;
  color: #1a1a1a;
}
.about p {
  max-width: 900px;
  margin: auto;
  font-size: clamp(1rem, 3vw, 1.15rem);
  line-height: 1.7;
  color: #333;
}
.about button {
  margin-top: 20px;
  padding: 12px 35px;
  background: var(--primary-color);
  color: #000;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  cursor: pointer;
  transition: background .3s;
}
.about button:hover { background: #c17a00; }
@media (max-width: 600px) {
  .about { padding: 40px 15px; }
  .about img { max-width: 280px; height: 250px; }
}

/* Gallery Section */
.gallery-section {
  background: #fff;
  padding: 60px 20px;
}
.gallery-section h2 {
  text-align: center;
  font-size: clamp(2rem, 5vw, 2.5rem);
  margin-bottom: 30px;
  color: #000000;
}
.gallery-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(1rem, 3vw, 1.1rem);
  color: #ffffff;
  line-height: 1.6;
  padding: 0 15px;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 20px;
  max-width: 1200px;
  margin: 30px auto 0;
  padding: 0 15px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  transition: transform .3s;
  cursor: pointer;
}
.gallery-item:hover { transform: scale(1.05); }
.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform .3s;
}
.gallery-item:hover img { transform: scale(1.1); }
.caption {
  padding: 15px;
  font-weight: 600;
  text-align: center;
  color: #555;
}
@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 15px;
  }
  .gallery-item img { height: 200px; }
}
@media (max-width: 600px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 10px;
  }
  .gallery-item img { height: 180px; }
}
@media (max-width: 400px) {
  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, auto);
    gap: 10px;
  }
  .gallery-item img { height: 160px; }
}

/* Zig-Zag & Top Destinations */
.zigzag, .top-destinations {
  background-color: #f2f7e7;
  padding: 60px 20px;
}
.container, .top-destinations {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 15px;
}
.item {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
}
.item:nth-child(even) { flex-direction: row-reverse; }
.item img {
  flex: 1;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
.item .text { flex: 1; }
.item .text h3 {
  font-size: clamp(1.8rem, 4vw, 2rem);
  margin-bottom: 15px;
  color: #1a1a1a;
}
.item .text p {
  line-height: 1.6;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  color: #555;
}
@media (max-width: 800px) {
  .item {
    flex-direction: column;
    gap: 20px;
  }
  .item:nth-child(even) {
    flex-direction: column;
  }
  .item img, .item .text {
    width: 100%;
  }
  .item img {
    height: 200px;
  }
}
.explore-section, .top-destinations {
  text-align: center;
}
.explore-section h2, .top-destinations h2 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  color: #1a1a1a;
  margin-bottom: 15px;
}
.explore-section p, .top-destinations p {
  font-size: clamp(1rem, 3vw, 1.1rem);
  max-width: 800px;
  margin: 0 auto;
  color: #555;
  line-height: 1.6;
}

/* Card Slider Section */
.top-destinations {
  background: #fff;
  padding: 60px 20px;
}
.slider-container {
  max-width: 1200px;
  margin: 40px auto;
  overflow: hidden;
  position: relative;
  padding: 0 15px;
}
.card-slider {
  display: flex;
  transition: transform 0.5s ease;
}
.card {
  flex: 0 0 calc(33.333% - 20px);
  margin: 0 10px;
  background: white;
  border-radius: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 0;
}
.card-content {
  padding: 15px;
}
.card-content h4 {
  margin-bottom: 10px;
  color: #1a1a1a;
  font-size: clamp(1.1rem, 2.5vw, 1.2rem);
}
.card-content p {
  color: #555;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
}
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-color);
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-weight: bold;
  user-select: none;
  transition: background 0.3s ease;
  z-index: 5;
}
.nav-btn:hover { background: #c17a00; }
.prev-btn { left: 10px; }
.next-btn { right: 10px; }
@media (max-width: 800px) {
  .card { flex: 0 0 calc(100% - 20px); }
  .nav-btn { top: auto; bottom: 10px; transform: none; }
  .prev-btn { left: 10px; }
  .next-btn { right: 10px; }
}
@media (max-width: 600px) {
  .card img { height: 200px; }
  .card-content { padding: 10px; }
  .nav-btn { padding: 8px 12px; font-size: 0.9rem; }
}

/* Why Choose Section */
.why-section {
  position: relative;
  background-image: url('buffalo 4.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0;
  width: 100%;
  overflow: hidden;
}
.why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
  pointer-events: none;
}
.why {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 15px;
}
.why-header {
  text-align: center;
  margin-bottom: 30px;
}
.why-header h2 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  color: #ffffff;
  margin-bottom: 20px;
}
.why-header p {
  font-size: clamp(1rem, 3vw, 1.1rem);
  max-width: 800px;
  margin: 0 auto;
  color: hsl(0, 0%, 100%);
  line-height: 1.6;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 20px;
  max-width: 1200px;
  margin: 30px auto 0;
  padding: 0 15px;
  background: rgba(214, 231, 228, 0);
}
.feature-item {
  background: #c3e9dd;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  padding: 25px 15px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.feature-item svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 15px;
  color: var(--primary-color);
  display: block;
}
.feature-item h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  color: #1a1a1a;
  margin-bottom: 10px;
}
.feature-item p {
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  color: #555;
}
.play-button-container {
  text-align: center;
  margin-top: 30px;
}
.glow-btn {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 12px 35px;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  position: relative;
  box-shadow: 0 0 10px rgba(240,165,0,0.7), 0 0 20px rgba(240,165,0,0.5);
  animation: glow 2s infinite alternate;
  transition: background 0.3s;
}
.glow-btn:hover {
  background: #e5a600;
  box-shadow: 0 0 15px rgba(240,165,0,0.9), 0 0 30px rgba(240,165,0,0.7);
}
@keyframes glow {
  from { box-shadow: 0 0 8px rgba(240,165,0,0.6), 0 0 16px rgba(240,165,0,0.4); }
  to { box-shadow: 0 0 20px rgba(240,165,0,0.9), 0 0 40px rgba(240,165,0,0.7); }
}
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 15px;
  }
  .feature-item { padding: 20px 10px; }
}
@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 10px;
  }
  .feature-item svg { width: 40px; height: 40px; }
}
@media (max-width: 400px) {
  .features-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, auto);
    gap: 10px;
  }
}

/* Balloon Safari Section */
.balloon-safari-section {
  background-color: #f3ecdf;
  color: #161513;
  padding: 60px 20px;
}
.balloon-safari-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.balloon-text {
  flex: 1 1 400px;
  max-width: 500px;
}
.balloon-subtitle {
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  font-style: italic;
  color: #aa4c00;
  margin: 0 0 10px;
}
.balloon-title {
  font-size: clamp(2.2rem, 5vw, 3rem);
  margin: 0 0 20px;
  line-height: 1.1;
}
.balloon-description {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  line-height: 1.6;
  margin: 0 0 20px;
}
.balloon-buttons {
  margin-top: 10px;
}
.balloon-book-btn {
  background-color: #f26522;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s;
}
.balloon-book-btn:hover,
.balloon-book-btn:focus {
  background-color: #d1541e;
  outline: none;
}
.balloon-images {
  flex: 1 1 400px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  justify-items: center;
}
.balloon-images img {
  width: clamp(100px, 22vw, 140px);
  height: clamp(100px, 22vw, 140px);
  object-fit: cover;
  border-radius: 10px;
  border: 4px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  background-color: #fff;
  transition: transform 0.3s;
  cursor: pointer;
}
.balloon-images img:hover,
.balloon-images img:focus {
  transform: scale(1.05);
  outline: none;
}
@media (max-width: 768px) {
  .balloon-safari-container { flex-direction: column; align-items: center; gap: 20px; }
  .balloon-images { justify-content: center; }
  .balloon-title { font-size: clamp(2rem, 4vw, 2.5rem); }
  .balloon-subtitle { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
  .balloon-description { font-size: clamp(0.85rem, 2vw, 1rem); }
  .balloon-images img { width: clamp(90px, 20vw, 120px); height: clamp(90px, 20vw, 120px); }
}

/* Top Experiences Section */
.Experience {
  background-color: #f2f7e7;
  padding: 60px 20px;
}
#cards-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
#card-experience-1,
#card-experience-2,
#card-experience-3,
#card-experience-4 {
  position: relative;
  width: clamp(250px, 45vw, 300px);
  height: clamp(450px, 80vw, 520px);
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  background: #fff;
  border-radius: 0;
  cursor: pointer;
  user-select: none;
  transition: transform 0.3s ease;
}
#card-experience-1:hover,
#card-experience-2:hover,
#card-experience-3:hover,
#card-experience-4:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}
#card-experience-1 img,
#card-experience-2 img,
#card-experience-3 img,
#card-experience-4 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#card-experience-1 .card-header,
#card-experience-2 .card-header,
#card-experience-3 .card-header,
#card-experience-4 .card-header {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.5);
  color: white;
  padding: 12px 0;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: bold;
  text-align: center;
  backdrop-filter: blur(5px);
  user-select: none;
}
@media (max-width: 600px) {
  #card-experience-1,
  #card-experience-2,
  #card-experience-3,
  #card-experience-4 {
    width: clamp(200px, 80vw, 280px);
    height: clamp(400px, 70vw, 480px);
  }
}

/* Call to Action */
.cally-sales-container {
  max-width: 1000px;
  margin: 40px auto;
  display: flex;
  gap: 10px;
  padding: 0 15px;
}
.cally-sales-text-box,
.cally-sales-image-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cally-sales-text-box {
  width: 65%;
  background-color: #f5e9df;
}
.cally-sales-image-box {
  width: 35%;
  justify-content: center;
  align-items: center;
  background-color: rgb(245, 230, 209);
}
.cally-sales-text-box h1 {
  font-size: clamp(1.8rem, 4vw, 2rem);
  margin-bottom: 15px;
  color: #222;
}
.cally-sales-text-box p {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}
.cally-sales-text-box button {
  background-color: #ffcc33;
  border: none;
  padding: 12px 25px;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  color: #fffefe;
  transition: background-color 0.3s ease;
  width: fit-content;
}
.cally-sales-text-box button:hover {
  background-color: #e6b800;
}
.cally-sales-image-box img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.cally-sales-container.reverse { flex-direction: row-reverse; }
@media (max-width: 768px) {
  .cally-sales-container { flex-direction: column; gap: 15px; }
  .cally-sales-text-box, .cally-sales-image-box { width: 100% !important; padding: 20px; }
  .cally-sales-text-box h1 { font-size: clamp(1.5rem, 3.5vw, 1.8rem); }
  .cally-sales-text-box p { font-size: clamp(0.85rem, 2vw, 1rem); }
}

/* Contact Section */
#contact-section {
  padding: 60px 15px;
}
#contact-section > div {
  padding: 30px 20px;
}
#contact-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
}
#contact-section form {
  padding: 20px;
}
#contact-section input,
#contact-section textarea {
  font-size: clamp(0.85rem, 2vw, 1rem);
}
#contact-section button {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  padding: 10px 0;
}
#contact-section .fa, #contact-section .fab {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
}
#contact-section a[aria-label] {
  font-size: clamp(1.4rem, 3vw, 1.7rem);
}
#contact-section p {
  font-size: clamp(0.85rem, 2vw, 0.98rem);
}
@media (max-width: 600px) {
  #contact-section { padding: 40px 10px; }
  #contact-section > div { padding: 20px 15px; }
  #contact-section form { padding: 15px; }
  #contact-section input, #contact-section textarea { padding: 8px; }
}

/* Footer */
.bottom-note {
  background-color: #111;
  color: #bbb;
  text-align: center;
  padding: 15px 0;
  font-size: clamp(0.85rem, 2vw, 0.9rem);
  font-weight: 400;
  position: relative;
  z-index: 100;
}

/* Chatbot */
#chat-button {
  position: fixed;
  bottom: 10px;
  right: 20px;
  background-color: var(--secondary-color);
  color: white;
  padding: 10px 18px;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  font-weight: bold;
  z-index: 1000;
  transition: background 0.3s ease;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
}
#chat-button:hover { background-color: #004d40; }
#chat-box {
  position: fixed;
  bottom: 0px;
  right: 20px;
  width: clamp(260px, 85vw, 300px);
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  display: none;
  z-index: 1001;
  overflow: hidden;
  font-family: sans-serif;
}
#chat-header {
  background: var(--secondary-color);
  color: white;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#chat-header button {
  background: none;
  border: none;
  color: white;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  cursor: pointer;
}
#chat-body {
  padding: 12px;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
}
#chat-body a {
  display: inline-block;
  margin-top: 8px;
  text-decoration: none;
  background: #25d366;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: bold;
  text-align: center;
}
#chat-messages {
  max-height: 200px;
  overflow-y: auto;
  margin-bottom: 5px;
}
.chat-message {
  margin-bottom: 6px;
  padding: 6px 10px;
  border-radius: 12px;
  max-width: 90%;
  word-break: break-word;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
}
.chat-message.user {
  background: #e0f7fa;
  align-self: flex-end;
  text-align: right;
  margin-left: 20%;
}
.chat-message.bot {
  background: #f0f0f0;
  align-self: flex-start;
  text-align: left;
  margin-right: 20%;
}

/* WhatsApp Button and Popup */
#whatsapp-btn {
  position: fixed;
  bottom: 0px;
  left: 20px;
  z-index: 1000;
  cursor: pointer;
}
#whatsapp-btn img {
  width: clamp(40px, 10vw, 50px);
  height: clamp(40px, 10vw, 50px);
}
#whatsapp-popup {
  position: fixed;
  bottom: 100px;
  left: 20px;
  width: clamp(200px, 50vw, 250px);
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  display: none;
  z-index: 1001;
  overflow: hidden;
}
#whatsapp-popup.active {
  display: block;
}
.whatsapp-popup-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.whatsapp-popup-content button {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #333;
}
.whatsapp-popup-content a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  background: #25d366;
  color: rgb(0, 0, 0);
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}
.whatsapp-popup-content a:hover {
  background: #1ebe56;
}
.whatsapp-popup-content a i {
  font-size: 1.2rem;
}
@media (max-width: 600px) {
  #whatsapp-btn {
    bottom: 10px;
    left: 15px;
  }
  #whatsapp-btn img {
    width: clamp(35px, 8vw, 45px);
    height: clamp(35px, 8vw, 45px);
  }
  #whatsapp-popup {
    bottom: 30px;
    left: 15px;
    width: clamp(180px, 45vw, 220px);
  }
  .whatsapp-popup-content {
    padding: 10px;
  }
  .whatsapp-popup-content a {
    font-size: 0.9rem;
    padding: 8px;
  }
  .whatsapp-popup-content a i {
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  #whatsapp-btn {
    bottom: 0px; /* Move lower from 70px */
    left: 15px;
  }
  #whatsapp-popup {
    bottom: 40px; /* Adjusted from 130px to align with button */
    left: 15px;
    width: clamp(180px, 45vw, 220px);
  }
  #chat-button {
    bottom: 40px; /* Add to move lower on mobile */
    right: 15px; /* Optional: adjust for consistency */
  }
  #chat-box {
    bottom: 60px; /* Add to align with chat button */
    right: 15px;
  }
}
