/* ============================================
   COLLOTRANS - VIBRANT ENERGETIC DESIGN SYSTEM
   ============================================ */

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #0F172A;
  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;
}

/* ============================================
   VIBRANT ENERGETIC COLOR SYSTEM
   ============================================ */
:root {
  --primary: #2563EB;
  --primary-hover: #1E40AF;
  --secondary: #0F172A;
  --accent: #F59E0B;
  --accent-hover: #D97706;
  --text-dark: #0F172A;
  --text-light: #64748B;
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --border: #E2E8F0;
  --success: #10B981;
  --energy-pink: #EC4899;
  --energy-purple: #8B5CF6;
  --energy-cyan: #06B6D4;
  --energy-yellow: #FBBF24;
}

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

/* ============================================
   TYPOGRAPHY - VIBRANT & BOLD
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--secondary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, var(--primary), var(--energy-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 36px;
  color: var(--secondary);
}

h3 {
  font-size: 24px;
  color: var(--secondary);
}

h4 {
  font-size: 20px;
  color: var(--secondary);
}

p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.subheadline {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-light);
  font-weight: 500;
}

strong {
  font-weight: 700;
  color: var(--secondary);
}

/* ============================================
   HEADER - DYNAMIC & BOLD
   ============================================ */
header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--energy-purple) 100%);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
  animation: slideDown 0.5s ease;
}

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

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

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

header img:hover {
  transform: scale(1.1) rotate(-5deg);
}

header nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

header nav a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

header nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.3s ease;
}

header nav a:hover::after {
  width: 100%;
}

header nav a:hover {
  transform: translateY(-2px);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 50px;
  color: #FFFFFF;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.header-contact:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.header-contact img {
  height: 20px;
  width: 20px;
  filter: brightness(0) invert(1);
}

/* ============================================
   MOBILE MENU - ENERGETIC SLIDE-IN
   ============================================ */
.mobile-menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  cursor: pointer;
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 1001;
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, var(--primary), var(--energy-purple));
  z-index: 2000;
  padding: 80px 40px 40px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 30px 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: 2px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  font-size: 32px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 700;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border-left: 4px solid var(--accent);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(8px);
  border-left-width: 8px;
}

/* ============================================
   HERO SECTION - HIGH ENERGY
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--energy-purple) 50%, var(--energy-pink) 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #FFFFFF;
  background: none;
  -webkit-text-fill-color: #FFFFFF;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease;
}

.hero .subheadline {
  font-size: 22px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease;
}

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

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInUp 1.2s ease;
}

.trust-badges {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 16px;
  font-weight: 600;
  animation: fadeInUp 1.4s ease;
}

.trust-badges span {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  padding: 12px 24px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
}

.trust-badges span:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ============================================
   BUTTONS - BOLD & DYNAMIC
   ============================================ */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-primary::before,
.btn-secondary::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-primary:hover::before,
.btn-secondary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--energy-yellow));
  color: var(--secondary);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 3px solid #FFFFFF;
}

.btn-secondary:hover {
  background: #FFFFFF;
  color: var(--primary);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* ============================================
   SECTIONS - ENERGETIC LAYOUTS
   ============================================ */
section {
  padding: 80px 20px;
  margin-bottom: 0;
}

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

 

section h2 {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

section h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
}

section > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 18px;
}

/* ============================================
   CARD GRIDS - FLEXBOX LAYOUTS
   ============================================ */
.value-grid,
.product-grid,
.testimonial-grid,
.article-grid,
.guide-grid,
.methods-grid,
.resource-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.value-card,
.product-card,
.testimonial-card,
.article-card,
.guide-card,
.method-card,
.resource-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 300px;
  max-width: 360px;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.value-card::before,
.product-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
  transition: all 0.5s ease;
}

.value-card:hover::before,
.product-card:hover::before {
  top: -20%;
  right: -20%;
  transform: scale(1.5);
}

.value-card:hover,
.product-card:hover,
.article-card:hover,
.guide-card:hover,
.method-card:hover,
.resource-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.2);
  border-color: var(--primary);
}

.value-card img,
.method-card img {
  height: 64px;
  width: 64px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.3));
  transition: transform 0.3s ease;
}

.value-card:hover img,
.method-card:hover img {
  transform: scale(1.2) rotate(10deg);
}

.value-card h3,
.product-card h3,
.article-card h3,
.guide-card h3 {
  margin-bottom: 16px;
  color: var(--secondary);
}

.value-card p,
.product-card p,
.article-card p,
.guide-card p {
  color: var(--text-light);
  margin-bottom: 16px;
}

.price {
  display: inline-block;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  background: linear-gradient(135deg, var(--accent), var(--energy-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.read-time {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  background: var(--bg-light);
  padding: 6px 16px;
  border-radius: 20px;
  margin-top: 16px;
}

/* ============================================
   TESTIMONIALS - VIBRANT CARDS
   ============================================ */
.testimonials {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.testimonial-card {
  background: var(--bg-white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 32px;
  border-left: 5px solid var(--primary);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 80px;
  font-weight: 900;
  color: rgba(37, 99, 235, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  font-size: 18px;
  font-style: italic;
  color: var(--text-dark);
  position: relative;
  z-index: 1;
}

.customer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
}

.customer strong {
  font-size: 18px;
  color: var(--secondary);
}

.customer span {
  font-size: 14px;
  color: var(--text-light);
}

/* ============================================
   CTA SECTIONS - HIGH ENERGY
   ============================================ */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--energy-purple));
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.3) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}

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

.cta-banner h2,
.cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 24px;
}

