/* ==========================================
   LUCER DUALI INVESTORENCLUB - SOFT PASTEL DESIGN
   Comprehensive CSS Styles
   Design Style: Soft Pastel
   ========================================== */

/* ==========================================
   CSS RESET & BASE STYLES
   ========================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #4a4a4a;
  background: linear-gradient(135deg, #fef5f0 0%, #f0e8f5 100%);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* ==========================================
   TYPOGRAPHY - SOFT PASTEL STYLE
   ========================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
  color: #7a5b8f;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  color: #6b5b95;
}

h2 {
  font-size: 32px;
  color: #8b7ba8;
}

h3 {
  font-size: 24px;
  color: #9b8bb8;
}

h4 {
  font-size: 18px;
  color: #aa9bc8;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #5a5a5a;
}

strong {
  font-weight: 600;
  color: #7a5b8f;
}

/* ==========================================
   CONTAINER & LAYOUT
   ========================================== */

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

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

/* ==========================================
   BUTTONS - SOFT PASTEL DESIGN
   ========================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: 'Open Sans', sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, #c9a4d8 0%, #b89dd8 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(185, 157, 216, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #b89dd8 0%, #a88cc8 100%);
  box-shadow: 0 6px 20px rgba(185, 157, 216, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: linear-gradient(135deg, #f5d4c1 0%, #e8c4b1 100%);
  color: #7a5b8f;
  box-shadow: 0 4px 15px rgba(245, 212, 193, 0.3);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #e8c4b1 0%, #dbb4a1 100%);
  box-shadow: 0 6px 20px rgba(245, 212, 193, 0.4);
  transform: translateY(-2px);
}

.btn-link {
  color: #b89dd8;
  font-weight: 600;
  text-decoration: underline;
  padding: 8px 0;
}

.btn-link:hover {
  color: #a88cc8;
}

/* ==========================================
   HEADER - SOFT PASTEL NAVIGATION
   ========================================== */

