/* ========================
   CSS Variables & Reset
======================== */
:root {
  --primary: #c8963e;
  --primary-dark: #a67a2e;
  --secondary: #1a3c34;
  --dark: #0d1b16;
  --light: #f8f5f0;
  --white: #ffffff;
  --gray: #6b7280;
  --gray-light: #e5e7eb;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s ease;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', Arial, sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 10px;
  color: var(--secondary);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 12px auto 0;
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  margin-bottom: 50px;
  font-size: 1rem;
}

/* ========================
   Buttons
======================== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(200, 150, 62, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--secondary);
}

.btn-small {
  padding: 8px 20px;
  font-size: 0.8rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 3px;
}

.btn-small:hover {
  background: var(--primary-dark);
}

/* ========================
   Top Bar
======================== */
.top-bar {
  background: var(--dark);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.8rem;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-contact span {
  margin-right: 20px;
}

.top-bar-contact i {
  margin-right: 6px;
  color: var(--primary);
}

.top-bar-social a {
  color: var(--white);
  margin-left: 12px;
  transition: var(--transition);
}

.top-bar-social a:hover {
  color: var(--primary);
}

/* ========================
   Header / Navigation
======================== */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 10px;
  padding-bottom: 10px;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.1;
}

.logo-sub {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

.nav-list {
  display: flex;
  gap: 5px;
}

.nav-link {
  padding: 10px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--secondary);
  transition: var(--transition);
  border-radius: 4px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: rgba(200, 150, 62, 0.08);
}

/* ========================
   Hero Slider
======================== */
.hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.hero-content {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--white);
  width: 90%;
  max-width: 700px;
  z-index: 2;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  opacity: 0.95;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition);
}

.hero-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.hero-prev {
  left: 20px;
}

.hero-next {
  right: 20px;
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.2);
}

/* ========================
   About Section
======================== */
.about {
  background: var(--light);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.about-card {
  background: var(--white);
  padding: 35px 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.about-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: rgba(200, 150, 62, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-icon i {
  font-size: 1.8rem;
  color: var(--primary);
}

.about-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--secondary);
  margin-bottom: 12px;
}

.about-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ========================
   Places Section
======================== */
.places-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 25px;
}

.place-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
}

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

.place-img {
  height: 320px;
  overflow: hidden;
}

.place-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.place-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.place-info h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
}

/* ========================
   Services Section
======================== */
.services {
  background: var(--light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
}

.service-card {
  position: relative;
  height: 280px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

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

.service-img {
  height: 100%;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 60, 52, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  color: var(--white);
}

.service-overlay h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 15px;
  text-align: center;
  padding: 0 20px;
}

/* ========================
   Tours / Packages
======================== */
.tours {
  background: var(--white);
}

.tours-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.tours-slider {
  display: flex;
  gap: 25px;
  transition: transform 0.5s ease;
  padding: 10px 0;
}

.tour-card {
  min-width: calc(33.333% - 17px);
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  flex-shrink: 0;
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.tour-img {
  height: 200px;
  overflow: hidden;
}

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

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

.tour-info {
  padding: 20px;
}

.tour-info h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--secondary);
  margin-bottom: 10px;
  line-height: 1.4;
  min-height: 56px;
}

.tour-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

.tours-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: var(--white);
  border: 2px solid var(--gray-light);
  color: var(--secondary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.tours-arrow:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.tours-prev {
  left: -5px;
}

.tours-next {
  right: -5px;
}

/* ========================
   Reviews Section
======================== */
.reviews {
  background: var(--light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
  margin-bottom: 50px;
}

.review-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.review-stars {
  color: #f59e0b;
  margin-bottom: 15px;
  font-size: 1rem;
}

.review-stars i {
  margin-right: 2px;
}

.review-text {
  font-style: italic;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.7;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar i {
  font-size: 2.5rem;
  color: var(--primary);
}

.review-author strong {
  display: block;
  color: var(--secondary);
  font-size: 0.95rem;
}

.review-author span {
  font-size: 0.8rem;
  color: var(--gray);
}

/* Review Form */
.review-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  max-width: 700px;
  margin: 0 auto;
}

.review-form-wrapper h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 25px;
  text-align: center;
}

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

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--secondary);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--gray-light);
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
  background: var(--light);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200, 150, 62, 0.15);
}

.star-rating {
  display: flex;
  gap: 5px;
}

