/* ========================================
   DORTMUND PORTAL - TECH FUTURISTIC DESIGN
   Modern, Dynamic & Authentic
   ======================================== */

/* ===== CSS RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #1A1A1A;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  background-attachment: fixed;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(253, 185, 19, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 158, 224, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(253, 185, 19, 0.3);
}

h1 {
  font-size: 48px;
  letter-spacing: -1px;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 24px;
}

p {
  margin-bottom: 16px;
  color: #e0e0e0;
}

a {
  color: #FDB913;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #009EE0;
  text-shadow: 0 0 10px rgba(0, 158, 224, 0.5);
}

ul {
  list-style: none;
}

/* ===== CONTAINER & LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* ===== HEADER ===== */
.main-header {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(253, 185, 19, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(253, 185, 19, 0.2);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(253, 185, 19, 0.5));
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 20px rgba(253, 185, 19, 0.8));
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #FDB913, #009EE0);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.main-nav a:hover::before {
  width: 80%;
}

.main-nav a:hover {
  color: #FDB913;
  border-color: rgba(253, 185, 19, 0.3);
  background: rgba(253, 185, 19, 0.05);
  box-shadow: 0 0 15px rgba(253, 185, 19, 0.2);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #FDB913, #C89000);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #1A1A1A;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(253, 185, 19, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(253, 185, 19, 0.6);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  border-left: 2px solid rgba(253, 185, 19, 0.3);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.8);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid rgba(253, 185, 19, 0.5);
  color: #FDB913;
  font-size: 28px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: rgba(253, 185, 19, 0.2);
  transform: rotate(90deg);
  box-shadow: 0 0 20px rgba(253, 185, 19, 0.5);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 20px;
  border-radius: 8px;
  border: 1px solid rgba(253, 185, 19, 0.2);
  background: rgba(253, 185, 19, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav a:hover {
  background: rgba(253, 185, 19, 0.15);
  border-color: #FDB913;
  transform: translateX(10px);
  box-shadow: 0 4px 15px rgba(253, 185, 19, 0.3);
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #FDB913, #C89000);
  color: #1A1A1A;
  border-color: #FDB913;
  box-shadow: 0 4px 15px rgba(253, 185, 19, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(253, 185, 19, 0.6);
  color: #000000;
}

.btn-secondary {
  background: rgba(0, 158, 224, 0.1);
  color: #009EE0;
  border-color: #009EE0;
  box-shadow: 0 4px 15px rgba(0, 158, 224, 0.2);
}

.btn-secondary:hover {
  background: rgba(0, 158, 224, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 158, 224, 0.4);
  color: #00bfff;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 26, 26, 0.8) 100%);
  padding: 100px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid rgba(253, 185, 19, 0.3);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(253, 185, 19, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.5; }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #FDB913, #009EE0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { filter: hue-rotate(0deg); }
  50% { filter: hue-rotate(20deg); }
}

.hero-subheadline {
  font-size: 20px;
  color: #e0e0e0;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-badge {
  display: inline-block;
  padding: 12px 24px;
  background: rgba(0, 158, 224, 0.1);
  border: 1px solid rgba(0, 158, 224, 0.3);
  border-radius: 50px;
  color: #009EE0;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 0 20px rgba(0, 158, 224, 0.2);
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%);
  padding: 60px 20px 40px;
  margin-bottom: 60px;
  border-bottom: 2px solid rgba(253, 185, 19, 0.3);
}

.breadcrumb {
  font-size: 14px;
  color: #888;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: #FDB913;
}

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #b0b0b0;
}

.last-updated {
  font-size: 14px;
  color: #666;
  font-style: italic;
  margin-top: 8px;
}

/* ===== SECTIONS ===== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #b0b0b0;
  max-width: 700px;
  margin: 0 auto 40px;
}

h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* ===== SERVICES/TOURS GRID ===== */
.services-grid,
.tours-grid,
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.service-card,
.tour-card,
.card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(10, 10, 10, 0.9) 100%);
  border: 1px solid rgba(253, 185, 19, 0.2);
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 380px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(253, 185, 19, 0.05), rgba(0, 158, 224, 0.05));
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover,
.tour-card:hover {
  transform: translateY(-8px);
  border-color: #FDB913;
  box-shadow: 0 8px 30px rgba(253, 185, 19, 0.3);
}

.service-card h3,
.tour-card h3 {
  color: #FDB913;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p,
.tour-card p {
  color: #d0d0d0;
  margin-bottom: 20px;
  line-height: 1.7;
}

.tour-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #FDB913, #C89000);
  color: #1A1A1A;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 10px rgba(253, 185, 19, 0.4);
}

.tour-highlights {
  margin: 20px 0;
  padding: 0;
}

