/* ============================================
   ELUSIVE GHOST - VIBRANT & ENERGETIC DESIGN
   Complete CSS Styles for All Pages
   ============================================ */

/* ===== CSS RESET & BASE ===== */
* {
  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, sans-serif;
  line-height: 1.6;
  color: #1a1a2e;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #0f0f23;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 48px;
  color: #fff;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 0, 255, 0.3);
}

h2 {
  font-size: 36px;
  color: #2d3561;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  color: #2d3561;
  margin-bottom: 16px;
}

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

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

a:hover {
  color: #f50057;
  text-shadow: 0 0 10px rgba(245, 0, 87, 0.5);
}

ul {
  list-style-position: inside;
  margin-bottom: 16px;
}

ul li {
  margin-bottom: 8px;
  padding-left: 8px;
}

strong {
  font-weight: 700;
  color: #2d3561;
}

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

.content-wrapper {
  background: rgba(255, 255, 255, 0.98);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  margin-bottom: 40px;
  border: 3px solid #f50057;
}

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

/* ===== HEADER ===== */
header {
  background: linear-gradient(135deg, #0f0f23 0%, #2d3561 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border-bottom: 4px solid #f50057;
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
  filter: invert(1);
  transition: all 0.3s ease;
}

.logo img:hover {
  filter: drop-shadow(0 0 20px rgba(245, 0, 87, 0.8));
  transform: scale(1.05);
}

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

.main-nav a {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid transparent;
}

.main-nav a:hover {
  background: linear-gradient(135deg, #f50057 0%, #ff4081 100%);
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(245, 0, 87, 0.4);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #f50057 0%, #ff4081 100%);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(245, 0, 87, 0.5);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 8px 25px rgba(245, 0, 87, 0.7);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #0f0f23 0%, #2d3561 100%);
  z-index: 2001;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

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

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

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

.mobile-nav a {
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  padding: 15px 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-nav a:hover {
  background: rgba(245, 0, 87, 0.2);
  border-left-color: #f50057;
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(245, 0, 87, 0.3);
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f50057 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #ff4081;
}

.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: heroPattern 20s linear infinite;
}

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

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  animation: heroTitle 1s ease-out;
}

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

.hero-subtitle {
  font-size: 20px;
  color: #fff;
  margin-bottom: 32px;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: heroSubtitle 1s ease-out 0.3s both;
}

@keyframes heroSubtitle {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroCTA 1s ease-out 0.6s both;
}

@keyframes heroCTA {
  0% { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}

.legal-hero {
  padding: 60px 20px;
  background: linear-gradient(135deg, #2d3561 0%, #667eea 100%);
}

.last-updated {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 16px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, #f50057 0%, #ff4081 100%);
  color: #fff;
  border-color: #fff;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff4081 0%, #f50057 100%);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(245, 0, 87, 0.5);
  color: #fff;
}

.btn-secondary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border-color: #fff;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
  color: #fff;
}

/* ===== SECTIONS ===== */
.introduction,
.services-preview,
.features,
.testimonials,
.story,
.mission-vision,
.approach,
.services-overview,
.services-detailed,
.process,
.faq,
.community-intro,
.membership-tiers,
.community-features,
.member-stories,
.join-process,
.events-intro,
.featured-events,
.event-categories,
.event-info,
.newsletter-section,
.gallery-intro,
.gallery-categories,
.featured-projects,
.workshop-moments,
.community-highlights,
.inspiration-section,
.contact-options,
.contact-form-section,
.contact-info,
.visit-us,
.faq-contact,
.legal-content,
.confirmation-message,
.what-next,
.featured-content,
.contact-alternative,
.return-home {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.intro-text {
  font-size: 18px;
  color: #2d3561;
  line-height: 1.8;
  margin-bottom: 32px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== VALUES & BADGES ===== */
.values {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.value-badge {
  background: linear-gradient(135deg, #f50057 0%, #ff4081 100%);
  color: #fff;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 5px 15px rgba(245, 0, 87, 0.3);
  transition: all 0.3s ease;
  border: 2px solid #fff;
}

.value-badge:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(245, 0, 87, 0.5);
}

/* ===== GRIDS ===== */
.services-grid,
.features-grid,
.testimonials-grid,
.mission-grid,
.approach-grid,
.services-list,
.process-steps,
.faq-list,
.tiers-grid,
.stories-grid,
.events-grid,
.categories-grid,
.info-grid,
.options-grid,
.faq-grid,
.suggestions-grid,
.content-cards,
.projects-grid,
.moments-grid,
.highlights-content,
.inspiration-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

/* ===== CARDS ===== */
.service-card,
.feature-item,
.testimonial-card,
.mission-item,
.approach-item,
.service-detail-card,
.process-step,
.faq-item,
.tier-card,
.story-card,
.event-card,
.category-card,
.info-item,
.option-card,
.suggestion-card,
.content-card,
.project-card,
.moment-card,
.highlight-item,
.inspiration-card,
.feature-card,
.info-card {
  background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  flex: 1 1 300px;
  min-width: 280px;
  border: 3px solid transparent;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover,
.feature-item:hover,
.event-card:hover,
.category-card:hover,
.option-card:hover,
.suggestion-card:hover,
.project-card:hover,
.moment-card:hover,
.inspiration-card:hover,
.feature-card:hover,
.tier-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(245, 0, 87, 0.3);
  border-color: #f50057;
}

.service-card h3,
.event-card h3,
.category-card h3,
.tier-card h3 {
  color: #2d3561;
  margin-bottom: 16px;
  font-size: 22px;
}

.price,
.tier-price,
.event-price {
  font-size: 28px;
  font-weight: 700;
  color: #f50057;
  margin: 16px 0;
  text-shadow: 0 2px 4px rgba(245, 0, 87, 0.2);
}

.event-date {
  font-size: 16px;
  font-weight: 600;
  color: #764ba2;
  margin-bottom: 16px;
  display: block;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
  border: 3px solid #fff;
}

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

.testimonial-author {
  font-weight: 700;
  color: #fff;
  text-align: right;
  margin-top: 16px;
  font-style: normal;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.story-card {
  background: linear-gradient(135deg, #f50057 0%, #ff4081 100%);
  color: #fff;
  border: 3px solid #fff;
}

.story-card p {
  color: #fff;
}

.story-author {
  color: #fff;
  font-weight: 700;
  text-align: right;
  margin-top: 16px;
}

/* ===== FEATURED TIER ===== */
.tier-featured {
  border: 4px solid #f50057;
  transform: scale(1.05);
  background: linear-gradient(135deg, #fff 0%, #ffe6f0 100%);
  box-shadow: 0 10px 40px rgba(245, 0, 87, 0.3);
}

.tier-features {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.tier-features li {
  padding: 12px 0;
  border-bottom: 2px solid rgba(102, 126, 234, 0.1);
  color: #2d3561;
  font-weight: 500;
  padding-left: 30px;
  position: relative;
}

.tier-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #f50057;
  font-weight: 700;
  font-size: 20px;
}

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

.service-features li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  color: #2d3561;
}

.service-features li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: #f50057;
  font-size: 20px;
}

/* ===== CTA SECTIONS ===== */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f50057 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 20px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

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

.cta-content h2 {
  color: #fff;
  font-size: 40px;
  margin-bottom: 24px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.cta-content p {
  color: #fff;
  font-size: 18px;
  margin-bottom: 32px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

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

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

/* ===== LOCATION INFO ===== */
.location-info {
  background: linear-gradient(135deg, #2d3561 0%, #667eea 100%);
  padding: 60px 20px;
  border-radius: 20px;
  margin-bottom: 40px;
}

.location-info h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}

.location-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.location-details {
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 15px;
  flex: 1 1 300px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.location-details p {
  margin-bottom: 20px;
  color: #2d3561;
}

.location-details a {
  color: #f50057;
  font-weight: 600;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, #0f0f23 0%, #2d3561 100%);
  color: #fff;
  padding: 60px 20px 30px;
  border-top: 5px solid #f50057;
}

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

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

.footer-section h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 20px;
  border-bottom: 3px solid #f50057;
  padding-bottom: 10px;
}

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  padding: 8px 0;
  border-left: 3px solid transparent;
  padding-left: 12px;
}

.footer-nav a:hover {
  color: #f50057;
  border-left-color: #f50057;
  padding-left: 20px;
  text-shadow: 0 0 10px rgba(245, 0, 87, 0.5);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.footer-section a {
  color: #fff;
  font-weight: 600;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* ===== COOKIE CONSENT BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #0f0f23 0%, #2d3561 100%);
  color: #fff;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  border-top: 4px solid #f50057;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

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

.cookie-btn {
  padding: 12px 24px;
  border: 2px solid #fff;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 14px;
  background: transparent;
  color: #fff;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #f50057 0%, #ff4081 100%);
  border-color: #f50057;
}

.cookie-btn-accept:hover {
  background: linear-gradient(135deg, #ff4081 0%, #f50057 100%);
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(245, 0, 87, 0.5);
}

.cookie-btn-settings:hover,
.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

#cookie-settings-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 4px solid #f50057;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(102, 126, 234, 0.05);
  border-radius: 10px;
  border-left: 4px solid #667eea;
}

.cookie-category h3 {
  color: #2d3561;
  margin-bottom: 12px;
  font-size: 18px;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 600;
  color: #2d3561;
}

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

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* ===== FORM STYLES ===== */
.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.form-note {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 3px solid #fff;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.form-placeholder {
  background: rgba(102, 126, 234, 0.05);
  padding: 40px;
  border-radius: 15px;
  border: 3px dashed #667eea;
}

.form-placeholder h3 {
  color: #2d3561;
  margin-bottom: 24px;
}

.form-placeholder p {
  background: #fff;
  padding: 15px;
  margin-bottom: 16px;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
  color: #666;
}

.form-placeholder input[type="checkbox"] {
  margin-right: 10px;
}

/* ===== VALUES SECTION ===== */
.values-section {
  margin-top: 40px;
  padding: 30px;
  background: linear-gradient(135deg, #ffe6f0 0%, #fff 100%);
  border-radius: 15px;
  border-left: 5px solid #f50057;
}

.values-section h3 {
  color: #2d3561;
  margin-bottom: 20px;
}

.values-section ul li {
  margin-bottom: 16px;
  color: #2d3561;
  line-height: 1.8;
}

.community-values {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.value-item {
  flex: 1 1 250px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  color: #fff;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
  border: 3px solid #fff;
}

.value-item h3 {
  color: #fff;
  margin-bottom: 12px;
}

.value-item p {
  color: #fff;
}

/* ===== GALLERY STYLES ===== */
.categories-nav {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.category-filter {
  padding: 12px 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border: 3px solid transparent;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 16px;
}

.category-filter:hover,
.category-filter.active {
  background: linear-gradient(135deg, #f50057 0%, #ff4081 100%);
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(245, 0, 87, 0.4);
}

.project-placeholder {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  height: 200px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  border: 3px solid #fff;
}

/* ===== SUCCESS/CONFIRMATION STYLES ===== */
.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f50057 0%, #ff4081 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #fff;
  margin: 0 auto 24px;
  box-shadow: 0 10px 30px rgba(245, 0, 87, 0.4);
  border: 5px solid #fff;
}

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

.response-time,
.response-note {
  margin-top: 24px;
  padding: 20px;
  background: linear-gradient(135deg, #ffe6f0 0%, #fff 100%);
  border-radius: 10px;
  border-left: 4px solid #f50057;
  text-align: center;
}

/* ===== NEWSLETTER BENEFITS ===== */
.newsletter-benefits ul {
  list-style: none;
  padding: 0;
  margin-top: 24px;
}

.newsletter-benefits li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  color: #fff;
  font-size: 16px;
}

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

/* ===== LOCATION FEATURES ===== */
.location-features {
  margin-top: 32px;
  padding: 30px;
  background: linear-gradient(135deg, #ffe6f0 0%, #fff 100%);
  border-radius: 15px;
  border-left: 5px solid #f50057;
}

.location-features h3 {
  color: #2d3561;
  margin-bottom: 20px;
}

.location-features ul li {
  margin-bottom: 12px;
  color: #2d3561;
  font-weight: 500;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .content-wrapper {
    padding: 24px;
  }
  
  .service-card,
  .feature-item,
  .event-card,
  .tier-card {
    flex: 1 1 100%;
  }
  
  .btn {
    padding: 14px 32px;
    font-size: 16px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  .cta-content h2 {
    font-size: 28px;
  }
  
  .header-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 14px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
  }
  
  .hero-cta,
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .value-badge {
    font-size: 14px;
    padding: 10px 20px;
  }
}

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

.service-card,
.feature-item,
.event-card {
  animation: fadeIn 0.6s ease-out;
}

/* ===== UTILITY CLASSES ===== */
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

/* ===== PRINT STYLES ===== */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cta-banner,
  .cta-section,
  #cookie-banner {
    display: none;
  }
  
  body {
    background: #fff;
  }
  
  .content-wrapper {
    box-shadow: none;
    border: 1px solid #ccc;
  }
}