.star-rating i {
  font-size: 1.5rem;
  color: #d1d5db;
  cursor: pointer;
  transition: color 0.2s;
}

.star-rating i.active {
  color: #f59e0b;
}

/* ========================
   Parallax Dividers
======================== */
.parallax-divider {
  position: relative;
  min-height: 350px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 27, 22, 0.75) 0%,
    rgba(26, 60, 52, 0.6) 50%,
    rgba(200, 150, 62, 0.3) 100%
  );
}

.parallax-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
}

.parallax-content h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.parallax-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* Disable parallax on mobile/tablet for performance */
@media (max-width: 1024px) {
  .parallax-divider {
    background-attachment: scroll;
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .parallax-divider {
    min-height: 220px;
  }

  .parallax-content h2 {
    font-size: 1.8rem;
  }

  .parallax-content p {
    font-size: 1rem;
  }
}

/* ========================
   Partners
======================== */
.partners {
  background: var(--white);
  padding: 50px 0;
}

.partners-track {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.partner-logo {
  width: 180px;
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: var(--transition);
  overflow: hidden;
}

.partner-logo:hover {
  opacity: 1;
  box-shadow: var(--shadow);
}

.partner-logo span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  text-align: center;
}

/* ========================
   Footer
======================== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
}

.footer-col h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
}

.footer-col h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--primary);
  margin-top: 8px;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary);
}

.newsletter-form .btn {
  padding: 10px 18px;
  font-size: 0.8rem;
}

.contact-list li {
  margin-bottom: 12px;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-list i {
  color: var(--primary);
  width: 18px;
  text-align: center;
}

.contact-list a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.contact-list a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  font-size: 0.85rem;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* ========================
   Back to Top
======================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* ========================
   Page Hero (Subpages)
======================== */
.page-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.page-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: pageHeroKen 18s ease infinite;
  opacity: 0;
}

.page-hero-slide:nth-child(1) {
  animation-delay: 0s;
}
.page-hero-slide:nth-child(2) {
  animation-delay: 6s;
}
.page-hero-slide:nth-child(3) {
  animation-delay: 12s;
}

@keyframes pageHeroKen {
  0%, 28% { opacity: 1; transform: scale(1); }
  33%, 95% { opacity: 0; transform: scale(1.08); }
  100% { opacity: 0; transform: scale(1); }
}

.page-hero-slide:first-child {
  animation-name: pageHeroKenFirst;
}

@keyframes pageHeroKenFirst {
  0%, 28% { opacity: 1; transform: scale(1); }
  33%, 62% { opacity: 0; transform: scale(1.08); }
  67%, 95% { opacity: 0; }
  100% { opacity: 1; transform: scale(1); }
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13, 27, 22, 0.5), rgba(13, 27, 22, 0.75));
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.page-hero-content h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  margin-top: 10px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

/* Breadcrumb */
.breadcrumb ol {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.9rem;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb li + li::before {
  content: '/';
  color: rgba(255,255,255,0.5);
}

.breadcrumb a {
  color: var(--primary);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* ========================
   About Intro Section
======================== */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.about-intro-text h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--secondary);
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-intro-text p {
  color: var(--gray);
  margin-bottom: 14px;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 35px;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid var(--gray-light);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--primary);
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-intro-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-intro-image::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 120px;
  height: 120px;
  border: 4px solid var(--primary);
  border-radius: 12px;
  z-index: -1;
}

.about-intro-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* ========================
   About Detail Cards
======================== */
.about-services {
  background: var(--light);
}

.about-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.about-detail-card {
  background: var(--white);
  padding: 35px 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
  transition: var(--transition);
}

.about-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.about-detail-icon {
  width: 60px;
  height: 60px;
  background: rgba(200, 150, 62, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.about-detail-icon i {
  font-size: 1.5rem;
  color: var(--primary);
}

.about-detail-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--secondary);
  margin-bottom: 15px;
}

.about-detail-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 10px;
}

/* ========================
   Why Choose Us
======================== */
.why-choose {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.why-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  transition: var(--transition);
}

.why-item:hover {
  background: var(--light);
  transform: translateY(-3px);
}

.why-icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 18px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon i {
  font-size: 1.6rem;
  color: var(--primary);
}

.why-item h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 10px;
}

.why-item p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ========================
   About Destinations
======================== */
.about-destinations {
  background: var(--light);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.destination-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 300px;
  display: block;
  box-shadow: var(--shadow);
}

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

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

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 25px;
  color: var(--white);
}

