/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans TC", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  position: fixed;
  top: 46px;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .header {
    top: 0;
  }
}

.navbar {
  padding: 15px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
  color: #2d3748;
}

.logo-icon {
  font-size: 24px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: #4a5568;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #ff6b6b;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #ff6b6b;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/1.jpg") center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-background {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content {
  max-width: 600px;
  color: white;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
  padding: 15px 30px;
  background: #ff6b6b;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease 0.4s both;
}

.cta-button:hover {
  background: #ff5252;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.popular-places {
  margin-top: 50px;
  animation: fadeInUp 1s ease 0.6s both;
}

.popular-label {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 15px;
  display: block;
}

.places-grid {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.place-card {
  width: 80px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.place-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Stats Section */
.stats {
  padding: 80px 0;
  background: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 10px;
}

.stat-label {
  color: #718096;
  font-size: 1.1rem;
}

/* Destinations Section */
.destinations {
  padding: 100px 0;
  background: #f7fafc;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  color: #ff6b6b;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-top: 10px;
}

.destination-filter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 10px 20px;
  border: 2px solid #e2e8f0;
  background: white;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-tab.active,
.filter-tab:hover {
  background: #ff6b6b;
  color: white;
  border-color: #ff6b6b;
}

.view-all-btn {
  padding: 10px 25px;
  background: #ff6b6b;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background: #ff5252;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.destination-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.destination-card:hover .card-image img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
}

.card-price {
  background: rgba(255, 255, 255, 0.9);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2d3748;
}

.card-content {
  padding: 20px;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 8px;
}

.card-location {
  color: #718096;
  font-size: 0.95rem;
}

/* Features Section */
.features {
  padding: 100px 0;
  background: white;
}

.features-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.features-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 40px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  font-size: 2rem;
  background: #fff5f5;
  padding: 15px;
  border-radius: 12px;
  border: 2px solid #fed7d7;
}

.feature-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 8px;
}

.feature-content p {
  color: #718096;
  line-height: 1.6;
}

.features-image {
  position: relative;
}

.image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 15px;
}

.card-icon {
  font-size: 2rem;
}

.card-title {
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 5px;
}

.card-desc {
  color: #718096;
  font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: #f7fafc;
}

.testimonials-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.testimonials-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
}

.testimonials-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
  line-height: 1.3;
}

.testimonials-desc {
  color: #718096;
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.6;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.testimonial-rating {
  margin-bottom: 20px;
}

.star {
  color: #ffd700;
  font-size: 1.2rem;
}

.testimonial-text {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  color: #2d3748;
}

.author-title {
  color: #718096;
  font-size: 0.9rem;
}

.testimonial-avatars {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
}

.more-avatars {
  background: #e2e8f0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #4a5568;
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background: white;
}

.faq-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 60px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid #e2e8f0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  color: #2d3748;
}

.faq-icon {
  font-size: 1.2rem;
  color: #718096;
}

.faq-answer-section {
  background: #f7fafc;
  padding: 40px;
  border-radius: 15px;
}

.faq-answer-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 15px;
}

.faq-answer-section p {
  color: #718096;
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-btn {
  padding: 12px 25px;
  background: #ff6b6b;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: #ff5252;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: #2d3748;
  color: white;
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.cta-text p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
}

/* Footer */
.footer {
  background: #1a202c;
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-desc {
  color: #a0aec0;
  max-width: 300px;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #ff6b6b;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid #2d3748;
  text-align: center;
  color: #a0aec0;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Page Header Styles */
.page-header {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* About Page Styles */
.company-intro {
  padding: 100px 0;
  background: white;
}

.simple-content {
  max-width: 800px;
  margin: 40px auto 0;
  text-align: left;
}

.simple-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 30px;
}

.company-history {
  padding: 100px 0;
  background: #f7fafc;
}

.history-timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.timeline-item {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.timeline-year {
  background: #ff6b6b;
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  font-weight: 600;
  min-width: 120px;
  text-align: center;
}

.timeline-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 10px;
}

.timeline-content p {
  color: #718096;
  line-height: 1.6;
}

.company-philosophy {
  padding: 100px 0;
  background: white;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.philosophy-item {
  background: #f7fafc;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
}

.philosophy-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.philosophy-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 15px;
}

.philosophy-item p {
  color: #718096;
  line-height: 1.6;
}

.service-commitment {
  padding: 100px 0;
  background: #f7fafc;
}

.commitment-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.subsection-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  margin: 30px 0 15px;
}

.commitment-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 20px;
}

.commitment-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-card .feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.feature-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 10px;
}

