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

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

body {
  font-family: 'Lato', 'Arial', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

/* Typography - Modern Bold Style */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 900;
  line-height: 1.2;
  color: #0a0a0a;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 56px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

h2 {
  font-size: 42px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

h3 {
  font-size: 28px;
  margin-bottom: 16px;
  font-weight: 800;
}

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

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

ul {
  list-style-position: inside;
}

li {
  margin-bottom: 12px;
}

strong {
  font-weight: 900;
  color: #0a0a0a;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* Header - Bold Modern Design */
header {
  background: #0a0a0a;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border-bottom: 5px solid #D4AF37;
}

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

.logo img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
}

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

.main-nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 20px;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a:hover {
  background: #D4AF37;
  color: #0a0a0a;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1100;
  background: #D4AF37;
  color: #0a0a0a;
  border: none;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  font-size: 28px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

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

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #0a0a0a;
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #D4AF37;
  color: #0a0a0a;
  border: none;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  font-size: 32px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  width: 100%;
  padding: 40px 24px;
}

.mobile-nav a {
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 20px 40px;
  background: #1a1a1a;
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  border: 3px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: #D4AF37;
  color: #0a0a0a;
  border-color: #f4c542;
  transform: scale(1.05);
}

/* Hero Section - Bold Modern */
.hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 8px solid #D4AF37;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 100px,
    rgba(212, 175, 55, 0.03) 100px,
    rgba(212, 175, 55, 0.03) 200px
  );
  animation: heroPattern 20s linear infinite;
}

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

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

.hero h1 {
  color: #ffffff;
  text-shadow: 4px 4px 0 #D4AF37;
  margin-bottom: 32px;
  animation: slideInDown 0.8s ease;
}

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

.hero-subtitle {
  font-size: 22px;
  margin-bottom: 40px;
  color: #F4E4C1;
  font-weight: 400;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-badge {
  font-size: 16px;
  color: #D4AF37;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 40px;
}

/* Buttons - Bold Modern Style */
.btn {
  display: inline-block;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: #D4AF37;
  color: #0a0a0a;
  border-color: #D4AF37;
}

.btn-primary:hover {
  background: #f4c542;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #0a0a0a;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Sections */
section {
  padding: 80px 20px;
  margin-bottom: 0;
  position: relative;
}

.section-subtitle {
  text-align: center;
  font-size: 20px;
  color: #4a4a4a;
  margin-bottom: 60px;
  font-weight: 400;
}

/* Value Proposition Section */
.value-proposition {
  background: #ffffff;
  border-top: 8px solid #0a0a0a;
  border-bottom: 8px solid #0a0a0a;
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 60px;
  color: #0a0a0a;
}

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

.benefit-item {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background: #f9f9f9;
  padding: 40px 32px;
  border-radius: 12px;
  border: 4px solid #0a0a0a;
  box-shadow: 8px 8px 0 #D4AF37;
  transition: all 0.3s ease;
  position: relative;
}

.benefit-item:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 #D4AF37;
}

.benefit-item h3 {
  color: #0a0a0a;
  margin-bottom: 16px;
  font-size: 24px;
}

.benefit-item p {
  color: #2a2a2a;
  font-size: 16px;
  line-height: 1.6;
}

/* Services Section */
.services-preview {
  background: #F4E4C1;
  padding: 80px 20px;
}

.services-preview h2,
.services-list h2 {
  text-align: center;
  margin-bottom: 60px;
  color: #0a0a0a;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 60px;
}

.service-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 300px;
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 12px;
  border: 4px solid #0a0a0a;
  box-shadow: 8px 8px 0 #D4AF37;
  transition: all 0.4s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 #0a0a0a;
  background: #fffef8;
}

.service-card h3 {
  color: #0a0a0a;
  margin-bottom: 20px;
  font-size: 24px;
}

.service-card p {
  color: #2a2a2a;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card .price {
  font-size: 28px;
  font-weight: 900;
  color: #D4AF37;
  margin-top: 24px;
  margin-bottom: 0;
}

