/* ============================================
   VAMANA TOUR - Consolidated CSS
   ============================================ */

/* ============ GLOBAL STYLES ============ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

/* ============ CONTAINERS & LAYOUTS ============ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-detail {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-index {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============ HEADER STYLES ============ */

header {
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-nav-detail,
.header-nav-about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-detail,
.logo-about {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.05em;
}

.nav-links-detail,
.nav-links-about {
  display: flex;
  gap: 2rem;
}

.nav-links-detail a,
.nav-links-about a {
  color: #333;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-links-detail a:hover,
.nav-links-about a:hover {
  color: #666;
}

.header-actions-detail,
.header-actions-about {
  display: flex;
  gap: 1rem;
}

.btn-register-detail,
.btn-signin-detail,
.btn-register-about,
.btn-signin-about {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-register-detail,
.btn-register-about {
  background-color: #f0f0f0;
  color: #1a1a1a;
}

.btn-register-detail:hover,
.btn-register-about:hover {
  background-color: #e0e0e0;
}

.btn-signin-detail,
.btn-signin-about {
  background-color: #1a1a1a;
  color: #fff;
}

.btn-signin-detail:hover,
.btn-signin-about:hover {
  background-color: #333;
}

/* ============ DETAIL PAGE ============ */

.detail-hero-section {
  padding: 3rem 2rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.section-pre {
  font-size: 0.9rem;
  color: #666;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.detail-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #1a1a1a;
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.detail-gallery img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Two-column layout */
.detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.detail-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.detail-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Card styles */
.card-detail {
  background-color: #f9f9f9;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card-detail h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.package-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.package-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.package-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #333;
}

.icon {
  font-size: 1.25rem;
  min-width: 1.5rem;
}

/* Accordion styles */
.accordion-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 0.75rem;
  overflow: hidden;
}

.accordion-toggle {
  width: 100%;
  padding: 1rem;
  background-color: #f9f9f9;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.accordion-toggle:hover {
  background-color: #efefef;
}

.accordion-icon {
  transition: transform 0.3s ease;
  display: inline-block;
}

.accordion-toggle.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #fff;
}

.accordion-content.active {
  max-height: 500px;
}

.accordion-body {
  padding: 1rem;
  color: #333;
}

.accordion-body ul {
  list-style: none;
  padding: 0;
}

.accordion-body li {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f0f0f0;
}

.accordion-body li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.accordion-body strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #1a1a1a;
}

.accordion-body p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

/* Right sidebar cards */
.reservation-card,
.pricing-card {
  background-color: #f9f9f9;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.reservation-card h3,
.pricing-card h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
}

.pricing-card li {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.pricing-card p {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

/* Form styles */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1a1a1a;
  box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Vehicle options */
.vehicle-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.vehicle-card {
  position: relative;
  cursor: pointer;
  border: 2px solid #ddd;
  border-radius: 0.75rem;
  padding: 1rem;
  transition: all 0.3s ease;
  background-color: #fff;
}

.vehicle-card input[type='radio'] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.vehicle-card input[type='radio']:checked+.vehicle-image+.vehicle-info,
.vehicle-card input[type='radio']:checked+.vehicle-image~.vehicle-info {
  border-color: #1a1a1a;
}

.vehicle-card:has(input:checked) {
  border-color: #1a1a1a;
  background-color: #f0f0f0;
}

.vehicle-card:hover {
  border-color: #999;
}

.vehicle-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 150px;
  margin-bottom: 0.75rem;
  border-radius: 0.5rem;
  background-color: #f5f5f5;
  overflow: hidden;
}

.vehicle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle-info {
  text-align: center;
}

.vehicle-info h4 {
  font-size: 1rem;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}

.vehicle-info p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.vehicle-badge {
  display: inline-block;
  background-color: #1a1a1a;
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Button styles */
.btn-submit,
.btn-book-now {
  width: 100%;
  padding: 1rem;
  background-color: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-submit:hover,
.btn-book-now:hover {
  background-color: #333;
}

/* ============ ABOUT PAGE ============ */

.about-hero-section {
  background: #292929;
  color: #fff;
  padding: 5rem 2rem;
  text-align: center;
}

.about-hero-content {
  max-width: 1200px;
  margin: 0 auto;
}

.about-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
}

/* Who We Are Section */
.who-we-are-section {
  padding: 4rem 2rem;
  background-color: #fff;
}

.who-we-are-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.who-we-are-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.who-we-are-text p {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.who-we-are-image img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Mission Section */
.mission-section {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}

.mission-section .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #1a1a1a;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.mission-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 0.75rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-5px);
}

.mission-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.mission-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.mission-card p {
  color: #666;
  line-height: 1.8;
}

/* Why Choose Us Section */
.why-choose-us-section {
  padding: 4rem 2rem;
  background-color: #fff;
}

.why-choose-us-section .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #1a1a1a;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.why-card {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 0.75rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.why-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #ddd;
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}

.why-card p {
  color: #666;
  font-size: 0.95rem;
}

/* Team Section */
.team-section {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}

.team-section .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #1a1a1a;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-card {
  background-color: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: #e0e0e0;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: #1a1a1a;
}

.team-role {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.team-bio {
  color: #999;
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Stats Section */
.stats-section {
  padding: 4rem 2rem;
  background: #292929;
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.95;
}

/* Testimonials Section */
.testimonials-section {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.section-sub {
  color: #666;
  margin-bottom: 2rem;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: #1a1a1a;
  color: #fff;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.testimonial-quote {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 0.95rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-meta {
  flex: 1;
}

.testimonial-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.testimonial-rating {
  color: #ffc107;
  font-size: 0.85rem;
}

/* CTA Section */
.cta-section {
  padding: 3rem 2rem;
  background: #292929;
  color: #fff;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.cta-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-content p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  opacity: 0.95;
}

.contact-section h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.contact-icon {
  font-size: 1.25rem;
}

/* Footer */
footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  font-size: 0.9rem;
}

.footer-left {
  text-align: left;
}

.footer-right {
  text-align: right;
}

/* Footer - Index */
.footer-index {
  background-color: #1a1a1a;
  color: #fff;
  padding: 2rem;
  text-align: center;
}

.footer-content-index {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  font-size: 0.9rem;
}

.footer-left-index {
  text-align: left;
}

.footer-right-index {
  text-align: right;
}

/* ============ RESPONSIVE DESIGN ============ */

@media (max-width: 768px) {
  .nav-links-index {
    gap: 1rem;
    font-size: 0.85rem;
  }

  .hero-content-index h1 {
    font-size: 2.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .popular-tours-grid {
    grid-template-columns: 1fr;
  }

  .about-us-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .footer-content-index {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-left-index,
  .footer-right-index {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .logo-index {
    font-size: 1rem;
  }

  .nav-links-index {
    gap: 0.5rem;
    font-size: 0.75rem;
  }

  .btn-register-index,
  .btn-signin-index {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }

  .hero-content-index h1 {
    font-size: 1.75rem;
  }

  .hero-subtitle-text {
    font-size: 0.85rem;
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .about-us-text h3 {
    font-size: 1.75rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-icon {
    font-size: 2.5rem;
  }
}

/* ============ INDEX PAGE STYLES ============ */

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%),
    url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?q=80&w=1600&auto=format&fit=crop') center/cover;
  color: #fff;
  padding: 5rem 2rem;
  text-align: center;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease 0.2s backwards;
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-primary,
.btn-secondary {
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: #fff;
  color: #667eea;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Services Section */
.services-section {
  padding: 4rem 2rem;
  background-color: #fff;
}

.services-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #111;
  font-weight: 700;
}

.services-section .section-sub {
  text-align: center;
  color: #6b6b6b;
  margin-bottom: 3rem;
  font-size: 1rem;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #1a1a1a;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background-color: #f5f5f5;
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.service-card:hover {
  background-color: #fff;
  border: 1px solid #2b7cff;
  box-shadow: 0 4px 12px rgba(43, 124, 255, 0.1);
  transform: translateY(-4px);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.25rem;
  display: block;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #111;
  font-weight: 600;
}

.service-card p {
  color: #6b6b6b;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Testimonials - Index */
.testimonials-section {
  padding: 4rem 2rem;
  background-color: #fff;
}

.testimonials-section .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.testimonials-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* ============ SERVICE PAGE STYLES ============ */

.header-service {
  background-color: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-nav-service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-service {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.05em;
}

.nav-links-service {
  display: flex;
  gap: 2rem;
}

.nav-links-service a {
  color: #333;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-links-service a:hover,
.nav-links-service a.active {
  color: #667eea;
  font-weight: 600;
}

.header-actions-service {
  display: flex;
  gap: 1rem;
}

.btn-register-service,
.btn-signin-service {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-register-service {
  background-color: #f0f0f0;
  color: #1a1a1a;
}

.btn-register-service:hover {
  background-color: #e0e0e0;
}

.btn-signin-service {
  background-color: #1a1a1a;
  color: #fff;
}

.btn-signin-service:hover {
  background-color: #333;
}

.hero-service {
  background: #292929;
  background-image: url('https://images.unsplash.com/photo-1537225228614-b4c96ce6b9d4?q=80&w=1200');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-overlay-service {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(102, 126, 234, 0.7);
  z-index: 0;
}

.hero-content-service {
  position: relative;
  z-index: 1;
}

.hero-content-service h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-content-service p {
  font-size: 1.1rem;
  opacity: 0.95;
}

.container-service {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.activities-section {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}

.activities-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.activity-card {
  background-color: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.card-media {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background-color: #f0f0f0;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.activity-card:hover .card-media img {
  transform: scale(1.05);
}

.card-body {
  padding: 1.25rem;
}

.card-body h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
  font-weight: 600;
}

.card-meta {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0.75rem;
}

.card-actions {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  justify-content: space-between;
  align-items: center;
}

.bookmark {
  flex: 0 0 auto;
  padding: 0.5rem;
  background-color: transparent;
  border: 1px solid #ddd;
}

.btn-outline {
  padding: 0.5rem 1rem;
  border: 1px solid #333;
  border-radius: 0.4rem;
  background-color: transparent;
  color: #333;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: #333;
  color: #fff;
}

.card-footer {
  display: flex;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.rating {
  color: #333;
  font-weight: 600;
}

.reviews {
  color: #999;
}

/* CTA and Contact Sections */
.cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0;
  align-items: stretch;
}

.cta-box {
  background-color: #2a2a2a;
  padding: 3rem;
  border-radius: 0.75rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.cta-box h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-box p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  justify-content: center;
}

.contact-box {
  background-color: #2a2a2a;
  padding: 3rem;
  border-radius: 0.75rem;
  color: #fff;
}

.contact-box h4 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.contact-box p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.8;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 2rem;
  text-align: center;
}

.site-footer .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  font-size: 0.9rem;
}

.f-left {
  text-align: left;
}

.f-right {
  text-align: right;
}

.card-btn {
  width: 100%;
  padding: 0.75rem;
  background-color: #667eea;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.card-btn:hover {
  background-color: #764ba2;
}

/* Footer - Service */
.footer-service {
  background-color: #1a1a1a;
  color: #fff;
  padding: 2rem;
  text-align: center;
}

.footer-content-service {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  font-size: 0.9rem;
}

.footer-left-service {
  text-align: left;
}

.footer-right-service {
  text-align: right;
}

.cta-btn-service {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: #fff;
  color: #667eea;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
}

.cta-btn-service:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* SERVICE PAGE ============ */

.service-hero-section {
  background: #292929;
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

.service-hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.service-hero-section p {
  font-size: 1.1rem;
  opacity: 0.95;
}

.services-listing {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}

.services-listing .container-detail {
  max-width: 1200px;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.activity-card {
  background-color: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.activity-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  position: relative;
}

.activity-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #667eea;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.activity-content {
  padding: 1.5rem;
}

.activity-title {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
  font-weight: 600;
}

.activity-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #666;
}

.activity-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffc107;
  font-weight: 600;
}

.activity-price {
  font-size: 1.25rem;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 1rem;
}

.activity-description {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  min-height: 60px;
}

.activity-footer {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.btn-explore {
  flex: 1;
  padding: 0.75rem;
  background-color: #667eea;
  color: #fff;
  border-radius: 0.5rem;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.3s ease;
}

.btn-explore:hover {
  background-color: #764ba2;
}

.btn-favorite {
  padding: 0.75rem 1rem;
  background-color: #f0f0f0;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-favorite:hover {
  background-color: #e0e0e0;
}

/* ============ INDEX PAGE STYLES ============ */

.header-index {
  background-color: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-nav-index {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-index {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.05em;
}

.nav-links-index {
  display: flex;
  gap: 2rem;
}

.nav-links-index a {
  color: #333;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
  font-weight: 500;
}

.nav-links-index a:hover,
.nav-links-index a.active {
  color: #667eea;
  font-weight: 600;
}

.nav-links-index a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #667eea;
  transition: width 0.3s ease;
}

.nav-links-index a:hover::after,
.nav-links-index a.active::after {
  width: 100%;
}

.header-actions-index {
  display: flex;
  gap: 1rem;
}

.btn-register-index,
.btn-signin-index {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-register-index {
  background-color: #f0f0f0;
  color: #1a1a1a;
}

.btn-register-index:hover {
  background-color: #e0e0e0;
}

.btn-signin-index {
  background-color: #1a1a1a;
  color: #fff;
}

.btn-signin-index:hover {
  background-color: #333;
}

/* Hero Section */
.hero-index {
  background: #292929;
  background-image: url('https://images.unsplash.com/photo-1537225228614-b4c96ce6b9d4?q=80&w=1200');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  padding: 8rem 2rem;
  text-align: center;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content-index {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-subtitle-text {
  font-size: 0.9rem;
  color: #ddd;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.hero-content-index h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.hero-desc {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  line-height: 1.7;
}

/* About Us Section */
.about-us-section {
  padding: 4rem 2rem;
  background-color: #fff;
}

.about-us-section>h2 {
  font-size: 2rem;
  text-align: left;
  margin-bottom: 0.25rem;
  color: #333;
  font-weight: 600;
}

.about-us-section>.section-sub {
  text-align: left;
  color: #999;
  margin-bottom: 2rem;
}

.about-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-us-text h2 {
  font-size: 0.75rem;
  color: #2b7cff;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.about-us-text h3 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.about-us-text p {
  color: #6b6b6b;
  margin-bottom: 1.25rem;
  line-height: 1.8;
  font-size: 0.95rem;
}

.about-us-image img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Popular Tours Section */
.popular-tours-section {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}

.popular-tours-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #111;
  font-weight: 700;
}

.popular-tours-section .section-sub {
  display: none;
}

.popular-tours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.tour-card {
  background-color: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: left;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.tour-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.tour-card:hover img {
  transform: scale(1.05);
}

.tour-card h3 {
  font-size: 1rem;
  color: #111;
  padding: 1.25rem 1.25rem 0;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.tour-card p {
  color: #6b6b6b;
  font-size: 0.85rem;
  padding: 0 1.25rem;
}

.tour-rating {
  color: #2b7cff;
  font-weight: 600;
  display: none;
  padding: 0.75rem 1rem;
}

.tour-btn {
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  color: #111;
  border: 1px solid #111;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  margin: 1rem;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.tour-btn:hover {
  border-color: #111;
  background-color: #111;
  color: #fff;
}

.tour-explore-btn {
  text-align: center;
  padding-top: 2rem;
}

.explore-btn {
  padding: 0.75rem 2rem;
  background-color: #111;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.explore-btn:hover {
  background-color: #333;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Why Choose Us Section */
.why-choose-section {
  padding: 4rem 2rem;
  background-color: #fff;
}

.why-choose-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #111;
  font-weight: 700;
}

.why-choose-section .section-sub {
  text-align: center;
  color: #6b6b6b;
  margin-bottom: 3rem;
}

.why-desc {
  display: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.why-card {
  text-align: center;
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.why-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-size: 1rem;
  color: #111;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.why-card p {
  color: #6b6b6b;
  font-size: 0.85rem;
}

/* Vehicle Fleet Section */
.vehicle-fleet-section {
  padding: 4rem 2rem;
  background-color: #fff;
}

.vehicle-fleet-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #111;
  font-weight: 700;
}

.vehicle-fleet-section .section-sub {
  text-align: center;
  color: #6b6b6b;
  margin-bottom: 3rem;
}

.vehicle-fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  align-items: flex-start;
}

.vehicle-item {
  text-align: center;
  padding: 1rem;
}

.vehicle-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.vehicle-item:hover img {
  transform: scale(1.05);
}

.vehicle-item p {
  color: #1a1a1a;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
}

/* Gallery Section */
.gallery-section {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}

.gallery-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #111;
  font-weight: 700;
}

.gallery-section .section-sub {
  display: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  grid-auto-rows: 150px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

/* Testimonials Section - Index with Slider */
.testimonials-index {
  padding: 4rem 2rem;
  background-color: #fff;
}

.testimonials-index h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #111;
  font-weight: 700;
}

.testimonials-index .section-sub {
  text-align: center;
  color: #6b6b6b;
  margin-bottom: 3rem;
}

.testimonials-wrapper {
  position: relative;
}

.testimonials-slider {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0;
  background-color: #1a1a1a;
  border-radius: 0.75rem;
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card-large {
  min-width: 100%;
  background-color: #1a1a1a;
  color: #fff;
  padding: 2rem 3rem;
  border-radius: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.testimonial-text {
  font-style: italic;
  line-height: 1.8;
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 0;
}

.testimonial-author-large {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.testimonial-author-large img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author-large h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.testimonial-author-large p {
  color: #ffc107;
  font-size: 0.85rem;
}

.testimonials-nav {
  position: absolute;
  top: 50%;
  left: 1rem;
  right: 1rem;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.testimonials-prev,
.testimonials-next {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.testimonials-prev:hover,
.testimonials-next:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

/* CTA Section */
.cta-section-index {
  background: #111;
  color: #fff;
  padding: 4rem 2rem;
}

.cta-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.cta-left h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-left p {
  color: #ccc;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.cta-right h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-item span {
  font-size: 1.5rem;
  min-width: 30px;
}

.contact-item p {
  color: #ccc;
  margin: 0;
}



/* ============ RESPONSIVE DESIGN ============ */

@media (max-width: 768px) {

  .header-nav-index,
  .header-nav-detail,
  .header-nav-about,
  .header-nav-service {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
  }

  .nav-links-index,
  .nav-links-detail,
  .nav-links-about,
  .nav-links-service {
    gap: 1rem;
    flex: 1;
    order: 3;
    width: 100%;
    font-size: 0.85rem;
  }

  .hero-index,
  .hero-service {
    padding: 3rem 1rem;
    min-height: 400px;
  }

  .hero-content-index h1,
  .hero-content-service h1 {
    font-size: 2rem;
  }

  .hero-subtitle-text {
    font-size: 0.9rem;
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .hero-content-index p,
  .hero-content-service p {
    font-size: 1rem;
  }

  .about-us-grid,
  .detail-grid,
  .who-we-are-grid,
  .cta-wrapper {
    grid-template-columns: 1fr;
  }

  .popular-tours-grid,
  .gallery-grid,
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vehicle-fleet-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .detail-title,
  .about-hero-title {
    font-size: 2rem;
  }

  .detail-gallery {
    grid-template-columns: 1fr;
  }

  .cta-container {
    grid-template-columns: 1fr;
  }

  .cta {
    grid-template-columns: 1fr;
  }

  .footer-content,
  .footer-content-index,
  .footer-content-service {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-left,
  .footer-right,
  .footer-left-index,
  .footer-right-index,
  .footer-left-service,
  .footer-right-service {
    text-align: center;
  }

  .hero-title {
    font-size: 2rem;
  }

  .mission-grid,
  .team-grid,
  .services-grid,
  .activities-grid {
    grid-template-columns: 1fr;
  }

  .package-card {
    grid-template-columns: 1fr;
  }

  .vehicle-options {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .activity-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card-large {
    min-width: 100%;
  }

  .cta-content-index h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {

  .header-nav-index,
  .header-nav-detail,
  .header-nav-about,
  .header-nav-service {
    padding: 0.75rem;
  }

  .logo-index,
  .logo-detail,
  .logo-about,
  .logo-service {
    font-size: 1rem;
  }

  .nav-links-index,
  .nav-links-detail,
  .nav-links-about,
  .nav-links-service {
    gap: 0.5rem;
    font-size: 0.75rem;
  }

  .hero-index,
  .hero-service {
    padding: 2rem 1rem;
    min-height: 250px;
  }

  .hero-content-index h1,
  .hero-content-service h1 {
    font-size: 1.3rem;
  }

  .hero-subtitle-text {
    font-size: 0.8rem;
  }

  .hero-desc {
    font-size: 0.85rem;
  }

  .hero-content-index p,
  .hero-content-service p {
    font-size: 0.85rem;
  }

  .detail-title,
  .about-hero-title,
  .hero-title {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .cta-content-index h2 {
    font-size: 1.2rem;
  }

  .popular-tours-grid,
  .gallery-grid,
  .vehicle-fleet-grid,
  .why-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.6rem;
    font-size: 0.9rem;
  }

  .btn-submit,
  .btn-book-now,
  .cta-btn-index,
  .cta-btn-primary,
  .card-btn,
  .tour-btn,
  .explore-btn {
    padding: 0.6rem 0.9rem;
    font-size: 0.8rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .cta-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonial-card,
  .testimonial-card-large {
    padding: 1rem;
    min-width: 100%;
  }

  .vehicle-badge {
    font-size: 0.65rem;
    padding: 0.2rem 0.4rem;
  }

  .footer-content-index,
  .footer-content-service,
  .about-us-grid,
  .cta-wrapper {
    grid-template-columns: 1fr;
  }

  .activities-grid {
    grid-template-columns: 1fr;
  }

  .tour-card img {
    height: 150px;
  }

  .testimonials-slider {
    gap: 1rem;
  }

  .contact-item {
    gap: 0.75rem;
  }
}

/* ============ REFINED STYLING FOR MOCKUP ============ */

/* Fine-tune service cards */
.service-card {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08) !important;
  padding: 1.75rem 1.5rem !important;
}

.service-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  transform: translateY(-4px) !important;
}

.service-icon {
  font-size: 2.25rem !important;
}

/* Tour card refinements */
.tour-card {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08) !important;
  border-radius: 0.375rem !important;
}

.tour-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12) !important;
  transform: translateY(-6px) !important;
}

/* Section spacing */
.services-section,
.about-us-section,
.popular-tours-section,
.why-choose-section,
.vehicle-fleet-section,
.gallery-section,
.testimonials-index {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}