@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,600;1,100;1,300&display=swap");

/* Image optimization and loading */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Modern image loading optimizations - moved to main .home .box selector */

* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: capitalize;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

/* Prevent horizontal scroll on all elements */
*, *::before, *::after {
  max-width: 100%;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 10rem;
}

/* Ensure body doesn't overflow on mobile */
body {
  overflow-x: hidden;
  max-width: 100vw;
}

html::-webkit-scrollbar {
  width: 1rem;
}

html::-webkit-scrollbar-track {
  background: #fff;
}

html::-webkit-scrollbar-thumb {
  background: #10221b;
}

section {
  padding: 5rem 9%;
}

.btn {
  margin-top: 1rem;
  display: inline-block;
  border: 0.2rem solid #10221b;
  color: #10221b;
  cursor: pointer;
  background: none;
  font-size: 1.7rem;
  padding: 1rem 3rem;
}

.btn:hover {
  background: #10221b;
  color: #fff;
}

.btn:active {
  background: #10221b;
  color: #fff;
  transform: scale(0.98);
}

.heading {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 4rem;
  color: #10221b;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 2rem 9%;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.header.active {
  background: #fff;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.header .logo {
  margin-right: auto;
  font-size: 2.5rem;
  color: #10221b;
  font-weight: bolder;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header .logo img {
  height: 6rem;
  width: auto;
  background: transparent;
}

.header .navbar a {
  margin-left: 2rem;
  font-size: 1.7rem;
  color: #10221b;
}

.header .navbar a:hover {
  color: #219150;
}

.header .navbar #nav-close {
  font-size: 5rem;
  cursor: pointer;
  color: #10221b;
  display: none;
}

/* Add responsive improvements */
.header .icons {
  display: flex;
  align-items: center;
}

.header .icons a,
.header .icons div {
  font-size: 2.5rem;
  margin-left: 2rem;
  cursor: pointer;
  color: #10221b;
}

.header .icons a:hover,
.header .icons div:hover {
  color: #219150;
}

.header #menu-btn {
  display: none;
}

.header .contact-info {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 2rem;
}

.header .contact-info .phone-number {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header .contact-info .call-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  color: #10221b;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border: 2px solid #219150;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.header .contact-info .call-btn:hover {
  background: #219150;
  color: #fff;
}

.header .contact-info .call-btn i {
  font-size: 1.6rem;
  transform: scaleX(-1);
}

.header .contact-info .whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.header .contact-info .whatsapp-btn:hover {
  background: #128c7e;
  transform: scale(1.1);
}

.header .contact-info .whatsapp-btn i {
  font-size: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
}

.search-form {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 10000;
  -webkit-transform: translateY(-110%);
          transform: translateY(-110%);
}

.search-form.active {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.search-form #close-search {
  position: absolute;
  top: 1.5rem;
  right: 2.5rem;
  cursor: pointer;
  color: #fff;
  font-size: 6rem;
}

.search-form #close-search:hover {
  color: #219150;
}