.destination-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

/* ========================
   Responsive (About Page)
======================== */
@media (max-width: 768px) {
  .page-hero {
    height: 300px;
  }

  .page-hero-content h1 {
    font-size: 2rem;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-intro-image {
    order: -1;
  }

  .about-stats {
    justify-content: center;
  }

  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .page-hero {
    height: 240px;
  }

  .about-stats {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

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

  .destinations-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================
   Gallery Section
======================== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 22px;
  border: 2px solid var(--gray-light);
  border-radius: 30px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--secondary);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3 / 2;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-item.hidden {
  opacity: 0;
  transform: scale(0.8);
}

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 22, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: var(--white);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay i {
  font-size: 2rem;
}

.gallery-video .gallery-item-overlay i {
  font-size: 3rem;
  color: var(--primary);
}

.gallery-item-overlay span {
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  padding: 0 10px;
}

/* ========================
   Gallery Pagination
======================== */
.gallery-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-btn {
  width: 42px;
  height: 42px;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--dark);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-btn:hover:not(:disabled) {
  background: var(--primary);
  color: var(--white);
}

.page-btn.active {
  background: var(--primary);
  color: var(--white);
}

.page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.page-prev,
.page-next {
  font-size: 0.85rem;
}

/* ========================
   Gallery Modal
======================== */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-image {
  max-width: 90vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  animation: modalFadeIn 0.3s ease;
}

.modal-video {
  width: 80vw;
  max-width: 900px;
  height: 50vw;
  max-height: 510px;
  border: none;
  border-radius: 6px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 10;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--primary);
}

.modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition);
  z-index: 10;
}

.modal-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.modal-prev {
  left: 20px;
}

.modal-next {
  right: 20px;
}

.modal-caption {
  color: var(--white);
  font-size: 1rem;
  margin-top: 15px;
  text-align: center;
  font-weight: 500;
}

.modal-counter {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-top: 5px;
}

/* Gallery Responsive */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
  }

  .modal-arrow {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .modal-prev { left: 10px; }
  .modal-next { right: 10px; }

  .modal-video {
    width: 92vw;
    height: 55vw;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .gallery-item {
    border-radius: 6px;
  }
}

/* ========================
   Terms & Conditions Page
======================== */
.terms-content {
  max-width: 860px;
  margin: 0 auto;
}

/* Table of Contents */
.terms-toc {
  background: var(--light);
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  padding: 30px 35px;
  margin-bottom: 50px;
}

.terms-toc h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--secondary);
  margin-bottom: 16px;
}

.terms-toc ol {
  list-style: decimal;
  padding-left: 22px;
  columns: 2;
  column-gap: 30px;
}

.terms-toc li {
  margin-bottom: 8px;
  font-size: 0.9rem;
  break-inside: avoid;
}

.terms-toc a {
  color: var(--secondary);
  transition: var(--transition);
}

.terms-toc a:hover {
  color: var(--primary);
}

/* Terms Blocks */
.terms-block {
  padding: 30px 0;
  border-bottom: 1px solid var(--gray-light);
  scroll-margin-top: 100px;
}

.terms-block:last-child {
  border-bottom: none;
}

.terms-block-icon {
  width: 50px;
  height: 50px;
  background: rgba(200, 150, 62, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.terms-block-icon i {
  font-size: 1.2rem;
  color: var(--primary);
}

.terms-block h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--secondary);
  margin-bottom: 14px;
}

.terms-block p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 10px;
}

.terms-block a {
  color: var(--primary);
  font-weight: 500;
  transition: var(--transition);
}

.terms-block a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Cancellation Table */
.terms-table-wrapper {
  overflow-x: auto;
  margin: 18px 0;
}

.terms-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.terms-table th,
.terms-table td {
  padding: 12px 18px;
  text-align: left;
  border: 1px solid var(--gray-light);
}

