/* ========================================
   SPARKLE GUIDES - PLAYFUL DYNAMIC STYLE
   Modern Film Review Platform CSS
   ======================================== */

/* ========================================
   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: #1D3557;
  background: linear-gradient(135deg, #F1FAEE 0%, #ffffff 100%);
  overflow-x: hidden;
}

/* ========================================
   TYPOGRAPHY - PLAYFUL & DYNAMIC
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1D3557;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -1px;
  animation: slideInDown 0.8s ease-out;
}

h2 {
  font-size: 36px;
  color: #E63946;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

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

a {
  color: #E63946;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ========================================
   CONTAINER & LAYOUT - FLEXBOX ONLY
   ======================================== */

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

/* ========================================
   HEADER - ANIMATED & STICKY
   ======================================== */

header {
  background: linear-gradient(135deg, #E63946 0%, #C7202E 100%);
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.3);
  position: static;
  top: 0;
  z-index: 1000;
  animation: slideDown 0.5s ease-out;
}

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

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

.logo:hover img {
  transform: scale(1.1) rotate(5deg);
}

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

.main-nav a {
  color: #F1FAEE;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(241, 250, 238, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.main-nav a:hover::before {
  width: 200px;
  height: 200px;
}

.main-nav a:hover {
  background: rgba(241, 250, 238, 0.1);
  transform: translateY(-2px);
}

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

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #E63946;
  border: none;
  color: white;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
  transition: all 0.3s ease;
  animation: bounceIn 0.6s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #1D3557 0%, #0D1B2A 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

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

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

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

