/* ============================================
   VANAMA TOUR - Custom CSS (Tailwind Integration)
   ============================================ */

/* Global Styles */
html {
  scroll-behavior: smooth;
}

.bg-gray-800, .bg-gray-900 {
  background-color: #292929 !important;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

/* Activity Card Custom Hover Effects */
.activity-card {
  transition: all 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-4px);
}

/* Testimonials Section */
.testimonials {
  padding: 4rem 0;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
  font-weight: 700;
}

.section-sub {
  color: #666;
  margin-bottom: 2rem;
}

.testimonials-wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.t-arrow {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #333;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.t-arrow:hover {
  color: #667eea;
}

.test-slider {
  flex: 1;
  min-height: 200px;
  display: flex;
  align-items: center;
}

.test-item {
  text-align: center;
}

.quote {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 0.95rem;
  color: #333;
}

.meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.stars {
  color: #ffc107;
  font-size: 0.85rem;
}

/* About Section */
.about-section {
  padding: 4rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h3 {
  font-size: 0.75rem;
  color: #2b7cff;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.about-text h2 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.about-text p {
  color: #6b6b6b;
  margin-bottom: 1.25rem;
  line-height: 1.8;
  font-size: 0.95rem;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal.visible {
  display: flex;
}

.modal-inner {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  padding: 0;
}

.modal img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  max-height: calc(100vh - 80px);
  object-fit: contain;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-text h2 {
    font-size: 1.75rem;
  }

  .testimonials-wrap {
    flex-direction: column;
  }

  .t-arrow {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.5rem;
  }

  .about-text p {
    font-size: 0.9rem;
  }

  .quote {
    font-size: 0.85rem;
  }
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.center {
  text-align: center;
}

/* Accordion Functionality */
.accordion-toggle {
  cursor: pointer;
  user-select: none;
}

.accordion-icon {
  transition: transform 0.3s ease;
  display: inline-block;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content.active {
  max-height: 500px;
  display: block !important;
}

/* Vehicle Selection */
.vehicle-option input:checked+div {
  border-color: #1f2937;
  background-color: #f9fafb;
  box-shadow: 0 0 0 3px rgba(31, 41, 55, 0.1);
}

.vehicle-option div {
  transition: all 0.3s ease;
}

/* Smooth Transitions */
* {
  transition-property: color, background-color, border-color;
  transition-timing-function: ease-in-out;
  transition-duration: 150ms;
}

input, textarea, select {
  transition: none;
}