* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'lato', sans-serif;
}

body {
  line-height: 1.6;
  color: #222;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.navbar {
  background: #fff;
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Push non-hero page content below the fixed navbar */
.navbar-offset {
  height: 80px;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 400;
  font-size: 15px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #2f6b4f;
}

.btn-primary {
  background: #2f6b4f;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #245a3d;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(47, 107, 79, 0.3);
}

.btn-secondary {
  border: 2px solid #fff;
  padding: 12px 24px;
  border-radius: 8px;
  color: #fff;
  background: transparent;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #fff;
  color: #2f6b4f;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1000;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #2f6b4f;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.hero {
  background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.45)), url("images/hero-1.jpg") center/cover no-repeat;
  color: #fff;
  padding: 0;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.hero-buttons a {
  display: inline-block;
  text-decoration: none;
}

.hero-badges {
  display: flex;
  gap: 30px;
  align-items: center;
}

.hero-badges span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
}

.hero-badges span::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
}

.packages {
  padding: 80px 0;
  background: #f4f7f5;
  text-align: center;
}

.packages h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 60px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.card-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  z-index: 1;
}

.badge-popular {
  background: #ffd700;
  color: #222;
}

.badge-value {
  background: #ff6347;
  color: #fff;
}

.card-content {
  padding: 25px;
}

.card-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #222;
}

.card-content p {
  color: #666;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.6;
  min-height: 48px;
}

.card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}

.card-price strong {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75rem;
  color: #2f6b4f;
}

.card-price .per-person {
  font-size: 14px;
  color: #999;
  font-weight: 400;
}

.card-button {
  display: block;
  width: 100%;
  padding: 14px;
  background: #2f6b4f;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.card-button:hover {
  background: #245a3d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(47, 107, 79, 0.3);
}

.why-us {
  padding: 80px 0;
  text-align: center;
  background: #fafafa;
}

.why-us h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2d2d2d;
}

.why-subtitle {
  font-size: 18px;
  color: #777;
  margin-bottom: 60px;
  font-weight: 400;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
  text-align: center;
}

.why-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
}

.why-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.why-icon:hover {
  transform: scale(1.15) rotate(15deg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.why-icon-1 {
  background: linear-gradient(135deg, #5a7a4a 0%, #a89548 100%);
}

.why-icon-2 {
  background: linear-gradient(135deg, #5a7a4a 0%, #c0b34d 100%);
}

.why-icon-3 {
  background: linear-gradient(135deg, #3a7a7a 0%, #4a9a9a 100%);
}

.why-icon-4 {
  background: linear-gradient(135deg, #6a5a4a 0%, #a85a4a 100%);
}

.why-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 15px;
  color: #777;
  line-height: 1.6;
  font-weight: 400;
}

.stats-divider {
  width: 100%;
  height: 1px;
  background: #e0e0e0;
  margin: 60px 0 50px;
}

.stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}

.stats div {
  text-align: center;
}

.stats strong {
  display: block;
  font-size: 52px;
  font-weight: 700;
  color: #2f6b4f;
  margin-bottom: 8px;
  line-height: 1;
}

.stats span {
  font-size: 15px;
  color: #777;
  font-weight: 400;
}

.booking {
  background: #2b2b2b;
  color: #fff;
  padding: 80px 0;
}

.booking-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.gallery img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: 280px;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.02);
}

.booking-form {
  background: #fafafa;
  color: #000;
  padding: 50px 45px;
  border-radius: 24px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.4);
}

.booking-form h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #2d2d2d;
}

.form-subtitle {
  font-size: 15px;
  color: #777;
  margin-bottom: 30px;
  line-height: 1.5;
}

.booking-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 8px;
}

.required {
  color: #e74c3c;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 20px;
  border: 1px solid #d5d5d5;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'lato', sans-serif;
  background: #fff;
  color: #2d2d2d;
  transition: all 0.3s ease;
}

.booking-form input::placeholder,
.booking-form select::placeholder,
.booking-form textarea::placeholder {
  color: #999;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: #2f6b4f;
  box-shadow: 0 0 0 3px rgba(47, 107, 79, 0.1);
}

.booking-form .dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.booking-form .dates input {
  margin-bottom: 20px;
}

.booking-form button {
  width: 100%;
  background: #2f6b4f;
  color: #fff;
  padding: 16px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.booking-form button:hover {
  background: #245a3d;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(47, 107, 79, 0.3);
}

/* CF7 submit button inside the homepage booking-form section */
.booking-form .wpcf7 input[type="submit"] {
  display: block;
  width: 100%;
  background: #2f6b4f;
  color: #fff;
  border: none;
  padding: 16px 30px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  box-sizing: border-box;
}

.booking-form .wpcf7 input[type="submit"]:hover {
  background: #245a3d;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(47, 107, 79, 0.3);
}

/* Remove default CF7 <p> margin so field spacing comes from inputs themselves */
.booking-form .wpcf7 .wpcf7-form p {
  margin-bottom: 0;
}

/* Dates side-by-side grid within the CF7 booking form */
.booking-form .wpcf7 .dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.booking-form .wpcf7 .dates input {
  margin-bottom: 20px;
}

.form-footer {
  text-align: center;
  font-size: 14px;
  color: #777;
  margin-top: 20px;
  margin-bottom: 0;
}

.booking-success {
  text-align: center;
  padding: 40px 20px;
  color: #2f6b4f;
}

.booking-success-icon {
  margin-bottom: 20px;
}

.booking-success-icon svg {
  stroke: #2f6b4f;
}

.booking-success h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}

.booking-success p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.booking-error {
  background: #fdecea;
  color: #c0392b;
  border: 1px solid #e74c3c;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 14px;
  margin-bottom: 20px;
}

