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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2C3E50;
  background: #ffffff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style-position: inside;
}

/* TYPOGRAPHY - VIBRANT & ENERGETIC */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Impact', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #2C3E50;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 0 rgba(192, 80, 77, 0.2);
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #C0504D 0%, #E8DCC4 100%);
  border-radius: 2px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

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

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* HEADER - BOLD & ENERGETIC */
header {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border-bottom: 4px solid #C0504D;
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05) rotate(-2deg);
}

/* MAIN NAVIGATION - DESKTOP */
.main-nav {
  display: flex;
  gap: 5px;
  align-items: center;
}

.main-nav a {
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #C0504D;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.main-nav a:hover {
  color: #E8DCC4;
  transform: translateY(-2px);
}

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #C0504D;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(192, 80, 77, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #A03D3A;
  transform: scale(1.1) rotate(90deg);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #2C3E50 0%, #34495E 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #C0504D;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #C0504D;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  padding: 15px 20px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.mobile-nav a:hover {
  border-left-color: #C0504D;
  background: rgba(192, 80, 77, 0.1);
  transform: translateX(10px);
  color: #E8DCC4;
}

/* HERO SECTION - HIGH ENERGY */
.hero {
  background: linear-gradient(135deg, #C0504D 0%, #E8503C 50%, #FF6B6B 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.05) 20px,
    rgba(255, 255, 255, 0.05) 40px
  );
  animation: moveStripes 20s linear infinite;
}

@keyframes moveStripes {
  0% { transform: translate(0, 0); }
  100% { transform: translate(40px, 40px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
  animation: slideInDown 0.8s ease;
}

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

.hero-subtitle {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 32px;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  animation: fadeIn 1s ease 0.3s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* CTA BUTTONS - ELECTRIC */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
  animation: slideInUp 0.8s ease 0.5s both;
}

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

.btn {
  display: flex;
  padding: 16px 32px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-bottom: 5px;
  margin-top: 5px;
}

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

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

.btn-primary {
  background: #2C3E50;
  color: #ffffff;
  border-color: #2C3E50;
  box-shadow: 0 6px 20px rgba(44, 62, 80, 0.4);
}

.btn-primary:hover {
  background: #1a252f;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(44, 62, 80, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: #ffffff;
  color: #C0504D;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #C0504D 0%, #E8503C 100%);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 6px solid #2C3E50;
}

.page-hero h1 {
  color: #ffffff;
  font-size: 48px;
  margin-bottom: 16px;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
}

.page-hero p {
  color: #ffffff;
  font-size: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* SECTIONS - DYNAMIC SPACING */
.section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

.value-proposition,
.services-overview,
.featured-experience,
.testimonials,
.mission,
.story,
.team,
.approach,
.introduction,
.transformation-story,
.unesco-heritage,
.contemporary-usage,
.visual-storytelling,
.photography-service,
.contact-info,
.response-time {
  padding: 60px 20px;
  margin-bottom: 40px;
}

/* ALTERNATING BACKGROUNDS */
.value-proposition {
  background: linear-gradient(135deg, #F8F9FA 0%, #E8DCC4 100%);
}

.services-overview {
  background: #ffffff;
}

.featured-experience {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: #ffffff;
}

.featured-experience h2,
.featured-experience h3 {
  color: #ffffff;
}

.featured-experience h2::after {
  background: linear-gradient(90deg, #C0504D 0%, #E8DCC4 100%);
}

.testimonials {
  background: #F8F9FA;
}

/* STATISTICS GRID - FLEXBOX */
.statistics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(192, 80, 77, 0.15);
  min-width: 200px;
  flex: 1 1 200px;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.stat-item:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 30px rgba(192, 80, 77, 0.25);
  border-color: #C0504D;
}

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #C0504D;
  line-height: 1;
  margin-bottom: 12px;
  text-shadow: 2px 2px 0 rgba(192, 80, 77, 0.1);
}

.stat-label {
  font-size: 16px;
  color: #2C3E50;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* SERVICES GRID - FLEXBOX */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(44, 62, 80, 0.1);
  transition: all 0.3s ease;
  border-left: 6px solid #C0504D;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(192, 80, 77, 0.1), transparent);
  transition: left 0.6s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 30px rgba(44, 62, 80, 0.2);
  border-left-width: 10px;
}

.service-card h3 {
  color: #2C3E50;
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  color: #5D6D7E;
  flex-grow: 1;
  margin-bottom: 16px;
}

.price {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #C0504D;
  margin-top: auto;
  display: block;
}

/* FEATURE LIST - ENERGETIC BULLETS */
.feature-list {
  list-style: none;
  margin: 32px 0;
  padding: 0;
}

.feature-list li {
  padding: 16px 16px 16px 56px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  position: relative;
  font-size: 18px;
  transition: all 0.3s ease;
}

.feature-list li::before {
  content: '⚡';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: #E8DCC4;
}

.feature-list li:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(10px);
}

/* TESTIMONIALS - HIGH CONTRAST */
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(44, 62, 80, 0.15);
  border-top: 6px solid #C0504D;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 80px;
  font-family: 'Oswald', sans-serif;
  color: rgba(192, 80, 77, 0.1);
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(44, 62, 80, 0.2);
}

.testimonial-card p {
  font-size: 18px;
  line-height: 1.8;
  color: #2C3E50;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: #C0504D;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  margin-top: auto;
}

/* CTA BANNER - EXPLOSIVE */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #C0504D 0%, #E8503C 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before,
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(255, 255, 255, 0.05) 30px,
    rgba(255, 255, 255, 0.05) 60px
  );
  animation: movePattern 30s linear infinite;
}

