html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body.admin-bar .header {
  top: 32px!important; 
}
/* footer menu */
.menu-item{
	list-style:none;
}
/*header menu */
li#menu-item-877 {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    border-radius: 30px;
    padding: 10px;
}
.swiper-button-next::after,
.swiper-button-prev::after{
  display: none;
}
.swiper-button-next i,
.swiper-button-prev i {
  pointer-events: none;
}

/* Make sure the swiper container is relatively positioned */
.swiper {
  position: relative;
}
.swiper-button-prev{
    margin-left: 96%;
    border-radius: 30%;
}
/* Vertical button container */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff !important;
  padding: 15px;
  border-radius: 30% !important;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(4px);
	height:50px;
  transition: background-color 0.3s;
}
/* On hover */
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
/* Icons inside */
.swiper-button-prev i,
.swiper-button-next i {
  font-size: 20px;
}
/* Vertical positioning */
.swiper-button-prev {
  top: calc(50% - 65px)!important; /* slightly above center */
}
.swiper-button-next {
  top: calc(50% + 55px)!important; /* slightly below center */
}
.swiper-pagination {
  position: absolute;
  top: 50%  !important;
  transform: translateY(-50%) !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
	display: flex;
    justify-content: center;
    align-items: flex-end;
	
}
.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical>.swiper-pagination-bullets {
	right: var(--swiper-pagination-right, 22px) !important; }
/* Pagination bullets */
.swiper-pagination-bullet {
  width: 8px !important;
  height: 8px  !important;
  background: rgba(255, 255, 255, 0.5) !important;
  opacity: 1;
  transition: background 0.3s;
}
.swiper-pagination-bullet-active {
  background: #ffffff  !important;
}
nav {
  display: flex;
  align-items: center;
  gap: 20px; /* spacing between items */
}
.nav li {
  list-style: none; /* removes bullet points */
}
.nav a {
  margin-right: 15px;
  text-decoration: none;
  color: white;
}
.header {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  background: transparent;
}
.logo {
  font-size: 1.5rem;
  color: white;
}
.nav a {
  margin: 0 15px;
  color: white;
  text-decoration: none;
}
.trip-btn {
  background: #c3f73a;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 30px;
}
btn{
  border: 1px solid white ;
  border-radius: 30px;
  padding:10px
}
.hero-slide {
  background-image: url('ele-bg.jpg');
  background-size: cover;
  background-position: center;
  height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0; /* shorthand for top/right/bottom/left: 0 */
  background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity as needed */
  z-index: 1;
}
.hero-content {
  padding-left: 80px;
  color: white;
	    margin-top: 20%;
  position: relative;
	 z-index: 2;
	
}
.hero-content h1 {
  font-size: 2.5rem;
  font-weight: bold;
}
.hero-content p {
  font-size: 1.2rem;
	    margin-bottom: 25px;
}
/* Required Swiper styles */
.swiper {
  width: 100%;
  height: 600px;
  position: relative;
  overflow: hidden;
}
.swiper-wrapper {
  display: flex;
  height: 600px;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 600px;
  position: relative;
}
.social-icons {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: row;
  gap: 10px;
	z-index:2;
}
/*toggle menu  */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  position: absolute;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  background: none;
  border: none;
}
.menu-toggle .nav a{
	color:black;
}
.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: #333;
}
/* Responsive nav */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 20px;
}
/* Hide menu on small screens */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
    .nav-menu {
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 60px;
        width: 50%;
        right: 15px;
        background: darkblue;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        padding: 10px;
        z-index: 99;
    }
  .nav-menu.active {
    display: flex;
  }
}
.popular-destinations {
  padding: 40px 9%;
  background: #fff;
 }
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.section-subtitle {
  color: #475569;
  font-weight: 600;
  font-size: 14px;
}
.section-title {
  font-size: 28px;
  font-weight: bold;
  color: #1e293b;
}
.nav-buttons {
  display: flex;
  gap: 10px;
}
.nav-btn {
     width: 50px;
    height: 29px;
    border: none;
    background: #e2e8f0;
    border-radius: 40%;
    color: #1e293b;
    cursor: pointer;
}
.nav-btn.active {
  background: #0f172a;
  color: white;
}
/* Container for both blue and yellow parts */
    .header-diagonal {
      position: relative;
      height: 60px;
      overflow: hidden;
    }
    /* Blue background part */
    .header-diagonal .blue {
      background: #141B34;
      height: 100%;
         clip-path: polygon(0 0, 100% 0, 130% 102%, 0 48%);
      position: absolute;
      width: 100%;
      z-index: 2;
    }
    /* Yellow crossing part */
    .header-diagonal .yellow {
      background: #CCF32F;
      height: 100%;
      clip-path: polygon(0 44%, 115% 68%, 129% 102%, 0% 101%);
      position: absolute;
      width: 100%;
      z-index: 1;
    }
    /* Navigation text */
    .nav-bar {
      position: relative;
      z-index: 3;
      text-align: center;
      padding: 10px 0;
    }