.mobile-nav a {
  color: #F1FAEE;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 12px;
  background: rgba(241, 250, 238, 0.05);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-nav a:hover {
  background: rgba(230, 57, 70, 0.2);
  border-left-color: #E63946;
  transform: translateX(10px);
}

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

.hero {
  background: linear-gradient(135deg, #E63946 0%, #1D3557 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(241, 250, 238, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  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(199, 32, 46, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

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

.hero h1 {
  color: #F1FAEE;
  font-size: 56px;
  margin-bottom: 20px;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.subheadline {
  font-size: 24px;
  color: #F1FAEE;
  font-weight: 600;
  margin-bottom: 16px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero p {
  color: rgba(241, 250, 238, 0.9);
  font-size: 18px;
  margin-bottom: 32px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

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

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.trust-indicators span {
  color: #F1FAEE;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  background: rgba(241, 250, 238, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

/* ========================================
   BUTTONS - PLAYFUL & INTERACTIVE
   ======================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.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.5s ease, height 0.5s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, #E63946 0%, #C7202E 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

.btn-secondary {
  background: white;
  color: #E63946;
  border: 2px solid #E63946;
}

.btn-secondary:hover {
  background: #E63946;
  color: white;
  transform: translateY(-3px) scale(1.05);
}

.btn-large {
  padding: 18px 40px;
  font-size: 18px;
}

/* ========================================
   SECTIONS - CONSISTENT SPACING
   ======================================== */

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

section h2 {
  text-align: center;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease-out;
}

.subtitle {
  text-align: center;
  color: #1D3557;
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.8;
}

/* ========================================
   CARDS - FLEXBOX GRID WITH ANIMATIONS
   ======================================== */

.reviews-grid,
.services-grid,
.values-grid,
.collections-grid,
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.review-card,
.service-card,
.value-item,
.collection-card,
.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(29, 53, 87, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 380px;
  margin-bottom: 20px;
  overflow: hidden;
}

.review-card::before,
.service-card::before,
.collection-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #E63946 0%, #C7202E 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.review-card:hover::before,
.service-card:hover::before,
.collection-card:hover::before {
  transform: scaleX(1);
}

.review-card:hover,
.service-card:hover,
.value-item:hover,
.collection-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 35px rgba(230, 57, 70, 0.2);
}

.review-card h3,
.service-card h3,
.collection-card h3 {
  color: #1D3557;
  margin-bottom: 12px;
  font-size: 22px;
}

.review-card p,
.service-card p,
.collection-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* ========================================
   RATING STARS - BRIGHT & VISIBLE
   ======================================== */

.rating {
  color: #FFB800;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: pulse 2s ease-in-out infinite;
}

/* ========================================
   BADGES & LABELS - PLAYFUL ACCENTS
   ======================================== */

.badge {
  display: inline-block;
  background: linear-gradient(135deg, #E63946 0%, #C7202E 100%);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  box-shadow: 0 2px 10px rgba(230, 57, 70, 0.3);
  animation: bounceIn 0.6s ease;
}

.platform-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #1D3557;
  color: #F1FAEE;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
}

/* ========================================
   PRICE DISPLAY - ENERGETIC
   ======================================== */

.price {
  font-size: 32px;
  font-weight: 700;
  color: #E63946;
  margin: 16px 0;
  text-align: center;
}

.price-large {
  font-size: 48px;
  font-weight: 700;
  color: #E63946;
  text-align: center;
  margin: 20px 0;
  animation: pulse 2s ease-in-out infinite;
}

/* ========================================
   TESTIMONIALS - HIGH CONTRAST
   ======================================== */

.testimonial-card {
  background: linear-gradient(135deg, #F1FAEE 0%, #ffffff 100%);
  border: 2px solid #E63946;
  padding: 30px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
}

.testimonial-card .rating {
  font-size: 24px;
  margin-bottom: 16px;
}

.testimonial-card p {
  color: #1D3557;
  font-size: 16px;
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.8;
}

.testimonial-card .author {
  color: #E63946;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
}

/* ========================================
   FILTERS & DROPDOWNS
   ======================================== */

.filter-section {
  background: white;
  padding: 30px 20px;
  margin-bottom: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(29, 53, 87, 0.1);
}

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

.filter-dropdown {
  padding: 12px 20px;
  border: 2px solid #E63946;
  border-radius: 25px;
  background: white;
  color: #1D3557;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 150px;
}

.filter-dropdown:hover,
.filter-dropdown:focus {
  background: #E63946;
  color: white;
  transform: translateY(-2px);
}

/* ========================================
   FORMS - INTERACTIVE & MODERN
   ======================================== */

.form-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-field {
  flex: 1 1 calc(50% - 20px);
  min-width: 250px;
  margin-bottom: 20px;
}

.form-field.full-width {
  flex: 1 1 100%;
}

.form-field label {
  display: block;
  font-weight: 600;
  color: #1D3557;
  margin-bottom: 8px;
  font-size: 14px;
}

.input-field {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #E0E0E0;
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: white;
}

.input-field:focus {
  outline: none;
  border-color: #E63946;
  box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.1);
  transform: translateY(-2px);
}

textarea.input-field {
  resize: vertical;
  min-height: 120px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* ========================================
   PAGE HERO - CONSISTENT HEADER
   ======================================== */

.page-hero {
  background: linear-gradient(135deg, #1D3557 0%, #0D1B2A 100%);
  padding: 60px 20px;
  margin-bottom: 40px;
  text-align: center;
}

.page-hero h1 {
  color: #F1FAEE;
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(241, 250, 238, 0.9);
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
}

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 20px;
  color: rgba(241, 250, 238, 0.7);
}

.breadcrumbs a {
  color: #F1FAEE;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: #E63946;
}

/* ========================================
   CTA SECTIONS - HIGH ENERGY
   ======================================== */

.cta-banner {
  background: linear-gradient(135deg, #E63946 0%, #C7202E 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(241, 250, 238, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.cta-banner h2 {
  color: #F1FAEE;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(241, 250, 238, 0.9);
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
}

/* ========================================
   FOOTER - PLAYFUL & ORGANIZED
   ======================================== */

footer {
  background: #1D3557;
  color: #F1FAEE;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

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

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

.tagline {
  font-size: 14px;
  color: rgba(241, 250, 238, 0.8);
  margin-bottom: 0;
}

.footer-section h4 {
  color: #E63946;
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: rgba(241, 250, 238, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: #E63946;
  padding-left: 5px;
}

.footer-section p {
  font-size: 14px;
  color: rgba(241, 250, 238, 0.8);
  line-height: 1.8;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(241, 250, 238, 0.2);
}

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

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1D3557 0%, #0D1B2A 100%);
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.cookie-text {
  flex: 1 1 300px;
  color: #F1FAEE;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 10px 24px;
  border-radius: 25px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background: #E63946;
  color: white;
}

.cookie-btn-accept:hover {
  background: #C7202E;
  transform: translateY(-2px);
}

.cookie-btn-reject {
  background: transparent;
  color: #F1FAEE;
  border: 2px solid #F1FAEE;
}

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

.cookie-btn-settings {
  background: transparent;
  color: #E63946;
  border: 2px solid #E63946;
}

.cookie-btn-settings:hover {
  background: #E63946;
  color: white;
}

/* ========================================
   COOKIE MODAL
   ======================================== */

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(29, 53, 87, 0.95);
  z-index: 2001;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideInUp 0.4s ease-out;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #1D3557;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #E63946;
  color: white;
  transform: rotate(90deg);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #F1FAEE;
  border-radius: 12px;
}

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

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

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

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

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

/* ========================================
   SPECIAL SECTIONS
   ======================================== */

.featured-banner {
  background: linear-gradient(135deg, #E63946 0%, #C7202E 100%);
  padding: 40px;
  border-radius: 20px;
  color: white;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.featured-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(241, 250, 238, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.featured-banner h2 {
  color: white;
  margin-bottom: 16px;
}

.featured-banner p {
  color: rgba(241, 250, 238, 0.9);
  margin-bottom: 12px;
}

.featured-banner .count {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
}

.premium-cta {
  background: linear-gradient(135deg, #1D3557 0%, #0D1B2A 100%);
  padding: 40px;
  border-radius: 20px;
  color: white;
  text-align: center;
  margin: 40px 0;
}

.premium-cta h3 {
  color: #F1FAEE;
  margin-bottom: 20px;
}

.premium-cta ul {
  list-style: none;
  margin-bottom: 24px;
  text-align: left;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.premium-cta ul li {
  color: #F1FAEE;
  padding: 8px 0;
  font-size: 15px;
}

/* ========================================
   STATS & NUMBERS
   ======================================== */

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.stat-card {
  background: linear-gradient(135deg, #E63946 0%, #C7202E 100%);
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  color: white;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.3);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.05);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  animation: countUp 1s ease-out;
}

.stat-label {
  font-size: 14px;
  color: rgba(241, 250, 238, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================================
   LEGAL & TEXT CONTENT
   ======================================== */

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

.legal-text {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(29, 53, 87, 0.1);
}

.legal-text h2 {
  color: #1D3557;
  margin-top: 32px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 2px solid #E63946;
}

.legal-text h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-text h3 {
  color: #E63946;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-text ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-text ul li {
  margin-bottom: 8px;
  line-height: 1.8;
}

.toc {
  background: #F1FAEE;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 32px;
}

.toc h3 {
  color: #1D3557;
  margin-bottom: 16px;
}

.toc ul {
  list-style: none;
  margin-left: 0;
}

.toc ul li {
  margin-bottom: 8px;
}

.toc ul li a {
  color: #E63946;
  font-weight: 600;
  transition: all 0.3s ease;
}

.toc ul li a:hover {
  padding-left: 8px;
}

/* ========================================
   ANIMATIONS
   ======================================== */

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

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

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

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

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

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

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

@keyframes countUp {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

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

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

  .main-nav {
    display: none;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .subheadline {
    font-size: 18px;
  }

  .hero p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .trust-indicators {
    flex-direction: column;
    align-items: center;
  }

  .reviews-grid,
  .services-grid,
  .values-grid,
  .collections-grid {
    flex-direction: column;
    align-items: center;
  }

  .review-card,
  .service-card,
  .value-item,
  .collection-card,
  .testimonial-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .filters {
    flex-direction: column;
  }

  .filter-dropdown {
    width: 100%;
  }

  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  .footer-section {
    flex: 1 1 100%;
  }

  section {
    padding: 24px 16px;
  }

  .legal-text {
    padding: 24px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }

  .cookie-btn {
    flex: 1 1 auto;
  }

  .form-field {
    flex: 1 1 100%;
  }

  .stat-card {
    flex: 1 1 100%;
  }
}

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

  .testimonial-card {
    flex: 1 1 100%;
  }

  .stat-card {
    flex: 1 1 calc(50% - 24px);
  }
}

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

.text-center {
  text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.mt-0 { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* ========================================
   READ MORE LINKS
   ======================================== */

.read-more,
.explore-btn {
  color: #E63946;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 12px;
}

.read-more:hover,
.explore-btn:hover {
  color: #C7202E;
  transform: translateX(5px);
}

/* ========================================
   META INFO
   ======================================== */

.meta {
  font-size: 13px;
  color: #999;
  margin-bottom: 12px;
  font-weight: 600;
}

.last-updated,
.effective-date {
  font-size: 14px;
  color: rgba(241, 250, 238, 0.8);
  font-style: italic;
}

/* ========================================
   HIGHLIGHTED CARDS
   ======================================== */

.service-card.highlighted {
  border: 3px solid #E63946;
  background: linear-gradient(135deg, #FFF5F5 0%, #ffffff 100%);
  position: relative;
}

.service-card.highlighted .badge {
  position: absolute;
  top: -12px;
  right: 20px;
}

/* ========================================
   NEWSLETTER FORM
   ======================================== */

.newsletter-cta {
  background: linear-gradient(135deg, #1D3557 0%, #0D1B2A 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;
  margin: 60px 0;
}

.newsletter-cta h2 {
  color: #F1FAEE;
  margin-bottom: 16px;
}

.newsletter-cta p {
  color: rgba(241, 250, 238, 0.9);
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto 16px;
}

.email-input {
  flex: 1 1 300px;
  padding: 14px 20px;
  border: 2px solid #F1FAEE;
  border-radius: 30px;
  font-size: 15px;
  background: rgba(241, 250, 238, 0.1);
  color: #F1FAEE;
}

.email-input::placeholder {
  color: rgba(241, 250, 238, 0.6);
}

.email-input:focus {
  outline: none;
  background: rgba(241, 250, 238, 0.2);
}

.privacy-note {
  font-size: 12px;
  color: rgba(241, 250, 238, 0.7);
}

/* ========================================
   MOOD BUTTONS
   ======================================== */

.mood-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.mood-btn {
  padding: 12px 24px;
  background: white;
  border: 2px solid #E63946;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mood-btn:hover {
  background: #E63946;
  color: white;
  transform: translateY(-4px) scale(1.05);
}

/* ========================================
   GENRE CARDS
   ======================================== */

.genres-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.genre-card {
  background: linear-gradient(135deg, #E63946 0%, #C7202E 100%);
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  flex: 1 1 calc(33.333% - 20px);
  min-width: 150px;
  max-width: 200px;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.genre-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.4);
}

.genre-card h3 {
  color: white;
  font-size: 20px;
  margin-bottom: 8px;
}

.genre-card p {
  color: rgba(241, 250, 238, 0.9);
  font-size: 14px;
  margin-bottom: 0;
}

/* ========================================
   TRENDING SECTION
   ======================================== */

.trending-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.trending-card {
  background: white;
  padding: 24px;
  border-radius: 16px;
  flex: 1 1 calc(33.333% - 20px);
  min-width: 200px;
  max-width: 300px;
  box-shadow: 0 4px 20px rgba(29, 53, 87, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.trending-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(230, 57, 70, 0.2);
}

.trending-card .badge {
  position: absolute;
  top: -10px;
  left: 20px;
}

/* ========================================
   THANK YOU PAGE
   ======================================== */

.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #E63946 0%, #C7202E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: white;
  margin: 0 auto 32px;
  animation: bounceIn 0.8s ease;
}

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

.next-actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.action-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 350px;
  box-shadow: 0 4px 20px rgba(29, 53, 87, 0.1);
  transition: all 0.3s ease;
}

.action-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(230, 57, 70, 0.2);
}

.social-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-link {
  padding: 12px 24px;
  background: #E63946;
  color: white;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #C7202E;
  transform: translateY(-4px) scale(1.05);
}

/* ========================================
   CONTACT PAGE SPECIFICS
   ======================================== */

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.contact-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  box-shadow: 0 4px 20px rgba(29, 53, 87, 0.1);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(230, 57, 70, 0.2);
}

.contact-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.map-placeholder {
  background: #F1FAEE;
  padding: 60px 20px;
  border-radius: 16px;
  text-align: center;
  font-size: 24px;
  color: #1D3557;
}

.map-note {
  font-size: 14px;
  color: #999;
  margin-top: 12px;
}

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

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

.faq-item {
  background: white;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(29, 53, 87, 0.08);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.15);
  transform: translateY(-4px);
}

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

.faq-item p {
  color: #666;
  font-size: 15px;
  line-height: 1.8;
}

/* ========================================
   END OF STYLES
   ======================================== */