/* =================================================================
   HYPERNOVA GEAR - COMPREHENSIVE STYLESHEET
   Design Style: Warm & Friendly
   ================================================================= */

/* 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', Arial, sans-serif;
  line-height: 1.7;
  color: #2c3e50;
  background-color: #fef9f5;
  overflow-x: hidden;
}

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

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

h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

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

h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

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

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

a:hover {
  color: #C41E2A;
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 20px;
}

li {
  margin-bottom: 12px;
  color: #4a5568;
}

strong {
  font-weight: 700;
  color: #1D3557;
}

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

/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #C41E2A 0%, #A01823 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
  color: #ffffff;
}

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

.btn-secondary:hover {
  background: #E63946;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.2);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* LINKS */
.link,
.read-more {
  color: #E63946;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.link:hover,
.read-more:hover {
  color: #C41E2A;
  transform: translateX(4px);
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  width: 50px;
  height: 50px;
  background: #E63946;
  color: #ffffff;
  border-radius: 50%;
  font-size: 24px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #C41E2A;
  transform: scale(1.05);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 350px;
  height: 100vh;
  background: #ffffff;
  z-index: 1002;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  padding: 80px 30px 40px;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #f8f9fa;
  border-radius: 50%;
  font-size: 24px;
  color: #1D3557;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  color: #1D3557;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: #fff5f6;
  color: #E63946;
  transform: translateX(8px);
}

/* HEADER */
.site-header {
  background: #ffffff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}

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

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #1D3557;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #E63946;
  border-radius: 3px;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #E63946;
}

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

.header-cta {
  display: flex;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #fff5f6 0%, #fef9f5 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero h1 {
  font-size: 56px;
  color: #1D3557;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-subheadline {
  font-size: 20px;
  color: #4a5568;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #fff5f6 0%, #fef9f5 100%);
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

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

.page-subtitle,
.section-subtitle {
  font-size: 20px;
  color: #4a5568;
  max-width: 700px;
  margin: 0 auto 20px;
}

.last-updated {
  font-size: 14px;
  color: #718096;
  font-style: italic;
}

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

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

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

/* FLEXBOX GRID LAYOUTS - CRITICAL REQUIREMENT */
.event-grid,
.benefits-grid,
.services-grid,
.testimonials-grid,
.reports-grid,
.values-grid,
.stats-grid,
.pillars-grid,
.contact-grid,
.resources-grid,
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.card-container,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* EVENT CARDS */
.event-card,
.benefit-card,
.service-card,
.testimonial-card,
.report-card,
.value-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.event-card:hover,
.benefit-card:hover,
.service-card:hover,
.report-card:hover,
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(230, 57, 70, 0.15);
}

.event-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
}

.event-category,
.report-category,
.event-tag {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, #fff5f6 0%, #ffe5e8 100%);
  color: #E63946;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.event-meta,
.report-meta {
  font-size: 14px;
  color: #718096;
  margin-bottom: 16px;
  font-weight: 600;
}

/* BENEFIT CARDS */
.benefit-card,
.value-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  text-align: center;
  align-items: center;
}

.benefit-card img,
.value-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(230, 57, 70, 0.2));
}

/* SERVICE CARDS */
.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  border: 2px solid #f1f5f9;
}

.service-card:hover {
  border-color: #E63946;
}

.service-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #E63946;
  margin: 20px 0;
}

/* DETAILED SERVICE ITEMS */
.service-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 32px;
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.12);
}

.service-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 8px;
}

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

.service-features li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: #4a5568;
  margin-bottom: 8px;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E63946;
  font-weight: 700;
  font-size: 18px;
}

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

/* TESTIMONIALS */
.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  background: #ffffff;
  border-left: 4px solid #E63946;
}

.quote {
  font-size: 18px;
  font-style: italic;
  color: #2c3e50;
  line-height: 1.7;
  margin-bottom: 20px;
}

.client-name {
  font-weight: 700;
  color: #1D3557;
  margin-bottom: 4px;
  font-size: 16px;
}

.client-company {
  color: #718096;
  font-size: 14px;
  margin-bottom: 0;
}

