@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background-color: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 28px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
}

.nav-links a.active,
.nav-links a:hover {
  color: #333;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: red;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid #eee;
  padding: 8px 12px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 18px;
  color: #333;
  margin-left: auto;
}

.mobile-menu,
.mobile-menu-overlay {
  display: none;
}

.btn {
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(to right, #ff7e5f, #feb47b);
  color: #fff;
}

.btn-secondary {
  background-color: #f0f0f0;
  color: #333;
}

/* Hero Section */
.hero {
  padding-bottom: 100px;
  background-color: #fff;
}

/* Compact hero for inner pages (non-home pages) */
.hero.hero--compact {
  padding-bottom: 42px;
}

.hero.hero--compact .hero-content p {
  margin-bottom: 16px;
}

.hero.hero--compact .hero-images {
  height: 320px;
}

/* Make the floating circles smaller on inner pages */
.hero.hero--compact .hero-img-1 {
  width: 190px;
  height: 190px;
  transform: translate(-86%, -78%);
}

.hero.hero--compact .hero-img-2 {
  width: 150px;
  height: 150px;
}

.hero.hero--compact .hero-img-3 {
  width: 190px;
  height: 190px;
  left: 68%;
}

@media (max-width: 768px) {
  .hero.hero--compact {
    padding-bottom: 22px;
  }

  .hero.hero--compact .hero-images {
    height: 220px;
  }

  .hero.hero--compact .hero-img-1 {
    width: 140px;
    height: 140px;
    transform: translate(-82%, -70%);
  }

  .hero.hero--compact .hero-img-2 {
    width: 110px;
    height: 110px;
  }

  .hero.hero--compact .hero-img-3 {
    width: 140px;
    height: 140px;
    left: 70%;
  }
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  max-width: 50%;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* legacy highlight span (index uses it) */
.hero-content h1 span {
  color: #ff7e5f;
}

/* Inner pages hero h1 - use theme color */
.hero.hero--compact .hero-content h1 {
  color: #ff7e5f;
}

.hero-content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
  max-width: 450px;
}

.search-form-container {
  margin-top: -70px;
  position: relative;
  z-index: 10;
}

.search-form {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Old form layout (kept for compatibility if you re-enable it later) */
.search-form form {
  display: flex;
  align-items: center;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.form-group input {
  border: none;
  background: none;
  font-size: 16px;
  color: #888;
}

.form-group input:focus {
  outline: none;
}

/* Showcase content (replacing the form) */
.search-form.showcase {
  padding: 22px 24px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.showcase-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
}

.showcase-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff5f1;
  color: #ff7e5f;
  font-size: 18px;
}

.showcase-label {
  font-size: 12px;
  color: #888;
  margin-bottom: 4px;
}

.showcase-value {
  font-size: 16px;
  font-weight: 700;
  color: #333;
}

.btn-search {
  background: linear-gradient(to right, #ff7e5f, #feb47b);
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-cta {
  justify-self: end;
  text-decoration: none;
}

.hero-images {
  position: relative;
  width: 50%;
  height: 500px;
}

.hero-images img {
  position: absolute;
  border-radius: 50%;
  object-fit: cover;
  border: 8px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-img-1 {
  width: 250px;
  height: 250px;
  top: 50%;
  left: 50%;
  transform: translate(-90%, -80%);
  background-color: #ffd700;
}

.hero-img-2 {
  width: 200px;
  height: 200px;
  top: 0;
  left: 60%;
  transform: translateX(-50%);
  background-color: #1e90ff;
}

.hero-img-3 {
  width: 250px;
  height: 250px;
  top: 55%;
  left: 65%;
  transform: translate(-50%, -50%);
  background-color: #32cd32;
}

/* Revolutionary Travel Section */
.revolutionary-travel {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background-color: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.feature-card .card-icon {
  font-size: 30px;
  margin-bottom: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.learn-more {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.learn-more i {
  transition: transform 0.3s ease;
}

.learn-more:hover i {
  transform: translateX(5px);
}

.green-card .card-icon {
  background-color: #e0f5e9;
  color: #34c759;
}
.yellow-card .card-icon {
  background-color: #fff5e0;
  color: #ff9500;
}
.blue-card .card-icon {
  background-color: #e0f7ff;
  color: #007aff;
}
.green-card {
  background-color: #f0fff6;
}
.yellow-card {
  background-color: #fffaf0;
}
.blue-card {
  background-color: #f0faff;
}

/* Top Tour Section */
.top-tour {
  padding: 80px 0;
  background-color: #fff;
}

.section-header-split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  gap: 16px;
}

.section-header-left h2 {
  font-size: 40px;
  font-weight: 700;
}
.section-header-left p {
  font-size: 16px;
  color: #666;
}

.tour-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.tour-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  color: #fff;
}

.tour-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.tour-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.tour-info h3 {
  font-size: 24px;
  font-weight: 600;
}
.tour-info p {
  font-size: 14px;
}

/* Explore The World Section */
.explore-world {
  padding: 80px 0;
  background-color: #fff;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.explore-card {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
}

.explore-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.explore-card .card-body {
  padding: 20px;
}

.explore-card .card-rating {
  font-size: 14px;
  color: #ffc107;
  margin-bottom: 10px;
}

.explore-card .card-rating i {
  margin-right: 5px;
}

.explore-card .card-title-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.explore-card .card-title-price h3 {
  font-size: 18px;
  font-weight: 600;
}

.explore-card .price.new {
  background-color: #ff7e5f;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: 600;
}

.explore-card .card-location,
.explore-card .card-country,
.explore-card .card-availability {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

/* Explore-world now hides price and availability (content removed in HTML, this is extra safety) */
.explore-card .price,
.explore-card .card-availability {
  display: none;
}

/* Services Banner Section */
.services-banner {
  padding: 80px 0;
  background: linear-gradient(to right, #ff7e5f, #feb47b);
  color: #fff;
}

.services-banner .section-header h2 {
  color: #fff;
}

.services-banner .section-header p {
  color: #fff;
  opacity: 0.9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.service-card {
  background-color: #fff;
  color: #333;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
}

.service-card .service-icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: #ff7e5f;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #666;
}

/* Passion for Travel Section */
.passion-travel {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.passion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.passion-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  color: #fff;
}

.passion-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.passion-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}

.passion-info h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
}

.passion-info p {
  font-size: 14px;
}

.passion-info p i {
  color: #ffc107;
  margin-right: 5px;
}

.passion-travel .section-header {
  text-align: left;
}

.passion-travel .section-header p {
  margin: 0;
}

/* Subscribe Section */
.subscribe-section {
  padding: 60px 0;
}

.subscribe-content {
  background: linear-gradient(to right, #ff7e5f, #feb47b);
  color: #fff;
  padding: 60px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.subscribe-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.subscribe-text p {
  opacity: 0.9;
}

.btn-contact {
  background-color: #fff;
  color: #ff7e5f;
  border: none;
  padding: 15px 26px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.15s ease;
}

.btn-contact:hover {
  transform: translateY(-1px);
}

/* Footer Section */
.footer {
  background-color: #fff;
  padding: 72px 0 24px;
  border-top: 1px solid #eee;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr;
  gap: 34px;
  align-items: start;
}

.footer-column h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #222;
}

.quick-links,
.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-links li,
.contact-info li {
  margin-bottom: 10px;
  color: #555;
}

.quick-links a {
  text-decoration: none;
  color: #666;
  font-weight: 600;
}

.quick-links a:hover {
  color: #ff7e5f;
}

.contact-info i {
  width: 18px;
  color: #ff7e5f;
  margin-right: 8px;
}

.contact-info a {
  color: #666;
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  color: #ff7e5f;
}

.whatsapp-qrcode {
  margin-top: 12px;
}

.qrcode-label {
  font-size: 12px;
  color: #888;
  margin-bottom: 8px;
}

.whatsapp-qrcode img {
  width: 120px;
  height: auto;
  border-radius: 12px;
  border: 1px solid #eee;
  background: #fff;
  padding: 8px;
}

.quick-message-form .form-group {
  margin-bottom: 12px;
}

.quick-message-form input,
.quick-message-form textarea {
  width: 100%;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  background: #fff;
}

.quick-message-form textarea {
  resize: vertical;
}

.quick-message-form .btn-primary {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.phone-error-message {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #e74c3c;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid #eee;
}

.footer-bottom .copyright {
  font-size: 12px;
  color: #888;
  line-height: 1.6;
}

/* Success modal (shared) */
.success-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
}

.success-content {
  width: min(92vw, 420px);
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.success-icon {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  margin: 0 auto 12px;
  background: #f0fff6;
  color: #34c759;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 26px;
}

.success-btn {
  margin-top: 14px;
  border: none;
  border-radius: 12px;
  padding: 10px 16px;
  font-weight: 800;
  background: linear-gradient(to right, #ff7e5f, #feb47b);
  color: #fff;
  cursor: pointer;
}

@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Navbar Language Switcher */
.language-switcher {
  position: relative;
}

.lang-btn {
  background: none;
  border: 1px solid #eee;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.lang-btn i {
  color: #ff7e5f;
}

.lang-dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  list-style: none;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  display: none;
  z-index: 20;
  overflow: hidden;
}

.lang-dropdown li a {
  display: block;
  padding: 8px 14px;
  white-space: nowrap;
  color: #333;
  text-decoration: none;
}

.lang-dropdown li a:hover {
  background: #f7f7f7;
}

.lang-dropdown.show {
  display: block;
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(to right, #ff7e5f, #feb47b);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 50;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* -------------------------------
   Responsive (ALL modules)
-------------------------------- */
.desktop-only {
  display: block;
}

@media (max-width: 992px) {
  .section-header h2,
  .section-header-left h2 {
    font-size: 32px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .tour-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .explore-grid,
  .passion-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tour-card img {
    height: 320px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 14px 0;
  }

  .navbar .container {
    justify-content: flex-start;
    gap: 12px;
  }

  .nav-links {
    display: none;
  }

  .nav-right {
    display: none;
  }

  .desktop-only {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .mobile-menu-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 60;
  }

  .mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(86vw, 360px);
    background: #fff;
    z-index: 61;
    transform: translateX(105%);
    transition: transform 0.25s ease;
    box-shadow: -20px 0 40px rgba(0, 0, 0, 0.12);
    padding: 18px;
  }

  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
  }

  .mobile-menu-title {
    font-weight: 700;
    font-size: 18px;
  }

  .mobile-menu-close {
    background: none;
    border: 1px solid #eee;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 18px;
  }

  .mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0;
    margin: 0;
  }

  .mobile-nav-links a {
    display: block;
    padding: 12px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
  }

  .mobile-nav-links a.active,
  .mobile-nav-links a:hover {
    background: #fff5f1;
    color: #ff7e5f;
  }

  .mobile-lang {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid #eee;
  }

  .mobile-lang-title {
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
  }

  .mobile-lang-actions {
    display: flex;
    gap: 10px;
  }

  .mobile-lang-btn {
    flex: 1;
    text-align: center;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #eee;
    text-decoration: none;
    color: #333;
    font-weight: 700;
  }

  .mobile-lang-btn.active {
    border-color: #ff7e5f;
    background: #fff5f1;
    color: #ff7e5f;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  body.mobile-menu-open .mobile-menu {
    transform: translateX(0);
  }

  body.mobile-menu-open .mobile-menu-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  /* Hero */
  .hero {
    padding-bottom: 70px;
  }

  .hero .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .hero-content {
    margin-top: 50px;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content p {
    margin-bottom: 20px;
  }

  .hero-images {
    width: 100%;
    height: 340px;
  }

  .hero-img-1 {
    width: 190px;
    height: 190px;
    transform: translate(-80%, -70%);
  }

  .hero-img-2 {
    width: 150px;
    height: 150px;
  }

  .hero-img-3 {
    width: 190px;
    height: 190px;
    left: 70%;
  }

  .search-form-container {
    margin-top: -40px;
  }

  .search-form.showcase {
    width: 100%;
    padding: 16px;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .btn-cta {
    width: 100%;
    justify-content: center;
  }

  /* Sections spacing and typography */
  .section-header {
    margin-bottom: 36px;
  }

  .section-header h2,
  .section-header-left h2 {
    font-size: 28px;
  }

  .top-tour,
  .explore-world,
  .revolutionary-travel,
  .services-banner,
  .passion-travel {
    padding: 56px 0;
  }

  .feature-card {
    padding: 24px;
  }

  .tour-cards,
  .explore-grid,
  .passion-grid {
    grid-template-columns: 1fr;
  }

  .tour-card img {
    height: 280px;
  }

  .passion-card img {
    height: 280px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .service-card {
    padding: 26px;
  }

  .subscribe-content {
    padding: 28px;
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-contact {
    width: 100%;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  footer {
    padding: 56px 0;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 420px) {
  .container {
    padding: 0 16px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .subscribe-text h2 {
    font-size: 24px;
  }
}

/* -------------------------------
   Inner pages: main inline styles extracted
-------------------------------- */

/* guide.html */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  border: 1px solid #eee;
  object-fit: cover;
}

/* travel.html */
.travel-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.travel-gallery-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.travel-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.travel-review {
  padding: 16px;
}

.review-text {
  color: #666;
  line-height: 1.7;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.author-avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  object-fit: cover;
}

.author-name {
  font-weight: 700;
  color: #333;
}

/* video.html */
.video-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.video-gallery-item {
  border-radius: 16px;
  overflow: hidden;
  height: 450px;
  background: #000;
}

.video-wrapper {
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
  display: block;
}

/* contact.html */
.contact-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.contact-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 18px;
}

.contact-icon {
  font-size: 24px;
  color: #ff7e5f;
  margin-bottom: 10px;
}

.contact-details h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.contact-details p {
  color: #666;
}

.contact-details a {
  color: #666;
  text-decoration: none;
  font-weight: 600;
}

.contact-details a:hover {
  color: #ff7e5f;
}

.whatsapp-card {
  margin-top: 18px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.whatsapp-card-main {
  min-width: 220px;
}

.whatsapp-card-main h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.whatsapp-card-main p {
  color: #666;
  margin-bottom: 8px;
}

.whatsapp-btn {
  display: inline-block;
  background: #fff5f1;
  color: #ff7e5f;
  border: 1px solid #ffd7cd;
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 800;
  text-decoration: none;
}

.whatsapp-qr {
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-qr img {
  width: 120px;
  border-radius: 12px;
  border: 1px solid #eee;
  padding: 8px;
  background: #fff;
}

.whatsapp-qr-caption {
  color: #888;
  font-size: 12px;
}

/* about.html */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px;
  align-items: start;
}

.about-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.about-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.about-card .about-text {
  color: #666;
  line-height: 1.9;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.about-feature {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 18px;
}

.about-feature-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #fff5f1;
  color: #ff7e5f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-feature-title {
  font-weight: 800;
}

.about-feature-desc {
  color: #666;
  font-size: 14px;
}

.license-card {
  margin-top: 22px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 18px;
}

.license-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.license-card img {
  max-width: 100%;
  border-radius: 14px;
  border: 1px solid #eee;
}

/* Responsive for extracted modules */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .travel-gallery-grid,
  .video-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .gallery-grid,
  .travel-gallery-grid,
  .video-gallery-grid,
  .contact-items {
    grid-template-columns: 1fr;
  }
}