.nav-bar a {
    color: white;
    text-decoration: none;
    margin: 0 50px;
    font-size: 24px;
    font-weight: 500;
    transition: transform 0.3s ease;
    display: inline-block; /* Required for transform to work properly */
}
.nav-bar a:hover {
    transform: scale(1.1);
}
    /* Features Section */
    .features {
      background: #1a1a1a;
      display: flex;
      justify-content: space-around;
      text-align: center;
      padding: 60px 20px;
      flex-wrap: wrap;
    }
    .feature-box {
      flex: 1 1 300px;
      max-width: 300px;
      padding: 20px;
      color: white;
	  text-align: justify;
    }
.vector-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
  cursor: pointer; /* Optional: shows pointer on hover */
}
.vector-icon:hover {
  transform: scale(1.2);
}
    .feature-box h3 {
      margin-bottom: 10px;
      font-size: 18px;
      font-weight: bold;
    }
    .feature-box p {
      color: #ccc;
      font-size: 14px;
    }
.destinations-carousel {
  display: flex;
  gap: 20px;
 overflow:hidden;
  padding-bottom: 10px;
}
.destination-card {
  flex: 0 0 auto;
  position: relative;
  width: 250px;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.destination-card:hover img {
  transform: scale(1.1);
}
.destination-card .overlay {
  position: absolute;
  bottom: 0;
  padding: 20px;
  color: white;
}
.destination-card .overlay h3 {
  margin: 0;
  font-size: 20px;
}
.destination-card .overlay p {
  margin: 4px 0 0;
  font-size: 14px;
  opacity: 0.85;
}
/* travel service */
.travel {
  padding: 40px 9%;
  background: #fff; 
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
	padding: 20px 100px;
}
.section-subtitle {
  color: #475569;
  font-weight: 600;
  font-size: 14px;
}
.section-title {
  font-size: 28px;
  font-weight: bold;
  color: #1e293b;
}
.nav-buttons {
  display: flex;
  gap: 10px;
  justify-content: end;
}
.nav-btn {
  width: 50px;
  height: 29px;
  border: none;
  background: #e2e8f0;
  border-radius: 40%;
  color: #1e293b;
  cursor: pointer;
}
.nav-btn.active {
  background: #0f172a;
  color: white;
}
.travel-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}
.travel-card {
  flex: 0 0 auto;
  position: relative;
  width: 250px;
     height: 270px;
  border-radius: 20px;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.travel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.travel-card:hover img {
  transform: scale(1.1);
}
.travel-card .overlay {
  position: absolute;
  bottom: 0;
  padding: 20px;
  color: white;
 
}
.travel-card .overlay h3 {
  margin: 0;
  font-size: 20px;
}
.travel-card .overlay p {
  margin: 4px 0 0;
  font-size: 14px;
  opacity: 0.85;
}
/*tour package */
tour {
  padding: 40px 9%;
  background: #fff; 
}
.tour-carousel {
  display: flex;
  gap: 50px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  margin-left: 9%;
}
.tour-card {
  flex: 0 0 auto;
  position: relative;
  width: 250px;
     height: 350px;
  border-radius: 20px;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.tour-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.tour-card:hover img {
  transform: scale(1.1);
}
.tour-card .overlay {
  position: absolute;
  bottom: 0;
  padding: 20px;
  color: white;
	width:100%;
	height:100%;
	 background-color: rgba(0, 0, 0, 0.4); /* Dark overlay */
}

.tour-card .overlay h3 {
  margin: 0;
  font-size: 20px;
}
.tour-card .overlay p {
  margin: 3px 0 20px;
  font-size: 18px;
  opacity: 0.85;
}
/*elephant section */
.hero-carousel {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.bg-image {
  background-size: cover;
  background-position: center;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.bg-image::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* adjust opacity */
  z-index: 2;
}
.carousel-overlay {
  position: absolute;
  bottom: 50px;
  width: 100%;
  z-index: 2;
  display: flex;
      justify-content: end;
  align-items: center;
}
.carousel-container {
  width: 90%;
  max-width: 800px;
  padding: 20px;
  border-radius: 12px;
}
.carousel .card {
  padding: 5px;
  overflow: hidden; /* Prevent zoomed image from overflowing */
  border-radius: 10px;
}
.carousel .card img {
  width: 200px;
  height: 240px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease;
}
.carousel .card:hover img {
  transform: scale(1.1);
}
.carousel-arrows {
  text-align: center;
  margin-top: 10px;
}
.carousel-arrows button {
background: rgb(119 119 119 / 30%);
    border: none;
    padding: 6px 16px;
    border-radius: 30%;
    margin: 0 10px;
    cursor: pointer;
    font-size: 18px;
    color: white;
}
.contact-cta {
  position: relative;
  
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-cta .overlay {
background-color: rgba(17, 47, 56, 0.6);
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.contact-cta h2 {
  font-size: 36px;
  margin-bottom: 10px;
	    font-weight: 700;
}
.contact-cta p {
  font-size: 18px;
  margin-bottom: 20px;
}
.contact-btn {
 display: inline-block;
    background-color: #CCF32F;
    color: #000;
    padding: 12px 10px;
    border-radius: 20px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
    width: 165px;
}
.contact-btn:hover {
  background-color: #e0a800;
}
/* Responsive */
@media (max-width: 600px) {
  .contact-cta h2 {
    font-size: 28px;
  }
  .contact-cta p {
    font-size: 16px;
  }
}
/*footer */ 
.logo {
  width: 250px;
}
/* feature section */
.feature-section {
  position: relative;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 0;
}
.feature-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.feature-section .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.feature-section .content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
.feature-section .left {
  flex: 1;
  min-width: 300px;
  padding: 80px 0;
  text-align: justify;
}
.feature-section .left h2 {
  font-size: 36px;
  margin-bottom: 10px;
}
.feature-section .left p {
  font-size: 18px;
  margin-bottom: 20px;
}
.feature-section .btn {
  padding: 12px 30px;
  background-color: #ffffff;
  color: #000;
  border: none;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}
.feature-section .right {
  flex: 1;
  min-width: 300px;
}
.box-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.icon-img {
  width: 64px;
  height: 64px;
  display: block;
  margin: 0 auto 10px; /* centers horizontally, adds space below */
}
.box {
  background-color: white;
  color: black;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.box:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.box i {
  font-size: 19px;
  margin-bottom: 10px;
  color: #0E3D4D;
}
.box h4 {
  font-size: 19px;
  margin: 0;
   color: #0E3D4D;
}
.custom-tour-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.tour-card {
  flex: 0 0 calc(25.333% - 13.33px); /* 3 per row with spacing */
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 350px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.tour-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 145%);
  padding: 25px;
 color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
	 justify-content: flex-end;
}
.tour-overlay h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.tour-overlay hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 5px 0;
   width: 30%;
}
.tour-overlay p {
  font-size: 16px;
   margin: 0px 0 50%;
}
.tour-price strong {
  font-size: 22px;
  color: #fff;
}
.tour-btn {
  display: inline-block;
  padding: 8px 16px;
  background-color: #ccff00; /* Lime green */
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  font-size: 14px;
}
/* ✅ RESPONSIVE FIXES */
@media (max-width: 1024px) {
  .tour-card {
    flex: 0 0 calc(50% - 10px); /* 2 per row on tablet */
  }
}
@media (max-width: 600px) {
  .tour-card {
    flex: 0 0 100%; /* 1 per row on mobile */
  }
}
/* single page */ 
.places-section .grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.places-section .grid-item {
  width: calc(25% - 15px); /* 4 per row */
  box-sizing: border-box;
  text-align: center;
}
.places-section{
    padding: 40px;
}
.places-section h2{
   color:#0E3D4D;
	font-size:30px;
	font-weight:600;
}
.places-section .grid-item img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease; /* smooth transition */
}
.places-section .grid-item img:hover {
    transform: scale(1.1); /* zoom in */
}
.places-section .grid-item p {
  color: #6F6F6F;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  justify-content: flex-start;
  transition: color 0.3s ease;
}
.places-section .grid-item p:hover {
  color: #000000; /* or any color you prefer */
}
/* thing section */
.things-section .grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.things-section .grid-item {
  width: calc(25% - 15px); /* 4 per row */
  box-sizing: border-box;
  text-align: center;
}
.things-section{
    padding: 40px;
}
.things-section h2{
   color:#0E3D4D;
	font-size:30px;
	font-weight:600;
}
.things-section .grid-item img {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.things-section .grid-item img:hover {
  transform: scale(1.1);
}
.things-section .grid-item p{
color:#6F6F6F;
	font-size:20px;
	font-weight:500;
	    display: flex;
    justify-content: flex-start;
  transition: color 0.3s ease;
}
.things-section .grid-item p:hover {
  color: #000000; 
}
/* stay & acc */
.accommodation-section .grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.accommodation-section .grid-item {
  width: calc(33% - 15px); /* 3 per row */
  box-sizing: border-box;
  text-align: center;
}
.accommodation-section{
    padding: 40px;
}
.accommodation-section h2{
   color:#0E3D4D;
	font-size:30px;
	font-weight:600;
}
.accommodation-section .grid-item img {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.accommodation-section .grid-item img:hover {
  transform: scale(1.1);
}
.accommodation-section .grid-item p{
color:#6F6F6F;
	font-size:20px;
	font-weight:500;
	    display: flex;
    justify-content: flex-start;
	transition: color 0.3s ease;
}
.accommodation-section .grid-item p:hover {
  color: #000000; 
}
/* day 1 safari content */
.schedule-section {
  padding: 40px 20px;
  background-color: #f7f7f7;
}
.schedule-section h2 {
  text-align: justify;
	 font-size: 30px;
	font-weight:600;
  color: #0E3D4D;
margin-left: 5%;
}
.schedule-content {
  max-width: 100%;
  margin: 0 5%;
  line-height: 1.7;
}
.schedule-content h3, .schedule-content strong {
    font-size: 24px;
    color: #0E3D4D;
    margin-top: 20px;
    display: block;
    font-weight: 600;
}
.schedule-content ul {
  padding-left: 20px;
  margin-bottom: 20px;	
}
.schedule-content li {
  color: #6F6F6F;
  font-size: 20px;
  transition: color 0.3s ease;
}
.schedule-content li:hover {
      color: #252525;
}
/* package contact form */ 
.book-section{
	height:700px;
}
.book-wrapper {
  display: flex;
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}
.book-image {
  flex: 1;
  max-width: 600px;
}
.book-image img {
  width: 100%;
  height: 70%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}
.book-image img:hover {
  transform: scale(1.05);
}
.book-form {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  height: 530px;
  margin: 6% 0px 0 -8%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.book-form:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.2);
}
.book-form h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #003366;
}
.book-form input[type="text"],
.book-form input[type="tel"],
.book-form input[type="email"],
.book-form input[type="number"] {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: none;
  border-bottom: 1px solid #ccc;
  font-size: 15px;
  background: transparent;
  outline: none;
}
.book-form input::placeholder {
  color: #999;
}
.book-form input[type="submit"] {
  background-color: #ccff00;
  color: #000;
  font-weight: bold;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}
.book-form input[type="submit"]:hover {
  background-color: #b8eb00;
}
 .hero-section {
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
  padding: 20px;
}
/* contact page */
.contact-map-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
	padding:30px;
}
.contact-form-column {
  flex: 1 1 50%;
  max-width: 600px;
}
.map-column {
  flex: 1 1 50%;
  min-height: 450px;
}
.map-container {
  width: 100%;
  height: 100%;
}
.contact-form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.contact-form button {
  margin-top: 20px;
  padding: 10px 20px;
  background: #0073aa;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}
.contact-form button:hover {
  background: #005177;
}
/* Container label styling */
label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
  font-family: Arial, sans-serif;
}
/* Inputs and textarea */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  font-family: Arial, sans-serif;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}
/* Focus state */
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 textarea:focus {
  border-color: #0073aa;
  outline: none;
}
/* Textarea specifics */
.wpcf7 textarea {
  min-height: 120px;
  resize: vertical;
}
/* Submit button */
.wpcf7 input[type="submit"] {
  background-color: #0073aa;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  font-family: Arial, sans-serif;
  font-weight: 600;
}
/* Submit hover */
.wpcf7 input[type="submit"]:hover {
  background-color: #005f8d;
}
.banner {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 1024px) {
	 .swiper-button-prev {
    margin-left: 95%;
}
  .tour {
    padding: 40px 5%;
  }
		.carousel .card img {
    width: 190px;
    height: 125px;
}
}
@media (max-width: 992px) {
  .places-section .grid-item {  width: calc(50% - 15px); } .things-section .grid-item { width: calc(50% - 15px); }
	.accommodation-section .grid-item {   width: calc(50% - 15px); /* 2 per row */	}
	.schedule-section h2 {    font-size: 27px; } .schedule-content h3, .schedule-content strong { font-size: 21px; } .schedule-content li {  font-size: 17px;  }  .contact-cta h2 {  font-size: 32px;  margin-bottom: 5px; }  .places-section h2 { font-size: 26px; margin-bottom: 10px ;  } .things-section h2 { font-size: 26px; margin-bottom: 10px ; }.places-section .grid-item p {  font-size: 18px; } .things-section .grid-item p { font-size: 18px; margin-bottom:10px;  } .accommodation-section h2  { font-size: 26px; margin-bottom: 10px ; } .accommodation-section .grid-item p { font-size: 18px; margin-bottom:10px;  } .book-section { height:auto ;}
}
/* Phone: 1 per row */
@media (max-width: 576px) {
  .places-section .grid-item {
    width: 100%;
  }
	.things-section .grid-item {
    width: 100%;
	} .accommodation-section .grid-item {  width: 100%;  }     .schedule-section h2 { font-size: 24px;  }     .schedule-content h3, .schedule-content strong { font-size: 19px; }     .schedule-content li { font-size: 14px; }  .book-wrapper { flex-direction: column; padding: 40px 20px; } .book-image { max-width: 100%;  margin-bottom: 30px; } .book-form {  margin: 0; height: auto; padding: 25px;  } .contact-cta h2 {  font-size: 27px;  margin-bottom: 2px;  } .book-form input[type="text"] {    padding: 12px 10px;}
}
@media (max-width: 768px) {
  .swiper-button-prev {
    margin-left: 93%;
}
	.section-title {
    font-size: 20px;
}
	.carousel .card img {
    width: 180px;
    height: 115px;
}
}
@media (max-width: 425px) { .hero-content h1 { font-size: 2rem; }
.hero-content { padding-left: 25px; } .swiper-button-prev {  margin-left: 88%;top:133px;}
.section-header {
	display: flex; flex-direction: column; margin-bottom: 18px;}   .elementor-143 .elementor-element.elementor-element-5236211 { padding-left:50px ; padding-right:50px ;  } .elementor-243 .elementor-element.elementor-element-a564606 { padding-left:0; padding-right:0;  } .elementor-586 .elementor-element.elementor-element-c175407 { padding-left:0; padding-right:0; }	
}
@media (max-width: 375px) { .hero-content { margin-top: 55%;}   .hero-content h1 { font-size: 1.6rem; } .hero-content p {
	font-size: 1rem; } .swiper-button-prev {  margin-left: 86%; } .nav-bar a { margin: 0 10px; font-size: 14px; } .section-title { margin-bottom: 35px; } .feature-section .left h2 { font-size: 32px ; } .feature-section .left p {  font-size: 16px;  }  .feature-section .container {  padding: 0 11px; } .elementor-143 .elementor-element.elementor-element-5236211 { padding-left:0; padding-right:0;  } 
}
@media (max-width: 320px) {
.modal-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.modal-content {
  background: #fff;
  width: 90%;
  max-width: 600px;
  margin: 80px auto;
  padding: 30px;
  border-radius: 8px;
  position: relative;
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}
}