.terms-table thead th {
  background: var(--secondary);
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.terms-table tbody tr:nth-child(even) {
  background: var(--light);
}

.terms-table tbody td {
  color: #444;
}

/* Notice Box */
.terms-notice {
  display: flex;
  gap: 15px;
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  border-radius: 0 8px 8px 0;
  padding: 18px 22px;
  margin-top: 18px;
}

.terms-notice > i {
  color: #f59e0b;
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.terms-notice p {
  color: #92400e;
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.terms-notice p:last-child {
  margin-bottom: 0;
}

/* Terms Responsive */
@media (max-width: 768px) {
  .terms-toc ol {
    columns: 1;
  }

  .terms-toc {
    padding: 22px 20px;
  }

  .terms-table th,
  .terms-table td {
    padding: 10px 12px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .terms-notice {
    flex-direction: column;
    gap: 10px;
  }
}

/* ========================
   Contact Us Page
======================== */

/* Contact Info Cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  padding: 30px 25px;
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.contact-card-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 18px;
  background: rgba(200, 150, 62, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card-icon i {
  font-size: 1.5rem;
  color: var(--primary);
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 12px;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 4px;
  line-height: 1.6;
}

.contact-card a {
  color: var(--secondary);
  font-weight: 500;
  transition: var(--transition);
}

.contact-card a:hover {
  color: var(--primary);
}

/* Contact Grid (Form + Sidebar) */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  padding: 40px 35px;
}

.contact-form-wrapper h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 25px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form .form-group {
  margin-bottom: 18px;
  position: relative;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--secondary);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
  background: var(--light);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200, 150, 62, 0.15);
  background: var(--white);
}

.contact-form input.input-error,
.contact-form textarea.input-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.form-error {
  display: block;
  font-size: 0.78rem;
  color: #ef4444;
  margin-top: 4px;
}

.contact-form .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-success {
  background: #16a34a !important;
}

/* Contact Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-info-block {
  background: var(--light);
  border-radius: 10px;
  padding: 28px 25px;
  border-left: 4px solid var(--primary);
}

.contact-info-icon {
  width: 45px;
  height: 45px;
  background: rgba(200, 150, 62, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.contact-info-icon i {
  font-size: 1.1rem;
  color: var(--primary);
}

.contact-info-block h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 10px;
}

.contact-info-block p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 8px;
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 5px;
}

.contact-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.contact-social a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

/* Map */
.contact-map {
  line-height: 0;
}

.contact-map iframe {
  width: 100%;
  height: 450px;
}

/* Contact Responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-form-wrapper {
    padding: 28px 22px;
  }

  .contact-map iframe {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

/* ========================
   Animations
======================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================
   Responsive
======================== */
@media (max-width: 1024px) {
  .tour-card {
    min-width: calc(50% - 13px);
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .top-bar-contact {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .nav.open {
    max-height: 400px;
  }

  .nav-list {
    flex-direction: column;
    padding: 10px 20px;
  }

  .nav-link {
    padding: 12px 10px;
    border-bottom: 1px solid var(--gray-light);
  }

  .hero {
    height: 60vh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .tour-card {
    min-width: 100%;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .review-form-wrapper {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 50px 0;
  }

  .hero {
    height: 50vh;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .places-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }
}

/* ========================
   Tour Detail Modal
======================== */
.tour-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.tour-modal.active {
  opacity: 1;
  visibility: visible;
}

.tour-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 10;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.tour-modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--primary);
}

.tour-modal-body {
  background: var(--white);
  border-radius: 12px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  animation: modalFadeIn 0.3s ease;
}

.tour-modal-img {
  border-radius: 12px 0 0 12px;
  overflow: hidden;
}

.tour-modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tour-modal-details {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tour-modal-details h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--dark);
  margin: 0;
}

.tour-modal-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.tour-modal-duration {
  display: inline-block;
  background: var(--light);
  color: var(--dark);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  width: fit-content;
}

.tour-modal-duration::before {
  content: "\f017";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 6px;
  color: var(--primary);
}

.tour-modal-desc {
  color: var(--gray);
  line-height: 1.7;
  font-size: 0.95rem;
}

.tour-modal-includes h4 {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.tour-modal-includes h4 i {
  color: var(--primary);
  margin-right: 6px;
}

.tour-modal-includes ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tour-modal-includes ul li {
  background: var(--light);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--dark);
}

.tour-modal-book {
  margin-top: 10px;
  text-align: center;
  width: fit-content;
}

@media (max-width: 768px) {
  .tour-modal-body {
    grid-template-columns: 1fr;
    max-height: 85vh;
  }

  .tour-modal-img {
    border-radius: 12px 12px 0 0;
    max-height: 250px;
  }

  .tour-modal-details {
    padding: 20px;
  }
  
  .partner-logo {
    opacity: 1;
  }
}