.services-preview > .container > .btn-primary {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* Service Detailed */
.service-detailed {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 12px;
  border: 4px solid #0a0a0a;
  box-shadow: 8px 8px 0 #D4AF37;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-detailed h3 {
  color: #0a0a0a;
  font-size: 26px;
}

.service-detailed .price {
  font-size: 32px;
  font-weight: 900;
  color: #D4AF37;
  margin-bottom: 0;
}

/* Testimonials Section */
.testimonials {
  background: #0a0a0a;
  color: #ffffff;
  padding: 80px 20px;
}

.testimonials h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 60px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  background: #ffffff;
  color: #0a0a0a;
  padding: 40px 32px;
  border-radius: 12px;
  border: 4px solid #D4AF37;
  box-shadow: 8px 8px 0 #D4AF37;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.testimonial-card p {
  font-size: 18px;
  font-style: italic;
  line-height: 1.7;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.testimonial-card .author {
  font-weight: 700;
  color: #D4AF37;
  font-style: normal;
  font-size: 16px;
  margin-bottom: 0;
}

/* Stats Section */
.stats {
  margin-top: 60px;
}

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

.stat-item {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 200px;
  text-align: center;
  padding: 32px 24px;
  background: #1a1a1a;
  border-radius: 12px;
  border: 4px solid #D4AF37;
  margin-bottom: 20px;
}

.stat-item strong {
  display: block;
  font-size: 56px;
  color: #D4AF37;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1;
}

.stat-item p {
  font-size: 16px;
  color: #F4E4C1;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #D4AF37 0%, #f4c542 100%);
  color: #0a0a0a;
  text-align: center;
  padding: 80px 20px;
  border-top: 8px solid #0a0a0a;
  border-bottom: 8px solid #0a0a0a;
}

.cta-banner h2 {
  color: #0a0a0a;
  margin-bottom: 24px;
}

.cta-banner p {
  font-size: 20px;
  margin-bottom: 40px;
  font-weight: 400;
}

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

.cta-banner .btn-primary {
  background: #0a0a0a;
  color: #ffffff;
  border-color: #0a0a0a;
}

.cta-banner .btn-primary:hover {
  background: #1a1a1a;
  transform: translateY(-4px) scale(1.05);
}

.cta-banner .btn-secondary {
  background: transparent;
  color: #0a0a0a;
  border-color: #0a0a0a;
}

.cta-banner .btn-secondary:hover {
  background: #0a0a0a;
  color: #ffffff;
}

/* Event Categories */
.event-categories {
  background: #ffffff;
  padding: 80px 20px;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.category-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background: #f9f9f9;
  padding: 32px 24px;
  border-radius: 12px;
  border: 4px solid #0a0a0a;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.category-card:hover {
  background: #D4AF37;
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.category-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

/* Events Grid */
.events-grid,
.highlights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.event-card,
.highlight-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 300px;
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 12px;
  border: 4px solid #0a0a0a;
  box-shadow: 8px 8px 0 #D4AF37;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.event-card:hover,
.highlight-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 #0a0a0a;
}

.event-date,
.event-location {
  font-weight: 700;
  color: #D4AF37;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.highlight-card .stats {
  font-size: 14px;
  color: #D4AF37;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Mission/Vision Section */
.mission-vision {
  background: #F4E4C1;
  padding: 80px 20px;
}

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

.mission,
.vision,
.values {
  margin-bottom: 60px;
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 12px;
  border: 4px solid #0a0a0a;
  box-shadow: 8px 8px 0 #D4AF37;
}

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

.values li {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Story Section */
.story {
  background: #ffffff;
  padding: 80px 20px;
}

.story p {
  max-width: 900px;
  margin: 0 auto 32px auto;
  font-size: 18px;
  line-height: 1.8;
}

/* Achievements */
.achievements {
  background: #0a0a0a;
  color: #ffffff;
  padding: 80px 20px;
}

.achievements h2 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 60px;
}

.achievements-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.achievement-item {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  background: #D4AF37;
  color: #0a0a0a;
  padding: 32px 28px;
  border-radius: 12px;
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  border: 4px solid #0a0a0a;
  box-shadow: 8px 8px 0 #f4c542;
  margin-bottom: 20px;
}

/* Process Section */
.process {
  background: #F4E4C1;
  padding: 80px 20px;
}

.process h2 {
  text-align: center;
  margin-bottom: 60px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.step {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 12px;
  border: 4px solid #0a0a0a;
  box-shadow: 8px 8px 0 #D4AF37;
  margin-bottom: 20px;
  position: relative;
}

.step h3 {
  font-size: 32px;
  color: #D4AF37;
  margin-bottom: 16px;
}

/* Contact Methods */
.contact-methods {
  background: #ffffff;
  padding: 80px 20px;
}

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

.contact-method {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  background: #f9f9f9;
  padding: 40px 32px;
  border-radius: 12px;
  border: 4px solid #0a0a0a;
  box-shadow: 8px 8px 0 #D4AF37;
  text-align: center;
  margin-bottom: 20px;
}

.contact-method h3 {
  margin-bottom: 24px;
}

.contact-method a {
  color: #D4AF37;
  font-weight: 700;
}

.contact-method a:hover {
  color: #0a0a0a;
}

/* Form Placeholder */
.contact-info {
  background: #F4E4C1;
  padding: 80px 20px;
}

.form-placeholder {
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 12px;
  border: 4px solid #0a0a0a;
  box-shadow: 8px 8px 0 #D4AF37;
}

.form-placeholder ul {
  margin-top: 24px;
  margin-bottom: 24px;
}

.form-placeholder li {
  font-size: 16px;
  margin-bottom: 12px;
}

/* FAQ Section */
.faq {
  background: #ffffff;
  padding: 80px 20px;
}

.faq h2 {
  text-align: center;
  margin-bottom: 60px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  background: #f9f9f9;
  padding: 32px 28px;
  border-radius: 12px;
  border: 4px solid #0a0a0a;
  box-shadow: 6px 6px 0 #D4AF37;
  margin-bottom: 20px;
}

.faq-item h3 {
  color: #0a0a0a;
  margin-bottom: 16px;
  font-size: 22px;
}

.faq-item p {
  color: #2a2a2a;
}

/* Thank You Pages */
.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
}

.confirmation {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.confirmation .content-wrapper {
  max-width: 700px;
}

.confirmation ul {
  text-align: left;
  max-width: 600px;
  margin: 32px auto;
}

.resources {
  background: #F4E4C1;
  padding: 80px 20px;
}

.resources h2 {
  text-align: center;
  margin-bottom: 60px;
}

.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.resource-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 12px;
  border: 4px solid #0a0a0a;
  box-shadow: 8px 8px 0 #D4AF37;
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.urgent-contact {
  background: #0a0a0a;
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
}

.urgent-contact h2 {
  color: #ffffff;
}

.urgent-contact p {
  color: #F4E4C1;
  font-size: 18px;
}

/* Legal Content */
.legal-content {
  background: #ffffff;
  padding: 60px 20px;
}

.legal-content .content-wrapper {
  max-width: 900px;
}

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

.legal-content p {
  margin-bottom: 24px;
  line-height: 1.8;
}

/* Footer */
footer {
  background: #0a0a0a;
  color: #ffffff;
  padding: 60px 20px 24px 20px;
  border-top: 8px solid #D4AF37;
}

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

.footer-brand,
.footer-contact,
.footer-links,
.footer-legal {
  flex: 1 1 calc(25% - 30px);
  min-width: 220px;
  margin-bottom: 20px;
}

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

.footer-brand p,
.footer-contact p {
  color: #F4E4C1;
  font-size: 14px;
  line-height: 1.6;
}

footer h3 {
  color: #D4AF37;
  font-size: 18px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 900;
}

.footer-links a,
.footer-legal a {
  display: block;
  color: #F4E4C1;
  font-size: 14px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  font-weight: 400;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: #D4AF37;
  transform: translateX(6px);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 2px solid #1a1a1a;
}

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

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0a0a0a;
  color: #ffffff;
  padding: 24px 20px;
  z-index: 999;
  border-top: 4px solid #D4AF37;
  box-shadow: 0 -6px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 500px;
}

.cookie-text p {
  font-size: 14px;
  margin-bottom: 0;
  color: #F4E4C1;
}

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

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

.cookie-btn-accept {
  background: #D4AF37;
  color: #0a0a0a;
}

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

.cookie-btn-reject,
.cookie-btn-settings {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.cookie-btn-reject:hover,
.cookie-btn-settings:hover {
  background: #ffffff;
  color: #0a0a0a;
}

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

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

.cookie-modal-content {
  background: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 40px 32px;
  border-radius: 12px;
  border: 4px solid #D4AF37;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal h2 {
  margin-bottom: 32px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  border: 2px solid #0a0a0a;
}

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

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

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

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

.cookie-toggle.active::after {
  left: 33px;
}

.cookie-category p {
  font-size: 14px;
  color: #4a4a4a;
  margin-bottom: 0;
}

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

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 32px; }
  h3 { font-size: 24px; }
  p { font-size: 16px; }

  /* Header */
  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  /* Hero */
  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 32px;
    text-shadow: 3px 3px 0 #D4AF37;
  }

  .hero-subtitle {
    font-size: 18px;
  }

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

  /* Sections */
  section {
    padding: 60px 20px;
  }

  /* Grids */
  .benefits-grid,
  .services-grid,
  .testimonials-grid,
  .stats-grid,
  .categories-grid,
  .events-grid,
  .highlights-grid,
  .achievements-grid,
  .process-steps,
  .contact-grid,
  .resources-grid {
    flex-direction: column;
  }

  .benefit-item,
  .service-card,
  .service-detailed,
  .testimonial-card,
  .stat-item,
  .category-card,
  .event-card,
  .highlight-card,
  .achievement-item,
  .step,
  .contact-method,
  .resource-card {
    flex: 1 1 100%;
    min-width: 100%;
  }

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

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

  .footer-brand,
  .footer-contact,
  .footer-links,
  .footer-legal {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* Cookie Consent */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

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

  .cookie-btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  h1 { font-size: 48px; }
  h2 { font-size: 38px; }

  .benefit-item,
  .category-card,
  .achievement-item {
    flex: 1 1 calc(50% - 16px);
  }

  .service-card,
  .event-card,
  .highlight-card {
    flex: 1 1 calc(50% - 16px);
  }
}

/* Animation Classes */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* Utility Classes */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none !important;
  }
}