.tour-highlights li {
  color: #b0b0b0;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  border-bottom: 1px solid rgba(253, 185, 19, 0.1);
}

.tour-highlights li:last-child {
  border-bottom: none;
}

.tour-highlights li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #FDB913;
  font-size: 16px;
}

.service-meta,
.tour-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
  padding: 16px;
  background: rgba(253, 185, 19, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(253, 185, 19, 0.1);
}

.duration,
.price,
.rating {
  font-weight: 600;
  font-size: 14px;
  color: #FDB913;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rating {
  color: #FFD700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* ===== USP SECTION ===== */
.usp-section {
  background: linear-gradient(135deg, rgba(0, 158, 224, 0.05) 0%, rgba(253, 185, 19, 0.05) 100%);
  padding: 60px 20px;
  border-top: 2px solid rgba(253, 185, 19, 0.2);
  border-bottom: 2px solid rgba(0, 158, 224, 0.2);
}

.usp-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.usp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  max-width: 250px;
  padding: 24px;
  gap: 16px;
}

.usp-item img {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 0 10px rgba(253, 185, 19, 0.5));
  transition: transform 0.3s ease;
}

.usp-item:hover img {
  transform: scale(1.1) rotate(5deg);
}

.usp-item h3 {
  font-size: 18px;
  color: #FDB913;
}

.usp-item p {
  font-size: 14px;
  color: #b0b0b0;
}

/* ===== TESTIMONIALS ===== */
.testimonials,
.testimonials-compact,
.testimonials-about {
  background: rgba(10, 10, 10, 0.5);
  padding: 60px 20px;
  border-radius: 16px;
  border: 1px solid rgba(253, 185, 19, 0.2);
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(253, 185, 19, 0.3);
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  max-width: 500px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 72px;
  color: rgba(253, 185, 19, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(253, 185, 19, 0.4);
}

.testimonial-card p {
  color: #1A1A1A;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid rgba(253, 185, 19, 0.3);
}

.testimonial-author strong {
  color: #1A1A1A;
  font-size: 16px;
  font-weight: 700;
}

.testimonial-author span {
  color: #666;
  font-size: 14px;
}

.testimonial-author .rating {
  color: #FFD700;
  font-size: 16px;
  margin-top: 4px;
}

.testimonial-featured {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid #FDB913;
  border-radius: 12px;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto 32px;
  box-shadow: 0 8px 30px rgba(253, 185, 19, 0.3);
}

.testimonial-featured p {
  color: #1A1A1A;
  font-size: 20px;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-featured cite {
  color: #666;
  font-size: 16px;
  font-weight: 600;
}

/* ===== STEPS/TIMELINE ===== */
.steps-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 40px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  max-width: 250px;
  padding: 24px;
  gap: 16px;
  position: relative;
}

.step img {
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 0 15px rgba(0, 158, 224, 0.5));
  transition: all 0.3s ease;
}

.step:hover img {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 0 25px rgba(253, 185, 19, 0.7));
}

.step h3 {
  font-size: 18px;
  color: #009EE0;
}

.step p {
  font-size: 14px;
  color: #b0b0b0;
}