.cta-banner p,
.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 32px;
}

/* ============================================
   PAGE HERO - VIBRANT HEADERS
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--energy-cyan) 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
}

.page-hero h1 {
  color: #FFFFFF;
  background: none;
  -webkit-text-fill-color: #FFFFFF;
  margin-bottom: 24px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   CONTENT SECTIONS - DYNAMIC LAYOUTS
   ============================================ */
.story,
.mission,
.team,
.store-info,
.packing-tips,
.destinations,
.buying-guide,
.contact-methods {
  padding: 60px 20px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}

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

.milestone,
.stat {
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, var(--bg-light), var(--bg-white));
  border-radius: 16px;
  flex: 1 1 200px;
  max-width: 250px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.milestone:hover,
.stat:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.milestone h3,
.stat strong {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 8px;
}

.stat span {
  display: block;
  font-size: 16px;
  color: var(--text-light);
  margin-top: 8px;
}

.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
}

.mission-card {
  background: linear-gradient(135deg, var(--primary), var(--energy-purple));
  color: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  flex: 1 1 300px;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.4);
}

.mission-card h3 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.mission-card p {
  color: rgba(255, 255, 255, 0.9);
}

.values ul {
  list-style: none;
  margin-top: 24px;
}

.values li {
  padding: 16px;
  background: var(--bg-light);
  margin-bottom: 16px;
  border-radius: 12px;
  border-left: 4px solid var(--accent);
  transition: all 0.3s ease;
}

.values li:hover {
  background: var(--bg-white);
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.amenities ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.amenities li {
  padding: 16px;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.amenities li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--success);
  color: #FFFFFF;
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

.amenities li:hover {
  background: var(--bg-white);
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* ============================================
   TEXT-IMAGE SECTIONS - ALIGNED CONTENT
   ============================================ */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.text-image-section > * {
  flex: 1 1 300px;
}

/* ============================================
   TIPS & ARTICLES - DYNAMIC CARDS
   ============================================ */
.tips-grid,
.destination-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.tip-card,
.destination-card {
  background: var(--bg-white);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 300px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--border);
  transition: all 0.3s ease;
}

.tip-card:hover,
.destination-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.15);
}

.tip-card h3,
.destination-card h3 {
  color: var(--secondary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tip-card h3::before,
.destination-card h3::before {
  content: '⚡';
  font-size: 24px;
}

.tip-card ul,
.destination-card ul {
  list-style: none;
  margin-top: 16px;
}

.tip-card li,
.destination-card li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-dark);
}

.tip-card li::before,
.destination-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ============================================
   FAQ SECTION - ACCORDION STYLE
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  background: var(--bg-white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 5px solid var(--primary);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
  border-left-width: 8px;
}

.faq-item h3 {
  color: var(--secondary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-item h3::before {
  content: 'Q';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--energy-purple));
  color: #FFFFFF;
  border-radius: 50%;
  font-weight: 800;
  flex-shrink: 0;
}

.faq-item p {
  color: var(--text-dark);
  padding-left: 48px;
}

/* ============================================
   CONTACT PAGE - ENERGETIC LAYOUT
   ============================================ */
.method-card {
  text-align: center;
}

.method-card .value {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary);
  margin: 16px 0;
}

.method-card .availability {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.opening-hours,
.directions {
  background: var(--bg-light);
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 32px;
}

.opening-hours h3,
.directions h3 {
  margin-bottom: 24px;
  color: var(--secondary);
}

.opening-hours ul {
  list-style: none;
}

.opening-hours li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.form-note {
  background: linear-gradient(135deg, var(--bg-light), var(--bg-white));
  padding: 32px;
  border-radius: 16px;
  border: 2px solid var(--primary);
  margin-top: 32px;
}

.form-note strong {
  color: var(--primary);
}

/* ============================================
   THANK YOU PAGE - CELEBRATION
   ============================================ */
.thank-you-hero {
  background: linear-gradient(135deg, var(--success), var(--energy-cyan));
  color: #FFFFFF;
  padding: 100px 20px;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  border: 5px solid #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 0 auto 32px;
  animation: successPulse 1.5s ease infinite;
}

@keyframes successPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.thank-you-hero h1 {
  color: #FFFFFF;
  background: none;
  -webkit-text-fill-color: #FFFFFF;
  margin-bottom: 16px;
}

.thank-you-hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 20px;
}

.sub-message {
  font-size: 16px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.8);
}

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

.step {
  flex: 1 1 250px;
  max-width: 300px;
  padding: 32px;
  background: var(--bg-light);
  border-radius: 16px;
  text-align: center;
  position: relative;
  border: 3px solid var(--border);
  transition: all 0.3s ease;
}