.search-form form {
  width: 70rem;
  margin: 0 2rem;
  padding-bottom: 2rem;
  border-bottom: 0.2rem solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.search-form form input {
  width: 100%;
  font-size: 2rem;
  color: #fff;
  text-transform: none;
  background: none;
  padding-right: 2rem;
}

.search-form form input::-webkit-input-placeholder {
  color: #aaa;
}

.search-form form input:-ms-input-placeholder {
  color: #aaa;
}

.search-form form input::-ms-input-placeholder {
  color: #aaa;
}

.search-form form input::placeholder {
  color: #aaa;
}

.search-form form label {
  font-size: 3rem;
  cursor: pointer;
  color: #fff;
}

.search-form form label:hover {
  color: #219150;
}

.home {
  padding: 0;
  margin-top: 10rem;
}

.home .swiper-slide {
  width: 100%;
  height: 100vh;
}

.home .box {
  min-height: calc(100vh - 10rem);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 2rem 9%;
  position: relative;
  overflow: hidden;
  /* Performance optimizations */
  will-change: transform;
  backface-visibility: hidden;
  /* Smooth transitions */
  transition: all 0.3s ease-out;
  /* Hardware acceleration for smooth scrolling */
  transform: translateZ(0);
  -webkit-perspective: 1000;
  perspective: 1000;
}

/* Add overlay for better text readability */
.home .box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.home .box .content {
  width: 50rem;
  position: relative;
  z-index: 2;
}

.home .box.second {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.home .box .content span {
  font-size: 4rem;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.home .box .content h3 {
  font-size: 6rem;
  color: #ffffff;
  padding-top: .5rem;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.home .box .content p {
  line-height: 2;
  color: #10221b;
  font-size: 1.5rem;
  padding: 1rem 0;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 3rem;
  color: #10221b;
}

.category {
  padding: 5rem 0; /* Remove horizontal padding to use full width */
}

.category .heading {
  padding: 0 9%; /* Keep heading centered with normal padding */
  margin-bottom: 2.5rem;
}

.category .box-container {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  gap: 2rem;
  padding: 1rem 2rem; /* Small padding on sides for better visual */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  width: 100vw; /* Full viewport width */
  margin-left: calc(-50vw + 50%); /* Center the full-width container */
  /* Enhanced smooth scrolling for touch devices */
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  /* Better momentum scrolling on iOS */
  -webkit-scroll-behavior: smooth;
  /* Prevent bounce scrolling on overscroll */
  overscroll-behavior-x: contain;
}

.category .box-container::-webkit-scrollbar {
  display: none; /* WebKit */
}

.category .box-container .box {
  text-align: center;
  padding: 1rem;
  min-width: 29rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  /* Add scroll snap for better scrolling experience */
  scroll-snap-align: start;
  /* Ensure smooth interactions on touch */
  touch-action: manipulation;
}

.category .box-container .box:hover {
  transform: translateY(-5px);
}

.category .box-container .box img {
  height: 20rem;
  width: 20rem;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.category .box-container .box h3 {
  font-size: 2rem;
  color: #219150;
}

.category .box-container .box p {
  font-size: 1.5rem;
  color: #10221b;
  padding: 1rem 0;
  line-height: 2;
}

.about {
  background: #eee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}

.about .image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 42rem;
          flex: 1 1 42rem;
  padding-right: 5rem;
  padding-bottom: 5rem;
}

.about .image img {
  width: 100%;
  -webkit-box-shadow: 4rem 4rem 0 rgba(0, 0, 0, 0.1);
          box-shadow: 4rem 4rem 0 rgba(0, 0, 0, 0.1);
}

.about .content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 42rem;
          flex: 1 1 42rem;
}

.about .content h3 {
  font-size: 3rem;
  color: #219150;
}

.about .content p {
  font-size: 1.5rem;
  color: #10221b;
  padding: 1rem 0;
  line-height: 2;
}

.shop .slide {
  border: 0.2rem solid #10221b;
}

.shop .slide:hover .image .icons {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.shop .slide .image {
  position: relative;
  overflow: hidden;
  height: 30rem;
  width: 100%;
}

.shop .slide .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.shop .slide .image .icons {
  width: 100%;
  position: absolute;
  bottom: 2rem;
  left: 0;
  text-align: center;
  z-index: 10;
  -webkit-transform: translateY(7rem);
          transform: translateY(7rem);
}

.shop .slide .image .icons a {
  height: 4.5rem;
  width: 4.5rem;
  line-height: 4.5rem;
  font-size: 1.7rem;
  background: #10221b;
  color: #fff;
  margin: 0 .2rem;
}

.shop .slide .image .icons a:hover {
  background: #219150;
}

.shop .slide .content {
  padding: 1rem 0;
  text-align: center;
}

.shop .slide .content h3 {
  font-size: 2rem;
  color: #10221b;
}

.shop .slide .content .price {
  padding: 1rem 0;
  padding-top: .5rem;
  font-size: 2rem;
  color: #219150;
}

.shop .slide .content .stars i {
  font-size: 1.7rem;
  color: #10221b;
}

.packages {
  background: #eee;
}

.packages .pricing-note {
  margin: 2rem auto;
  max-width: 100rem;
  background: #fff3cd;
  border: 0.2rem solid #856404;
  border-radius: 0.8rem;
  padding: 1.5rem;
  margin-bottom: 3rem;
}

.packages .pricing-note .note-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.packages .pricing-note .note-content i {
  font-size: 2rem;
  color: #856404;
  flex-shrink: 0;
}

.packages .pricing-note .note-content p {
  font-size: 1.4rem;
  color: #856404;
  margin: 0;
  line-height: 1.6;
}

.packages .pricing-note .note-content strong {
  color: #664d03;
}

.packages .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(32rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
  gap: 1.5rem;
}

.packages .box-container .box {
  text-align: center;
  background: #fff;
  border: 0.2rem solid #10221b;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  border-radius: .5rem;
}

.packages .box-container .box:hover {
  background: #10221b;
}

.packages .box-container .box:hover .content > * {
  color: #fff;
}

.packages .box-container .box:hover .btn {
  border-color: #fff;
  background: #fff;
  color: #10221b;
}

.packages .box-container .box:hover .btn:hover {
  background: #fff;
  color: #10221b;
}

.packages .box-container .box:hover .btn:active {
  background: #fff;
  color: #10221b;
  transform: scale(0.98);
}

.packages .box-container .box .image {
  height: 25rem;
  overflow: hidden;
  padding: 2rem;
  padding-bottom: 0;
  border-radius: .5rem;
}

.packages .box-container .box .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: .5rem;
}

.packages .box-container .box .content {
  padding: 2rem;
}

.packages .box-container .box .content h3 {
  font-size: 2rem;
  color: #10221b;
}

.packages .box-container .box .content p {
  font-size: 1.5rem;
  color: #10221b;
  padding: 1rem 0;
  line-height: 2;
}

.packages .box-container .box .content .price {
  font-size: 2rem;
  color: #219150;
}

.services {
  background: #eee;
}

.services .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(31rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(31rem, 1fr));
  gap: 1.5rem;
}

.services .box-container .box {
  text-align: center;
  padding: 2rem;
  border: 0.2rem solid #10221b;
  border-radius: .5rem;
  background: #fff;
}

.services .box-container .box:hover {
  background: #10221b;
}

.services .box-container .box:hover img {
  -webkit-filter: invert(1);
          filter: invert(1);
}

.services .box-container .box:hover p {
  color: #fff;
}

.services .box-container .box:hover .btn {
  border-color: #fff;
  color: #fff;
}

.services .box-container .box:hover .btn:hover {
  background: #fff;
  color: #10221b;
}

.services .box-container .box img {
  height: 10rem;
  margin-bottom: 1rem;
}

.services .box-container .box h3 {
  font-size: 2rem;
  color: #219150;
}

.services .box-container .box p {
  font-size: 1.5rem;
  color: #10221b;
  padding: 1rem 0;
  line-height: 2;
}

.reviews .slide .text {
  padding: 2rem;
  font-size: 1.5rem;
  font-style: italic;
  background: #eee;
  border-radius: .5rem;
  color: #10221b;
  line-height: 2;
  position: relative;
  z-index: 0;
  margin-bottom: 3rem;
}

.reviews .slide .text::before {
  content: '';
  position: absolute;
  bottom: -1.5rem;
  left: .7rem;
  height: 3rem;
  width: 3rem;
  background: #eee;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.reviews .slide .user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

.reviews .slide .user img {
  height: 7rem;
  width: 7rem;
  border-radius: 50%;
}

.reviews .slide .user h3 {
  font-size: 2rem;
  color: #10221b;
}

.reviews .slide .user span {
  color: #219150;
  font-size: 1.5rem;
}

.blogs .slide {
  text-align: center;
  padding: 2rem;
}

.blogs .slide img {
  height: 25rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: .5rem;
}

.blogs .slide .icons {
  background: #10221b;
  border-radius: .5rem;
  padding: 1rem;
  position: relative;
  top: -2rem;
  display: inline-block;
}

.blogs .slide .icons a {
  font-size: 1.4rem;
  color: #fff;
  margin: 0 1rem;
}

.blogs .slide .icons a:hover {
  color: #219150;
}

.blogs .slide .icons a i {
  padding-right: .5rem;
  color: #219150;
}

.blogs .slide h3 {
  font-size: 2rem;
  color: #10221b;
}

.blogs .slide p {
  font-size: 1.4rem;
  padding: 1rem 0;
  line-height: 2;
  color: #10221b;
}

.newsletter {
  background: #eee;
}

.newsletter .content {
  max-width: 70rem;
  margin: 1rem auto;
  text-align: center;
}

.newsletter .content p {
  font-size: 1.5rem;
  line-height: 2;
  color: #10221b;
}

.newsletter .content form {
  margin-top: 2rem;
  background: #fff;
  border-radius: 5rem;
  border: 0.2rem solid #10221b;
  padding: .7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.newsletter .content form .email {
  width: 100%;
  background: none;
  text-transform: none;
  font-size: 1.6rem;
  color: #10221b;
  padding: 0 1.3rem;
}

.newsletter .content form .btn {
  margin-top: 0;
  border-radius: 5rem;
  background: #10221b;
  color: #fff;
}

.newsletter .content form .btn:hover {
  background: none;
  color: #10221b;
}

.clients .silde {
  text-align: center;
}

.clients .silde img {
  height: 12rem;
}

.footer {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url(../images/footer-bg.jpg) no-repeat;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/footer-bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.footer .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 1.5rem;
}

.footer .box-container .box h3 {
  font-size: 2rem;
  padding: 1.5rem 0;
  color: #fff;
}

.footer .box-container .box a {
  display: block;
  font-size: 1.4rem;
  color: #fff;
  padding: 1rem 0;
}

.footer .box-container .box a i {
  color: #219150;
  padding-right: .5rem;
}

.footer .box-container .box a:hover {
  color: #219150;
}

.footer .box-container .box a:hover i {
  padding-right: 2rem;
}

.footer .credit {
  text-align: center;
  margin-top: 2.5rem;
  padding: 1rem;
  padding-top: 2.5rem;
  font-size: 2rem;
  color: #fff;
}

.footer .credit span {
  color: #219150;
}

/* Hide mobile contact buttons on desktop by default */
.mobile-contact-buttons {
  display: none;
}

@media (max-width: 1200px) {
  .header {
    padding: 2rem;
  }
  section {
    padding: 3rem 2rem;
  }
  
  /* Optimize cover images for tablets and large screens */
  .home .box {
    background-attachment: scroll;
  }
}

@media (max-width: 991px) {
  html {
    font-size: 55%;
    scroll-padding-top: 7rem;
  }
  .header .contact-info .call-btn span {
    display: none;
  }
  .header .contact-info .call-btn {
    padding: 0.8rem;
    min-width: 4rem;
    justify-content: center;
  }
  .home {
    margin-top: 8rem;
  }
  
  .home .swiper-slide {
    height: 80vh;
  }
  
  .home .box {
    padding: 2rem;
    min-height: 80vh;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-position: center center !important;
    background-attachment: scroll !important;
  }
  .home .box.second {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-position: center center !important;
  }
  .home .box .content {
    text-align: center;
  }
  .home .box .content span {
    font-size: 3rem;
  }
  .home .box .content h3 {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  .header #menu-btn {
    display: inline-block;
    cursor: pointer;
    color: #10221b;
    font-size: 2.5rem;
  }
  
  .header #menu-btn:hover {
    color: #219150;
  }
  
  .header .contact-info {
    margin-right: 1rem;
  }
  .header .contact-info .phone-number {
    gap: 0.5rem;
  }
  .header .contact-info .call-btn {
    padding: 0.6rem;
    font-size: 1.2rem;
  }
  .header .contact-info .whatsapp-btn {
    width: 3.5rem;
    height: 3.5rem;
  }
  .header .contact-info .whatsapp-btn i {
    font-size: 1.8rem;
  }
  .header .navbar {
    position: fixed;
    top: 0;
    left: -110%;
    background: #fff;
    z-index: 10001;
    width: 35rem;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    transition: all 0.3s ease;
    padding: 2rem;
    border-right: 1px solid #eee;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  }
  .header .navbar.active {
    left: 0;
  }
  
  /* Create separate overlay for background */
  .header .navbar.active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 35rem;
    width: calc(100vw - 35rem);
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: -1;
  }
  .header .navbar a {
    margin: 1rem 0;
    font-size: 3rem;
    color: #10221b;
    text-decoration: none;
    display: block;
    text-align: center;
    width: 100%;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
  }
  
  .header .navbar a:hover {
    background: #219150;
    color: #fff;
  }
  .header .navbar #nav-close {
    display: block;
    position: absolute;
    top: 1rem;
    right: 2rem;
    color: #10221b;
    font-size: 3rem;
    cursor: pointer;
    z-index: 10002;
    background: transparent;
    border: none;
    padding: 0.5rem;
  }
  
  .header .navbar #nav-close:hover {
    color: #219150;
  }
  
  /* Mobile contact buttons in navbar */
  .header .navbar .mobile-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    width: 100%;
    padding: 0 1rem;
  }
  
  .header .navbar .mobile-call-btn,
  .header .navbar .mobile-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
  }
  
  .header .navbar .mobile-call-btn {
    background: #219150;
    color: #fff;
    border: 2px solid #219150;
  }
  
  .header .navbar .mobile-call-btn:hover {
    background: #1a7540;
    border-color: #1a7540;
  }
  
  .header .navbar .mobile-call-btn i {
    transform: scaleX(-1);
    font-size: 1.8rem;
  }
  
  .header .navbar .mobile-whatsapp-btn {
    background: #25d366;
    color: #fff;
    border: 2px solid #25d366;
  }
  
  .header .navbar .mobile-whatsapp-btn:hover {
    background: #128c7e;
    border-color: #128c7e;
  }
  
  .header .navbar .mobile-whatsapp-btn i {
    font-size: 1.8rem;
  }
  
  .swiper-button-next::after,
  .swiper-button-prev::after {
    display: none;
  }
  
  /* Mobile-specific cover image optimizations */
  .home .swiper-slide {
    height: 70vh;
  }
  
  .home .box {
    background-attachment: scroll !important;
    background-position: center top !important;
    min-height: 70vh;
    padding: 1rem 5%;
  }
  
  .home .box::before {
    background: rgba(0, 0, 0, 0.2);
  }
  
  /* Pricing note responsive styles */
  .packages .pricing-note {
    margin: 1.5rem;
    padding: 1rem;
  }
  
  .packages .pricing-note .note-content {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .packages .pricing-note .note-content p {
    font-size: 1.2rem;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
  .heading {
    font-size: 3rem;
  }
  .header {
    padding: 1.5rem 5%;
  }
  .header .logo {
    font-size: 2rem;
  }
  .header .logo img {
    height: 4rem;
  }
  .header .contact-info {
    margin-right: 0.5rem;
  }
  .header .contact-info .call-btn {
    padding: 0.5rem;
    font-size: 1rem;
  }
  .header .contact-info .whatsapp-btn {
    width: 3rem;
    height: 3rem;
  }
  .header .contact-info .whatsapp-btn i {
    font-size: 1.5rem;
  }
  .home {
    margin-top: 7rem;
  }
  
  .home .swiper-slide {
    height: 60vh;
  }
  
  .home .box {
    min-height: 60vh;
    padding: 1rem 5%;
    background-attachment: scroll !important;
    background-position: center center !important;
    background-size: cover !important;
  }
  
  .home .box::before {
    background: rgba(0, 0, 0, 0.25);
  }
  
  .home .box .content {
    width: 100%;
    max-width: 35rem;
  }
  section {
    padding: 3rem 5%;
  }
  
  /* Pricing note mobile styles */
  .packages .pricing-note {
    margin: 1rem;
    padding: 1rem;
  }
  
  .packages .pricing-note .note-content p {
    font-size: 1.1rem;
  }
  
  .packages .pricing-note .note-content i {
    font-size: 1.8rem;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  font-size: 1.6rem;
  font-weight: 500;
  text-transform: none;
}

.whatsapp-btn:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: #fff;
}

.whatsapp-btn i {
  font-size: 2.4rem;
  margin-right: 8px;
}

.whatsapp-text {
  font-size: 1.4rem;
  font-weight: 600;
}

/* Responsive adjustments for WhatsApp button */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
  }
  
  .whatsapp-btn {
    padding: 10px 15px;
    font-size: 1.4rem;
  }
  
  .whatsapp-btn i {
    font-size: 2rem;
    margin-right: 6px;
  }
  
  .whatsapp-text {
    font-size: 1.2rem;
  }
    
  /* Category section responsive adjustments */
  .category .box-container .box {
    min-width: 25rem;
  }
  
  /* Improved scrolling indicators for mobile */
  .category .box-container {
    /* Add subtle visual cue for horizontal scrolling */
    position: relative;
  }
  
  .category .box-container::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 20px;
    background: linear-gradient(to left, rgba(255,255,255,0.8), transparent);
    pointer-events: none;
    z-index: 1;
  }
}