.final-cta {
  background: linear-gradient(90deg, #2f6b4f 0%, #5a7a4a 30%, #8a944a 60%, #b8a648 100%);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.final-cta h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.cta-subtitle {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 40px;
  color: #fff;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn-cta-white {
  background: #fff;
  color: #2f6b4f;
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid #fff;
}

.btn-cta-white:hover {
  background: #f4f7f5;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.btn-cta-transparent {
  background: transparent;
  color: #fff;
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-cta-transparent:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f8d57e;
  font-size: 16px;
  font-weight: 500;
}

.contact-item svg {
  color: #f8d57e;
  flex-shrink: 0;
}

.footer {
  background: #1c1c1c;
  color: #fff;
  padding: 60px 0 0;
}

.footer-content {
  max-width: 1200px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 50px;
}

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 50px;
  width: auto;
}

.footer-description {
  color: #999;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 42px;
  height: 42px;
  background: #2f6b4f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a i {
  font-size: 18px;
}

.social-links a:hover {
  background: #245a3d;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(47, 107, 79, 0.3);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.footer-links a {
  display: block;
  color: #999;
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f8d57e;
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  color: #f8d57e;
}

.footer-contact-item i {
  color: #f8d57e;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 18px;
  width: 20px;
  text-align: center;
}

.footer-contact-item p {
  color: #999;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.footer-contact-item div p {
  margin-bottom: 2px;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: #777;
  font-size: 14px;
  margin: 0;
}

.footer-bottom p a {
  color: #f8d57e;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom p a:hover {
  color: #fff;
}

.footer-legal {
  display: flex;
  gap: 30px;
}

.footer-legal a {
  color: #777;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #f8d57e;
}

/* Contact Page Styles */
.contact-hero {
  background: linear-gradient(135deg, rgba(47, 107, 79, 0.85) 0%, rgba(90, 122, 74, 0.85) 50%, rgba(138, 148, 74, 0.85) 100%), url("images/hero-1.png") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px 80px;
  position: relative;
}

.contact-hero h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-hero p {
  font-size: 20px;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-content {
  padding: 80px 0;
  background: #fafafa;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 15px;
}

.contact-intro {
  font-size: 16px;
  color: #777;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.contact-info-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #2f6b4f 0%, #5a7a4a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
  font-size: 28px;
}

.contact-info-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 12px;
}

.contact-info-card p {
  font-size: 14px;
  color: #777;
  margin: 5px 0;
  line-height: 1.5;
}

.social-media-section {
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.social-media-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 20px;
}

.social-links-contact {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-links-contact a {
  width: 50px;
  height: 50px;
  background: #2f6b4f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 20px;
}

.social-links-contact a:hover {
  background: #245a3d;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(47, 107, 79, 0.3);
}

.contact-form-section {
  position: sticky;
  top: 100px;
}

.contact-form {
  background: #fff;
  padding: 45px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #2d2d2d;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 20px;
  border: 1px solid #d5d5d5;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'lato', sans-serif;
  background: #fff;
  color: #2d2d2d;
  transition: all 0.3s ease;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 20px;
  border: 1px solid #d5d5d5;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'lato', sans-serif;
  background: #fff;
  color: #2d2d2d;
  transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form select::placeholder,
.contact-form textarea::placeholder {
  color: #999;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.form-group input:focus {
  outline: none;
  border-color: #2f6b4f;
  box-shadow: 0 0 0 3px rgba(47, 107, 79, 0.1);
}

.contact-form button {
  width: 100%;
  background: #2f6b4f;
  color: #fff;
  padding: 16px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.contact-form button:hover {
  background: #245a3d;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(47, 107, 79, 0.3);
}

.map-section {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

.map-section h2 {
  font-size: 42px;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 40px;
}

.map-placeholder {
  background: linear-gradient(135deg, #2f6b4f 0%, #5a7a4a 100%);
  border-radius: 20px;
  padding: 100px 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.map-placeholder i {
  font-size: 80px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.map-placeholder p {
  font-size: 24px;
  font-weight: 500;
}

/* Tours Page Styles */
/* Hero Slider */
.tours-hero-slider,
.hotels-hero-slider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 7s ease-in-out;
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1.1);
}

.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(47, 107, 79, 0.75) 0%, rgba(90, 122, 74, 0.75) 50%, rgba(138, 148, 74, 0.75) 100%);
  z-index: 1;
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.hero-slide-content h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  animation: slideInDown 1s ease-out;
}

.hero-slide-content p {
  font-size: 20px;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
  animation: slideInUp 1s ease-out 0.2s backwards;
}

.hero-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #2f6b4f;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  animation: slideInUp 1s ease-out 0.4s backwards;
}

.hero-btn:hover {
  background: #245a3d;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(47, 107, 79, 0.4);
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.hero-nav:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.hero-prev {
  left: 20px;
}

.hero-next {
  right: 20px;
}

.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.hero-dot.active {
  background: #fff;
  width: 40px;
  border-radius: 6px;
}

.tour-categories {
  padding: 80px 0;
  background: #f4f7f5;
}

.tour-categories h2 {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  color: #2d2d2d;
  margin-bottom: 15px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.category-card {
  background: #fafafa;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.category-card:hover {
  background: #fff;
  border-color: #2f6b4f;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(47, 107, 79, 0.15);
}

.category-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2f6b4f 0%, #5a7a4a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
  font-size: 32px;
  transition: all 0.3s ease;
}

.category-card:hover .category-icon {
  transform: scale(1.1) rotate(10deg);
}

.category-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 12px;
}

.category-card p {
  font-size: 15px;
  color: #777;
  margin-bottom: 15px;
  line-height: 1.6;
}

.tour-count {
  display: inline-block;
  background: #2f6b4f;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

/* Scrollable Categories Section */
.scrollable-categories {
  display: flex;
  gap: 20px;
  margin-top: 50px;
  align-items: stretch;
}

.categories-header {
  background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
  border-radius: 12px;
  padding: 40px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(23, 162, 184, 0.2);
}

.categories-header h3 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  margin: 0;
}

.categories-scroll-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.categories-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.categories-scroll::-webkit-scrollbar {
  height: 8px;
}

.categories-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.categories-scroll::-webkit-scrollbar-thumb {
  background: #17a2b8;
  border-radius: 10px;
}

.categories-scroll::-webkit-scrollbar-thumb:hover {
  background: #138496;
}

.scroll-category-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  min-width: 180px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.scroll-category-card:hover {
  border-color: #17a2b8;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(23, 162, 184, 0.15);
}

.scroll-category-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: #666;
  font-size: 36px;
  transition: all 0.3s ease;
}

.scroll-category-card:hover .scroll-category-icon {
  color: #17a2b8;
  transform: scale(1.1);
}

.scroll-category-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #2d2d2d;
  margin: 0;
}