.step.completed {
  border-color: var(--success);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), var(--bg-white));
}

.step.current {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), var(--bg-white));
  animation: currentPulse 2s ease infinite;
}

@keyframes currentPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
  50% { box-shadow: 0 0 0 20px rgba(37, 99, 235, 0); }
}

.step.pending {
  opacity: 0.6;
}

.step h3 {
  margin-bottom: 12px;
}

.spam-notice {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
  margin-top: 16px;
}

/* ============================================
   LEGAL PAGES - READABLE CONTENT
   ============================================ */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.legal-content h2 {
  text-align: left;
  margin-top: 48px;
  margin-bottom: 24px;
  color: var(--secondary);
}

.legal-content h2::after {
  left: 0;
  transform: none;
}

.legal-content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--secondary);
}

.legal-content p {
  margin-bottom: 16px;
  color: var(--text-dark);
}

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

.legal-content li {
  margin-bottom: 12px;
  color: var(--text-dark);
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  background: var(--bg-white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

.legal-content th,
.legal-content td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.legal-content th {
  background: linear-gradient(135deg, var(--primary), var(--energy-purple));
  color: #FFFFFF;
  font-weight: 700;
}

.legal-content tr:last-child td {
  border-bottom: none;
}

.legal-content tr:hover {
  background: var(--bg-light);
}

/* ============================================
   FOOTER - BOLD & COMPREHENSIVE
   ============================================ */
footer {
  background: linear-gradient(135deg, var(--secondary), #1E293B);
  color: rgba(255, 255, 255, 0.9);
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-section {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-section img {
  height: 48px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-section h4 {
  color: #FFFFFF;
  margin-bottom: 20px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.8);
}

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

.footer-section nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-section nav a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

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

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   COOKIE CONSENT BANNER - ENERGETIC
   ============================================ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#cookie-banner.show {
  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 300px;
}

.cookie-text p {
  font-size: 14px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.95);
}

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

.cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

#accept-all {
  background: var(--accent);
  color: var(--secondary);
}

#accept-all:hover {
  background: var(--energy-yellow);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

#reject-all {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

#reject-all:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

#cookie-settings {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

#cookie-settings:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* ============================================
   COOKIE PREFERENCES MODAL
   ============================================ */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 20000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

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

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

.modal-content {
  background: var(--bg-white);
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.modal-header {
  background: linear-gradient(135deg, var(--primary), var(--energy-purple));
  color: #FFFFFF;
  padding: 32px;
  border-radius: 20px 20px 0 0;
  position: relative;
}

.modal-header h3 {
  color: #FFFFFF;
  margin-bottom: 8px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #FFFFFF;
  font-size: 28px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.modal-body {
  padding: 32px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 24px;
  background: var(--bg-light);
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.category-header h4 {
  margin-bottom: 0;
  color: var(--secondary);
}

.toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
}

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

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--border);
  border-radius: 30px;
  transition: all 0.3s ease;
}

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

input:checked + .toggle-slider {
  background: var(--success);
}

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

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

.cookie-category p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 0;
}

.modal-footer {
  padding: 24px 32px;
  background: var(--bg-light);
  border-radius: 0 0 20px 20px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.modal-footer button {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

#save-preferences {
  background: var(--primary);
  color: #FFFFFF;
}

#save-preferences:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */
@media (max-width: 768px) {
  /* Header mobile */
  header nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .header-contact {
    display: none;
  }
  
  /* Typography mobile */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero .subheadline {
    font-size: 18px;
  }
  
  /* Sections mobile */
  section {
    padding: 60px 20px;
  }
  
  /* Buttons mobile */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* Cards mobile */
  .value-grid,
  .product-grid,
  .testimonial-grid,
  .article-grid,
  .guide-grid,
  .methods-grid,
  .resource-grid,
  .tips-grid,
  .destination-grid {
    gap: 24px;
  }
  
  .value-card,
  .product-card,
  .testimonial-card,
  .article-card,
  .guide-card,
  .method-card,
  .resource-card,
  .tip-card,
  .destination-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Text-image sections mobile */
  .text-image-section {
    flex-direction: column;
    gap: 24px;
  }
  
  /* Footer mobile */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    width: 100%;
  }
  
  /* Cookie banner mobile */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1 1 auto;
  }
  
  /* Table mobile */
  .legal-content table {
    font-size: 14px;
  }
  
  .legal-content th,
  .legal-content td {
    padding: 12px 8px;
  }
}

@media (max-width: 480px) {
  /* Ultra mobile */
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 14px 32px;
    font-size: 16px;
  }
  
  .mobile-menu {
    max-width: 100%;
  }
  
  .trust-badges {
    flex-direction: column;
    align-items: stretch;
  }
  
  .trust-badges span {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
  text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal,
  .cta-banner,
  .cta-section {
    display: none;
  }
  
  body {
    background: #FFFFFF;
    color: #000000;
  }
  
  a {
    text-decoration: underline;
  }
}

/* ============================================
   ACCESSIBILITY ENHANCEMENTS
   ============================================ */
*:focus {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* End of CSS */