/* ===================================
   ORBIS BRAIN - WARM & FRIENDLY DESIGN
   CSS Reset & Base Styles
   =================================== */

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

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

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

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  color: #1A1B4B;
  line-height: 1.3;
  margin-bottom: 16px;
  font-weight: 600;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

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

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  color: #4a4a4a;
}

a {
  text-decoration: none;
  color: #6B4E9E;
  transition: color 0.3s ease;
}

a:hover {
  color: #D4AF37;
}

ul {
  list-style: none;
}

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

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

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

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

/* ===================================
   HEADER
   =================================== */

header {
  background: linear-gradient(135deg, #fef8f0 0%, #fff5e8 100%);
  box-shadow: 0 2px 15px rgba(107, 78, 158, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

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

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

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

.main-nav a {
  font-size: 16px;
  font-weight: 500;
  color: #1A1B4B;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a:hover {
  background-color: rgba(212, 175, 55, 0.1);
  color: #6B4E9E;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #D4AF37;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.header-cta .btn {
  padding: 12px 24px;
}

/* ===================================
   MOBILE MENU
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #6B4E9E;
  color: white;
  border: none;
  border-radius: 12px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(107, 78, 158, 0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #1A1B4B 0%, #6B4E9E 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
  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: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(212, 175, 55, 0.8);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: white;
  font-size: 18px;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 500;
}

.mobile-nav a:hover {
  background: rgba(212, 175, 55, 0.3);
  transform: translateX(5px);
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, #6B4E9E 0%, #8B6BB7 100%);
  color: white;
  border-color: #6B4E9E;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #D4AF37 0%, #E5C04D 100%);
  border-color: #D4AF37;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: white;
  color: #6B4E9E;
  border-color: #6B4E9E;
}

.btn-secondary:hover {
  background: #6B4E9E;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 78, 158, 0.3);
}

/* ===================================
   HERO SECTIONS
   =================================== */

.hero {
  background: linear-gradient(135deg, #fef8f0 0%, #fff5e8 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 10px 30px rgba(107, 78, 158, 0.1);
}

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

.hero h1 {
  color: #1A1B4B;
  margin-bottom: 24px;
}

.subheadline {
  font-size: 20px;
  color: #6B4E9E;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.trust-badge {
  margin-top: 32px;
  font-size: 14px;
  color: #D4AF37;
  font-weight: 600;
}

.page-hero {
  background: linear-gradient(135deg, #1A1B4B 0%, #6B4E9E 100%);
  padding: 60px 20px 40px;
  margin-bottom: 60px;
  border-radius: 0 0 30px 30px;
}

.page-hero h1 {
  color: white;
  text-align: center;
}

.page-hero .subheadline {
  color: #D4AF37;
  text-align: center;
}

.breadcrumb {
  text-align: center;
  margin-bottom: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
  color: #D4AF37;
}

/* ===================================
   SERVICES & CARDS
   =================================== */

.services-overview,
.services-detailed {
  padding: 60px 20px;
  background-color: white;
  border-radius: 20px;
  margin-bottom: 40px;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #6B4E9E;
  margin-bottom: 40px;
}

.services-grid,
.features-grid,
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card,
.feature,
.testimonial-card {
  background: linear-gradient(135deg, #fef8f0 0%, #fff5e8 100%);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(107, 78, 158, 0.1);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover,
.feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.service-card h3,
.feature h3 {
  color: #1A1B4B;
  margin-bottom: 16px;
}

.service-card p,
.feature p {
  color: #4a4a4a;
  margin-bottom: 16px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #D4AF37;
  margin: 16px 0;
}

.service-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* ===================================
   DETAILED SERVICES
   =================================== */

.services-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-detailed {
  background: linear-gradient(135deg, #fef8f0 0%, #fff5e8 100%);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(107, 78, 158, 0.1);
  margin-bottom: 20px;
  position: relative;
}

.service-detailed h3 {
  color: #1A1B4B;
  margin-bottom: 12px;
}

.duration {
  font-size: 14px;
  color: #6B4E9E;
  font-weight: 600;
  margin-bottom: 16px;
}

.service-detailed ul {
  margin: 20px 0;
  padding-left: 0;
}

.service-detailed li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #4a4a4a;
}

.service-detailed li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: bold;
}

/* ===================================
   FEATURES
   =================================== */

.features {
  padding: 60px 20px;
  background: white;
  border-radius: 20px;
  margin-bottom: 40px;
}

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

.feature {
  text-align: center;
  padding: 32px 24px;
}

.feature h3 {
  margin-bottom: 16px;
  color: #6B4E9E;
}

/* ===================================
   TESTIMONIALS
   =================================== */

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

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

.testimonial-card {
  background: white;
  padding: 32px;
  border-left: 4px solid #D4AF37;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.quote {
  font-style: italic;
  font-size: 18px;
  color: #2c2c2c;
  line-height: 1.6;
  margin-bottom: 16px;
}

.author {
  font-weight: 600;
  color: #1A1B4B;
  margin-bottom: 8px;
}

.rating {
  color: #D4AF37;
  font-size: 20px;
}

.trust-metrics {
  text-align: center;
  margin-top: 32px;
  font-weight: 600;
  color: #6B4E9E;
}

/* ===================================
   ZODIAC SELECTOR
   =================================== */

.zodiac-selector {
  padding: 60px 20px;
  background: white;
  border-radius: 20px;
  margin-bottom: 40px;
}

.zodiac-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.zodiac-sign {
  background: linear-gradient(135deg, #fef8f0 0%, #fff5e8 100%);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1 1 calc(25% - 16px);
  min-width: 120px;
  box-shadow: 0 2px 10px rgba(107, 78, 158, 0.1);
  margin-bottom: 16px;
  font-weight: 600;
  color: #1A1B4B;
}

.zodiac-sign:hover {
  background: linear-gradient(135deg, #6B4E9E 0%, #8B6BB7 100%);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(107, 78, 158, 0.3);
}

.zodiac-sign small {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  opacity: 0.8;
}

/* ===================================
   CALCULATOR & FORMS
   =================================== */

.calculator-tool,
.contact-form-section {
  padding: 60px 20px;
  background: white;
  border-radius: 20px;
  margin-bottom: 40px;
}

.calculator-form,
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(135deg, #fef8f0 0%, #fff5e8 100%);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(107, 78, 158, 0.1);
}

.input-group {
  margin-bottom: 24px;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #1A1B4B;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0d4f0;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: white;
  color: #2c2c2c;
}

.form-input:focus {
  outline: none;
  border-color: #6B4E9E;
  box-shadow: 0 0 0 3px rgba(107, 78, 158, 0.1);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 4px;
  cursor: pointer;
}

.checkbox-group label {
  font-size: 14px;
  color: #4a4a4a;
  cursor: pointer;
}

.note,
.form-note {
  font-size: 14px;
  color: #6B4E9E;
  margin-top: 16px;
  text-align: center;
}

/* ===================================
   MOON CALENDAR
   =================================== */

.current-moon {
  padding: 60px 20px;
  background: linear-gradient(135deg, #6B4E9E 0%, #6B4E9E 100%);
  border-radius: 20px;
  margin-bottom: 40px;
  color: white;
}

.moon-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
a.btn.btn-primary:hover {
  color: #1A1B4B;
}
.moon-visual {
  font-size: 120px;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.moon-info {
  text-align: left;
}

.moon-info p {
  color: #1A1B4B;
  margin-bottom: 12px;
}

.phase-name {
  font-size: 32px;
  font-weight: 700;
  color: #D4AF37;
}

.today-recommendations {
  margin-top: 40px;
}

.today-recommendations h3 {
  color: white;
  text-align: center;
  margin-bottom: 24px;
}

.recommendations-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.rec-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  margin-bottom: 20px;
}

.rec-card h4 {
  color: #D4AF37;
  margin-bottom: 16px;
}

.rec-card ul li {
  padding: 8px 0;
  color: white;
}

.moon-phases {
  padding: 60px 20px;
  background: white;
  border-radius: 20px;
  margin-bottom: 40px;
}

.phases-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.phase-card {
  background: linear-gradient(135deg, #fef8f0 0%, #fff5e8 100%);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  box-shadow: 0 2px 10px rgba(107, 78, 158, 0.1);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.phase-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.phase-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

/* ===================================
   PROCESS STEPS
   =================================== */

.consultation-process {
  padding: 60px 20px;
  background: white;
  border-radius: 20px;
  margin-bottom: 40px;
}

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

.step {
  background: linear-gradient(135deg, #fef8f0 0%, #fff5e8 100%);
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(107, 78, 158, 0.1);
  margin-bottom: 20px;
  position: relative;
}

.step h3 {
  color: #6B4E9E;
  margin-bottom: 16px;
}

/* ===================================
   LOCATION & CONTACT
   =================================== */

.location-info,
.contact-options,
.location-about {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fff5e8 0%, #fef8f0 100%);
  border-radius: 20px;
  margin-bottom: 40px;
  text-align: center;
}

.location-details {
  margin-top: 32px;
  font-size: 18px;
}

.location-details p {
  margin-bottom: 16px;
  color: #2c2c2c;
}

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

.option-card {
  background: white;
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  box-shadow: 0 4px 20px rgba(107, 78, 158, 0.1);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.option-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.option-card h3 {
  color: #1A1B4B;
  margin-bottom: 16px;
}

/* ===================================
   FAQ
   =================================== */

.faq,
.faq-calculator,
.faq-moon,
.faq-contact {
  padding: 60px 20px;
  background: white;
  border-radius: 20px;
  margin-bottom: 40px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(135deg, #fef8f0 0%, #fff5e8 100%);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(107, 78, 158, 0.1);
}

.faq-item h3 {
  color: #6B4E9E;
  margin-bottom: 12px;
}

.faq-item p {
  color: #4a4a4a;
}

/* ===================================
   CTA SECTIONS
   =================================== */

.cta-banner,
.cta-booking,
.cta-about {
  padding: 60px 20px;
  background: linear-gradient(135deg, #6B4E9E 0%, #8B6BB7 100%);
  border-radius: 20px;
  margin-bottom: 40px;
  text-align: center;
  color: white;
}

.cta-banner h2,
.cta-booking h2,
.cta-about h2 {
  color: white;
  margin-bottom: 16px;
}

.cta-banner p,
.cta-booking p,
.cta-about p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 24px;
}

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

/* ===================================
   ABOUT PAGE
   =================================== */

.our-story,
.philosophy {
  padding: 60px 20px;
  background: white;
  border-radius: 20px;
  margin-bottom: 40px;
}

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

.milestones {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.milestone {
  background: linear-gradient(135deg, #fef8f0 0%, #fff5e8 100%);
  padding: 16px 24px;
  border-radius: 8px;
  border-left: 4px solid #D4AF37;
  font-weight: 600;
  color: #1A1B4B;
}

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

.principle {
  background: linear-gradient(135deg, #fef8f0 0%, #fff5e8 100%);
  border-radius: 12px;
  padding: 24px;
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  box-shadow: 0 2px 10px rgba(107, 78, 158, 0.1);
  margin-bottom: 20px;
}

.principle h3 {
  color: #6B4E9E;
  margin-bottom: 12px;
}

.team {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fff5e8 0%, #fef8f0 100%);
  border-radius: 20px;
  margin-bottom: 40px;
}

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

.team-member {
  background: white;
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  box-shadow: 0 4px 20px rgba(107, 78, 158, 0.1);
  margin-bottom: 20px;
  text-align: center;
}

.team-member h3 {
  color: #1A1B4B;
  margin-bottom: 8px;
}

.title {
  color: #D4AF37;
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

.certifications,
.values {
  padding: 60px 20px;
  background: white;
  border-radius: 20px;
  margin-bottom: 40px;
}

.cert-list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
}

.cert-list li {
  padding: 16px 0 16px 32px;
  position: relative;
  border-bottom: 1px solid #e0d4f0;
  color: #2c2c2c;
}

.cert-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: bold;
  font-size: 20px;
}

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

.value {
  background: linear-gradient(135deg, #fef8f0 0%, #fff5e8 100%);
  border-radius: 12px;
  padding: 24px;
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  box-shadow: 0 2px 10px rgba(107, 78, 158, 0.1);
  margin-bottom: 20px;
  font-weight: 600;
  color: #1A1B4B;
  text-align: center;
}

/* ===================================
   DIRECTIONS & HOURS
   =================================== */

.directions,
.opening-hours {
  padding: 60px 20px;
  background: white;
  border-radius: 20px;
  margin-bottom: 40px;
}

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

.direction-card {
  background: linear-gradient(135deg, #fef8f0 0%, #fff5e8 100%);
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  box-shadow: 0 2px 10px rgba(107, 78, 158, 0.1);
  margin-bottom: 20px;
}

.direction-card h3 {
  color: #6B4E9E;
  margin-bottom: 16px;
}

.hours-list {
  max-width: 500px;
  margin: 32px auto 0;
  background: linear-gradient(135deg, #fef8f0 0%, #fff5e8 100%);
  border-radius: 12px;
  padding: 32px;
}

.hours-list p {
  padding: 12px 0;
  border-bottom: 1px solid rgba(107, 78, 158, 0.1);
  color: #2c2c2c;
  font-weight: 500;
}

.hours-list p:last-child {
  border-bottom: none;
}

/* ===================================
   LEGAL PAGES
   =================================== */

.legal-page {
  padding: 60px 20px;
  background: white;
  border-radius: 20px;
  margin-bottom: 40px;
}

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

.legal-content h2 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: #1A1B4B;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  color: #6B4E9E;
}

.last-updated {
  font-style: italic;
  color: #6B4E9E;
  margin-bottom: 32px;
}

.privacy-note {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fff5e8 0%, #fef8f0 100%);
  border-radius: 20px;
  margin-bottom: 40px;
  text-align: center;
}

/* ===================================
   ERROR PAGES
   =================================== */

.error-hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fff5e8 0%, #fef8f0 100%);
  border-radius: 20px;
  margin-bottom: 40px;
  text-align: center;
}

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

.error-code {
  font-size: 120px;
  font-weight: 700;
  color: #D4AF37;
  line-height: 1;
  margin-bottom: 24px;
}

.error-message {
  font-size: 18px;
  color: #4a4a4a;
  margin-top: 24px;
}

.quick-navigation,
.help-section {
  padding: 60px 20px;
  background: white;
  border-radius: 20px;
  margin-bottom: 40px;
  text-align: center;
}

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

.nav-card {
  background: linear-gradient(135deg, #6B4E9E 0%, #8B6BB7 100%);
  color: white;
  padding: 20px 32px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(107, 78, 158, 0.2);
}

.nav-card:hover {
  background: linear-gradient(135deg, #D4AF37 0%, #E5C04D 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

/* ===================================
   THANK YOU PAGE
   =================================== */

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

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

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #6B4E9E 0%, #8B6BB7 100%);
  color: white;
  font-size: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 8px 30px rgba(107, 78, 158, 0.3);
}

.confirmation-text {
  font-size: 18px;
  color: #4a4a4a;
  margin-top: 24px;
}

.next-steps,
.while-waiting {
  padding: 60px 20px;
  background: white;
  border-radius: 20px;
  margin-bottom: 40px;
}

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

/* ===================================
   TABS & HOROSCOPE
   =================================== */

.horoscope-content {
  padding: 60px 20px;
  background: white;
  border-radius: 20px;
  margin-bottom: 40px;
}

.tab-navigation {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 12px 32px;
  border: 2px solid #6B4E9E;
  background: white;
  color: #6B4E9E;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
  background: #6B4E9E;
  color: white;
}

.horoscope-display {
  max-width: 800px;
  margin: 0 auto;
}

.horoscope-section {
  background: linear-gradient(135deg, #fef8f0 0%, #fff5e8 100%);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(107, 78, 158, 0.1);
}

.horoscope-section h3 {
  color: #6B4E9E;
  margin-bottom: 12px;
}

.lucky-elements {
  margin-top: 32px;
  padding: 24px;
  background: linear-gradient(135deg, #fff5e8 0%, #fef8f0 100%);
  border-radius: 12px;
}

.lucky-elements p {
  margin-bottom: 12px;
}

/* ===================================
   INTERPRETATION PREVIEW
   =================================== */

.interpretation-preview,
.upgrade-premium {
  padding: 60px 20px;
  background: white;
  border-radius: 20px;
  margin-bottom: 40px;
}

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

.interpret-card {
  background: linear-gradient(135deg, #fef8f0 0%, #fff5e8 100%);
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(107, 78, 158, 0.1);
  margin-bottom: 20px;
}

.interpret-card h3 {
  color: #6B4E9E;
  margin-bottom: 12px;
}

.feature-comparison {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.feature-col {
  background: linear-gradient(135deg, #fef8f0 0%, #fff5e8 100%);
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  box-shadow: 0 2px 10px rgba(107, 78, 158, 0.1);
  margin-bottom: 20px;
}

.feature-col.highlight {
  background: linear-gradient(135deg, #6B4E9E 0%, #8B6BB7 100%);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(107, 78, 158, 0.3);
}

.feature-col.highlight h3,
.feature-col.highlight ul li {
  color: white;
}

.feature-col ul {
  margin: 24px 0;
}

.feature-col ul li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.feature-col.highlight ul li {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

/* ===================================
   PERSONALIZED CTA
   =================================== */

.personalized-cta,
.calculator-preview {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fff5e8 0%, #fef8f0 100%);
  border-radius: 20px;
  margin-bottom: 40px;
  text-align: center;
}

.calculator-preview h2,
.personalized-cta h2 {
  margin-bottom: 16px;
}

.calculator-preview p,
.personalized-cta p {
  margin-bottom: 24px;
  font-size: 18px;
}

/* ===================================
   ACTIVITY FINDER
   =================================== */

.favorable-days {
  padding: 60px 20px;
  background: white;
  border-radius: 20px;
  margin-bottom: 40px;
}

.activity-finder {
  max-width: 500px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ===================================
   SUBSCRIPTION
   =================================== */

.premium-subscription {
  padding: 60px 20px;
  background: linear-gradient(135deg, #6B4E9E 0%, #8B6BB7 100%);
  border-radius: 20px;
  margin-bottom: 40px;
  text-align: center;
  color: white;
}

.premium-subscription h2 {
  color: white;
  margin-bottom: 16px;
}

.premium-subscription > p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 32px;
}

.subscription-features {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 32px;
}

.subscription-features ul {
  text-align: left;
  margin: 24px 0;
}

.subscription-features ul li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: white;
}

.subscription-features ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: bold;
  font-size: 20px;
}

.price-display {
  font-size: 36px;
  font-weight: 700;
  color: #D4AF37;
  margin: 24px 0;
}

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

/* ===================================
   FOOTER
   =================================== */

footer {
  background: linear-gradient(135deg, #1A1B4B 0%, #2a2c6b 100%);
  color: white;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

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

.footer-section h3 {
  color: #D4AF37;
  margin-bottom: 16px;
  font-size: 20px;
}

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

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #D4AF37;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1A1B4B 0%, #2a2c6b 100%);
  color: white;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  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 300px;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-text a {
  color: #D4AF37;
  text-decoration: underline;
}
.cookie-text p {
  color: #fef8f0;
}
.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 14px;
  white-space: nowrap;
}

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

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

.cookie-modal-content {
  background: white;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #4a4a4a;
  transition: color 0.3s ease;
}

.cookie-modal-close:hover {
  color: #D4AF37;
}

.cookie-modal h2 {
  margin-bottom: 24px;
  color: #1A1B4B;
}

.cookie-category {
  border: 2px solid #e0d4f0;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
}

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

.cookie-category h3 {
  color: #6B4E9E;
  margin-bottom: 0;
}

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

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

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

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

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

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

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

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  .service-card,
  .feature,
  .testimonial-card,
  .option-card,
  .team-member,
  .step,
  .phase-card {
    flex: 1 1 100%;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
  }
  
  .moon-display {
    flex-direction: column;
    text-align: center;
  }
  
  .moon-info {
    text-align: center;
  }
  
  .moon-visual {
    font-size: 80px;
  }
  
  .rec-card {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  .error-code {
    font-size: 80px;
  }
  
  .zodiac-sign {
    flex: 1 1 calc(50% - 16px);
  }
  
  .feature-col {
    flex: 1 1 100%;
  }
  
  .feature-col.highlight {
    transform: scale(1);
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .subheadline {
    font-size: 16px;
  }
  
  .hero {
    padding: 40px 16px;
  }
  
  .page-hero {
    padding: 40px 16px 32px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .logo img {
    height: 48px;
  }
  
  .service-card,
  .service-detailed,
  .faq-item,
  .option-card {
    padding: 24px;
  }
  
  .zodiac-sign {
    flex: 1 1 100%;
  }
  
  .tab-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

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

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

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* ===================================
   ANIMATIONS
   =================================== */

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

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

/* Smooth scrolling for anchor links */
html {
  scroll-padding-top: 100px;
}

/* Focus styles for accessibility */
*:focus-visible {
  outline: 3px solid #D4AF37;
  outline-offset: 2px;
}

button:focus-visible,
.btn:focus-visible {
  outline: 3px solid #D4AF37;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cta-banner,
  .btn {
    display: none;
  }
  
  body {
    background: white;
  }
  
  * {
    box-shadow: none !important;
  }
}