@keyframes movePattern {
  0% { transform: translateX(0); }
  100% { transform: translateX(60px); }
}

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

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

/* CATEGORIES & GRIDS - FLEXBOX */
.categories-grid,
.tour-highlights .highlights-grid,
.locations-grid,
.sites-grid,
.collections-grid,
.options-grid,
.audiences-grid,
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.category-card,
.highlight-item,
.location-card,
.site-card,
.collection-card,
.option-card,
.audience-card,
.value-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(44, 62, 80, 0.1);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.category-card:hover,
.highlight-item:hover,
.location-card:hover,
.site-card:hover,
.collection-card:hover,
.option-card:hover,
.audience-card:hover,
.value-item:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 12px 30px rgba(192, 80, 77, 0.2);
  border-color: #C0504D;
}

.category-card h3,
.highlight-item h3,
.location-card h3,
.site-card h3,
.collection-card h3,
.option-card h3,
.audience-card h3,
.value-item h3 {
  color: #C0504D;
  font-size: 22px;
}

/* TIMELINE - DYNAMIC */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #C0504D 0%, #E8DCC4 100%);
}

.timeline-item {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(44, 62, 80, 0.1);
  position: relative;
  transition: all 0.3s ease;
  border-left: 6px solid #C0504D;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -52px;
  top: 24px;
  width: 20px;
  height: 20px;
  background: #C0504D;
  border: 4px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(192, 80, 77, 0.2);
}

.timeline-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(44, 62, 80, 0.15);
}

.timeline-item h3 {
  color: #2C3E50;
  margin-bottom: 12px;
  font-size: 20px;
}

.timeline-item p {
  color: #5D6D7E;
}

/* PROCESS STEPS - FLEXBOX */
.process-steps,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.step,
.step-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: #ffffff;
  padding: 32px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(192, 80, 77, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 6px solid #C0504D;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step:hover,
.step-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 30px rgba(192, 80, 77, 0.2);
}

.step h3,
.step-card h3 {
  color: #2C3E50;
  font-size: 20px;
}

.step p,
.step-card p {
  color: #5D6D7E;
  font-size: 15px;
}

/* INFO GRID - FLEXBOX */
.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.info-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(44, 62, 80, 0.1);
  border-left: 6px solid #C0504D;
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(44, 62, 80, 0.15);
}

.info-item h3 {
  color: #C0504D;
  font-size: 22px;
  margin-bottom: 16px;
}

.info-item p {
  color: #5D6D7E;
  line-height: 1.8;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.faq-item {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(44, 62, 80, 0.08);
  border-left: 6px solid #C0504D;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(44, 62, 80, 0.12);
}

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

.faq-item p {
  color: #5D6D7E;
}

/* BADGE */
.badge {
  display: inline-block;
  background: #C0504D;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(192, 80, 77, 0.3);
}

/* TOUR DETAILS - FLEXBOX */
.tour-details {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  margin: 24px 0;
}

.duration,
.price-display,
.price-info {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #2C3E50;
  padding: 12px 24px;
  background: rgba(232, 220, 196, 0.3);
  border-radius: 8px;
  border: 2px solid #E8DCC4;
}

.price-display,
.price-info {
  color: #C0504D;
  font-size: 32px;
  border-color: #C0504D;
}

/* HIGHLIGHTS LIST */
.highlights-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.highlights-list li {
  padding: 12px 12px 12px 48px;
  margin-bottom: 12px;
  background: rgba(232, 220, 196, 0.2);
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
  border-left: 4px solid #C0504D;
}

.highlights-list li::before {
  content: '✓';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 700;
  color: #C0504D;
}

.highlights-list li:hover {
  background: rgba(232, 220, 196, 0.4);
  transform: translateX(8px);
}

/* LINKS GRID */
.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.link-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(44, 62, 80, 0.1);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(192, 80, 77, 0.2);
  border-color: #C0504D;
}

.link-card h3 {
  color: #2C3E50;
  font-size: 22px;
}