/* ===== CTA SECTIONS ===== */
.cta-banner,
.cta-section,
.cta-tours,
.cta-contact {
  background: linear-gradient(135deg, rgba(253, 185, 19, 0.1) 0%, rgba(0, 158, 224, 0.1) 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 16px;
  border: 2px solid rgba(253, 185, 19, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(253, 185, 19, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

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

.cta-banner h2,
.cta-section h2 {
  position: relative;
  z-index: 1;
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-banner p,
.cta-section p {
  position: relative;
  z-index: 1;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ===== LANDMARKS/CONTENT GRID ===== */
.landmarks-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.landmark-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(10, 10, 10, 0.9) 100%);
  border: 1px solid rgba(253, 185, 19, 0.2);
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.landmark-card:hover {
  transform: translateY(-5px);
  border-color: #009EE0;
  box-shadow: 0 8px 30px rgba(0, 158, 224, 0.3);
}

.landmark-card h3 {
  color: #009EE0;
  margin-bottom: 12px;
}

.landmark-card .category {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(253, 185, 19, 0.1);
  border: 1px solid rgba(253, 185, 19, 0.3);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #FDB913;
  text-transform: uppercase;
  margin: 12px 0;
}

.landmark-card .link {
  display: inline-block;
  margin-top: 12px;
  color: #009EE0;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.landmark-card .link:hover {
  transform: translateX(5px);
}

/* ===== STATISTICS ===== */
.statistics-grid,
.review-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 40px 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 calc(25% - 32px);
  min-width: 150px;
  padding: 24px;
  background: rgba(253, 185, 19, 0.05);
  border: 1px solid rgba(253, 185, 19, 0.2);
  border-radius: 12px;
  gap: 8px;
}

.stat strong {
  font-size: 36px;
  color: #FDB913;
  font-weight: 700;
  text-shadow: 0 0 15px rgba(253, 185, 19, 0.5);
}

.stat span {
  font-size: 14px;
  color: #b0b0b0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== CONTACT CARDS ===== */
.contact-cards,
.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.contact-card,
.contact-option {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(10, 10, 10, 0.9) 100%);
  border: 1px solid rgba(0, 158, 224, 0.2);
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 380px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.contact-card:hover,
.contact-option:hover {
  transform: translateY(-8px);
  border-color: #009EE0;
  box-shadow: 0 8px 30px rgba(0, 158, 224, 0.4);
}

.contact-card img,
.contact-option img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(0, 158, 224, 0.5));
}

.contact-card h3,
.contact-option h3 {
  color: #009EE0;
  margin-bottom: 16px;
}

.contact-detail {
  font-size: 18px;
  font-weight: 700;
  color: #FDB913;
  margin: 16px 0;
}

.note {
  font-size: 14px;
  color: #888;
  font-style: italic;
}

/* ===== HOURS TABLE ===== */
.hours-table {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(26, 26, 26, 0.9);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(253, 185, 19, 0.2);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(253, 185, 19, 0.1);
  transition: background 0.3s ease;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row:hover {
  background: rgba(253, 185, 19, 0.05);
}

.hours-row .day {
  color: #ffffff;
  font-weight: 600;
}

.hours-row .time {
  color: #FDB913;
  font-weight: 600;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(26, 26, 26, 0.9);
  border: 1px solid rgba(253, 185, 19, 0.2);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #FDB913;
  box-shadow: 0 4px 20px rgba(253, 185, 19, 0.2);
}

.faq-item h3 {
  color: #FDB913;
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p {
  color: #d0d0d0;
  line-height: 1.7;
}

/* ===== LEGAL CONTENT ===== */
.legal-content {
  background: rgba(26, 26, 26, 0.9);
  border-radius: 12px;
  padding: 40px;
  border: 1px solid rgba(253, 185, 19, 0.2);
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.content-wrapper h2 {
  text-align: left;
  color: #FDB913;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 24px;
}

.content-wrapper h3 {
  text-align: left;
  color: #009EE0;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

.content-wrapper p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.content-wrapper ul,
.credentials-list,
.benefits-list {
  margin: 16px 0;
  padding-left: 24px;
}

.content-wrapper ul li,
.credentials-list li,
.benefits-list li {
  color: #d0d0d0;
  margin-bottom: 12px;
  padding-left: 16px;
  position: relative;
}

.content-wrapper ul li::before,
.credentials-list li::before,
.benefits-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #FDB913;
}

.legal-cta {
  text-align: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid rgba(253, 185, 19, 0.2);
}

/* ===== BOOKING STEPS ===== */
.booking-steps {
  background: rgba(10, 10, 10, 0.5);
  padding: 32px 20px;
  margin-bottom: 40px;
  border-radius: 12px;
}

.steps-indicator {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.steps-indicator .step {
  padding: 12px 24px;
  background: rgba(26, 26, 26, 0.9);
  border: 1px solid rgba(253, 185, 19, 0.2);
  border-radius: 8px;
  color: #888;
  font-size: 14px;
  font-weight: 600;
  min-width: auto;
  flex: none;
}

.steps-indicator .step.active {
  background: linear-gradient(135deg, #FDB913, #C89000);
  color: #1A1A1A;
  border-color: #FDB913;
  box-shadow: 0 4px 15px rgba(253, 185, 19, 0.4);
}

/* ===== TOUR CARDS COMPACT ===== */
.tour-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.tour-card-compact {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(10, 10, 10, 0.9) 100%);
  border: 1px solid rgba(253, 185, 19, 0.2);
  border-radius: 12px;
  padding: 24px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 350px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.tour-card-compact:hover {
  transform: translateY(-5px);
  border-color: #FDB913;
  box-shadow: 0 8px 30px rgba(253, 185, 19, 0.3);
}

.tour-card-compact h3 {
  color: #FDB913;
  font-size: 18px;
  margin-bottom: 12px;
}

.tour-card-compact p {
  color: #b0b0b0;
  font-size: 14px;
  margin-bottom: 12px;
}

.tour-card-compact ul {
  margin: 16px 0;
}

.tour-card-compact ul li {
  color: #888;
  font-size: 13px;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.tour-card-compact ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #009EE0;
}

/* ===== TRUST BADGES ===== */
.trust-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.trust-badges .badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(0, 158, 224, 0.1);
  border: 1px solid rgba(0, 158, 224, 0.3);
  border-radius: 20px;
  color: #009EE0;
  font-size: 13px;
  font-weight: 600;
}

/* ===== THANK YOU PAGE ===== */
.thank-you-hero {
  text-align: center;
  padding: 80px 20px 40px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00C851, #007E33);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 48px;
  color: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 200, 81, 0.4);
  animation: successPop 0.6s ease;
}

@keyframes successPop {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.confirmation-message {
  font-size: 20px;
  color: #b0b0b0;
  margin-bottom: 16px;
}

.reference-number {
  font-size: 16px;
  color: #888;
}

.details-card {
  background: rgba(26, 26, 26, 0.9);
  border: 1px solid rgba(253, 185, 19, 0.2);
  border-radius: 12px;
  padding: 32px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.details-card p {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(253, 185, 19, 0.1);
}

.details-card p:last-child {
  border-bottom: none;
  font-size: 18px;
  font-weight: 700;
  color: #FDB913;
  margin-top: 12px;
  padding-top: 20px;
  border-top: 2px solid rgba(253, 185, 19, 0.3);
}

/* ===== FOOTER ===== */
.main-footer {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(0, 0, 0, 0.98) 100%);
  border-top: 3px solid rgba(253, 185, 19, 0.3);
  padding: 60px 20px 20px;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1 1 calc(33.333% - 40px);
  min-width: 250px;
}

.footer-section h3 {
  color: #FDB913;
  font-size: 20px;
  margin-bottom: 20px;
  text-align: left;
}

.footer-section p {
  color: #b0b0b0;
  font-size: 14px;
  line-height: 1.8;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: #b0b0b0;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 16px;
  position: relative;
}

.footer-nav a::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #FDB913;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-nav a:hover {
  color: #FDB913;
  padding-left: 20px;
}

.footer-nav a:hover::before {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(253, 185, 19, 0.2);
}

.footer-bottom p {
  color: #666;
  font-size: 14px;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%);
  backdrop-filter: blur(10px);
  border-top: 2px solid rgba(253, 185, 19, 0.3);
  padding: 24px 20px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 500px;
}

.cookie-text h3 {
  color: #FDB913;
  font-size: 18px;
  margin-bottom: 8px;
  text-align: left;
}

.cookie-text p {
  color: #b0b0b0;
  font-size: 14px;
  margin-bottom: 0;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #FDB913, #C89000);
  color: #1A1A1A;
  border-color: #FDB913;
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(253, 185, 19, 0.4);
}

.cookie-btn-reject {
  background: transparent;
  color: #888;
  border-color: #444;
}

.cookie-btn-reject:hover {
  border-color: #666;
  color: #aaa;
}

.cookie-btn-settings {
  background: rgba(0, 158, 224, 0.1);
  color: #009EE0;
  border-color: #009EE0;
}

.cookie-btn-settings:hover {
  background: rgba(0, 158, 224, 0.2);
}

/* ===== COOKIE MODAL ===== */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
  border: 2px solid rgba(253, 185, 19, 0.3);
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal h2 {
  color: #FDB913;
  font-size: 24px;
  margin-bottom: 24px;
  text-align: left;
}

.cookie-category {
  background: rgba(253, 185, 19, 0.05);
  border: 1px solid rgba(253, 185, 19, 0.2);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 16px;
}

.cookie-category h3 {
  color: #009EE0;
  font-size: 16px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

.cookie-category p {
  color: #b0b0b0;
  font-size: 14px;
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: #444;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #FDB913;
}

.cookie-toggle::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::before {
  transform: translateX(24px);
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  h1 { font-size: 42px; }
  h2 { font-size: 28px; }
  
  .hero h1 { font-size: 48px; }
  
  .service-card,
  .tour-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .usp-item {
    flex: 1 1 calc(50% - 32px);
  }
}

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .service-card,
  .tour-card,
  .landmark-card,
  .contact-card,
  .contact-option,
  .tour-card-compact {
    flex: 1 1 100%;
    max-width: none;
  }
  
  .usp-item,
  .step {
    flex: 1 1 calc(50% - 32px);
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .steps-indicator {
    flex-direction: column;
  }
  
  .stat {
    flex: 1 1 calc(50% - 32px);
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  section {
    padding: 32px 16px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .service-card,
  .tour-card,
  .landmark-card {
    padding: 24px;
  }
  
  .usp-item,
  .step,
  .stat {
    flex: 1 1 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .legal-content {
    padding: 24px;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* ===== SMOOTH ANIMATIONS ===== */
.fade-in {
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== ACCESSIBILITY ===== */
:focus-visible {
  outline: 2px solid #FDB913;
  outline-offset: 4px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid #FDB913;
  outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
}