/* REPORT CARDS */
.report-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 320px;
}

.report-image-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-radius: 12px;
  margin-bottom: 20px;
}

.report-excerpt {
  color: #4a5568;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* CALENDAR & EVENTS LIST */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  padding: 24px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  align-items: flex-end;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 200px;
  min-width: 180px;
}

.filter-group label {
  font-weight: 600;
  color: #1D3557;
  font-size: 14px;
}

.filter-select,
.search-input {
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #ffffff;
}

.filter-select:focus,
.search-input:focus {
  outline: none;
  border-color: #E63946;
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
  justify-content: center;
}

.tab-button {
  padding: 12px 28px;
  background: #ffffff;
  color: #1D3557;
  border: 2px solid #e2e8f0;
  border-radius: 25px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.tab-button:hover,
.tab-button.active {
  background: #E63946;
  color: #ffffff;
  border-color: #E63946;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.2);
}

/* EVENT LIST ITEMS */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.event-item {
  display: flex;
  gap: 24px;
  padding: 28px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  align-items: flex-start;
}

.event-item:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.12);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  padding: 16px;
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
  border-radius: 12px;
  color: #ffffff;
  text-align: center;
}

.event-date .day {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.event-date .month {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.event-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.event-location {
  font-weight: 600;
  color: #718096;
  font-size: 14px;
  margin-bottom: 8px;
}

.event-description {
  color: #4a5568;
  margin-bottom: 12px;
}

/* VALUE PROPOSITION & FEATURES */
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 32px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #ffffff;
  border-radius: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  font-weight: 600;
  color: #1D3557;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.15);
}

.highlights-list {
  list-style: none;
  margin: 32px 0;
  padding: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.highlights-list li {
  padding: 16px 0;
  padding-left: 40px;
  position: relative;
  font-size: 18px;
  color: #2c3e50;
  border-bottom: 1px solid #f1f5f9;
}

.highlights-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E63946;
  font-weight: 700;
  font-size: 24px;
}

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

/* STATS SECTION */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 48px 0;
}

.stat-item {
  text-align: center;
  padding: 32px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  flex: 1 1 200px;
  min-width: 200px;
  transition: all 0.3s ease;
}

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

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #E63946;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 16px;
  color: #4a5568;
  font-weight: 600;
  margin-bottom: 0;
}

/* CTA SECTIONS */
.cta-banner,
.cta-section,
.contact-cta,
.services-promotion {
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 24px;
  margin: 60px 20px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

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

.cta-banner h2,
.cta-section h2,
.contact-cta h2 {
  color: #ffffff;
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-banner p,
.cta-section p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 32px;
}

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

.cta-buttons .btn-primary {
  background: #ffffff;
  color: #E63946;
}

.cta-buttons .btn-primary:hover {
  background: #fef9f5;
  transform: translateY(-3px);
}

.cta-buttons .btn-secondary {
  border-color: #ffffff;
  color: #ffffff;
}

.cta-buttons .btn-secondary:hover {
  background: #ffffff;
  color: #E63946;
}

.price-info {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 24px 0;
}

.contact-info {
  margin: 24px 0;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 12px;
}

/* ABOUT PAGE SPECIFIC */
.mission-text {
  font-size: 20px;
  line-height: 1.8;
  color: #2c3e50;
  max-width: 900px;
  margin: 0 auto 24px;
  text-align: center;
}

.rights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.right-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  padding: 28px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #E63946;
}

.cookie-types {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 0;
}

.cookie-category {
  padding: 28px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #E63946;
}

/* CONTACT PAGE */
.contact-layout {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.contact-form-section,
.contact-info-section {
  flex: 1 1 400px;
  min-width: 320px;
}

.form-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-weight: 600;
  color: #1D3557;
  font-size: 15px;
}

.input-field {
  padding: 14px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #ffffff;
}

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

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

.checkbox-field {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

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

.info-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 24px;
}

.quick-contact-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
}

.contact-reason {
  padding-bottom: 20px;
  border-bottom: 1px solid #f1f5f9;
}

