/* ========================================
   HoverDrift - Playful Dynamic Photography Tourism
   CSS Stylesheet - Playful & Energetic Design
   ======================================== */

/* ========================================
   CSS RESET & BASE STYLES
   ======================================== */

* {
  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', Roboto, sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background: #ffffff;
  overflow-x: hidden;
}

/* ========================================
   PLAYFUL DYNAMIC TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #1a202c;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 50%, #6bcf7f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
  color: #2C5F7C;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b6b, #ffd93d);
  border-radius: 2px;
  animation: underlineGrow 0.6s ease-out;
}

@keyframes underlineGrow {
  from { width: 0; }
  to { width: 60px; }
}

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

h4 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #4a5568;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #4a5568;
  line-height: 1.8;
}

a {
  color: #ff6b6b;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
}

a:hover {
  color: #ffd93d;
  transform: translateY(-2px);
}

strong {
  font-weight: 700;
  color: #2d3748;
}

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ========================================
   HEADER - PLAYFUL DYNAMIC STYLE
   ======================================== */

header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
  animation: headerSlideDown 0.5s ease-out;
}

@keyframes headerSlideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

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

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

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

.logo:hover img {
  transform: rotate(5deg) scale(1.1);
  animation: wiggle 0.5s ease;
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-5deg); }
  75% { transform: rotate(5deg); }
}

/* ========================================
   NAVIGATION - PLAYFUL STYLE
   ======================================== */

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

.main-nav a {
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

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

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* ========================================
   MOBILE MENU - BURGER NAVIGATION
   ======================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2000;
  background: linear-gradient(135deg, #ff6b6b, #ffd93d);
  border: none;
  color: #ffffff;
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation: bounce 2s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 12px 32px rgba(255, 107, 107, 0.6);
  animation: none;
}

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
  z-index: 1999;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #ffffff;
  font-size: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #ffffff;
  padding: 16px 24px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 2px solid transparent;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #ffd93d;
  transform: translateX(10px) scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

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

/* ========================================
   HERO SECTION - ENERGETIC & PLAYFUL
   ======================================== */

.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  padding: 120px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: backgroundPulse 8s ease infinite;
}

@keyframes backgroundPulse {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
  from { transform: translate(0, 0); }
  to { transform: translate(50px, 50px); }
}

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

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: titleBounce 1s ease-out;
  background: linear-gradient(135deg, #ffffff 0%, #ffd93d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes titleBounce {
  0% { transform: translateY(-50px); opacity: 0; }
  60% { transform: translateY(10px); }
  100% { transform: translateY(0); opacity: 1; }
}

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

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

/* ========================================
   BUTTONS - PLAYFUL & ENERGETIC
   ======================================== */

.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: none;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.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;
}

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

.btn-primary {
  background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(255, 107, 107, 0.6);
  animation: pulse 0.5s ease;
}

@keyframes pulse {
  0%, 100% { transform: translateY(-4px) scale(1.05); }
  50% { transform: translateY(-6px) scale(1.08); }
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 2px solid #ffffff;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: #ffffff;
  color: #667eea;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.4);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.6s both;
}

.cta-center {
  text-align: center;
  margin-top: 32px;
}

/* ========================================
   CARDS - PLAYFUL DYNAMIC STYLE
   ======================================== */

.features-grid,
.services-grid,
.destinations-grid,
.testimonials-grid,
.steps-grid,
.categories-grid,
.themes-grid,
.tips-grid,
.benefits-grid,
.outcomes-grid,
.values-grid,
.collections-grid,
.contact-grid,
.inclusions-grid,
.initiatives-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.feature-card,
.service-card,
.destination-card,
.testimonial-card,
.step,
.category-card,
.theme-card,
.tip-card,
.benefit-item,
.outcome-item,
.value-card,
.collection-card,
.contact-card,
.inclusion-item,
.initiative-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.feature-card::before,
.service-card::before,
.destination-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff6b6b, #ffd93d, #6bcf7f);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.feature-card:hover::before,
.service-card:hover::before,
.destination-card:hover::before {
  transform: translateX(0);
}

.feature-card:hover,
.service-card:hover,
.destination-card:hover,
.category-card:hover,
.theme-card:hover,
.value-card:hover,
.collection-card:hover {
  transform: translateY(-8px) rotate(2deg);
  box-shadow: 0 16px 48px rgba(255, 107, 107, 0.3);
  border-color: #ffd93d;
}