.featured-tours {
  padding: 80px 0;
  background: #fafafa;
}

.featured-tours h2 {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  color: #2d2d2d;
  margin-bottom: 15px;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.tour-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.tour-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.tour-card:hover .tour-image img {
  transform: scale(1.1);
}

.tour-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #2f6b4f;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.tour-badge.popular {
  background: #f8d57e;
  color: #2d2d2d;
}

.tour-badge.new {
  background: #e74c3c;
  color: #fff;
}

.tour-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(47, 107, 79, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tour-card:hover .tour-overlay {
  opacity: 1;
}

.tour-quick-view {
  background: #fff;
  color: #2f6b4f;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.tour-quick-view:hover {
  background: #f8d57e;
  color: #2d2d2d;
}

.tour-details {
  padding: 25px;
}

.tour-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.tour-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2d2d2d;
  flex: 1;
  margin-right: 10px;
}

.tour-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #f8d57e;
  padding: 4px 10px;
  border-radius: 20px;
  flex-shrink: 0;
}

.tour-rating i {
  color: #2d2d2d;
  font-size: 12px;
}

.tour-rating span {
  font-weight: 600;
  font-size: 13px;
  color: #2d2d2d;
}

.tour-info {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.tour-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #777;
  font-size: 13px;
}

.tour-info-item i {
  color: #2f6b4f;
  font-size: 14px;
}

.tour-description {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
  margin-bottom: 20px;
}

.tour-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.tour-price {
  display: flex;
  flex-direction: column;
}

.price-from {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  font-weight: 500;
}

.price-amount {
  font-size: 28px;
  font-weight: 700;
  color: #2f6b4f;
  line-height: 1;
}

.price-unit {
  font-size: 12px;
  color: #777;
}

.tour-button {
  background: #2f6b4f;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.tour-button:hover {
  background: #245a3d;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(47, 107, 79, 0.3);
}

.tour-cta {
  background: #2f6b4f;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.tour-cta h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.tour-cta p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.btn-cta-large {
  background: #f8d57e;
  color: #2d2d2d;
  padding: 18px 50px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-cta-large:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(248, 213, 126, 0.4);
}

/* Tour Detail Pages */
.tour-detail-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url("images/safari-adventures.png") center/cover no-repeat;
  color: #fff;
  padding: 150px 20px 80px;
  position: relative;
}

.breadcrumb {
  margin-bottom: 20px;
  font-size: 14px;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
  opacity: 1;
}

.breadcrumb span {
  margin: 0 10px;
  opacity: 0.6;
}

.tour-detail-hero h1 {
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
}

.tour-meta {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.meta-item i {
  color: #f8d57e;
  font-size: 18px;
}

.tour-detail-content {
  padding: 80px 0;
  background: #fafafa;
}

.tour-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
  align-items: start;
}

.tour-main-content {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}

.content-section {
  padding: 45px;
  border-bottom: 1px solid #f0f0f0;
}

.content-section:last-child {
  border-bottom: none;
}

.content-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 25px;
}

.content-section p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.highlight-item {
  display: flex;
  gap: 15px;
}

.highlight-item i {
  color: #2f6b4f;
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.highlight-item h4 {
  font-size: 17px;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 6px;
}

.highlight-item p {
  font-size: 14px;
  color: #777;
  margin: 0;
  line-height: 1.6;
}

.itinerary {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.itinerary-day {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 25px;
}

.day-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2f6b4f 0%, #5a7a4a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.day-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 15px;
}

.day-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 15px;
}

.day-activities {
  list-style: none;
  padding: 20px;
  background: #fafafa;
  border-radius: 8px;
  margin-top: 20px;
}

