/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

/* Playful Dynamic Typography */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Lato:wght@400;700;900&display=swap');

h1, h2, h3, h4 {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8B1529;
}

h1 {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: slideInBounce 0.8s ease-out;
}

h2 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 20px;
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FF9500, #8B1529);
  border-radius: 2px;
}

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

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

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

/* Playful Animations */
@keyframes slideInBounce {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

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

/* Header Styles */
header {
  background: linear-gradient(135deg, #8B1529 0%, #C41E3A 100%);
  padding: 16px 0;
  box-shadow: 0 4px 20px rgba(139, 21, 41, 0.3);
  position: sticky;
  top: 0;
  z-index: 900;
  animation: slideDown 0.5s ease-out;
}

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

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

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

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

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

.main-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.main-nav a:hover {
  background: rgba(255, 149, 0, 0.2);
  transform: translateY(-2px);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background: #8B1529;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(139, 21, 41, 0.4);
  transition: all 0.3s ease;
}

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

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

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #8B1529 0%, #C41E3A 100%);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  padding: 80px 30px 30px;
  overflow-y: auto;
}

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

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

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

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

.mobile-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-nav a:hover {
  background: rgba(255, 149, 0, 0.3);
  border-left-color: #FF9500;
  transform: translateX(10px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #FF9500 0%, #8B1529 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

@keyframes movePattern {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

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

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

.hero-subheadline {
  font-size: 20px;
  margin-bottom: 32px;
  line-height: 1.8;
  font-weight: 400;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.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: #8B1529;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(139, 21, 41, 0.4);
}

.btn-primary:hover {
  background: #C41E3A;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(139, 21, 41, 0.5);
}

.btn-secondary {
  background: #ffffff;
  color: #8B1529;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
  background: #FF9500;
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 149, 0, 0.5);
}

.trust-badge {
  font-size: 14px;
  font-weight: 700;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #8B1529 0%, #C41E3A 100%);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

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

.page-hero p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto;
}

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

.value-proposition {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.value-proposition h2 {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 32px;
}

/* Benefits Grid */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 60px;
  justify-content: center;
}

.benefit-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid #FF9500;
}

.benefit-card:hover {
  transform: translateY(-8px) rotate(2deg);
  box-shadow: 0 8px 25px rgba(139, 21, 41, 0.2);
  border-top-color: #8B1529;
}

.benefit-card h3 {
  color: #8B1529;
  margin-bottom: 12px;
  font-size: 20px;
}

.benefit-card p {
  color: #555;
  font-size: 15px;
}

/* Stats */
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  padding: 40px 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: #8B1529;
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

/* Services */
.services-overview {
  padding: 60px 20px;
  background: #ffffff;
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #555;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.service-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 149, 0, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 30px rgba(139, 21, 41, 0.2);
  border-color: #FF9500;
}

.service-card h3 {
  color: #8B1529;
  margin-bottom: 16px;
  font-size: 22px;
  position: relative;
}

.service-card p {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.7;
}

.price {
  display: inline-block;
  background: linear-gradient(135deg, #FF9500 0%, #8B1529 100%);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  padding: 60px 20px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 40px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #FF9500;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 80px;
  color: rgba(255, 149, 0, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(139, 21, 41, 0.15);
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
  color: #2d2d2d;
  position: relative;
  z-index: 1;
}

.author {
  display: block;
  font-weight: 700;
  color: #8B1529;
  margin-bottom: 4px;
  font-size: 16px;
}

.role {
  display: block;
  font-size: 14px;
  color: #777;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #FF9500 0%, #8B1529 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -150px;
  left: -150px;
  animation: float 6s ease-in-out infinite;
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  bottom: -200px;
  right: -200px;
  animation: float 8s ease-in-out infinite;
}

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

.cta-banner h2::after {
  display: none;
}

.cta-banner p {
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.trust-note {
  font-size: 14px;
  font-weight: 700;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

/* About Page Styles */
.about-story {
  padding: 60px 20px;
}

.text-section {
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

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

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  background: linear-gradient(135deg, #FF9500 0%, #8B1529 100%);
  color: #ffffff;
  border-radius: 16px;
  min-width: 200px;
  box-shadow: 0 6px 20px rgba(139, 21, 41, 0.3);
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-8px) rotate(3deg);
}

.highlight-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.highlight-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.mission-vision {
  background: #f9f9f9;
  padding: 60px 20px;
}

.mission-box, .vision-box {
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 32px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #FF9500;
}

.values {
  max-width: 800px;
  margin: 40px auto 0;
}

.values-list {
  list-style: none;
  padding: 0;
}

.values-list li {
  padding: 16px;
  margin-bottom: 12px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.values-list li:hover {
  transform: translateX(10px);
  border-left-color: #8B1529;
  box-shadow: 0 4px 15px rgba(139, 21, 41, 0.15);
}

/* Team Grid */
.team {
  padding: 60px 20px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.team-member {
  flex: 1 1 calc(50% - 32px);
  min-width: 250px;
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid #FF9500;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(139, 21, 41, 0.2);
  border-top-color: #8B1529;
}

.member-role {
  color: #FF9500;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

/* Services Detailed */
.services-intro {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.value-props {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 32px;
}

.prop-item {
  padding: 16px 24px;
  background: #ffffff;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-weight: 700;
  font-size: 14px;
  color: #8B1529;
  transition: all 0.3s ease;
}

.prop-item:hover {
  transform: scale(1.05);
  background: #FF9500;
  color: #ffffff;
}

.services-detailed {
  padding: 60px 20px;
}

.service-detail {
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 40px;
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #FF9500;
}

.service-tagline {
  font-size: 18px;
  color: #555;
  font-style: italic;
  margin-bottom: 16px;
}

.price-tag {
  display: inline-block;
  background: linear-gradient(135deg, #FF9500 0%, #8B1529 100%);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.service-includes {
  margin: 32px 0;
  padding: 24px;
  background: rgba(255, 149, 0, 0.1);
  border-radius: 12px;
}

.service-includes h3 {
  color: #8B1529;
  margin-bottom: 16px;
}

.service-includes ul {
  list-style: none;
  padding: 0;
}

.service-includes li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  color: #2d2d2d;
}

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

.perfect-for {
  font-weight: 700;
  color: #8B1529;
  font-size: 16px;
  margin-top: 24px;
}

/* Events Listing */
.events-listing {
  padding: 60px 20px;
}

.event-card {
  margin-bottom: 32px;
  padding: 32px;
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #FF9500;
  transition: all 0.3s ease;
  position: relative;
}

.event-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(139, 21, 41, 0.2);
  border-left-color: #8B1529;
}

.event-category {
  display: inline-block;
  background: #FF9500;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.event-date, .event-location {
  font-weight: 700;
  color: #8B1529;
  font-size: 14px;
  margin-bottom: 8px;
}

.event-status {
  display: inline-block;
  background: #2C5F2D;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 16px;
}

.organize-event {
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  padding: 60px 20px;
  text-align: center;
}

.benefits-list {
  list-style: none;
  max-width: 700px;
  margin: 32px auto;
  padding: 0;
  text-align: left;
}

.benefits-list li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  font-size: 16px;
  color: #2d2d2d;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FF9500;
  font-weight: 700;
  font-size: 20px;
}

/* Gallery Styles */
.gallery-intro {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}

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

.stats-row span {
  padding: 16px 24px;
  background: #ffffff;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-weight: 700;
  color: #8B1529;
}

.gallery-categories {
  padding: 60px 20px;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.category-box {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid #FF9500;
}

.category-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 10px 30px rgba(139, 21, 41, 0.2);
  border-top-color: #8B1529;
}

.count {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #FF9500;
  margin: 12px 0;
  font-family: 'Bebas Neue', sans-serif;
}

.featured-events {
  padding: 60px 20px;
  background: #f9f9f9;
}

.featured-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.featured-event {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #FF9500;
}

.event-stats {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #FF9500;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Contact Styles */
.contact-methods {
  padding: 60px 20px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.contact-method {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid #FF9500;
}

.contact-method:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(139, 21, 41, 0.2);
  border-top-color: #8B1529;
}

.contact-detail {
  font-size: 20px;
  font-weight: 700;
  color: #8B1529;
  margin: 16px 0;
}

.contact-hours {
  font-size: 14px;
  color: #777;
  margin-bottom: 12px;
}

.contact-note {
  font-size: 14px;
  font-style: italic;
  color: #555;
}

.office-info {
  padding: 60px 20px;
  background: #f9f9f9;
}

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

.detail-block {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
}

.team-contact {
  padding: 60px 20px;
}

.team-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.team-contact-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #FF9500;
}

.specialization {
  font-style: italic;
  color: #555;
  margin-top: 12px;
}

/* Legal Pages */
.legal-page {
  padding: 60px 20px;
}

.legal-page h1 {
  margin-bottom: 40px;
}

.legal-page h2 {
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-page h3 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.back-link {
  margin-top: 40px;
  text-align: center;
}

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, #FF9500 0%, #8B1529 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #ffffff;
  color: #2C5F2D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  margin: 0 auto 24px;
  animation: pulse 2s ease-in-out infinite;
}

.thank-you-hero h1 {
  color: #ffffff;
}

.hero-subtitle {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.next-steps {
  padding: 60px 20px;
}

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

.step-box {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-top: 4px solid #FF9500;
}

.timeline-note {
  text-align: center;
  font-weight: 700;
  color: #8B1529;
  font-size: 16px;
}

.explore-resources {
  padding: 60px 20px;
  background: #f9f9f9;
}

.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.resource-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.contact-reminder {
  padding: 60px 20px;
  text-align: center;
}

.contact-details {
  max-width: 600px;
  margin: 32px auto;
  line-height: 1.8;
}

.return-home {
  padding: 40px 20px;
  text-align: center;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  padding: 60px 20px;
  text-align: center;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  color: #ffffff;
  padding: 60px 20px 20px;
}

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

.footer-section {
  flex: 1 1 calc(25% - 40px);
  min-width: 220px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
}

.footer-section h4 {
  color: #FF9500;
  margin-bottom: 16px;
  font-size: 16px;
}

.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a, .footer-legal a {
  color: #cccccc;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer-nav a:hover, .footer-legal a:hover {
  color: #FF9500;
  transform: translateX(5px);
}

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

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

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

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  color: #ffffff;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1200;
  transform: translateY(100%);
  transition: transform 0.4s 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: 20px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 60%;
  min-width: 280px;
}

.cookie-text p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

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

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

.cookie-accept {
  background: #2C5F2D;
  color: #ffffff;
}

.cookie-accept:hover {
  background: #3a7d3c;
  transform: scale(1.05);
}

.cookie-reject {
  background: #8B1529;
  color: #ffffff;
}

.cookie-reject:hover {
  background: #C41E3A;
  transform: scale(1.05);
}

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

.cookie-settings:hover {
  background: #FF9500;
  color: #ffffff;
  transform: scale(1.05);
}

/* Cookie Settings Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1300;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.modal-content {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: slideInBounce 0.5s ease-out;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f0f0f0;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #2d2d2d;
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 12px;
  border-left: 4px solid #FF9500;
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #8B1529;
}

.cookie-category p {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  appearance: none;
  background: #ccc;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: #2C5F2D;
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  top: 2px;
  left: 2px;
  transition: left 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input[type="checkbox"]:checked::before {
  left: 26px;
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

.modal-save {
  flex: 1;
  padding: 14px 28px;
  background: #2C5F2D;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-save:hover {
  background: #3a7d3c;
  transform: scale(1.05);
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: block;
  }

  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }

  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

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

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

  /* Button stacking */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  /* Grid adjustments */
  .benefits-grid,
  .services-grid,
  .testimonials-grid,
  .team-grid,
  .contact-grid,
  .categories-grid,
  .featured-grid,
  .steps-grid,
  .resources-grid {
    flex-direction: column;
  }

  .benefit-card,
  .service-card,
  .testimonial-card,
  .team-member,
  .contact-method,
  .category-box,
  .featured-event,
  .step-box,
  .resource-card {
    flex: 1 1 100%;
  }

  /* Stats adjustments */
  .stats {
    flex-direction: column;
    gap: 24px;
  }

  .stats-highlights {
    flex-direction: column;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
  }

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

  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
  }

  .cookie-text {
    flex: 1 1 100%;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  /* Modal */
  .modal-content {
    padding: 24px;
    max-height: 90vh;
  }

  .modal-buttons {
    flex-direction: column;
  }

  .modal-save {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

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

  .page-hero h1 {
    font-size: 32px;
  }

  .stat-number {
    font-size: 36px;
  }

  .highlight-number {
    font-size: 36px;
  }
}

/* Accessibility */
a:focus,
button:focus,
input:focus {
  outline: 3px solid #FF9500;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-buttons {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
  }

  a {
    text-decoration: underline;
  }
}