.feature-card h3,
.service-card h3,
.destination-card h3 {
  color: #ff6b6b;
  margin-bottom: 16px;
  font-size: 20px;
}

.price {
  font-size: 24px;
  font-weight: 800;
  color: #667eea;
  margin-top: 16px;
  display: block;
}

/* ========================================
   TESTIMONIALS - READABLE & PLAYFUL
   ======================================== */

.testimonials {
  background: linear-gradient(135deg, #f6f8fb 0%, #e9ecef 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
}

.testimonial-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  border-left: 6px solid #ffd93d;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(255, 215, 61, 0.3);
}

.quote {
  font-size: 16px;
  color: #2d3748;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  padding-left: 24px;
}

.quote::before {
  content: '"';
  font-size: 48px;
  color: #ffd93d;
  position: absolute;
  left: -8px;
  top: -8px;
  font-family: Georgia, serif;
}

.author {
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 4px;
}

.destination,
.workshop {
  font-size: 14px;
  color: #718096;
}

.trust-badge,
.trust-score {
  text-align: center;
  margin-top: 32px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.trust-badge p,
.trust-score p {
  font-weight: 700;
  font-size: 18px;
  color: #667eea;
  margin: 0;
}

/* ========================================
   STEPS SECTION - PLAYFUL NUMBERS
   ======================================== */

.step {
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  padding: 32px 24px;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6b6b, #ffd93d);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4);
  animation: numberPop 0.6s ease both;
  animation-delay: calc(var(--step-index, 0) * 0.1s);
}

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

.step:nth-child(1) .step-number { animation-delay: 0.1s; }
.step:nth-child(2) .step-number { animation-delay: 0.2s; }
.step:nth-child(3) .step-number { animation-delay: 0.3s; }
.step:nth-child(4) .step-number { animation-delay: 0.4s; }

/* ========================================
   PAGE HERO - SUBPAGES
   ======================================== */

.page-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 120px 20px 60px;
  text-align: center;
  position: relative;
}

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

.page-hero .hero-subtitle {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ========================================
   BREADCRUMB
   ======================================== */

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
  font-size: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.breadcrumb a:hover {
  color: #ffd93d;
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   VALUE PROPOSITION & SECTIONS
   ======================================== */

.value-proposition,
.services-overview,
.destinations-preview,
.how-it-works,
.workshop-categories,
.learning-outcomes,
.workshop-benefits,
.destination-grid,
.destination-highlights,
.travel-tips,
.featured-collections,
.photography-tips,
.mission-values,
.sustainability,
.services-detailed,
.inclusions,
.faq,
.story,
.office-info,
.contact-options,
.contact-form-section {
  padding: 80px 20px;
  margin-bottom: 0;
}

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

/* ========================================
   LINKS WITH ARROWS
   ======================================== */

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff6b6b;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.link-arrow::after {
  content: '→';
  transition: transform 0.3s ease;
}

.link-arrow:hover::after {
  transform: translateX(8px);
}

/* ========================================
   CTA BANNER - ENERGETIC
   ======================================== */

.cta-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1), transparent);
  animation: pulseBackground 3s ease infinite;
}

@keyframes pulseBackground {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

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

.cta-banner h2 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-banner p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 32px;
}

.guarantee {
  color: #ffd93d;
  font-size: 14px;
  margin-top: 16px;
  font-weight: 600;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #ff6b6b;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(255, 107, 107, 0.2);
}

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

.faq-item p {
  color: #4a5568;
  margin-bottom: 0;
}

/* ========================================
   LEGAL CONTENT PAGES
   ======================================== */

.legal-content {
  padding: 60px 20px;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.content-wrapper h2 {
  margin-top: 32px;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 2px solid #e2e8f0;
}

.content-wrapper h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.content-wrapper h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  color: #2C5F7C;
}

.content-wrapper ul,
.content-wrapper ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

.content-wrapper li {
  margin-bottom: 8px;
  color: #4a5568;
  line-height: 1.8;
}

