/* Vision Trip Page Styles */

/* Hero Section */
.hero-section {
  padding: 8rem 0 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-content h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hero-content p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #fff;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid transparent;
}

.hero-buttons .btn-primary {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  border-color: transparent;
}

.hero-buttons .btn-primary:hover {
  background: linear-gradient(135deg, #2980b9, #1f6391);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

.hero-buttons .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.hero-buttons .btn-secondary:hover {
  background: #fff;
  color: #3498db;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Video & Description Section */
.vision-video {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  align-items: flex-start;
  padding: 6rem 0;
}

.vision-video .video-wrapper {
  flex: 1;
  min-width: 320px;
}

/* YouTube Video Container */
.youtube-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.youtube-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.youtube-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

/* Fallback for older iframe styles */
.vision-video iframe {
  width: 100%;
  height: 315px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.vision-video video {
  width: 100%;
  height: 315px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.vision-video .video-description {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-left: 1rem;
}

.vision-video .video-description h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
}

.vision-video .video-description p {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 0;
  background: transparent;
  margin: 4rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonials {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  justify-content: center;
}

.testimonial {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: "\201C";
  font-size: 4rem;
  color: #3498db;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-family: Georgia, serif;
  opacity: 0.3;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  font-style: italic;
  color: #2c3e50;
  line-height: 1.6;
  margin: 0;
  padding-left: 2rem;
  font-size: 1.05rem;
}

.testimonial-author {
  padding-left: 2rem;
  border-left: 3px solid #3498db;
  margin-left: 1rem;
}

.testimonial-author strong {
  display: block;
  color: #2c3e50;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.testimonial-author span {
  color: #7f8c8d;
  font-size: 0.9rem;
  font-style: normal;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  text-align: center;
  background: transparent;
  border-radius: 20px;
  margin: 4rem 0;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid transparent;
}

.cta-buttons .btn-primary {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  border-color: transparent;
}

.cta-buttons .btn-primary:hover {
  background: linear-gradient(135deg, #2980b9, #1f6391);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.cta-buttons .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.cta-buttons .btn-secondary:hover {
  background: #fff;
  color: #3498db;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    max-width: 300px;
  }

  .vision-video {
    flex-direction: column;
    gap: 2rem;
    padding: 4rem 0;
  }

  .vision-video .video-wrapper {
    width: 100%;
    order: 1;
  }

  .vision-video .video-description {
    order: 2;
    padding-left: 0;
    text-align: center;
  }

  .vision-video .video-description h2 {
    font-size: 1.8rem;
  }

  .testimonials-section {
    padding: 4rem 0;
    margin: 2rem 0;
  }

  .testimonials h2 {
    font-size: 2rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial {
    padding: 2rem;
  }

  .testimonial::before {
    font-size: 3rem;
    top: 0.5rem;
    left: 1rem;
  }

  .cta-section {
    padding: 4rem 0;
    margin: 2rem 0;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 1.1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 6rem 0 4rem;
  }

  .hero-content {
    padding: 0 1rem;
  }

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

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

  .vision-video {
    padding: 3rem 0;
  }

  .vision-video .video-description h2 {
    font-size: 1.5rem;
  }

  .vision-video .video-description p {
    font-size: 1rem;
  }

  .testimonials-section {
    padding: 3rem 0;
  }

  .testimonials h2 {
    font-size: 1.8rem;
  }

  .testimonial {
    padding: 1.5rem;
  }

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

  .cta-section {
    padding: 3rem 0;
  }

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

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

/* Animation Effects */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vision-video,
.testimonials-section,
.cta-section {
  animation: fadeInUp 0.8s ease-out;
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
} 