.site-header {
  background: linear-gradient(135deg, #ffffff 0%, #f9f5fc 100%);
  padding: 20px 0;
  box-shadow: 0 2px 15px rgba(185, 157, 216, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

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

.logo img {
  height: 50px;
  width: auto;
}

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

.main-nav a {
  color: #7a5b8f;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background: linear-gradient(135deg, #f5e8ff 0%, #e8d8f5 100%);
  color: #6b5b95;
}

.header-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ==========================================
   MOBILE MENU - SOFT PASTEL STYLE
   ========================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #c9a4d8 0%, #b89dd8 100%);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(185, 157, 216, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, #b89dd8 0%, #a88cc8 100%);
  box-shadow: 0 6px 20px rgba(185, 157, 216, 0.4);
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #f9f5fc 100%);
  box-shadow: -4px 0 20px rgba(185, 157, 216, 0.2);
  z-index: 1000;
  transition: right 0.3s ease;
  padding: 80px 30px 30px;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #f5d4c1 0%, #e8c4b1 100%);
  color: #7a5b8f;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: linear-gradient(135deg, #e8c4b1 0%, #dbb4a1 100%);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #7a5b8f;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: linear-gradient(135deg, #f5e8ff 0%, #e8d8f5 100%);
  color: #6b5b95;
}

/* ==========================================
   HERO SECTION - SOFT PASTEL DESIGN
   ========================================== */

.hero {
  background: linear-gradient(135deg, #f5e8ff 0%, #e8f5ff 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 30px;
  margin: 40px 0;
  box-shadow: 0 10px 40px rgba(185, 157, 216, 0.2);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 48px;
  color: #6b5b95;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(185, 157, 216, 0.1);
}

.hero-subheadline {
  font-size: 20px;
  color: #7a5b8f;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.trust-indicator {
  font-size: 14px;
  color: #9b8bb8;
  font-style: italic;
}

/* ==========================================
   PAGE HERO - SOFT PASTEL DESIGN
   ========================================== */

.page-hero {
  background: linear-gradient(135deg, #f5e8ff 0%, #ffe8f5 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 30px;
  margin: 40px 0;
  box-shadow: 0 10px 40px rgba(185, 157, 216, 0.2);
}

.breadcrumb {
  font-size: 14px;
  color: #9b8bb8;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: #b89dd8;
  text-decoration: underline;
}

.breadcrumb a:hover {
  color: #a88cc8;
}

.last-updated {
  font-size: 14px;
  color: #9b8bb8;
  font-style: italic;
  margin-top: 16px;
}

/* ==========================================
   VALUE PROPOSITION - SOFT PASTEL CARDS
   ========================================== */

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

.value-proposition h2 {
  color: #6b5b95;
  margin-bottom: 16px;
}

.value-proposition > p {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #7a5b8f;
  font-size: 18px;
}

.value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.value-item {
  flex: 1 1 300px;
  max-width: 350px;
  background: linear-gradient(135deg, #ffffff 0%, #f9f5fc 100%);
  padding: 30px;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(185, 157, 216, 0.15);
  transition: all 0.3s ease;
  text-align: center;
}

.value-item:hover {
  box-shadow: 0 12px 35px rgba(185, 157, 216, 0.25);
  transform: translateY(-5px);
}

.value-item img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

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

.value-item p {
  color: #6a6a6a;
}

/* ==========================================
   MEMBERSHIP CARDS - SOFT PASTEL DESIGN
   ========================================== */

.membership-overview {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fef5f0 0%, #f5f0fe 100%);
  border-radius: 30px;
  margin: 40px 0;
}

.membership-overview h2 {
  text-align: center;
  color: #6b5b95;
  margin-bottom: 16px;
}

.section-subheadline {
  text-align: center;
  color: #7a5b8f;
  font-size: 18px;
  margin-bottom: 40px;
}

.membership-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
}

.membership-card {
  flex: 1 1 300px;
  max-width: 350px;
  background: linear-gradient(135deg, #ffffff 0%, #fef9ff 100%);
  padding: 35px 30px;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(185, 157, 216, 0.15);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  border: 2px solid transparent;
}

.membership-card:hover {
  box-shadow: 0 12px 35px rgba(185, 157, 216, 0.25);
  transform: translateY(-5px);
  border-color: #c9a4d8;
}

.membership-card.featured {
  border: 2px solid #c9a4d8;
  background: linear-gradient(135deg, #f5e8ff 0%, #ffffff 100%);
  transform: scale(1.05);
}

.membership-card.featured:hover {
  transform: scale(1.08) translateY(-5px);
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #c9a4d8 0%, #b89dd8 100%);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(185, 157, 216, 0.3);
}

.membership-card h3 {
  color: #6b5b95;
  margin-bottom: 16px;
  font-size: 24px;
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: #7a5b8f;
  margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
}

.membership-card ul {
  text-align: left;
  margin-bottom: 24px;
}

.membership-card li {
  padding: 10px 0;
  color: #5a5a5a;
  position: relative;
  padding-left: 30px;
}

.membership-card li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #b89dd8;
  font-weight: 700;
  font-size: 18px;
}

/* ==========================================
   MEMBERSHIP DETAILS PAGE
   ========================================== */

.membership-details {
  padding: 60px 20px;
}

.membership-details .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.membership-card-detail {
  background: linear-gradient(135deg, #ffffff 0%, #fef9ff 100%);
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(185, 157, 216, 0.15);
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.membership-card-detail:hover {
  box-shadow: 0 12px 35px rgba(185, 157, 216, 0.25);
  transform: translateY(-3px);
}

.membership-card-detail.featured {
  border: 2px solid #c9a4d8;
  background: linear-gradient(135deg, #f5e8ff 0%, #ffffff 100%);
}

.price-large {
  font-size: 42px;
  font-weight: 700;
  color: #7a5b8f;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}

.ideal-for {
  font-size: 18px;
  color: #9b8bb8;
  font-style: italic;
  margin-bottom: 24px;
}

.feature-list {
  margin-bottom: 32px;
}

.feature-list li {
  padding: 12px 0;
  color: #5a5a5a;
  position: relative;
  padding-left: 35px;
  font-size: 16px;
}

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

/* ==========================================
   STATS SECTION - SOFT PASTEL DESIGN
   ========================================== */

.stats {
  background: linear-gradient(135deg, #f5e8ff 0%, #e8f5ff 100%);
  padding: 60px 20px;
  border-radius: 30px;
  margin: 40px 0;
  text-align: center;
}

.stats h2 {
  color: #6b5b95;
  margin-bottom: 40px;
}

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

.stat-item {
  flex: 1 1 200px;
  max-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #7a5b8f;
  font-family: 'Playfair Display', serif;
}

.stat-label {
  font-size: 16px;
  color: #9b8bb8;
}

/* ==========================================
   TESTIMONIALS - SOFT PASTEL WITH CONTRAST
   ========================================== */

.testimonials {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fef5f0 0%, #f5f0fe 100%);
  border-radius: 30px;
  margin: 40px 0;
}

.testimonials h2 {
  text-align: center;
  color: #6b5b95;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 450px;
  max-width: 550px;
  background: #ffffff;
  padding: 30px;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(185, 157, 216, 0.15);
  border-left: 4px solid #c9a4d8;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 12px 35px rgba(185, 157, 216, 0.25);
  transform: translateY(-3px);
}

.testimonial-card p {
  font-size: 16px;
  color: #3a3a3a;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  color: #6b5b95;
  font-size: 16px;
}

.testimonial-author span {
  color: #7a5b8f;
  font-size: 14px;
}

/* ==========================================
   CTA SECTION - SOFT PASTEL DESIGN
   ========================================== */

.cta-section {
  background: linear-gradient(135deg, #c9a4d8 0%, #b89dd8 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 30px;
  margin: 40px 0;
  box-shadow: 0 10px 40px rgba(185, 157, 216, 0.3);
}

.cta-section h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-section p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 32px;
}

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

.cta-section .btn-primary {
  background: #ffffff;
  color: #7a5b8f;
}

.cta-section .btn-primary:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
}

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

.cta-section .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.contact-info {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
}

.guarantee {
  color: #ffffff;
  font-size: 14px;
  font-style: italic;
}

/* ==========================================
   SERVICES GRID - SOFT PASTEL DESIGN
   ========================================== */

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

.services-overview h2 {
  text-align: center;
  color: #6b5b95;
  margin-bottom: 16px;
}

.services-overview > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #7a5b8f;
  font-size: 18px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-card {
  flex: 1 1 320px;
  max-width: 380px;
  background: linear-gradient(135deg, #ffffff 0%, #f9f5fc 100%);
  padding: 35px 30px;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(185, 157, 216, 0.15);
  transition: all 0.3s ease;
  text-align: center;
}

.service-card:hover {
  box-shadow: 0 12px 35px rgba(185, 157, 216, 0.25);
  transform: translateY(-5px);
}

.service-card h3 {
  color: #6b5b95;
  margin-bottom: 12px;
}

.service-card .price {
  font-size: 28px;
  color: #7a5b8f;
  margin-bottom: 20px;
}

.service-card p {
  color: #5a5a5a;
  margin-bottom: 24px;
}

/* ==========================================
   PROCESS STEPS - SOFT PASTEL DESIGN
   ========================================== */

.service-process {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f5e8ff 0%, #ffe8f5 100%);
  border-radius: 30px;
  margin: 40px 0;
}

.service-process h2 {
  text-align: center;
  color: #6b5b95;
  margin-bottom: 40px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.step {
  flex: 1 1 220px;
  max-width: 260px;
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(185, 157, 216, 0.15);
  transition: all 0.3s ease;
}

.step:hover {
  box-shadow: 0 12px 35px rgba(185, 157, 216, 0.25);
  transform: translateY(-3px);
}

.step h3 {
  color: #7a5b8f;
  margin-bottom: 12px;
  font-size: 20px;
}

.step p {
  color: #6a6a6a;
  font-size: 15px;
}

/* ==========================================
   EVENTS - SOFT PASTEL DESIGN
   ========================================== */

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

.events-featured h2 {
  text-align: center;
  color: #6b5b95;
  margin-bottom: 40px;
}

.event-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.event-card {
  flex: 1 1 320px;
  max-width: 380px;
  background: linear-gradient(135deg, #ffffff 0%, #fef9ff 100%);
  padding: 30px;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(185, 157, 216, 0.15);
  transition: all 0.3s ease;
  position: relative;
}

.event-card:hover {
  box-shadow: 0 12px 35px rgba(185, 157, 216, 0.25);
  transform: translateY(-5px);
}

.event-date {
  display: inline-block;
  background: linear-gradient(135deg, #c9a4d8 0%, #b89dd8 100%);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.event-card h3 {
  color: #6b5b95;
  margin-bottom: 12px;
}

.event-location {
  color: #9b8bb8;
  font-size: 14px;
  margin-bottom: 16px;
  font-style: italic;
}

.event-card p {
  color: #5a5a5a;
  margin-bottom: 20px;
}

/* ==========================================
   EVENT CATEGORIES
   ========================================== */

.event-categories {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fef5f0 0%, #f5f0fe 100%);
  border-radius: 30px;
  margin: 40px 0;
}

.event-categories h2 {
  text-align: center;
  color: #6b5b95;
  margin-bottom: 40px;
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.category-item {
  flex: 1 1 240px;
  max-width: 280px;
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(185, 157, 216, 0.15);
  transition: all 0.3s ease;
}

.category-item:hover {
  box-shadow: 0 12px 35px rgba(185, 157, 216, 0.25);
  transform: translateY(-3px);
}

.category-item h3 {
  color: #7a5b8f;
  margin-bottom: 12px;
}

.category-item p {
  color: #6a6a6a;
  font-size: 15px;
}

/* ==========================================
   CONTACT PAGE - SOFT PASTEL DESIGN
   ========================================== */

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

.contact-options h2 {
  text-align: center;
  color: #6b5b95;
  margin-bottom: 40px;
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.contact-card {
  flex: 1 1 280px;
  max-width: 350px;
  background: linear-gradient(135deg, #ffffff 0%, #f9f5fc 100%);
  padding: 30px;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(185, 157, 216, 0.15);
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  box-shadow: 0 12px 35px rgba(185, 157, 216, 0.25);
  transform: translateY(-3px);
}

.contact-card img {
  width: 50px;
  height: 50px;
  margin: 0 auto 16px;
}

.contact-card h3 {
  color: #7a5b8f;
  margin-bottom: 12px;
}

.contact-card p {
  color: #5a5a5a;
}

/* ==========================================
   CONTACT FORM - SOFT PASTEL DESIGN
   ========================================== */

.contact-form-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f5e8ff 0%, #ffe8f5 100%);
  border-radius: 30px;
  margin: 40px 0;
}

.contact-form-section h2 {
  text-align: center;
  color: #6b5b95;
  margin-bottom: 40px;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-info {
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
}

.form-info p {
  color: #5a5a5a;
}

.form-placeholder {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(185, 157, 216, 0.15);
}

.form-note {
  font-size: 18px;
  font-weight: 600;
  color: #7a5b8f;
  margin-bottom: 20px;
  text-align: center;
}

.form-fields-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.form-fields-list li {
  padding: 12px 16px;
  background: linear-gradient(135deg, #fef9ff 0%, #f9f5fc 100%);
  border-radius: 15px;
  color: #6a6a6a;
  border: 1px solid #e8d8f5;
}

.submit-info {
  text-align: center;
  color: #7a5b8f;
  font-size: 14px;
  font-style: italic;
}

/* ==========================================
   OFFICE LOCATION
   ========================================== */

.office-location {
  padding: 60px 20px;
}

.office-location h2 {
  text-align: center;
  color: #6b5b95;
  margin-bottom: 40px;
}

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

.location-info {
  flex: 1 1 300px;
  max-width: 400px;
}

.location-info p {
  margin-bottom: 20px;
  color: #5a5a5a;
}

.map-placeholder {
  flex: 1 1 300px;
  max-width: 500px;
  background: linear-gradient(135deg, #f5e8ff 0%, #e8f5ff 100%);
  padding: 80px 40px;
  border-radius: 25px;
  text-align: center;
  border: 2px dashed #c9a4d8;
}

.map-placeholder p {
  color: #9b8bb8;
  font-style: italic;
}

/* ==========================================
   LEGAL CONTENT - SOFT PASTEL DESIGN
   ========================================== */

.legal-content {
  padding: 60px 20px;
}

.text-section {
  max-width: 800px;
  margin: 0 auto 40px;
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(185, 157, 216, 0.1);
}

.text-section h2 {
  color: #6b5b95;
  margin-bottom: 16px;
}

.text-section h3 {
  color: #7a5b8f;
  margin-top: 20px;
  margin-bottom: 12px;
}

.text-section p {
  color: #4a4a4a;
  line-height: 1.7;
}

.text-section ul {
  margin: 16px 0;
}

.text-section li {
  color: #5a5a5a;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

.text-section li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #b89dd8;
  font-size: 20px;
}

.text-section a {
  color: #b89dd8;
  text-decoration: underline;
}

.text-section a:hover {
  color: #a88cc8;
}

/* ==========================================
   THANK YOU PAGE - SOFT PASTEL DESIGN
   ========================================== */

.thank-you-hero {
  background: linear-gradient(135deg, #f5e8ff 0%, #e8f5ff 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 30px;
  margin: 40px 0;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

.thank-you-hero h1 {
  color: #6b5b95;
  margin-bottom: 16px;
}

.thank-you-hero .hero-subheadline {
  color: #7a5b8f;
  margin-bottom: 32px;
}

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

.next-steps h2 {
  text-align: center;
  color: #6b5b95;
  margin-bottom: 40px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.next-steps .step {
  flex: 1 1 240px;
  max-width: 300px;
}

.next-steps .step img {
  width: 50px;
  height: 50px;
  margin: 0 auto 16px;
}

.while-you-wait {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fef5f0 0%, #f5f0fe 100%);
  border-radius: 30px;
  margin: 40px 0;
}

.while-you-wait h2 {
  text-align: center;
  color: #6b5b95;
  margin-bottom: 40px;
}

.link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.link-card {
  flex: 1 1 280px;
  max-width: 350px;
  background: #ffffff;
  padding: 30px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(185, 157, 216, 0.15);
  transition: all 0.3s ease;
}

.link-card:hover {
  box-shadow: 0 12px 35px rgba(185, 157, 216, 0.25);
  transform: translateY(-3px);
}

.link-card h3 {
  color: #7a5b8f;
  margin-bottom: 12px;
}

.link-card p {
  color: #6a6a6a;
  margin-bottom: 20px;
}

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

.contact-alternative h2 {
  color: #6b5b95;
  margin-bottom: 24px;
}

.contact-alternative p {
  color: #5a5a5a;
  font-size: 16px;
}

/* ==========================================
   CORPORATE MEMBERSHIP
   ========================================== */

.corporate-membership {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f5e8ff 0%, #ffe8f5 100%);
  border-radius: 30px;
  margin: 40px 0;
  text-align: center;
}

.corporate-membership h2 {
  color: #6b5b95;
  margin-bottom: 16px;
}

.corporate-membership .price-large {
  margin-bottom: 24px;
}

.corporate-membership p {
  max-width: 700px;
  margin: 0 auto 32px;
  color: #5a5a5a;
  font-size: 16px;
}

/* ==========================================
   STORY SECTION
   ========================================== */

.story {
  padding: 60px 20px;
}

.story h2 {
  text-align: center;
  color: #6b5b95;
  margin-bottom: 32px;
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(185, 157, 216, 0.15);
}

.story-content p {
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ==========================================
   FOOTER - SOFT PASTEL DESIGN
   ========================================== */

.site-footer {
  background: linear-gradient(135deg, #6b5b95 0%, #8b7ba8 100%);
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-column {
  flex: 1 1 220px;
  max-width: 280px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 16px;
}

.footer-column h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}

.footer-column p {
  color: #e8d8f5;
  font-size: 14px;
  line-height: 1.6;
}

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

.footer-column nav a {
  color: #e8d8f5;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-column nav a:hover {
  color: #ffffff;
  padding-left: 8px;
}

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

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

/* ==========================================
   COOKIE CONSENT BANNER - SOFT PASTEL
   ========================================== */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #ffffff 0%, #f9f5fc 100%);
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(185, 157, 216, 0.2);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid #c9a4d8;
}

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

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

.cookie-text {
  flex: 1 1 300px;
  color: #5a5a5a;
  font-size: 14px;
}

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

.cookie-buttons .btn {
  padding: 10px 24px;
  font-size: 14px;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(107, 91, 149, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #f9f5fc 100%);
  padding: 40px;
  border-radius: 25px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(185, 157, 216, 0.3);
}

.modal-content h3 {
  color: #6b5b95;
  margin-bottom: 24px;
}

.cookie-category {
  background: #fef9ff;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 16px;
  border: 1px solid #e8d8f5;
}

.cookie-category h4 {
  color: #7a5b8f;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

.cookie-category p {
  color: #6a6a6a;
  font-size: 14px;
}

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

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

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  /* Header */
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Sections */
  .section {
    padding: 30px 16px;
    margin-bottom: 40px;
  }
  
  .hero {
    padding: 50px 20px;
  }
  
  .page-hero {
    padding: 40px 20px;
  }
  
  /* Grids */
  .value-grid,
  .membership-cards,
  .stats-grid,
  .testimonial-grid,
  .services-grid,
  .process-steps,
  .event-cards,
  .category-grid,
  .contact-cards,
  .steps-grid,
  .link-grid {
    gap: 20px;
  }
  
  /* Cards */
  .membership-card.featured {
    transform: scale(1);
  }
  
  .membership-card.featured:hover {
    transform: translateY(-3px);
  }
  
  /* Buttons */
  .hero-cta,
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    max-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-column {
    max-width: 100%;
  }
  
  /* Cookie Consent */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  /* Location */
  .location-content {
    flex-direction: column;
  }
  
  .location-info,
  .map-placeholder {
    max-width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }
  
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
}

@media (min-width: 1025px) {
  .mobile-menu-toggle {
    display: none;
  }
}

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

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

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.hidden {
  display: none;
}

/* ==========================================
   ANIMATIONS - SOFT & DREAMY
   ========================================== */

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

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

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

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

/* ==========================================
   ACCESSIBILITY
   ========================================== */

:focus {
  outline: 2px solid #c9a4d8;
  outline-offset: 2px;
}

.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: #c9a4d8;
  color: #ffffff;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-to-content:focus {
  top: 0;
}

/* ==========================================
   PRINT STYLES
   ========================================== */

@media print {
  .site-header,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .cta-section,
  .site-footer {
    display: none;
  }
  
  body {
    background: #ffffff;
  }
  
  a {
    text-decoration: underline;
  }
}

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