.link-card p {
  color: #5D6D7E;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #C0504D 0%, #E8503C 100%);
  padding: 80px 20px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #C0504D;
  margin: 0 auto 24px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  animation: scaleIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes scaleIn {
  from {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }
  to {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}

.thank-you-hero h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

.thank-you-hero p {
  color: #ffffff;
  font-size: 20px;
}

.confirmation-message,
.continue-exploring,
.return-home {
  padding: 60px 20px;
  text-align: center;
}

/* LEGAL PAGES */
.legal-hero {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 6px solid #C0504D;
}

.legal-hero h1 {
  color: #ffffff;
  font-size: 42px;
  margin-bottom: 16px;
}

.legal-hero p {
  color: #E8DCC4;
  font-size: 18px;
}

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

.legal-content {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  color: #2C3E50;
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h3 {
  color: #C0504D;
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content p,
.legal-content ul,
.legal-content ol {
  color: #5D6D7E;
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content a {
  color: #C0504D;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #E8503C;
}

/* FOOTER - BOLD */
footer {
  background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
  color: #ffffff;
  padding: 60px 20px 20px;
  border-top: 6px solid #C0504D;
}

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

.footer-section {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.tagline {
  font-size: 14px;
  color: #E8DCC4;
  font-style: italic;
  line-height: 1.6;
}

.footer-section h3 {
  color: #E8DCC4;
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.footer-nav a {
  color: #B8C5D6;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 12px;
  border-left: 3px solid transparent;
}

.footer-nav a:hover {
  color: #E8DCC4;
  border-left-color: #C0504D;
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 2px solid rgba(232, 220, 196, 0.2);
}

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

/* COOKIE CONSENT BANNER */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 4px solid #C0504D;
}

#cookie-consent.show {
  transform: translateY(0);
}

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

.cookie-consent-text {
  flex: 1 1 400px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-consent-text p {
  margin-bottom: 0;
}

.cookie-consent-text a {
  color: #E8DCC4;
  text-decoration: underline;
}

.cookie-consent-text a:hover {
  color: #ffffff;
}

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

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

.cookie-btn-accept {
  background: #C0504D;
  color: #ffffff;
  border-color: #C0504D;
}

.cookie-btn-accept:hover {
  background: #E8503C;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(192, 80, 77, 0.4);
}

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

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-btn-settings {
  background: transparent;
  color: #E8DCC4;
  border-color: #E8DCC4;
}

.cookie-btn-settings:hover {
  background: rgba(232, 220, 196, 0.1);
}

/* COOKIE SETTINGS MODAL */
#cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#cookie-settings-modal.show {
  display: flex;
  opacity: 1;
}

.cookie-modal-content {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  border-top: 6px solid #C0504D;
  animation: modalSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes modalSlideIn {
  from {
    transform: scale(0.8) translateY(-50px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.cookie-modal-content h2 {
  color: #2C3E50;
  font-size: 28px;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #F8F9FA;
  border-radius: 8px;
  border-left: 4px solid #C0504D;
}

.cookie-category h3 {
  color: #2C3E50;
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  transition: 0.3s;
  border-radius: 26px;
}

.cookie-toggle-slider::before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background: #ffffff;
  transition: 0.3s;
  border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: #C0504D;
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(24px);
}

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

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* RESPONSIVE - MOBILE FIRST */
@media (max-width: 768px) {
  /* Hide desktop nav, show mobile toggle */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .page-hero h1 {
    font-size: 32px;
  }
  
  /* Grid adjustments */
  .service-card,
  .testimonial-card,
  .category-card,
  .highlight-item,
  .location-card,
  .site-card,
  .collection-card,
  .option-card,
  .audience-card,
  .value-item,
  .link-card {
    flex: 1 1 100%;
  }
  
  .stat-item {
    flex: 1 1 calc(50% - 32px);
  }
  
  .step,
  .step-card {
    flex: 1 1 100%;
  }
  
  .info-item {
    flex: 1 1 100%;
  }
  
  /* Button adjustments */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Footer adjustments */
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie consent mobile */
  .cookie-consent-content {
    flex-direction: column;
  }
  
  .cookie-consent-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1 1 100%;
  }
  
  /* Timeline mobile */
  .timeline {
    padding-left: 30px;
  }
  
  .timeline-item::before {
    left: -42px;
  }
  
  /* Spacing adjustments */
  .section,
  .value-proposition,
  .services-overview,
  .featured-experience,
  .testimonials {
    padding: 40px 20px;
  }
  
  .hero,
  .cta-banner,
  .cta-section {
    padding: 60px 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .service-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .step,
  .step-card {
    flex: 1 1 calc(50% - 24px);
  }
}

/* ANIMATIONS */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.btn:active {
  animation: pulse 0.3s ease;
}

/* ACCESSIBILITY */
:focus-visible {
  outline: 3px solid #C0504D;
  outline-offset: 3px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid #C0504D;
  outline-offset: 3px;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent,
  .cta-buttons,
  .btn {
    display: none !important;
  }
  
  body {
    color: #000000;
    background: #ffffff;
  }
  
  a {
    text-decoration: underline;
  }
}