@media (max-width: 450px) {
  .whatsapp-btn {
    padding: 8px 12px;
  }
  
  .whatsapp-text {
    display: none;
  }
  
  .whatsapp-btn i {
    margin-right: 0;
  }
}

/* Additional mobile improvements */
@media (max-width: 375px) {
  html {
    font-size: 45%;
  }
  
  .header {
    padding: 1rem 3%;
  }
  
  .header .logo {
    font-size: 1.8rem;
  }
  
  .header .logo img {
    height: 3.5rem;
  }
  
  .home .swiper-slide {
    height: 50vh;
  }
  
  .home .box {
    padding: 1rem 3%;
    min-height: 50vh;
    background-attachment: scroll !important;
    background-position: center center !important;
  }
  
  .home .box::before {
    background: rgba(0, 0, 0, 0.3);
  }
  
  section {
    padding: 2rem 3%;
  }
}

/* Ultra-small screen optimizations */
@media (max-width: 320px) {
  html {
    font-size: 40%;
  }
  
  .header .contact-info {
    display: none;
  }
  
  .header .logo {
    font-size: 1.6rem;
  }
  
  .header .logo img {
    height: 3rem;
  }
  
  .home .swiper-slide {
    height: 45vh;
  }
  
  .home .box {
    min-height: 45vh;
    background-size: cover !important;
    background-position: center top !important;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 20px;
  border: none;
  border-radius: 10px;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  right: 20px;
  top: 15px;
  cursor: pointer;
  z-index: 1001;
}

.close:hover,
.close:focus {
  color: #219150;
  text-decoration: none;
  cursor: pointer;
}

.package-details h2 {
  color: #219150;
  margin-bottom: 20px;
  text-align: center;
  font-size: 2.5rem;
}

.package-details h3 {
  color: #333;
  margin: 20px 0 10px 0;
  font-size: 2rem;
  border-bottom: 2px solid #219150;
  padding-bottom: 5px;
}

.package-details .stay-info {
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  margin: 15px 0;
  border-left: 4px solid #219150;
}

.package-details .stay-info strong {
  color: #219150;
  font-size: 1.6rem;
}

.itinerary-day {
  background-color: #f8f9fa;
  margin: 10px 0;
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid #219150;
}

.itinerary-day .day-number {
  color: #219150;
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.itinerary-day .day-activities {
  color: #333;
  font-size: 1.4rem;
  line-height: 1.6;
}

.itinerary-day .day-content {
  margin-top: 5px;
}

.itinerary-day .day-title {
  color: #219150;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 8px 0 10px 0;
  line-height: 1.4;
}

.itinerary-day .day-description {
  color: #555;
  font-size: 1.3rem;
  line-height: 1.6;
  margin: 10px 0;
  text-align: justify;
}

.itinerary-day .day-description ul {
  margin: 10px 0;
  padding-left: 20px;
}

.itinerary-day .day-description li {
  margin: 5px 0;
  line-height: 1.6;
  color: #555;
  font-size: 1.3rem;
}

.itinerary-day .day-images {
  display: flex;
  gap: 20px;
  margin-top: 15px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.itinerary-day .itinerary-image {
  width: 160px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #219150;
  transition: all 0.3s ease;
  cursor: pointer;
}

.itinerary-day .itinerary-image:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(33, 145, 80, 0.3);
}

.inclusions {
  background-color: #e8f5e8;
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
  border: 1px solid #219150;
}

.inclusions h3 {
  color: #219150;
  margin-bottom: 10px;
  border: none;
}

.inclusions ul {
  color: #333;
  font-size: 1.4rem;
  line-height: 1.8;
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.inclusions ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  transition: all 0.3s ease;
  border-radius: 4px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.inclusions ul li:hover {
  background-color: rgba(33, 145, 80, 0.1);
  padding-left: 32px;
}

.inclusions ul li:before {
  content: '\f058';
  font-family: 'Font Awesome 5 Free', sans-serif;
  font-weight: 900;
  color: #219150;
  font-size: 1.6rem;
  position: absolute;
  left: 0;
  top: 2px;
  text-shadow: 0 1px 2px rgba(33, 145, 80, 0.3);
}

.exclusions {
  background-color: #fff2f2;
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
  border: 1px solid #dc3545;
}

.exclusions h3 {
  color: #dc3545;
  margin-bottom: 10px;
  border: none;
}

.exclusions ul {
  color: #333;
  font-size: 1.4rem;
  line-height: 1.8;
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.exclusions ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  transition: all 0.3s ease;
  border-radius: 4px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.exclusions ul li:hover {
  background-color: rgba(220, 53, 69, 0.1);
  padding-left: 32px;
}

.exclusions ul li:before {
  content: '\f057';
  font-family: 'Font Awesome 5 Free', sans-serif;
  font-weight: 900;
  color: #dc3545;
  font-size: 1.6rem;
  position: absolute;
  left: 0;
  top: 2px;
  text-shadow: 0 1px 2px rgba(220, 53, 69, 0.3);
}

.notes {
  background-color: #fff9e6;
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
  border: 1px solid #ffc107;
}

.notes h3 {
  color: #ff8c00;
  margin-bottom: 10px;
  border: none;
}

.notes ul {
  color: #333;
  font-size: 1.4rem;
  line-height: 1.8;
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.notes ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  transition: all 0.3s ease;
  border-radius: 4px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.notes ul li:hover {
  background-color: rgba(255, 193, 7, 0.1);
  padding-left: 32px;
}

.notes ul li:before {
  content: '\f06a';
  font-family: 'Font Awesome 5 Free', sans-serif;
  font-weight: 900;
  color: #ff8c00;
  font-size: 1.6rem;
  position: absolute;
  left: 0;
  top: 2px;
  text-shadow: 0 1px 2px rgba(255, 140, 0, 0.3);
}

.contact-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 25px 0 10px 0;
  flex-wrap: wrap;
}

.modal-call-btn,
.modal-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  border: 2px solid;
  min-width: 140px;
  justify-content: center;
}

.modal-call-btn {
  background-color: #219150;
  color: white;
  border-color: #219150;
}

.modal-call-btn:hover {
  background-color: #1a7840;
  border-color: #1a7840;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(33, 145, 80, 0.3);
}

.modal-whatsapp-btn {
  background-color: #25D366;
  color: white;
  border-color: #25D366;
}

.modal-whatsapp-btn:hover {
  background-color: #20b358;
  border-color: #20b358;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.modal-call-btn i,
.modal-whatsapp-btn i {
  font-size: 1.6rem;
}

.modal-call-btn i {
  transform: scaleX(-1);
}

@media (max-width: 768px) {
  .modal-content {
    margin: 2% auto;
    width: 95%;
    max-height: 90vh;
    padding: 15px;
  }
  
  .package-details h2 {
    font-size: 2rem;
  }
  
  .package-details h3 {
    font-size: 1.8rem;
  }
  
  .close {
    font-size: 24px;
    right: 15px;
    top: 10px;
  }
  
  .contact-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .modal-call-btn,
  .modal-whatsapp-btn {
    width: 100%;
    max-width: 250px;
  }
  
  .itinerary-day .itinerary-image {
    width: 140px;
    height: 105px;
  }
  
  .inclusions ul li,
  .exclusions ul li,
  .notes ul li {
    font-size: 1.3rem;
    padding-left: 28px;
    margin-bottom: 10px;
  }
  
  .inclusions ul li:before,
  .exclusions ul li:before,
  .notes ul li:before {
    font-size: 1.4rem;
  }
  
  .itinerary-day .day-images {
    gap: 15px;
  }
  
  .itinerary-day .day-title {
    font-size: 1.3rem;
  }
  
  .itinerary-day .day-description {
    font-size: 1.2rem;
  }
  
  .itinerary-day .day-description li {
    font-size: 1.2rem;
  }
}

/* Service Modal Specific Styles */
.service-modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.service-modal-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
}

.service-modal-header h2 {
  color: var(--main-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-description {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.6;
}

.service-features {
  margin-bottom: 2rem;
}

.service-features h3 {
  color: var(--main-color);
  font-size: 2rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--main-color);
  padding-bottom: 0.5rem;
}

.service-features ul {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #eee;
  font-size: 1.3rem;
  color: #333;
  position: relative;
  padding-left: 2rem;
}

.service-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--main-color);
  font-weight: bold;
  font-size: 1.4rem;
}

.service-features li:last-child {
  border-bottom: none;
}

.service-contact {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
}

.service-contact h3 {
  color: var(--main-color);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.service-contact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Service box hover effect */
.service-item {
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Service button - more specific to override existing styles */
.services .service-item .service-btn,
.service-btn {
  background: #219150 !important;
  color: white !important;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none !important;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 1rem;
  border: 2px solid #219150 !important;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(33, 145, 80, 0.3);
}

.services .service-item .service-btn:hover,
.service-btn:hover {
  background: #1a7a3a !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(33, 145, 80, 0.4);
  text-decoration: none !important;
  border-color: #1a7a3a !important;
}

/* Override existing services hover styles for our service buttons */
.services .service-item:hover .service-btn {
  background: #219150 !important;
  color: white !important;
  border-color: #219150 !important;
}

.services .service-item:hover .service-btn:hover {
  background: #1a7a3a !important;
  color: white !important;
  border-color: #1a7a3a !important;
}

/* Package download button styles */
.package-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.download-btn {
  background: #e74c3c !important;
  color: white !important;
  border: 2px solid #e74c3c !important;
  font-size: 1.2rem;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.download-btn:hover {
  background: #c0392b !important;
  border-color: #c0392b !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.download-btn i {
  font-size: 1.1rem;
}

/* Responsive design for package buttons */
@media (max-width: 768px) {
  .package-buttons {
    gap: 8px;
  }
  
  .download-btn {
    font-size: 1.1rem;
    padding: 6px 12px;
  }
}

/* Responsive design for service modal */
@media (max-width: 768px) {
  .service-modal-header h2 {
    font-size: 2rem;
  }
  
  .service-features h3 {
    font-size: 1.6rem;
  }
  
  .service-features li {
    font-size: 1.2rem;
  }
  
  .service-contact h3 {
    font-size: 1.6rem;
  }
  
  .service-contact-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/*# sourceMappingURL=style.css.map */