.last-updated {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

/* ========================================
   HIGHLIGHTS & LISTS
   ======================================== */

.highlights {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.highlights li {
  padding: 8px 0 8px 32px;
  position: relative;
  color: #4a5568;
}

.highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #6bcf7f;
  font-weight: 700;
  font-size: 18px;
}

/* ========================================
   SERVICE DETAIL
   ======================================== */

.service-detail {
  background: #ffffff;
  padding: 40px;
  border-radius: 24px;
  margin-bottom: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #ff6b6b;
  transition: all 0.3s ease;
}

.service-detail:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 40px rgba(255, 107, 107, 0.2);
}

.service-detail h3 {
  margin-bottom: 16px;
}

/* ========================================
   STATS
   ======================================== */

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
  justify-content: center;
}

.stat-item {
  text-align: center;
  flex: 1 1 200px;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: #ff6b6b;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ff6b6b, #ffd93d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item p {
  color: #4a5568;
  font-weight: 600;
  margin: 0;
}

/* ========================================
   CONFIRMATION PAGE
   ======================================== */

.confirmation-hero {
  background: linear-gradient(135deg, #6bcf7f 0%, #4ecdc4 100%);
  padding: 120px 20px;
  text-align: center;
}

.confirmation-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  color: #6bcf7f;
  margin: 0 auto 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  animation: successPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
}

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

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

.confirmation-message {
  color: #ffffff;
  font-size: 18px;
}

.next-steps,
.meanwhile-explore,
.contact-reminder {
  padding: 80px 20px;
}

.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.suggestion-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.suggestion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.2);
}

/* ========================================
   OFFICE INFO
   ======================================== */

.office-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
}

.address-block,
.hours-block,
.directions-block {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background: #f8f9fa;
  padding: 32px;
  border-radius: 16px;
}

/* ========================================
   SUBMISSION INFO
   ======================================== */

.submission-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.submission-benefits {
  margin: 24px 0;
  padding: 24px;
  background: #f6f8fb;
  border-radius: 16px;
}

/* ========================================
   STORY CONTENT
   ======================================== */

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

/* ========================================
   FORM NOTE
   ======================================== */

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.form-note {
  background: #f6f8fb;
  padding: 32px;
  border-radius: 16px;
  border-left: 4px solid #667eea;
}

.privacy-note {
  font-size: 14px;
  color: #718096;
  margin-top: 16px;
}

.privacy-note a {
  color: #667eea;
  text-decoration: underline;
}

/* ========================================
   FOOTER - PLAYFUL STYLE
   ======================================== */

footer {
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  color: #e2e8f0;
  padding: 60px 20px 20px;
  margin-top: 0;
}

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

.footer-column {
  flex: 1 1 250px;
}

.footer-column h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #ff6b6b, #ffd93d);
  border-radius: 2px;
}

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

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

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

.footer-nav a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
}

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

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

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #a0aec0;
  font-size: 14px;
  margin: 0;
}

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  padding: 24px;
  z-index: 1998;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.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 400px;
  color: #e2e8f0;
  font-size: 14px;
}

.cookie-text p {
  color: white;
}

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

.cookie-buttons .btn {
  padding: 12px 24px;
  font-size: 14px;
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ======================================== */

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .hero { padding: 100px 20px 60px; }
  .hero h1 { font-size: 36px; }
  .hero-subtitle { font-size: 16px; }
  
  .page-hero { padding: 100px 20px 40px; }
  .page-hero h1 { font-size: 32px; }
  
  .feature-card,
  .service-card,
  .destination-card,
  .testimonial-card,
  .category-card,
  .theme-card,
  .value-card,
  .collection-card,
  .suggestion-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .step {
    flex: 1 1 100%;
  }
  
  .stats-grid {
    flex-direction: column;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  .content-wrapper {
    padding: 24px;
  }
  
  .service-detail {
    padding: 24px;
  }
  
  .office-details {
    flex-direction: column;
  }
  
  .address-block,
  .hours-block,
  .directions-block {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  
  .hero h1 { font-size: 28px; }
  .page-hero h1 { font-size: 28px; }
  
  .mobile-menu { width: 100%; }
  
  .step-number {
    width: 64px;
    height: 64px;
    font-size: 24px;
  }
  
  .stat-number { font-size: 36px; }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }

/* ========================================
   ANIMATIONS & MICRO-INTERACTIONS
   ======================================== */

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

.fade-in {
  animation: fadeIn 0.6s ease;
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cta-banner,
  header,
  footer {
    display: none;
  }
  
  body {
    color: #000000;
  }
  
  a {
    color: #000000;
    text-decoration: underline;
  }
}