.contact-reason:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-reason h4 {
  color: #E63946;
  margin-bottom: 8px;
  font-size: 16px;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #ffffff;
  margin: 0 auto 32px;
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.3);
}

.thank-you-subtitle {
  font-size: 24px;
  color: #1D3557;
  margin-bottom: 16px;
}

.confirmation-text {
  font-size: 18px;
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 700px;
  margin: 48px auto;
}

.step-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.step-number {
  min-width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

.response-time {
  text-align: center;
  font-size: 16px;
  color: #718096;
  font-weight: 600;
  margin-top: 24px;
}

.quick-link-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 240px;
  padding: 32px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quick-link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.15);
}

/* LEGAL PAGES */
.legal-content {
  padding: 40px 20px;
}

.legal-text {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.legal-text h2 {
  color: #1D3557;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f1f5f9;
}

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

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

.legal-text p {
  line-height: 1.8;
  margin-bottom: 20px;
}

.legal-text ul,
.legal-text ol {
  margin-bottom: 24px;
}

.legal-text li {
  line-height: 1.8;
}

/* FOOTER */
.site-footer {
  background: #1D3557;
  color: #ffffff;
  padding: 60px 20px 24px;
  margin-top: 60px;
}

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

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

.footer-logo {
  height: 45px;
  width: auto;
  margin-bottom: 16px;
}

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

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

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-nav a:hover {
  color: #E63946;
  transform: translateX(4px);
}

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

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

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 24px 20px;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.cookie-banner-text {
  flex: 1 1 400px;
}

.cookie-banner-text p {
  margin: 0;
  color: #2c3e50;
  font-size: 15px;
  line-height: 1.6;
}

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

.cookie-banner-actions button {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-accept-all {
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
  color: #ffffff;
}

.btn-accept-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.btn-reject-all,
.btn-cookie-settings {
  background: #f1f5f9;
  color: #1D3557;
}

.btn-reject-all:hover,
.btn-cookie-settings:hover {
  background: #e2e8f0;
}

/* COOKIE SETTINGS MODAL */
.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-settings-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: #ffffff;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

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

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

.cookie-preference {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-preference-info h4 {
  color: #1D3557;
  margin-bottom: 8px;
  font-size: 16px;
}

.cookie-preference-info p {
  color: #4a5568;
  font-size: 14px;
  margin: 0;
}

.cookie-toggle {
  min-width: 50px;
}

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  cursor: pointer;
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Mobile menu visibility */
  .mobile-menu-toggle {
    display: flex;
  }
  
  .main-nav,
  .header-cta {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 38px;
  }
  
  .page-hero h1 {
    font-size: 36px;
  }
  
  /* Section spacing */
  section {
    padding: 40px 20px;
    margin-bottom: 40px;
  }
  
  /* Grid adjustments */
  .event-card,
  .benefit-card,
  .service-card,
  .testimonial-card,
  .report-card,
  .value-card,
  .right-item,
  .quick-link-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .stat-item {
    flex: 1 1 calc(50% - 16px);
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  /* Contact layout */
  .contact-layout {
    flex-direction: column;
  }
  
  /* Event items */
  .event-item {
    flex-direction: column;
  }
  
  .event-date {
    align-self: flex-start;
  }
  
  /* CTA sections */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }
  
  /* Filter bar */
  .filter-bar {
    flex-direction: column;
  }
  
  .filter-group {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  /* Cookie banner */
  .cookie-banner-content {
    flex-direction: column;
  }
  
  .cookie-banner-actions {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-banner-actions button {
    width: 100%;
  }
  
  /* Legal content */
  .legal-text {
    padding: 24px;
  }
  
  /* Service items */
  .service-item {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .stat-item {
    flex: 1 1 100%;
  }
  
  .stat-number {
    font-size: 36px;
  }
}

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

.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

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

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

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .site-header,
  .site-footer,
  .cookie-consent-banner,
  .cookie-settings-modal {
    display: none;
  }
  
  body {
    background: #ffffff;
  }
  
  .container {
    max-width: 100%;
  }
}