.day-activities li {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.day-activities li:last-child {
  margin-bottom: 0;
}

.day-activities i {
  color: #2f6b4f;
  width: 18px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.included-col h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.included-col h4 i {
  font-size: 22px;
}

.included-col h4 .fa-check {
  color: #2f6b4f;
}

.included-col h4 .fa-times {
  color: #e74c3c;
}

.check-list,
.cross-list {
  list-style: none;
}

.check-list li,
.cross-list li {
  font-size: 15px;
  color: #666;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  line-height: 1.6;
}

.check-list li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #2f6b4f;
  font-size: 14px;
}

.cross-list li:before {
  content: "\f00d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #e74c3c;
  font-size: 14px;
}

.info-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.info-box {
  background: #fafafa;
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #2f6b4f;
}

.info-box h4 {
  font-size: 18px;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-box h4 i {
  color: #2f6b4f;
}

.info-box ul {
  list-style: none;
}

.info-box ul li {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.info-box ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2f6b4f;
  font-weight: 700;
}

.tour-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.booking-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.price-display {
  text-align: center;
  padding-bottom: 25px;
  border-bottom: 2px solid #f0f0f0;
  margin-bottom: 25px;
}

.price-label {
  display: block;
  font-size: 13px;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}

.price-value {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #2f6b4f;
  line-height: 1;
  margin-bottom: 5px;
}

.price-per {
  display: block;
  font-size: 14px;
  color: #777;
}

.quick-booking-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 8px;
}

.quick-booking-form select,
.quick-booking-form input {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 20px;
  border: 1px solid #d5d5d5;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'lato', sans-serif;
  background: #fff;
  color: #2d2d2d;
  transition: all 0.3s ease;
}

.quick-booking-form select:focus,
.quick-booking-form input:focus {
  outline: none;
  border-color: #2f6b4f;
  box-shadow: 0 0 0 3px rgba(47, 107, 79, 0.1);
}

.btn-book-now {
  width: 100%;
  background: #2f6b4f;
  color: #fff;
  padding: 16px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 12px;
}

.btn-book-now:hover {
  background: #245a3d;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(47, 107, 79, 0.3);
}

.btn-inquire {
  width: 100%;
  display: block;
  text-align: center;
  background: transparent;
  color: #2f6b4f;
  padding: 14px;
  border: 2px solid #2f6b4f;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-inquire:hover {
  background: #2f6b4f;
  color: #fff;
}

.booking-features {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #f0f0f0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #666;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.feature-item i {
  color: #2f6b4f;
  font-size: 16px;
}

.tour-info-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.tour-info-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 25px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.info-item i {
  color: #2f6b4f;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 3px;
}

.info-item div {
  flex: 1;
}

.info-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 4px;
}

.info-item span {
  font-size: 14px;
  color: #777;
}

.sidebar-info-box {
  background: #fff;
  border-radius: 16px;
  padding: 28px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.sidebar-info-box h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 12px;
}

.sidebar-info-box p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}

.sidebar-info-box .contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-info-box .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #555;
}

.sidebar-info-box .contact-item i {
  color: #2f6b4f;
  width: 16px;
  flex-shrink: 0;
}

.benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #555;
}

.benefits-list li i {
  color: #2f6b4f;
  font-size: 13px;
  flex-shrink: 0;
}

.share-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.share-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 20px;
}

.share-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.share-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}

.share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.share-btn.facebook {
  background: #1877f2;
}

.share-btn.twitter {
  background: #1da1f2;
}

.share-btn.whatsapp {
  background: #25d366;
}

.share-btn.email {
  background: #666;
}

.related-tours {
  padding: 80px 0;
  background: #fff;
}

.related-tours h2 {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  color: #2d2d2d;
  margin-bottom: 50px;
}

.related-tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.related-tour-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.related-tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.related-tour-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.related-tour-content {
  padding: 20px;
}

.related-tour-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 12px;
}

.related-tour-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.related-tour-meta span {
  font-size: 14px;
  color: #777;
}

.related-tour-meta span i {
  color: #2f6b4f;
  margin-right: 5px;
}

.related-price {
  font-size: 22px;
  font-weight: 700;
  color: #2f6b4f;
}

/* Hotels Pages - Using shared hero slider styles above */

.hotel-categories {
  padding: 80px 0;
  background: #f4f7f5;
}

.hotel-categories h2 {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  color: #2d2d2d;
  margin-bottom: 15px;
}

.featured-hotels {
  padding: 80px 0;
  background: #fafafa;
}

.featured-hotels h2 {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  color: #2d2d2d;
  margin-bottom: 15px;
}

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.hotel-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.hotel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.hotel-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hotel-card:hover .hotel-image img {
  transform: scale(1.1);
}

.hotel-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #2f6b4f;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.hotel-badge.luxury {
  background: #8b6914;
}

.hotel-badge.best-value {
  background: #27ae60;
}

.hotel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(47, 107, 79, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hotel-card:hover .hotel-overlay {
  opacity: 1;
}

.hotel-quick-view {
  background: #fff;
  color: #2f6b4f;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.hotel-quick-view:hover {
  background: #f8d57e;
  color: #2d2d2d;
}

.hotel-details {
  padding: 25px;
}

.hotel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.hotel-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2d2d2d;
  flex: 1;
  margin-right: 10px;
}

.hotel-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #f8d57e;
  padding: 4px 10px;
  border-radius: 20px;
  flex-shrink: 0;
}

.hotel-rating i {
  color: #2d2d2d;
  font-size: 12px;
}

.hotel-rating span {
  font-weight: 600;
  font-size: 13px;
  color: #2d2d2d;
}

.hotel-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #777;
  font-size: 14px;
  margin-bottom: 15px;
}

.hotel-location i {
  color: #2f6b4f;
}

.hotel-description {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
  margin-bottom: 20px;
}

.hotel-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.amenity {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #666;
  background: #f5f5f5;
  padding: 6px 12px;
  border-radius: 20px;
}

.amenity i {
  color: #2f6b4f;
  font-size: 13px;
}

.hotel-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hotel-price {
  display: flex;
  flex-direction: column;
}

.hotel-button {
  background: #2f6b4f;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.hotel-button:hover {
  background: #245a3d;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(47, 107, 79, 0.3);
}

