/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* HEADER BASE */
.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: #ffffff;
  color: #000000;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

/* Container */
.header-lower {
  max-width: 1200px;
  margin: auto;
  padding: 0.8rem 1rem;
}

/* Flex alignment */
.inner-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* --- LOGO --- */
.logo-box img {
  height: 80px; /* increased size */
  width: auto;
  transition: transform 0.3s ease;
}

.logo-box img:hover {
  transform: scale(1.25);
}

/* --- NAVIGATION --- */
.main-nav .nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.main-nav a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s, border-color 0.3s;
  padding-bottom: 5px;
}

/* Hover effect */
.main-nav a:hover,
.main-nav a:focus {
  color: #FDB501; /* gold hover */
  border-bottom: 2px solid #FDB501;
}

/* --- DROPDOWN MENU --- */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #2C7335; /* green mocha */
  list-style: none;
  padding: 0.6rem 0;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: none;
  animation: fadeIn 0.3s ease forwards;
}

.dropdown-menu li a {
  display: block;
  padding: 0.7rem 1.5rem;
  color: #ffffff;
  font-size: 0.95rem;
  text-align: left;
  transition: background 0.3s, color 0.3s;
}

.dropdown-menu li a:hover {
  background: #FDB501;
  color: #014A87; /* deep blue accent */
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* --- MOBILE TOGGLE --- */
.mobile-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: #000000;
  border-radius: 3px;
}

/* --- RESPONSIVE BEHAVIOR --- */
@media (max-width: 900px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav .nav-list {
    flex-direction: column;
    gap: 1.2rem;
  }

  .dropdown-menu {
    position: static;
    background: #2C7335;
    box-shadow: none;
    margin-top: 0.4rem;
  }

  .mobile-toggle {
    display: flex;
  }
}

/* --- ANIMATIONS --- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}


.tour-search {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -60px;
}

.search-bar {
  background-color: #2C7335; /* Green Mocha */
  padding: 1.5rem;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  width: 90%;
  max-width: 1000px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
  justify-content: center;
}

/* Input & Select Fields */
.form-group {
  position: relative;
}

.form-group input,
.form-group select {
  background-color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 0.9rem 1rem;
  width: 220px;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  outline: none;
  color: #333;
  appearance: none;
}

.form-group select {
  cursor: pointer;
}

.form-group input::placeholder {
  color: #999;
}

/* Calendar icon */
.form-group .icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #014A87; /* deep blue accent */
  pointer-events: none;
  font-size: 1.1rem;
}

