.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.5s ease;
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.4);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  padding: 0.75rem 0;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-image {
  height: 40px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  background: transparent;
}

.logo-icon {
  font-size: 1.5rem;
}

.logo-text {
  color: #1a1a1a;
  transition: color 0.5s ease;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.5s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #E73E58;
  transition: width 0.5s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: #E73E58;
}

.header.scrolled .nav-link {
  color: #222222;
}

/* Turneo Style CTA Button */
.nav-cta {
  padding: 0.625rem 1.5rem;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.5s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

/* Language Selector */
.lang-selector {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  color: #1a1a1a;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.5s ease;
}

.lang-btn:hover {
  background: rgba(0, 0, 0, 0.1);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: white;
  border-radius: 4px;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  padding: 0.5rem;
  min-width: 160px;
  z-index: 1001;
  animation: fadeInDown 0.2s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lang-option {
  display: block;
  width: 100%;
  padding: 0.625rem 1rem;
  text-align: left;
  background: none;
  border: none;
  border-radius: 4px;
  color: #222222;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-option:hover {
  background: rgba(231, 62, 88, 0.1);
  color: #E73E58;
}

.lang-option.active {
  background-color: #E73E58;
  background: #E73E58;
  color: white;
}

/* Mobile Language Section */
.mobile-lang-section {
  padding: 1rem 0;
  border-top: 1px solid #e5e7eb;
  margin-top: 0.5rem;
}

.mobile-lang-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #9ca3af;
  margin-bottom: 0.75rem;
  padding: 0 1rem;
}

.mobile-lang-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  padding: 0 1rem;
}

.mobile-lang-option {
  padding: 0.75rem 1rem;
  background: #f3f4f6;
  border: none;
  border-radius: 4px;
  color: #222222;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.mobile-lang-option:hover {
  background: rgba(231, 62, 88, 0.1);
  color: #E73E58;
}

.mobile-lang-option.active {
  background-color: #E73E58;
  background: #E73E58;
  color: white;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #1a1a1a;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  padding: 1rem;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

.mobile-menu.open {
  display: flex;
}

.mobile-nav-link {
  padding: 1rem;
  color: #222222;
  text-decoration: none;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.5s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: rgba(231, 62, 88, 0.1);
  color: #E73E58;
}

.mobile-nav-cta {
  padding: 1rem;
  background-color: #E73E58;
  background: #E73E58;
  color: white;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .header-container {
    padding: 0 1rem;
  }
}

.footer {
  background-color: #354A5E;
  background: #354A5E;
  color: white;
  padding: 4rem 1rem 2rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-logo-image {
  height: 36px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  background: transparent;
}

.footer-logo-text {
  color: white;
}

.footer-tagline {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.5s ease;
}

.social-link:hover {
  background-color: #E73E58;
  background: #E73E58;
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: white;
  font-family: 'Readex Pro', sans-serif;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.5s ease;
}

.footer-links a:hover {
  color: #E73E58;
}

.footer-link-btn {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 0;
  text-align: left;
  transition: color 0.5s ease;
}

.footer-link-btn:hover {
  color: #E73E58;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #94a3b8;
  font-size: 0.95rem;
}

.footer-contact li svg {
  color: #E73E58;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  color: #64748b;
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: #64748b;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.5s ease;
}

.footer-legal a:hover {
  color: #E73E58;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .footer-brand {
    grid-column: span 2;
  }
  .footer-bottom {
    flex-direction: row;
    gap: 1rem;
    text-align: left;
    flex-wrap: wrap;
  }
  .footer-copyright {
    font-size: 0.8rem;
  }
  .footer-legal {
    gap: 1rem;
  }
  .footer-legal a {
    font-size: 0.8rem;
  }
}

.app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Translation Indicator Animation */
@keyframes slideIn {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.animate-spin {
  animation: spin 1s linear infinite;
}

.main-content {
  flex: 1;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5), 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: white;
  opacity: 1;
  text-shadow: 0 2px 15px rgba(0,0,0,0.4);
}

/* Turneo Style CTA Button */
.hero-cta {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  padding: 1rem 2.5rem !important;
  margin-top: 9rem !important;
  background-color: #E73E58 !important;
  background: #E73E58 !important;
  color: white !important;
  font-weight: 600 !important;
  font-size: 1.1rem !important;
  border-radius: 4px !important;
  text-decoration: none !important;
  transition: all 0.5s ease !important;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05) !important;
}

.hero-cta:hover {
  transform: translateY(-2px) !important;
  background-color: #6C1422 !important;
  background: #6C1422 !important;
  box-shadow: 0 8px 30px rgba(231, 62, 88, 0.4) !important;
}

/* Section Styles */
.section {
  padding: 5rem 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: #354A5E;
}

.section-subtitle {
  font-size: 1.125rem;
  text-align: center;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Tour Cards - Turneo Style */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.tour-card {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
  cursor: pointer;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.tour-card-image {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.tour-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  background-color: #E73E58;
  background: #E73E58;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 4px;
}

.tour-card-content {
  padding: 1.5rem;
}

.tour-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #354A5E;
}

.tour-card-subtitle {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 1rem;
}

.tour-card-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #64748b;
}

.tour-card-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tour-card-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #E73E58;
}

.tour-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
}

.tour-card-view-details {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #E73E58;
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.5s ease;
}

.tour-card:hover .tour-card-view-details {
  gap: 0.5rem;
}

/* Features Section - Turneo Style */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 4px;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background-color: #E73E58;
  background: #E73E58;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #354A5E;
}

.feature-description {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

/* Testimonials - Turneo Style */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.testimonial-name-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.testimonial-info h4 {
  font-weight: 600;
  color: #354A5E;
  margin: 0;
}

.testimonial-info p {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
}

.testimonial-rating-inline {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #E73E58;
}

.testimonial-rating {
  color: #E73E58;
  margin-bottom: 1rem;
}

.testimonial-content {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

/* CTA Section - Turneo Style */
.cta-section {
  background-color: #354A5E;
  background: #354A5E;
  color: white;
  padding: 5rem 1rem;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  padding: 1rem 2.5rem !important;
  background-color: #E73E58 !important;
  background: #E73E58 !important;
  color: white !important;
  font-weight: 600 !important;
  font-size: 1.1rem !important;
  border-radius: 4px !important;
  text-decoration: none !important;
  transition: all 0.5s ease !important;
}

.cta-button:hover {
  transform: translateY(-2px) !important;
  background-color: #6C1422 !important;
  background: #6C1422 !important;
  box-shadow: 0 8px 30px rgba(231, 62, 88, 0.4) !important;
}

/* Responsive */
@media (max-width: 768px) {
  .section {
    padding: 3rem 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .tour-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