.hotel-cta {
  background: #2f6b4f;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.hotel-cta h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hotel-cta p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Hotel Detail Pages - Additional Styles */
.room-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.room-type-card {
  background: #fafafa;
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
}

.room-type-card.featured {
  border-color: #2f6b4f;
  background: #fff;
  transform: scale(1.05);
}

.room-type-card:hover {
  border-color: #2f6b4f;
  box-shadow: 0 8px 25px rgba(47, 107, 79, 0.15);
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #2f6b4f;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.room-type-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 12px;
}

.room-capacity {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #777;
  font-size: 14px;
  margin-bottom: 20px;
}

.room-capacity i {
  color: #2f6b4f;
}

.room-features {
  list-style: none;
  margin-bottom: 25px;
}

.room-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
  padding-left: 0;
}

.room-features li i {
  color: #2f6b4f;
  font-size: 16px;
  width: 20px;
}

.room-price {
  text-align: center;
  padding-top: 20px;
  border-top: 2px solid #f0f0f0;
}

.room-price .from {
  display: block;
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.room-price .amount {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #2f6b4f;
  line-height: 1;
  margin-bottom: 3px;
}

.room-price .per {
  display: block;
  font-size: 13px;
  color: #777;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.amenity-category {
  background: #fafafa;
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #2f6b4f;
}

.amenity-category h4 {
  font-size: 18px;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.amenity-category h4 i {
  color: #2f6b4f;
  font-size: 20px;
}

.amenity-category ul {
  list-style: none;
}

.amenity-category ul li {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.amenity-category ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2f6b4f;
  font-weight: 700;
}

.location-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.location-detail {
  background: #fafafa;
  padding: 25px;
  border-radius: 12px;
}

.location-detail h4 {
  font-size: 18px;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.location-detail h4 i {
  color: #2f6b4f;
}

.location-detail p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 15px;
}

.nearby-list {
  list-style: none;
}

.nearby-list li {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.nearby-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #2f6b4f;
  font-weight: 700;
}

.policies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.policy-box {
  background: #fafafa;
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #2f6b4f;
}

.policy-box h4 {
  font-size: 18px;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.policy-box h4 i {
  color: #2f6b4f;
}

.policy-box p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 10px;
}

.policy-box p:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .container {
    width: 95%;
  }
}

@media (min-width: 1024px) {
  .container-featured {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (max-width: 768px) {
  /* Navbar */
  .navbar {
    padding: 15px 0;
  }

  .navbar-offset {
    height: 70px;
  }

  .nav-flex {
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .logo img {
    height: 40px;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    text-align: center;
    transition: left 0.3s ease;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    gap: 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-menu a {
    padding: 15px 20px;
    display: block;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-menu a:last-child {
    border-bottom: none;
  }

  .btn-primary {
    padding: 12px 24px;
    font-size: 14px;
    margin: 10px 20px;
    display: inline-block;
    width: auto;
  }

  /* Hero Section */
  .hero {
    height: 100svh;
    min-height: 500px;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-badges {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-badges span {
    font-size: 13px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
  }

  /* Packages Section */
  .packages {
    padding: 60px 0;
  }

  .packages h2 {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .package-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card-content h3 {
    font-size: 20px;
  }

  /* Why Us Section */
  .why-us {
    padding: 60px 0;
  }

  .why-us h2 {
    font-size: 32px;
  }

  .why-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .why-icon {
    width: 70px;
    height: 70px;
  }

  .why-card h3 {
    font-size: 18px;
  }

  .why-card p {
    font-size: 14px;
  }

  .stats {
    gap: 30px;
  }

  .stats strong {
    font-size: 42px;
  }

  .stats span {
    font-size: 14px;
  }

  /* Booking Section */
  .booking {
    padding: 60px 0;
  }

  .booking-flex {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gallery {
    gap: 12px;
  }

  .gallery img {
    height: 180px;
    border-radius: 16px;
  }

  .booking-form {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .booking-form h3 {
    font-size: 24px;
  }

  .form-subtitle {
    font-size: 14px;
  }

  .booking-form label {
    font-size: 13px;
  }

  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    padding: 12px 14px;
    font-size: 14px;
  }

  .booking-form .dates {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .booking-form button {
    padding: 14px;
    font-size: 15px;
  }

  /* Final CTA */
  .final-cta {
    padding: 50px 20px;
  }

  .final-cta h2 {
    font-size: 28px;
  }

  .cta-subtitle {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
  }

  .btn-cta-white,
  .btn-cta-transparent {
    width: 100%;
    max-width: 300px;
    padding: 14px 30px;
    font-size: 15px;
  }

  .contact-info {
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
  }

  .contact-item {
    font-size: 14px;
  }

  /* Contact Page Responsive */
  .contact-hero {
    padding: 60px 20px 50px;
  }

  .contact-hero h1 {
    font-size: 32px;
  }

  .contact-hero p {
    font-size: 16px;
  }

  .contact-content {
    padding: 60px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info-section h2 {
    font-size: 28px;
    text-align: center;
  }

  .contact-intro {
    font-size: 15px;
    text-align: center;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-form-section {
    position: static;
  }

  .contact-form {
    padding: 30px 25px;
  }

  .contact-form h3 {
    font-size: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .map-section {
    padding: 60px 0;
  }

  .map-section h2 {
    font-size: 28px;
  }

  .map-placeholder {
    padding: 60px 30px;
    min-height: 300px;
  }

  .map-placeholder i {
    font-size: 60px;
  }

  .map-placeholder p {
    font-size: 18px;
  }

  /* Tours Page Responsive */
  .tours-hero-slider,
  .hotels-hero-slider {
    height: 500px;
  }

  .hero-slide-content h1 {
    font-size: 32px;
  }

  .hero-slide-content p {
    font-size: 16px;
  }

  .hero-btn {
    font-size: 14px;
    padding: 12px 24px;
  }

  .hero-nav {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .hero-prev {
    left: 10px;
  }

  .hero-next {
    right: 10px;
  }

  .tour-categories {
    padding: 60px 0;
  }

  .tour-categories h2,
  .featured-tours h2 {
    font-size: 32px;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Scrollable Categories Mobile */
  .scrollable-categories {
    flex-direction: column;
    gap: 20px;
  }

  .categories-header {
    min-width: 100%;
    padding: 30px 20px;
  }

  .categories-header h3 {
    font-size: 28px;
  }

  .scroll-category-card {
    min-width: 150px;
  }

  .scroll-category-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .scroll-category-card h4 {
    font-size: 16px;
  }

  .category-card {
    padding: 30px 25px;
  }

  .category-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }

  .featured-tours {
    padding: 60px 0;
  }

  .tours-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .tour-image {
    height: 220px;
  }

  .tour-details {
    padding: 20px;
  }

  .tour-header h3 {
    font-size: 18px;
  }

  .tour-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .tour-button {
    width: 100%;
    text-align: center;
  }

  .tour-cta {
    padding: 60px 20px;
  }

  .tour-cta h2 {
    font-size: 28px;
  }

  .tour-cta p {
    font-size: 16px;
  }

  .btn-cta-large {
    padding: 16px 40px;
    font-size: 16px;
  }

  /* Tour Detail Pages Responsive */
  .tour-detail-hero {
    padding: 100px 20px 60px;
  }

  .tour-detail-hero h1 {
    font-size: 32px;
  }

  .tour-meta {
    gap: 20px;
  }

  .meta-item {
    font-size: 14px;
  }

  .tour-detail-content {
    padding: 60px 0;
  }

  .tour-detail-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .tour-sidebar {
    position: static;
    order: -1;
  }

  .content-section {
    padding: 30px 20px;
  }

  .content-section h2 {
    font-size: 26px;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .itinerary-day {
    grid-template-columns: 60px 1fr;
    gap: 15px;
  }

  .day-number {
    width: 60px;
    height: 60px;
    font-size: 14px;
  }

  .day-content h3 {
    font-size: 18px;
  }

  .included-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .info-boxes {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .price-value {
    font-size: 38px;
  }

  .related-tours {
    padding: 60px 0;
  }

  .related-tours h2 {
    font-size: 28px;
  }

  .related-tours-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Hotels Pages Responsive - Using shared slider styles above */

  .hotel-categories,
  .featured-hotels {
    padding: 60px 0;
  }

  .hotel-categories h2,
  .featured-hotels h2 {
    font-size: 32px;
  }

  /* Hotel Scrollable Categories Mobile */
  .hotel-categories .scrollable-categories {
    flex-direction: column;
  }

  .hotels-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .hotel-image {
    height: 220px;
  }

  .hotel-details {
    padding: 20px;
  }

  .hotel-header h3 {
    font-size: 18px;
  }

  .hotel-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .hotel-button {
    width: 100%;
    text-align: center;
  }

  .hotel-cta {
    padding: 60px 20px;
  }

  .hotel-cta h2 {
    font-size: 28px;
  }

  .hotel-cta p {
    font-size: 16px;
  }

  .room-types-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .room-type-card.featured {
    transform: scale(1);
  }

  .amenities-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .location-info {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .policies-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Footer */
  .footer {
    padding: 50px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-bottom: 40px;
  }

  .footer-brand {
    max-width: 100%;
    text-align: center;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
  }

  .footer-description {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-links,
  .footer-contact {
    text-align: center;
  }

  .footer-links a {
    margin-bottom: 10px;
  }

  .footer-contact-item {
    justify-content: center;
    margin-bottom: 15px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
  }

  .footer-bottom p {
    font-size: 13px;
  }

  .footer-legal {
    justify-content: center;
    gap: 20px;
  }

  .footer-legal a {
    font-size: 13px;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  /* Tablet View */
  .nav-flex {
    gap: 10px;
  }

  nav {
    gap: 20px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 17px;
  }

  .packages h2,
  .why-us h2 {
    font-size: 38px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .booking-flex {
    gap: 50px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  /* Contact Page Tablet */
  .contact-hero h1 {
    font-size: 44px;
  }

  .contact-hero p {
    font-size: 18px;
  }

  .contact-grid {
    gap: 50px;
  }

  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Tours Page Tablet */
  .tours-hero-slider,
  .hotels-hero-slider {
    height: 550px;
  }

  .hero-slide-content h1 {
    font-size: 44px;
  }

  .hero-slide-content p {
    font-size: 18px;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Tour Detail Pages Tablet */
  .tour-detail-hero h1 {
    font-size: 44px;
  }

  .tour-detail-grid {
    grid-template-columns: 1fr;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-boxes {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-tours-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Hotels Page Tablet - Using shared slider styles above */

  .hotels-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .room-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-info {
    grid-template-columns: repeat(2, 1fr);
  }

  .policies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Extra Small Devices */
@media (max-width: 480px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }

  .hero {
    height: 100svh;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 14px;
  }

  .packages h2,
  .why-us h2,
  .final-cta h2 {
    font-size: 26px;
  }

  .section-subtitle,
  .why-subtitle,
  .cta-subtitle {
    font-size: 14px;
  }

  .card-content {
    padding: 20px;
  }

  .why-icon {
    width: 60px;
    height: 60px;
  }

  .stats strong {
    font-size: 36px;
  }

  .booking-form {
    padding: 25px 15px;
  }

  .booking-form h3 {
    font-size: 22px;
  }

  .gallery img {
    height: 150px;
  }

  .btn-cta-white,
  .btn-cta-transparent {
    padding: 12px 24px;
    font-size: 14px;
  }

  .social-links a {
    width: 38px;
    height: 38px;
  }

  .social-links a i {
    font-size: 16px;
  }

  /* Contact Page Extra Small */
  .contact-hero h1 {
    font-size: 28px;
  }

  .contact-hero p {
    font-size: 15px;
  }

  .contact-info-section h2 {
    font-size: 24px;
  }

  .contact-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .contact-info-card {
    padding: 25px 20px;
  }

  .contact-form {
    padding: 25px 20px;
  }

  .contact-form h3 {
    font-size: 22px;
  }

  .social-links-contact a {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .map-section h2 {
    font-size: 24px;
  }

  .map-placeholder {
    padding: 50px 20px;
    min-height: 250px;
  }

  .map-placeholder i {
    font-size: 50px;
  }

  .map-placeholder p {
    font-size: 16px;
  }

  /* Tours Page Extra Small */
  .tours-hero-slider,
  .hotels-hero-slider {
    height: 450px;
  }

  .hero-slide-content h1 {
    font-size: 28px;
  }

  .hero-slide-content p {
    font-size: 15px;
  }

  .hero-dots {
    bottom: 20px;
  }

  .hero-nav {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .tour-categories h2,
  .featured-tours h2 {
    font-size: 26px;
  }

  /* Extra Small Scrollable Categories */
  .categories-header h3 {
    font-size: 24px;
  }

  .scroll-category-card {
    min-width: 130px;
    padding: 25px 20px;
  }

  .scroll-category-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .scroll-category-card h4 {
    font-size: 14px;
  }

  .category-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .category-card h3 {
    font-size: 20px;
  }

  .tour-cta h2 {
    font-size: 24px;
  }

  .tour-cta p {
    font-size: 15px;
  }

  .btn-cta-large {
    padding: 14px 30px;
    font-size: 15px;
  }

  .price-amount {
    font-size: 24px;
  }

  /* Tour Detail Pages Extra Small */
  .tour-detail-hero {
    padding: 80px 20px 50px;
  }

  .tour-detail-hero h1 {
    font-size: 28px;
  }

  .breadcrumb {
    font-size: 12px;
  }

  .tour-meta {
    gap: 15px;
  }

  .meta-item {
    font-size: 13px;
  }

  .meta-item i {
    font-size: 16px;
  }

  .content-section {
    padding: 25px 15px;
  }

  .content-section h2 {
    font-size: 22px;
  }

  .content-section p {
    font-size: 15px;
  }

  .highlight-item h4 {
    font-size: 16px;
  }

  .highlight-item p {
    font-size: 13px;
  }

  .itinerary-day {
    grid-template-columns: 50px 1fr;
    gap: 12px;
  }

  .day-number {
    width: 50px;
    height: 50px;
    font-size: 12px;
  }

  .day-content h3 {
    font-size: 16px;
  }

  .day-content p {
    font-size: 14px;
  }

  .day-activities {
    padding: 15px;
  }

  .day-activities li {
    font-size: 13px;
  }

  .included-col h4 {
    font-size: 18px;
  }

  .check-list li,
  .cross-list li {
    font-size: 14px;
  }

  .info-box {
    padding: 20px;
  }

  .info-box h4 {
    font-size: 16px;
  }

  .info-box ul li {
    font-size: 13px;
  }

  .booking-card {
    padding: 25px 20px;
  }

  .price-value {
    font-size: 36px;
  }

  .tour-info-card {
    padding: 25px 20px;
  }

  .tour-info-card h4 {
    font-size: 18px;
  }

  .info-item strong {
    font-size: 13px;
  }

  .info-item span {
    font-size: 13px;
  }

  .share-card {
    padding: 20px;
  }

  .share-card h4 {
    font-size: 16px;
  }

  .share-btn {
    width: 45px;
    height: 45px;
  }

  .related-tours h2 {
    font-size: 24px;
  }

  .related-tour-content h4 {
    font-size: 16px;
  }

  .related-price {
    font-size: 20px;
  }

  /* Hotels Page Extra Small - Using shared slider styles above */

  .hotel-categories h2,
  .featured-hotels h2 {
    font-size: 26px;
  }

  .hotel-cta h2 {
    font-size: 24px;
  }

  .hotel-cta p {
    font-size: 15px;
  }

  .room-type-card {
    padding: 25px 20px;
  }

  .room-type-card h4 {
    font-size: 18px;
  }

  .room-price .amount {
    font-size: 28px;
  }

  .amenity-category,
  .policy-box,
  .location-detail {
    padding: 20px;
  }

  .amenity-category h4,
  .policy-box h4,
  .location-detail h4 {
    font-size: 16px;
  }
}

/* ============================================
   TOUR/FLIGHT SEARCH SECTION STYLES
   ============================================ */

.flight-search-section,
.tour-search-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.search-box-wrapper {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 0;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
}

.search-label-box {
  background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
  color: white;
  padding: 30px 35px;
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 200px;
  flex-shrink: 0;
}

.search-label-box i {
  font-size: 36px;
  opacity: 0.95;
}

.search-label-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.search-label-main {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.search-label-sub {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.inline-search-form {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  flex: 1;
  flex-wrap: wrap;
}

.search-field {
  flex: 1;
  min-width: 150px;
}

.search-field select,
.search-field input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 15px;
  color: #333;
  background: white;
  transition: all 0.3s ease;
  cursor: pointer;
}

.search-field input[type="date"] {
  font-family: 'Lato', sans-serif;
  color: #666;
}

.search-field select:focus,
.search-field input:focus {
  outline: none;
  border-color: #17a2b8;
  box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.1);
}

.search-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 35px;
}

.search-submit-btn {
  background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.search-submit-btn:hover {
  background: linear-gradient(135deg, #138496 0%, #117a8b 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(23, 162, 184, 0.3);
}

.search-submit-btn i {
  font-size: 16px;
}

/* Responsive Styles for Search Section */
@media (max-width: 1200px) {
  .search-box-wrapper {
    flex-wrap: wrap;
  }

  .search-label-box {
    min-width: 180px;
    padding: 25px 30px;
  }

  .search-label-main {
    font-size: 20px;
  }

  .search-label-sub {
    font-size: 24px;
  }

  .inline-search-form {
    padding: 20px;
    gap: 12px;
  }

  .search-field {
    min-width: 140px;
  }
}

@media (max-width: 992px) {
  .flight-search-section,
  .tour-search-section {
    padding: 50px 0;
  }

  .search-label-box {
    width: 100%;
    min-width: unset;
    padding: 20px;
    justify-content: center;
  }

  .search-label-box i {
    font-size: 28px;
  }

  .search-label-main {
    font-size: 18px;
  }

  .search-label-sub {
    font-size: 22px;
  }

  .inline-search-form {
    width: 100%;
    justify-content: space-between;
  }

  .search-field {
    flex: 1 1 calc(50% - 10px);
    min-width: unset;
  }

  .search-submit-btn {
    flex: 1 1 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .flight-search-section,
  .tour-search-section {
    padding: 40px 0;
  }

  .search-box-wrapper {
    border-radius: 8px;
  }

  .search-label-box {
    padding: 18px;
  }

  .search-label-box i {
    font-size: 24px;
  }

  .search-label-main {
    font-size: 16px;
  }

  .search-label-sub {
    font-size: 20px;
  }

  .inline-search-form {
    padding: 15px;
    gap: 10px;
  }

  .search-field select,
  .search-field input {
    padding: 12px 14px;
    font-size: 14px;
  }

  .search-submit-btn {
    padding: 12px 24px;
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .flight-search-section,
  .tour-search-section {
    padding: 30px 0;
  }

  .search-field {
    flex: 1 1 100%;
  }

  .search-label-box {
    padding: 15px;
    gap: 12px;
  }

  .inline-search-form {
    padding: 12px;
  }

  .search-field select,
  .search-field input {
    padding: 11px 12px;
    font-size: 14px;
  }

  .search-submit-btn {
    padding: 11px 20px;
  }
}

/* ============================================
   Tour Photo Gallery
   ============================================ */
.tour-photo-gallery {
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 15px;
  height: 500px;
}

.gallery-left {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 15px;
}

.gallery-right {
  height: 100%;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-main {
  position: relative;
}

.view-all-photos {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  color: #2f6b4f;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.view-all-photos:hover {
  background: #2f6b4f;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(47, 107, 79, 0.3);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    height: auto;
    gap: 10px;
  }

  .gallery-left {
    grid-template-rows: auto;
    gap: 10px;
  }

  .gallery-left .gallery-item {
    height: 200px;
  }

  .gallery-right .gallery-item {
    height: 300px;
  }

  .view-all-photos {
    padding: 10px 20px;
    font-size: 14px;
    bottom: 15px;
    right: 15px;
  }
}

/* Inquiry prompt (price hidden state) */
.inquiry-prompt {
  margin-bottom: 20px;
}

.inquiry-prompt h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.inquiry-prompt p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* ============================================
   CF7 Theme Form Layout
   ============================================ */
.ncs-cf7-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}

.ncs-cf7-col {
  display: flex;
  flex-direction: column;
}

/* Make CF7 inputs/selects/textareas match the quick-booking-form style */
.booking-card .wpcf7 input:not([type="submit"]),
.booking-card .wpcf7 select,
.booking-card .wpcf7 textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 20px;
  border: 1px solid #d5d5d5;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'lato', sans-serif;
  background: #fff;
  color: #2d2d2d;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.booking-card .wpcf7 input:not([type="submit"]):focus,
.booking-card .wpcf7 select:focus,
.booking-card .wpcf7 textarea:focus {
  outline: none;
  border-color: #2f6b4f;
  box-shadow: 0 0 0 3px rgba(47, 107, 79, 0.1);
}

.booking-card .wpcf7 label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 8px;
}

.booking-card .wpcf7 input[type="submit"].btn-book-now,
.booking-card .wpcf7 input[type="submit"].btn-primary {
  width: 100%;
  background: #2f6b4f;
  color: #fff;
  padding: 16px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 0;
}

.booking-card .wpcf7 input[type="submit"]:hover {
  background: #245a3d;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(47, 107, 79, 0.3);
}

.booking-card .wpcf7 .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #c0392b;
  margin-top: -16px;
  margin-bottom: 12px;
  display: block;
}

.booking-card .wpcf7 .wpcf7-response-output {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
}

@media (max-width: 600px) {
  .ncs-cf7-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Photo Lightbox Modal
   ============================================ */
.ncs-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  align-items: center;
  justify-content: center;
}

.ncs-lightbox.is-open {
  display: flex;
}

.ncs-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}

.ncs-lightbox-inner {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ncs-lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 6px;
  display: block;
  user-select: none;
}

.ncs-lightbox-counter {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.05em;
}

.ncs-lightbox-close,
.ncs-lightbox-prev,
.ncs-lightbox-next {
  position: fixed;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.2s ease;
  z-index: 2;
}

.ncs-lightbox-close:hover,
.ncs-lightbox-prev:hover,
.ncs-lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
}

.ncs-lightbox-close {
  top: 20px;
  right: 20px;
}

.ncs-lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.ncs-lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.ncs-lightbox-prev:disabled,
.ncs-lightbox-next:disabled {
  opacity: 0.3;
  cursor: default;
}

/* Make gallery items clickable */
.gallery-item {
  cursor: pointer;
}

@media (max-width: 600px) {
  .ncs-lightbox-prev { left: 8px; }
  .ncs-lightbox-next { right: 8px; }
  .ncs-lightbox-close { top: 10px; right: 10px; }
}