.feature-card p {
  color: #718096;
}

.company-vision {
  padding: 100px 0;
  background: white;
}

.vision-content {
  text-align: center;
}

.vision-card {
  background: #f7fafc;
  padding: 60px;
  border-radius: 20px;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.vision-icon {
  font-size: 4rem;
  margin-bottom: 30px;
}

.vision-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 20px;
}

.vision-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
}

.business-license {
  padding: 100px 0;
  background: #f7fafc;
}

.license-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.license-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  border: 2px solid #e2e8f0;
}

.license-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 20px;
}

.license-info p {
  color: #718096;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Contact Page Styles */
.contact-info {
  padding: 100px 0;
  background: white;
}

.contact-grid {
  margin-top: 40px;
}

.contact-office {
  background: #f7fafc;
  padding: 40px;
  border-radius: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.office-header {
  text-align: center;
  margin-bottom: 30px;
}

.office-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
}

.office-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-icon {
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  background: #ff6b6b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 5px;
}

.contact-text p {
  color: #718096;
}

.contact-form-section {
  padding: 100px 0;
  background: #f7fafc;
}

.form-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.form-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
  margin: 20px 0 40px;
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-features .feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-features .feature-icon {
  font-size: 1.5rem;
  color: #ff6b6b;
}

.contact-features .feature-text h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 5px;
}

.contact-features .feature-text p {
  color: #718096;
  font-size: 0.9rem;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff6b6b;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: #ff6b6b;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #ff5252;
}

.map-section {
  padding: 100px 0;
  background: white;
}

.map-container {
  margin-top: 40px;
}

.map-placeholder {
  background: #f7fafc;
  height: 400px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e2e8f0;
}

.map-info {
  text-align: center;
}

.map-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 15px;
}

.map-info p {
  color: #718096;
  line-height: 1.6;
  margin-bottom: 10px;
}

.working-hours {
  padding: 100px 0;
  background: #f7fafc;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.hours-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.hours-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 10px;
}

.hours-item p {
  color: #718096;
  margin-bottom: 15px;
}

.hours-item .time {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ff6b6b;
  margin-bottom: 0;
}

/* Privacy Policy Styles */
.privacy-content {
  padding: 100px 0;
  background: white;
}

.policy-text {
  max-width: 800px;
  margin: 0 auto;
}

.policy-section {
  margin-bottom: 40px;
}

.policy-paragraph {
  font-size: 1rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 20px;
}

.policy-list {
  margin: 20px 0;
}

.list-item {
  padding: 10px 0;
  border-bottom: 1px solid #e2e8f0;
  color: #4a5568;
  line-height: 1.6;
}

.list-item:last-child {
  border-bottom: none;
}

.contact-info-policy {
  background: #f7fafc;
  padding: 20px;
  border-radius: 8px;
  margin-top: 15px;
}

.contact-info-policy p {
  margin-bottom: 10px;
  color: #4a5568;
}

.contact-info-policy a {
  color: #ff6b6b;
  text-decoration: none;
}

.contact-info-policy a:hover {
  text-decoration: underline;
}

.update-date {
  text-align: center;
  font-style: italic;
  color: #718096;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

/* Active Navigation Link */
.nav-link.active {
  color: #ff6b6b;
}

.nav-link.active::after {
  width: 100%;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .places-grid {
    justify-content: center;
  }

  .features-content,
  .testimonials-content,
  .cta-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .destination-filter {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-tabs {
    justify-content: center;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .features-title,
  .testimonials-title,
  .cta-text h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .place-card {
    width: 60px;
    height: 45px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .section-title,
  .features-title,
  .testimonials-title,
  .cta-text h2,
  .faq-title {
    font-size: 1.8rem;
  }

  /* New Pages Responsive */
  .page-title {
    font-size: 2rem;
  }

  .license-content,
  .form-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
  }

  .philosophy-item {
    padding: 30px;
  }

  .timeline-item {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .timeline-year {
    align-self: center;
  }

  .vision-card {
    padding: 40px 30px;
  }

  .contact-form {
    padding: 30px;
  }

  .hours-grid {
    grid-template-columns: 1fr;
  }
}
