/* ===================================
   SCHLAFWELLE - LUXURY PREMIUM DESIGN
   Modern, Sophisticated Sleep Wellness
   =================================== */

/* CSS RESET & BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}
.cookie-text p, .cookie-text strong {
  color: white;
}
body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.7;
  color: #1a1a1a;
  background-color: #fefefe;
  overflow-x: hidden;
}

/* LUXURY TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  color: #0f1419;
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 48px;
  margin-bottom: 32px;
  background: linear-gradient(135deg, #2B4C7E 0%, #1a2f4d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 36px;
  color: #2B4C7E;
  position: relative;
  padding-bottom: 16px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37 0%, #f4d03f 100%);
  border-radius: 2px;
}

h3 {
  font-size: 24px;
  color: #1a2f4d;
}

h4 {
  font-size: 20px;
  color: #2B4C7E;
}

p {
  margin-bottom: 16px;
  color: #2d2d2d;
  font-size: 16px;
}

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

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

li {
  margin-bottom: 12px;
  color: #2d2d2d;
}

strong {
  font-weight: 600;
  color: #1a1a1a;
}

em {
  font-style: italic;
  color: #4a4a4a;
}

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

/* HEADER - LUXURY PREMIUM */
header {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  box-shadow: 0 2px 20px rgba(43, 76, 126, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  min-height: 80px;
}

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

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

/* NAVIGATION - LUXURY STYLE */
.main-nav {
  display: flex;
  gap: 40px;
  align-items: center;
}

.main-nav a {
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: 500;
  color: #2B4C7E;
  padding: 8px 0;
  position: relative;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4af37 0%, #f4d03f 100%);
  transition: width 0.3s ease;
}

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

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

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2000;
  background: linear-gradient(135deg, #2B4C7E 0%, #1a2f4d 100%);
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(43, 76, 126, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(43, 76, 126, 0.4);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
  z-index: 1999;
  padding: 80px 32px 32px;
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 2px solid rgba(212, 175, 55, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: #2B4C7E;
  color: #ffffff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(43, 76, 126, 0.3);
}

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

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

.mobile-nav a {
  font-family: 'Georgia', serif;
  font-size: 18px;
  font-weight: 500;
  color: #2B4C7E;
  padding: 20px 0;
  border-bottom: 1px solid rgba(43, 76, 126, 0.1);
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.mobile-nav a:hover {
  color: #1a2f4d;
  padding-left: 12px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
}

/* HERO SECTION - LUXURY PREMIUM */
.hero {
  background: linear-gradient(135deg, #E8F1F5 0%, #ffffff 50%, #f8f9fa 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid rgba(212, 175, 55, 0.3);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

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

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

.hero-subtitle {
  font-size: 24px;
  color: #2B4C7E;
  font-weight: 500;
  margin-bottom: 24px;
  font-family: 'Georgia', serif;
  font-style: italic;
}

.hero p {
  font-size: 18px;
  color: #4a4a4a;
  margin-bottom: 32px;
  line-height: 1.8;
}

/* CTA BUTTONS - LUXURY STYLE */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Georgia', serif;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 14px;
}

.btn-primary {
  background: linear-gradient(135deg, #2B4C7E 0%, #1a2f4d 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(43, 76, 126, 0.3);
  border: 2px solid #d4af37;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1a2f4d 0%, #0f1a2e 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(43, 76, 126, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #2B4C7E;
  border: 2px solid #2B4C7E;
  box-shadow: 0 2px 10px rgba(43, 76, 126, 0.1);
}

.btn-secondary:hover {
  background: #2B4C7E;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(43, 76, 126, 0.3);
}

.trust-badge {
  font-size: 14px;
  color: #d4af37;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 16px;
}

/* SECTIONS - LUXURY SPACING */
.section,
section {
  padding: 80px 20px;
  margin-bottom: 0;
}

.section-subtitle {
  font-size: 18px;
  color: #6a6a6a;
  text-align: center;
  margin-bottom: 48px;
  font-style: italic;
}

/* PROBLEM-SOLUTION SECTION */
.problem-solution {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

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

.problem-solution h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.problem-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.problem-list li {
  background: #ffffff;
  padding: 20px 32px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(43, 76, 126, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  font-size: 16px;
  color: #2B4C7E;
  font-weight: 500;
  transition: all 0.3s ease;
}

.problem-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(43, 76, 126, 0.15);
  border-color: #d4af37;
}

/* SERVICES OVERVIEW */
.services-overview {
  background: #ffffff;
  text-align: center;
}

.services-overview h2 {
  text-align: center;
}

.services-overview h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 48px 0;
}

.service-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  max-width: 400px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(43, 76, 126, 0.1);
  border: 2px solid rgba(212, 175, 55, 0.2);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d4af37 0%, #f4d03f 100%);
  border-radius: 12px 12px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(43, 76, 126, 0.2);
  border-color: #d4af37;
}

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

.service-card h3 {
  color: #2B4C7E;
  margin-bottom: 16px;
  font-size: 22px;
}

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

.price {
  font-size: 28px;
  font-weight: 700;
  color: #d4af37;
  font-family: 'Playfair Display', serif;
  margin: 16px 0;
}

/* PROCESS STEPS - LUXURY */
.process {
  background: linear-gradient(135deg, #E8F1F5 0%, #ffffff 100%);
  text-align: center;
}

.process h2 {
  text-align: center;
}

.process h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  max-width: 250px;
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(43, 76, 126, 0.1);
  border: 2px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 24px;
}

.step::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 25px rgba(43, 76, 126, 0.15);
  border-color: #d4af37;
}

.step h3 {
  color: #2B4C7E;
  margin-bottom: 16px;
  margin-top: 16px;
}

.step p {
  color: #4a4a4a;
  font-size: 15px;
}

/* BENEFITS GRID */
.benefits {
  background: #ffffff;
  text-align: center;
}

.benefits h2 {
  text-align: center;
}

.benefits h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.benefit {
  flex: 1 1 calc(50% - 16px);
  min-width: 250px;
  max-width: 350px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 32px 28px;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(43, 76, 126, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.benefit:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 25px rgba(43, 76, 126, 0.12);
  border-color: #d4af37;
}

.benefit h3 {
  color: #2B4C7E;
  margin-bottom: 12px;
  font-size: 20px;
}

.benefit p {
  color: #4a4a4a;
  font-size: 15px;
}

/* TESTIMONIALS - LUXURY PREMIUM */
.testimonials {
  background: linear-gradient(135deg, #f8f9fa 0%, #E8F1F5 100%);
  padding: 80px 20px;
  text-align: center;
}

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

.testimonials h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 48px 0;
}

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  max-width: 500px;
  background: #ffffff;
  padding: 40px 36px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(43, 76, 126, 0.12);
  border-left: 4px solid #d4af37;
  transition: all 0.3s ease;
  text-align: left;
  position: relative;
  margin-bottom: 24px;
}

.testimonial-card::before {
  content: '❝';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 60px;
  color: rgba(212, 175, 55, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(43, 76, 126, 0.18);
}

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

.testimonial-author {
  font-weight: 600;
  color: #2B4C7E;
  font-style: normal;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}

.rating-summary {
  font-size: 18px;
  color: #d4af37;
  font-weight: 600;
  margin-top: 32px;
  text-align: center;
}

/* STATS SECTION */
.stats {
  background: linear-gradient(135deg, #2B4C7E 0%, #1a2f4d 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  border-top: 3px solid #d4af37;
  border-bottom: 3px solid #d4af37;
}

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

.stat {
  flex: 1 1 calc(25% - 30px);
  min-width: 180px;
  max-width: 250px;
  padding: 24px;
  margin-bottom: 20px;
}

.stat h3 {
  font-size: 48px;
  color: #d4af37;
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
}

.stat p {
  font-size: 16px;
  color: #E8F1F5;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* CTA BANNER */
.cta-banner,
.cta-section,
.booking-cta,
.expert-cta {
  background: linear-gradient(135deg, #E8F1F5 0%, #ffffff 100%);
  padding: 80px 20px;
  text-align: center;
  border-top: 2px solid rgba(212, 175, 55, 0.2);
}

.cta-banner h2,
.cta-section h2,
.booking-cta h2,
.expert-cta h2 {
  text-align: center;
  margin-bottom: 24px;
}

.cta-banner h2::after,
.cta-section h2::after,
.booking-cta h2::after,
.expert-cta h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.trust-element,
.guarantee,
.security-note {
  font-size: 14px;
  color: #d4af37;
  font-weight: 600;
  margin-top: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #2B4C7E 0%, #1a2f4d 100%);
  color: #ffffff;
  padding: 60px 20px 40px;
  text-align: center;
  border-bottom: 3px solid #d4af37;
}

.page-hero h1 {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  margin-bottom: 16px;
}

.page-hero .hero-subtitle {
  color: #E8F1F5;
  font-size: 20px;
  margin-bottom: 16px;
}

.page-hero p {
  color: #E8F1F5;
  font-size: 16px;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 24px;
  color: #E8F1F5;
  text-align: center;
}

.breadcrumb a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* TEAM GRID */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.team-member {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  max-width: 400px;
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(43, 76, 126, 0.1);
  border: 2px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
  text-align: center;
  margin-bottom: 24px;
}

.team-member:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(43, 76, 126, 0.15);
  border-color: #d4af37;
}

.team-member h3 {
  color: #2B4C7E;
  margin-bottom: 8px;
}

.role {
  font-size: 14px;
  color: #d4af37;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

/* DETAILED SERVICE CARDS */
.services-detailed {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-card-detailed {
  background: #ffffff;
  padding: 48px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(43, 76, 126, 0.1);
  border-left: 4px solid #d4af37;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.service-card-detailed:hover {
  box-shadow: 0 8px 30px rgba(43, 76, 126, 0.15);
  transform: translateX(4px);
}

.service-card-detailed h2 {
  color: #2B4C7E;
  margin-bottom: 16px;
}

.service-meta {
  font-size: 14px;
  color: #6a6a6a;
  margin-bottom: 24px;
  font-weight: 500;
}

.service-card-detailed ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.service-card-detailed ul li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: #4a4a4a;
}

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

/* ARTICLE GRIDS */
.article-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin: 48px 0;
}

.article-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(43, 76, 126, 0.08);
  border-top: 3px solid #d4af37;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 25px rgba(43, 76, 126, 0.15);
}

.article-card h3 {
  color: #2B4C7E;
  margin-bottom: 16px;
  font-size: 20px;
}

.article-meta {
  font-size: 13px;
  color: #8a8a8a;
  font-style: italic;
  margin-top: 16px;
}

/* FEATURED ARTICLE */
.article-featured {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 48px 40px;
  border-radius: 12px;
  box-shadow: 0 6px 30px rgba(43, 76, 126, 0.12);
  border: 2px solid #d4af37;
  margin: 40px 0;
}

/* CATEGORY CARDS */
.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 48px 0;
}

.category-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  max-width: 350px;
  background: linear-gradient(135deg, #2B4C7E 0%, #1a2f4d 100%);
  color: #ffffff;
  padding: 32px 28px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(43, 76, 126, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid rgba(212, 175, 55, 0.3);
  margin-bottom: 24px;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(43, 76, 126, 0.3);
  border-color: #d4af37;
}

.category-card h3 {
  color: #d4af37;
  margin-bottom: 12px;
}

.category-card p {
  color: #E8F1F5;
  font-size: 15px;
}

/* WORKSHOP SECTIONS */
.workshop-dates,
.agenda-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px 0;
}

.workshop-date,
.agenda-item {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(43, 76, 126, 0.08);
  border-left: 4px solid #d4af37;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  transition: all 0.3s ease;
}

.workshop-date:hover,
.agenda-item:hover {
  box-shadow: 0 6px 25px rgba(43, 76, 126, 0.15);
  transform: translateX(4px);
}

.workshop-date h3,
.agenda-item h3 {
  color: #2B4C7E;
  font-size: 22px;
  margin-bottom: 0;
}

.availability {
  font-size: 14px;
  color: #d4af37;
  font-weight: 600;
  text-transform: uppercase;
}

/* PRICING GRID */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 48px 0;
}

.price-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 250px;
  max-width: 350px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(43, 76, 126, 0.1);
  border: 2px solid rgba(212, 175, 55, 0.3);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(43, 76, 126, 0.2);
  border-color: #d4af37;
}

.price-large {
  font-size: 48px;
  font-weight: 700;
  color: #d4af37;
  font-family: 'Playfair Display', serif;
  margin: 20px 0;
}

/* CONTACT SECTIONS */
.contact-grid,
.contact-option {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 40px 0;
}

.contact-option {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  max-width: 450px;
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(43, 76, 126, 0.1);
  border-top: 3px solid #d4af37;
  text-align: center;
  margin-bottom: 24px;
}

.info-box {
  background: linear-gradient(135deg, #E8F1F5 0%, #ffffff 100%);
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #d4af37;
  margin: 32px 0;
}

/* LOCATIONS */
.locations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 40px 0;
}

.location-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 250px;
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(43, 76, 126, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  margin-bottom: 24px;
}

.location-card h3 {
  color: #2B4C7E;
  margin-bottom: 16px;
}

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

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

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 24px;
}

.legal-content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

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

.quick-links {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid rgba(212, 175, 55, 0.2);
}

.quick-links ul {
  list-style: none;
  padding: 0;
}

.quick-links li {
  margin-bottom: 12px;
}

.quick-links a {
  color: #2B4C7E;
  font-weight: 500;
  text-decoration: underline;
}

.quick-links a:hover {
  color: #d4af37;
}

/* CONFIRMATION PAGE */
.confirmation-hero {
  background: linear-gradient(135deg, #E8F1F5 0%, #ffffff 100%);
  padding: 80px 20px;
  text-align: center;
}

.success-message h1 {
  font-size: 48px;
  color: #2B4C7E;
  margin-bottom: 24px;
}

.success-message h2 {
  font-size: 28px;
  color: #1a2f4d;
  margin-bottom: 24px;
}

.success-message h2::after {
  display: none;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 40px 0;
}

.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 40px 0;
}

.suggestion {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  max-width: 450px;
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(43, 76, 126, 0.1);
  border-top: 3px solid #d4af37;
  text-align: center;
  margin-bottom: 24px;
}

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

.resource-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 250px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(43, 76, 126, 0.1);
  border: 2px solid rgba(212, 175, 55, 0.2);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.resource-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(43, 76, 126, 0.15);
  border-color: #d4af37;
}

/* FOOTER - LUXURY PREMIUM */
footer {
  background: linear-gradient(135deg, #1a2f4d 0%, #0f1a2e 100%);
  color: #E8F1F5;
  padding: 60px 20px 32px;
  border-top: 3px solid #d4af37;
}

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

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

.footer-section h4 {
  color: #d4af37;
  font-size: 18px;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p {
  color: #E8F1F5;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.footer-nav a {
  color: #E8F1F5;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
}

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

.copyright {
  text-align: center;
  color: #8BA8C7;
  font-size: 14px;
  padding-top: 32px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  margin-top: 32px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a2f4d 0%, #0f1a2e 100%);
  color: #ffffff;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  border-top: 2px solid #d4af37;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

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

.cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: 'Georgia', serif;
}

.cookie-accept {
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  color: #1a1a1a;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.cookie-reject {
  background: transparent;
  color: #E8F1F5;
  border: 1px solid #E8F1F5;
}

.cookie-reject:hover {
  background: rgba(232, 241, 245, 0.1);
}

.cookie-settings {
  background: transparent;
  color: #d4af37;
  border: 1px solid #d4af37;
}

.cookie-settings:hover {
  background: rgba(212, 175, 55, 0.1);
}

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

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

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

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.modal-header h3 {
  color: #2B4C7E;
  margin-bottom: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #6a6a6a;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: #2B4C7E;
  transform: rotate(90deg);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 3px solid #d4af37;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.category-header h4 {
  margin-bottom: 0;
  color: #2B4C7E;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 26px;
}

.toggle-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: #d4af37;
}

input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

input:disabled + .toggle-slider {
  background-color: #2B4C7E;
  opacity: 0.6;
  cursor: not-allowed;
}

.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Show mobile menu */
  .mobile-menu {
    display: block;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 20px;
  }
  
  /* Section padding */
  .section,
  section {
    padding: 60px 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  /* Flex items full width on mobile */
  .services-grid,
  .benefits-grid,
  .testimonial-grid,
  .process-steps,
  .stats-grid,
  .team-grid,
  .article-grid,
  .category-grid,
  .pricing-grid,
  .contact-grid,
  .locations-grid,
  .resource-grid {
    flex-direction: column;
    gap: 24px;
  }
  
  .service-card,
  .benefit,
  .testimonial-card,
  .step,
  .stat,
  .team-member,
  .article-card,
  .category-card,
  .price-card,
  .contact-option,
  .location-card,
  .resource-card {
    flex: 1 1 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
  
  /* CTA buttons stack */
  .cta-buttons {
    flex-direction: column;
    gap: 16px;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Footer stack */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie banner stack */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1 1 auto;
  }
  
  /* Modal adjustments */
  .modal-content {
    padding: 24px;
    margin: 20px;
  }
  
  /* Workshop dates stack */
  .workshop-date,
  .agenda-item {
    flex-direction: column;
    text-align: center;
  }
  
  /* Price adjustment */
  .price-large {
    font-size: 40px;
  }
  
  .price {
    font-size: 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .service-card,
  .benefit,
  .team-member,
  .article-card {
    flex: 1 1 calc(50% - 16px);
  }
  
  .category-card,
  .price-card {
    flex: 1 1 calc(50% - 16px);
  }
}

/* SMOOTH SCROLLING & ANIMATIONS */
@media (prefers-reduced-motion: no-preference) {
  .service-card,
  .benefit,
  .testimonial-card,
  .step,
  .team-member,
  .article-card,
  .category-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .service-card:nth-child(1) { animation-delay: 0.1s; }
  .service-card:nth-child(2) { animation-delay: 0.2s; }
  .service-card:nth-child(3) { animation-delay: 0.3s; }
  .service-card:nth-child(4) { animation-delay: 0.4s; }
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .btn {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .container {
    max-width: 100%;
  }
}

/* ACCESSIBILITY IMPROVEMENTS */
.btn:focus,
a:focus,
button:focus {
  outline: 3px solid #d4af37;
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* HIGH CONTRAST MODE */
@media (prefers-contrast: high) {
  .btn-primary {
    border: 3px solid #ffffff;
  }
  
  .service-card,
  .testimonial-card,
  .benefit {
    border: 2px solid #000000;
  }
}

/* DARK MODE SUPPORT */
@media (prefers-color-scheme: dark) {
  /* Keep luxury light theme - no dark mode for premium brand */
}

/* END OF STYLES */