/* Submit Button */
.btn-find {
  background-color: #FDB501; /* gold button */
  border: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  padding: 0.9rem 1.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-find:hover {
  background-color: #014A87; /* deep blue hover */
}

/* Responsive Design */
@media (max-width: 768px) {
  .search-form {
    flex-direction: column;
    align-items: stretch;
  }

  .form-group input,
  .form-group select {
    width: 100%;
  }

  .btn-find {
    width: 100%;
    justify-content: center;
  }
}

.tour-search {
  position: relative;
  z-index: 3;
  margin-top: -60px; /* slight float above slider */
}

/* If you want NO overlap: */
.tour-search.no-overlap {
  margin-top: 20px;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-slider-wrapper,
.hero-slide {
  width: 100%;
  height: 100%;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #d8f7ce ;
  z-index: 2;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 97vh;
  overflow: visible;
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(186, 242, 188, 0.35);
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 40%;
  left: 10%;
  transform: translateY(-50%);
  text-align: left;
  z-index: 1;
  color: #ffffff;
  max-width: 600px;
  animation: fadeInLeft 1.5s ease forwards;
}

.hero-text{
    padding-bottom: 1rem,;
}

.hero-text h1 {
  font-size: 5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #fbfbfa, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textSlide 2s ease-in-out infinite alternate;
}

.hero-text p {
  font-size: 1.2rem;
  margin-top: 1.8rem;
  animation: fadeIn 2s ease 0.5s forwards;
  color: #FDB501
;
}

/* Floating search box */
.hero-search {
  position: absolute;
  bottom: -70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 90%;
  max-width: 950px;
  background: #2C7335;
  border-radius: 20px;
  padding: 3rem 0rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.hero-search:hover {
  transform: translateX(-50%) translateY(-5px);
}

.highlight {
  background: linear-gradient(90deg, #fff, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  transition: all 0.5s ease-in-out;
  opacity: 1;
  padding-bottom: 0.3rem;
}

/* Fade out / in effect for word change */
@keyframes fadeWord {
  0% { opacity: 0; transform: translateY(-10px); }
  50% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}

/* Animations */
@keyframes fadeInLeft {0%{opacity:0;transform:translateX(-50px);}100%{opacity:1;transform:translateX(0);}}
@keyframes textSlide {0%{transform:translateY(0);}50%{transform:translateY(-10px);}100%{transform:translateY(0);}}
@keyframes fadeIn {0%{opacity:0;}100%{opacity:1;}}

/* Responsive adjustments remain the same */

/* ===== SEARCH FORM ===== */
.search-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.form-group input,
.form-group select {
  background: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.9rem 1rem;
  width: 220px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  outline: none;
  color: #333;
  transition: all 0.3s ease;
}

.form-group select option{
    color: #014A87;
}

.form-group input::placeholder{
    color: #000000;
}

.form-group select::placeholder{
    color: #000000;
}

.form-group input:focus,
.form-group select:focus {
  box-shadow: 0 0 10px rgba(253, 181, 1, 0.7);
}

.btn-find {
  background-color: #FDB501;
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 0.9rem 1.8rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-find:hover {
  background-color: #014A87;
  transform: scale(1.05);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes textSlide {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-slider { height: 100vh; }
  .hero-text h1 { font-size: 2.2rem; }
  .hero-search { bottom: -40px; }
}

@media (max-width: 768px) {
  .search-form { flex-direction: column; align-items: stretch; }
  .form-group input,
  .form-group select,
  .btn-find { width: 100%; }
  .hero-search { padding: 1rem; border-radius: 15px; }
}


/* ===== SERVICES SECTION ===== */
.flat-spacing-service {
  padding: 16rem 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
  font-family: "Poppins", sans-serif;
}

.box-title .text-subtitle {
  color: #2C7335;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 1rem;
}

.box-title .title {
  color: #014A87;
  font-size: 2.5rem;
  font-weight: 800;
  margin-top: 0.5rem;
}

/* ===== GRID LAYOUT ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

/* ===== SERVICE CARD ===== */
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #f2f7ef;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Image Section */
.service-image {
  position: relative;
  height: 230px;
  overflow: hidden;
  border-bottom: 4px solid #FDB501;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

/* Gradient overlay for better contrast */
.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.35));
  transition: opacity 0.3s ease;
}

.service-card:hover .image-overlay {
  opacity: 0.5;
}

/* Content */
.service-content {
  padding: 2rem 1.5rem;
}

.service-content h4 {
  color: #014A87;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  position: relative;
}

.service-content h4::after {
  content: "";
  width: 50px;
  height: 3px;
  background-color: #FDB501;
  position: absolute;
  bottom: -10px;
  left: 0;
  border-radius: 2px;
}

.service-content p {
  color: #2C7335;
  font-size: 1rem;
  margin-top: 1.5rem;
  line-height: 1.7;
  font-weight: 400;
}

/* Button */
.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.8rem;
  color: #FDB501;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
}

.btn-explore span {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.btn-explore:hover {
  color: #014A87;
}

.btn-explore:hover span {
  transform: translateX(6px);
}

/* Responsive */
@media (max-width: 768px) {
  .box-title .title {
    font-size: 2rem;
  }
  .service-content h4 {
    font-size: 1.2rem;
  }
  .service-content p {
    font-size: 0.95rem;
  }
}

.tour-section {
  padding: 2rem 1rem;
  background: #ffffff;
  font-family: "Poppins", sans-serif;
}

.section-header h3 {
  color: #014A87;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Card */
.tour-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.2);
}

/* Image */
.tour-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

/* Top meta (price / duration) */
.tour-meta {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2C7335;
}

.tour-meta i {
  color: #2C7335;
  margin-right: 4px;
}

/* Tour info */
.tour-info {
  padding: 0 1rem 1rem 1rem;
}

.tour-info h4 {
  font-size: 1rem;
  color: #014A87;
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.tour-info p {
  font-size: 0.85rem;
  color: #2C7335;
  margin: 0;
}

.tour-info i {
  color: #FDB501;
  margin-right: 4px;
}

/* Responsive */
@media (max-width: 992px) {
  .tour-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .tour-grid { grid-template-columns: 1fr; }
}

.tour-card-compact {
  display: block;
  max-width: 400px; /* reduce card width */
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: auto;
}

.tour-card-compact:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.tour-image {
  position: relative;
}

.tour-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.tour-image .tags {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 0.5rem;
}

.tour-image .tags li {
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-size: 0.8rem;
  color: #ffffff;
  font-weight: 600;
}

.tag-featured { background: #FDB501; }
.tag-book { background: #2C7335; }

.tour-content {
  padding: 0.8rem 1rem;
}

.tour-title {
  font-size: 1.1rem;
  color: #014A87;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.meta {
  font-size: 0.85rem;
  color: #2C7335;
}

.meta i {
  color: #FDB501;
  margin-right: 0.3rem;
}

.location {
  font-size: 0.85rem;
  color: #014A87;
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.agent {
  margin-top: 0.5rem;
}

.agent .avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.flat-testimonial {
  background: #fff;
  padding: 60px 0;
}

.box-tes-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(44, 115, 53, 0.1);
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box-tes-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(44, 115, 53, 0.15);
}

.box-avt .avatar img {
  border: 3px solid #2C7335;
}

.title {
  color: #1E4D24;
}

.desc {
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .flat-testimonial {
    padding: 40px 15px;
  }
  .box-tes-item {
    padding: 20px;
  }
}

.partners-section {
  background: #ffffff; /* clean, seamless white */
  padding: 70px 0;
}

.partners-section .section-subtitle {
  color: #2C7335;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Partner Card Styling */
.partner-item {
  background: #ffffff; /* same as background for a floating feel */
  border-radius: 0;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 10px 0;
  transition: transform 0.3s ease;
}

.partner-item img {
  width: 80%;
  height: auto;
  object-fit: contain;
  filter: none; /* keep logos natural */
  transition: transform 0.3s ease;
}

.partner-item:hover {
  transform: scale(1.03);
}

.partner-item:hover img {
  transform: scale(1.05);
}

/* Swiper Pagination */
.sw-pagination-partner {
  margin-top: 35px;
}

.sw-pagination-partner .swiper-pagination-bullet {
  background: rgba(44, 115, 53, 0.3);
  opacity: 1;
}

.sw-pagination-partner .swiper-pagination-bullet-active {
  background: #2C7335;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .partner-item {
    height: 120px;
  }
  .partner-item img {
    width: 75%;
  }
}

@media (max-width: 576px) {
  .partner-item {
    height: 100px;
  }
  .partner-item img {
    width: 70%;
  }
}

:root {
  --primary-color: #1f6f3e; /* deep green for accents */
  --secondary-color: #ffffff; /* white background */
  --text-color: #333333; /* main text */
  --subtitle-color: #4f8f5c; /* lighter green for subtitles */
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.tourism-section {
  background-color: var(--secondary-color);
  padding: 60px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.subtitle {
  color: var(--subtitle-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.title {
  color: var(--text-color);
  font-size: 32px;
  font-weight: 700;
  margin: 10px 0;
}

.description {
  color: #555555;
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Feature Cards Grid */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* Individual Card */
.card {
  background-color: var(--secondary-color);
  border: 2px solid #e6e6e6;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.icon {
  font-size: 50px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.card-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 10px;
}

.card-desc {
  font-size: 15px;
  color: #555555;
  line-height: 1.5;
}

/* Responsive Typography */
@media (max-width: 768px) {
  .title {
    font-size: 28px;
  }
  .card {
    padding: 25px 15px;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 24px;
  }
  .description {
    font-size: 14px;
  }
  .icon {
    font-size: 40px;
  }
}

:root {
  --white: #ffffff;
  --yellow: #FDB501;
  --green-mocha: #2C7335;
  --deep-blue: #014A87;
  --text-color: #333333;
}

.tourism-section {
  background-color: var(--white);
  padding: 60px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Section Header */
.section-header .subtitle {
  color: var(--green-mocha);
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header .title {
  color: var(--deep-blue);
  font-size: 32px;
  font-weight: 700;
  margin: 10px 0;
}

.section-header .description {
  color: #555555;
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Feature Cards Grid */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Individual Card */
.card {
  background-color: var(--white);
  border: 2px solid var(--green-mocha); /* changed from yellow */
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.icon {
  font-size: 50px;
  color: var(--green-mocha); /* changed from yellow */
  margin-bottom: 15px;
}


.card-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--deep-blue);
  margin-bottom: 10px;
}

.card-desc {
  font-size: 15px;
  color: var(--text-color);
  line-height: 1.5;
}

/* Responsive Typography */
@media (max-width: 768px) {
  .section-header .title {
    font-size: 28px;
  }
  .card {
    padding: 25px 15px;
  }
}

@media (max-width: 480px) {
  .section-header .title {
    font-size: 24px;
  }
  .section-header .description {
    font-size: 14px;
  }
  .icon {
    font-size: 40px;
  }
}

/* Agents Section */
.flat-agents {
    background-color: #ffffff;
    padding: 60px 0;
}

.flat-agents .box-title .text-subtitle {
    color: #014A87;
    font-weight: 600;
    letter-spacing: 1px;
}

.flat-agents .box-title .title {
    color: #2C7335;
    font-size: 32px;
    font-weight: 700;
}

.flat-agents .box-title .desc {
    color: #014A87;
    font-size: 16px;
}

/* Agent Card - tourism version with shadow */
.flat-agents .box-agent {
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #ffffff;
    height: 320px; /* Fixed height for uniform cards */
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12); /* subtle shadow for visibility */
}

.flat-agents .box-agent:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); /* stronger shadow on hover */
}

/* Image section */
.flat-agents .box-agent .box-img {
    flex: 1;
    overflow: hidden;
}

.flat-agents .box-agent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content section */
.flat-agents .content {
    padding: 12px;
    text-align: center;
    flex: 0 0 100px; /* fixed content height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flat-agents .content .info h5 a {
    color: #2C7335; /* Green Mocha for names */
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
}

.flat-agents .content .info p {
    color: #014A87; /* Dark blue for roles */
    font-size: 14px;
    margin-top: 4px;
}

.flat-agents .box-icon {
    margin-top: 8px;
}

.flat-agents .box-icon span.icon {
    color: #2C7335; /* Green icons */
    font-size: 16px;
    margin: 0 4px;
}

.flat-agents .cta-link {
    color: #FDB501;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.flat-agents .cta-link:hover {
    color: #2C7335;
}

/* Responsive */
@media (max-width: 768px) {
    .flat-agents .box-title .title {
        font-size: 28px;
    }
}
@media (max-width: 576px) {
    .flat-agents .box-title .title {
        font-size: 24px;
    }
}
/* Blog grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Blog card */
.blog-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* Image */
.blog-card .img-style {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.blog-card .img-style img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Date badge - top left */
.blog-card .date-post {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #FDB501;
    color: #014A87;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Service type - top right, simple color */
.blog-card .service-type {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #014A87;
    font-weight: 600;
    font-size: 12px;
    padding: 5px 8px;
    border-radius: 4px;
    background: white; /* remove background */
    border: 1px solid #014A87; /* optional for better visibility */
}

/* Content box */
.blog-card .content-box {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Blog title */
.blog-card .content-box .title {
    font-size: 18px;
    color: #014A87;
    margin-bottom: 12px;
}

/* Description */
.blog-card .description {
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
    flex-grow: 1;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .blog-card .img-style {
        height: 150px;
    }
}


/* Footer base */
footer {
    padding: 60px 0;
    font-family: 'Arial', sans-serif;
    color: #ffffff;
}

/* Flex row for columns */
.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    align-items: flex-start; /* Align all columns at top */
}

/* Each column */
.footer-col {
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* ensure top alignment */
}

/* Footer headings */
.footer-heading {
    font-size: 18px;
    font-weight: 700;
    color: #FDB501; /* Gold headers */
    margin: 0 0 6px 0; /* Reduce bottom margin for tight alignment */
    line-height: 1.2; /* Keep it compact */
}

/* Paragraphs */
.footer-col p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
    color: #ffffff;
}

/* Lists */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.footer-col li i {
    font-size: 12px;
    color: #FDB501;
}

/* Links */
.footer-col a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.footer-col a:hover {
    color: #FDB501;
}

/* Newsletter */
.subscribe-wrapper {
    display: flex;
    align-items: center;
    gap: 4px;
}

.subscribe-wrapper input {
    flex: 1;
    padding: 10px;
    font-size: 14px;
    border-radius: 4px 0 0 4px;
    border: 1px solid #ffffff;
    color: #000;
}

.subscribe-wrapper button {
    padding: 0 12px;
    background-color: #FDB501;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 767px) {
    .footer-row {
        flex-direction: column;
        gap: 25px;
    }

    .subscribe-wrapper {
        flex-direction: column;
    }

    .subscribe-wrapper input, .subscribe-wrapper button {
        width: 100%;
        border-radius: 4px;
    }
}

.about-section {
  background-color: #ffffff;
  color: #014A87;
  padding: 100px 0;
  font-family: 'Poppins', sans-serif;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
 
}

.about-image {
  flex: 1;
  min-width: 340px;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  object-fit: cover;
}

.about-text {
  flex: 1.2;
  min-width: 340px;
   margin-top: 25px;
}

.about-text h2 {
  font-size: 34px;
  color: #014A87;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-text .tagline {
  color: #2C7335;
  font-size: 18px;
  font-style: italic;
  margin-bottom: 20px;
}

.about-text .intro {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 35px;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.about-points .point {
  flex: 1;
  background: #014A87;
  color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  border-top: 5px solid #FDB501;
  transition: all 0.4s ease;
}

.about-points .point:hover {
  background: #2C7335;
  transform: translateY(-6px);
}

.about-points .point h4 {
  color: #FDB501;
  margin-bottom: 10px;
  font-size: 18px;
}

.values-usp {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.values h4, .usp h4 {
  color: #FDB501;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

.values ul {
  list-style: none;
  padding: 0;
  color: #333;
}

.values ul li {
  padding: 6px 0;
  color: #014A87;
}

.values ul li::before {
  content: "✔";
  color: #2C7335;
  margin-right: 8px;
}

.usp p {
  color: #333;
  line-height: 1.7;
}

@media (max-width: 992px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .about-points {
    flex-direction: column;
  }
}

.destinations-categories {
  background: #ffffff;
  padding: 100px 0;
  font-family: 'Poppins', sans-serif;
}

.category-header {
  text-align: center;
  margin-bottom: 40px;
}

.category-header h2 {
  color: #014A87;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.category-header p {
  color: #2C7335;
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Carousel */
.carousel-container {
  position: relative;
  overflow: hidden;
  width: 90%;
  margin: 0 auto 70px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.destination-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #FDB501;
  transition: transform 0.3s ease;
  flex: 0 0 25%;
  text-align: center;
  margin: 0 10px;
}

.destination-card:hover {
  transform: translateY(-6px);
}

.image-box {
  height: 180px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.destination-card:hover img {
  transform: scale(1.1);
}

.card-content {
  padding: 10px;
}

.card-content h3 {
  color: #014A87;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.card-content p {
  color: #333;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.price {
  display: inline-block;
  background: #2C7335;
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
}

.price i{
  color: #FDB501;
}
/* Navigation Buttons Fixed */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #FDB501;
  color: #014A87;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 20; /* make sure it's above cards */
}

.nav-btn:hover {
  background: #2C7335;
  color: #ffffff;
}

/* Make buttons visible on both sides of the carousel */
.prev-btn {
  left: 10px;  /* inside the container */
}

.next-btn {
  right: 10px; /* inside the container */
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .prev-btn, .next-btn {
    padding: 10px 14px;
  }
}

@media (max-width: 600px) {
  .prev-btn, .next-btn {
    padding: 8px 12px;
  }
}


.destinations-categories {
  background: #ffffff;
  padding: 100px 0;
  font-family: 'Poppins', sans-serif;
}

.category-header {
  text-align: center;
  margin-bottom: 40px;
}

.category-header h2 {
  color: #014A87;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.category-header p {
  color: #2C7335;
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Carousel */
.carousel-container {
  position: relative;
  overflow: hidden;
  width: 90%;
  margin: 0 auto 70px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.destination-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #FDB501;
  transition: transform 0.3s ease;
  flex: 0 0 25%;
  text-align: center;
  margin: 0 10px;
}

.destination-card:hover {
  transform: translateY(-6px);
}

.image-box {
  height: 180px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.destination-card:hover img {
  transform: scale(1.1);
}

.card-content {
  padding: 10px;
}

.card-content h3 {
  color: #014A87;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.card-content p {
  color: #333;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.price {
  display: inline-block;
  background: #2C7335;
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
}
/* Navigation Buttons Fixed */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #FDB501;
  color: #014A87;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 20; /* make sure it's above cards */
}

.nav-btn:hover {
  background: #2C7335;
  color: #ffffff;
}

/* Make buttons visible on both sides of the carousel */
.prev-btn {
  left: 10px;  /* inside the container */
}

.next-btn {
  right: 10px; /* inside the container */
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .prev-btn, .next-btn {
    padding: 10px 14px;
  }
}

@media (max-width: 600px) {
  .prev-btn, .next-btn {
    padding: 8px 12px;
  }
}

.contact-section {
  background-color: #ffffff;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
  color: #014A87;
  margin-top: 50px;
}

.contact-flex {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

/* Left Side - Grid Cards */
.contact-cards-wrapper {
  flex: 1 1 350px;
}

.contact-cards-wrapper h2 {
  color: #FDB501;
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-cards-wrapper p {
  color: #2C7335;
  margin-bottom: 25px;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  grid-template-rows: repeat(2, auto);   /* 2 rows */
  gap: 15px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  border-left: 4px solid #FDB501;
  padding: 8px 8px;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 14px;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.icon-wrapper {
  width: 35px;
  height: 35px;
  background-color: #2C7335;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-info h4 {
  margin: 0;
  font-size: 14px;
  color: #014A87;
}

.contact-info p {
  margin: 0px 0 0 0;
  font-size: 12px;
  color: #000;
}

/* Right Side - Contact Form */
.contact-form-wrapper {
  flex: 1 1 350px;
  margin-top: 50px;
}

.contact-form-wrapper h2 {
  color: #FDB501;
  margin-bottom: 2px;
  font-size: 26px;
}
.contact-form .grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 2px solid #040504;
  font-size: 13px;
  width: 100%;
  box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder   {
  color: black;
}

.contact-form textarea {
  resize: none;
}

.contact-form button {
  padding: 12px;
  border: none;
  border-radius: 8px;
  background-color: #2C7335;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.contact-form button:hover {
  background-color: #2C7335;
  color: #ffffff;
}

.contact-form .grids {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  gap: 20px; /* spacing between inputs */
  margin-bottom: 20px;
}

/* Make it 1 column on smaller screens */
@media (max-width: 768px) {
  .contact-form .grids {
    grid-template-columns: 1fr;
  }
}

/* Optional: styling for inputs */
.contact-form .grids input {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  box-sizing: border-box;
}


/* Responsive */
@media (max-width: 992px) {
  .contact-flex {
    flex-direction: column;
  }
  
  .contact-cards-grid {
    grid-template-columns: 1fr; /* single column on smaller screens */
  }
}


.blog-page-container {
  max-width: 1200px;
  margin: 140px auto;
  padding: 40px 20px;
}

/* Layout: Two columns */
.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* Blog Card Styles */
.blog-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.img-style {
  position: relative;
}

.date-post {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #FDB501;
  color: #fff;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
}

.service-type {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #2C7335;
  color: #fff;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
}

.content-box {
  padding: 15px;
}

.content-box h5.title {
  font-size: 16px;
  color: #014A87;
  margin-bottom: 8px;
}

.content-box h5.title a {
  text-decoration: none;
  color: inherit;
}

.content-box h5.title a:hover {
  color: #FDB501;
}

.content-box p.description {
  font-size: 14px;
  color: #2C7335;
  line-height: 1.5;
}

/* Sidebar Styles */
.blog-page-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-page-sidebar-card {
  background-color: #f8f8f8;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.blog-page-sidebar-title {
  font-size: 18px;
  color: #014A87;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.blog-page-recent,
.blog-page-categories {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-page-recent li,
.blog-page-categories li {
  margin-bottom: 10px;
}

.blog-page-recent li a,
.blog-page-categories li a {
  text-decoration: none;
  font-size: 14px;
  color: #2C7335;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.blog-page-recent li a:hover,
.blog-page-categories li a:hover {
  color: #FDB501;
}

.blog-page-tip {
  font-size: 14px;
  color: #014A87;
  line-height: 1.4;
}

/* Responsive */
@media screen and (max-width: 1024px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }
}

/* FAQ Section Container */
.faq-section {
  padding: 60px 5%;
  background-color: #ffffff;
  font-family: 'Arial', sans-serif;
  margin-top: 50px;
}

/* FAQ Section Header */
.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h2 {
  font-size: 32px;
  color: #2C7335; /* Green Mocha */
  margin-bottom: 10px;
}

.faq-header p {
  font-size: 16px;
  color: #014A87; /* Blue accent */
}

/* FAQ Layout Wrapper: grid + form */
.faq-content-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

/* FAQ Grid (Cards on left) */
.faq-grid {
  flex: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* Individual FAQ Card */
.faq-card {
  border: 1px solid #2C7335;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* FAQ Question Button */
.faq-question {
  background-color: #2C7335;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  padding: 18px 20px;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #014A87;
}

/* FAQ Toggle Symbol (+/-) */
.faq-toggle {
  font-size: 24px;
  color: #FDB501; /* Yellow accent */
  font-weight: bold;
}

/* FAQ Answer Section */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: #f9f9f9;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
}

.faq-answer p {
  margin: 15px 0;
  font-size: 15px;
  color: #000000;
  line-height: 1.6;
}

/* Open State */
.faq-card.open .faq-answer {
  max-height: 500px; /* Adjust for longer content */
  padding: 15px 20px;
}

/* FAQ Form Wrapper (Right side) */
.faq-form-wrapper {
  flex: 1;
  border: 1px solid #2C7335;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  background-color: #ffffff;
}

.faq-form-wrapper h3 {
  color: #2C7335;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: bold;
}

/* Form Inputs */
.faq-form input,
.faq-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #014A87;
  font-size: 14px;
  font-family: inherit;
  resize: vertical;
}

/* Form Button */
.faq-form button {
  background-color: #FDB501;
  color: black;
  font-weight: bold;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-form button:hover {
  background-color: #2C7335;
}

/* Responsive */
@media (max-width: 992px) {
  .faq-content-wrapper {
    flex-direction: column;
  }

  .faq-grid {
    order: 1;
  }

  .faq-form-wrapper {
    order: 2;
    margin-top: 30px;
  }
}

.gallery-section {
  padding: 60px 5%;
  background-color: #ffffff;
  font-family: 'Arial', sans-serif;
  margin-top: 50px;
}

.gallery-header {
  margin-bottom: 40px;
}

.gallery-header h2 {
  color: #2C7335;
  font-size: 32px;
  margin-bottom: 10px;
}

.gallery-header p {
  color: #014A87;
  font-size: 16px;
}

/* Masonry Grid */
.gallery-masonry {
  column-count: 3;
  column-gap: 20px;
}

.gallery-item {
  position: relative;
  margin-bottom: 20px;
  break-inside: avoid;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  display: block;
  border-radius: 12px;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(80%);
}

.gallery-caption {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: rgba(244, 247, 244, 0.8); /* Green Mocha with opacity */
  padding:5px 10px;
  border-radius: 8px;
}

.gallery-caption h4 {
  margin: 0;
  color: #151514; /* Yellow accent */
  font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
  .gallery-masonry {
    column-count: 2;
  }
}

@media (max-width: 768px) {
  .gallery-masonry {
    column-count: 1;
  }
}

.tour-packages-section {
  padding: 60px 5%;
  background-color: #ffffff;
  font-family: 'Arial', sans-serif;
}

.section-header h2 {
  font-size: 32px;
  color: #2C7335;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 16px;
  color: #014A87;
  margin-bottom: 40px;
}

/* Tour Packages Page Wrapper */
.tour-packages-page {
  padding: 80px 5%;
  background-color: #ffffff;
  font-family: 'Arial', sans-serif;
  margin-top: 40px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  color: #2C7335; /* Main green */
  margin-bottom: 10px;
  font-weight: bold;
}

.section-header h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background-color: #FDB501; /* Yellow underline */
  margin: 10px auto 0;
  border-radius: 2px;
}

.section-header p {
  color: #014A87; /* Blue accent */
  font-size: 16px;
  max-width: 700px;
  margin: 10px auto 0;
}

/* Tours Grid Layout */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Responsive */
@media (max-width: 1200px) {
  .tours-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tours-grid {
    grid-template-columns: 1fr;
  }
}
