/* ============================================
   SPARKLE FRESH ASTROLOGÍA - INDUSTRIAL MODERN CSS
   Industrial Modern Aesthetic with Cosmic Mysticism
   ============================================ */

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

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

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #E0E0E0;
  background-color: #1A1A1A;
  overflow-x: hidden;
}

/* INDUSTRIAL MODERN TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', 'Bebas Neue', 'Impact', serif;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #F0E68C;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

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

h2 {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 20px;
  border-left: 4px solid #8B5CF6;
  padding-left: 16px;
}

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

h4 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #B8B8B8;
}

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

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

a:hover {
  color: #F0E68C;
  text-decoration: underline;
}

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

li {
  margin-bottom: 8px;
  color: #C0C0C0;
}

strong {
  color: #F0E68C;
  font-weight: 600;
}

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 - INDUSTRIAL STEEL */
header {
  background: linear-gradient(135deg, #2D1B4E 0%, #1A1A1A 100%);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
  border-bottom: 2px solid #8B5CF6;
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(240, 230, 140, 0.5));
}

/* MAIN NAVIGATION - METALLIC ACCENTS */
.main-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.main-nav a {
  color: #E0E0E0;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #8B5CF6;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #F0E68C;
  text-decoration: none;
  border-color: #8B5CF6;
}

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

/* MOBILE MENU - INDUSTRIAL SLIDE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #2D1B4E;
  color: #F0E68C;
  border: 2px solid #8B5CF6;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #2D1B4E 0%, #1A1A1A 100%);
  z-index: 1999;
  padding: 80px 24px 24px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.8);
  transition: right 0.4s ease;
  overflow-y: auto;
  border-left: 3px solid #8B5CF6;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #F0E68C;
  border: 2px solid #8B5CF6;
  padding: 8px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #E0E0E0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px;
  border: 1px solid #3A3A3A;
  border-left: 4px solid #8B5CF6;
  background: rgba(26, 26, 26, 0.6);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(139, 92, 246, 0.2);
  border-left-color: #F0E68C;
  color: #F0E68C;
  text-decoration: none;
  transform: translateX(8px);
}

/* HERO SECTION - URBAN INDUSTRIAL */
.hero {
  background: linear-gradient(135deg, #2D1B4E 0%, #1A1A1A 50%, #2D1B4E 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid #8B5CF6;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(139, 92, 246, 0.03) 10px,
    rgba(139, 92, 246, 0.03) 20px
  );
  pointer-events: none;
}

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

.hero h1 {
  font-size: 56px;
  color: #F0E68C;
  margin-bottom: 24px;
  text-shadow: 0 0 20px rgba(240, 230, 140, 0.5);
}

.hero-subtitle {
  font-size: 18px;
  color: #B8B8B8;
  margin-bottom: 32px;
  line-height: 1.8;
}

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

.trust-badge {
  display: inline-block;
  padding: 12px 24px;
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid #8B5CF6;
  border-radius: 4px;
  font-size: 14px;
  color: #F0E68C;
  font-weight: 600;
  margin-top: 16px;
}

/* BUTTONS - METALLIC INDUSTRIAL */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #8B5CF6;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  background: transparent;
  color: #E0E0E0;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  background: #8B5CF6;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
  text-decoration: none;
}

.btn-primary {
  background: #8B5CF6;
  color: #FFFFFF;
  border-color: #8B5CF6;
}

.btn-primary:hover {
  background: #F0E68C;
  border-color: #F0E68C;
  color: #2D1B4E;
}

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

.btn-secondary:hover {
  background: #F0E68C;
  color: #2D1B4E;
}

/* CARD LAYOUTS - FLEXBOX ONLY */
.services-grid,
.benefits-grid,
.testimonials-grid,
.packages-grid,
.card-container,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.service-card,
.benefit-card,
.testimonial-card,
.package-card,
.card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, #2D1B4E 0%, #1A1A1A 100%);
  border: 2px solid #3A3A3A;
  border-left: 4px solid #8B5CF6;
  padding: 24px;
  border-radius: 4px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.service-card:hover,
.benefit-card:hover,
.package-card:hover {
  transform: translateY(-8px);
  border-left-color: #F0E68C;
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.4);
}

.service-card h3,
.benefit-card h3,
.package-card h3 {
  color: #F0E68C;
  margin-bottom: 16px;
  font-size: 20px;
}

.service-card p,
.benefit-card p {
  color: #C0C0C0;
  margin-bottom: 16px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #8B5CF6;
  margin: 16px 0;
  text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.price-original {
  font-size: 18px;
  color: #888;
  text-decoration: line-through;
  margin-bottom: 8px;
}

.price-discount {
  font-size: 28px;
  font-weight: 700;
  color: #F0E68C;
  text-shadow: 0 0 10px rgba(240, 230, 140, 0.5);
}

.savings {
  font-size: 14px;
  color: #8B5CF6;
  font-weight: 600;
  margin-top: 8px;
}

/* TESTIMONIALS - DARK ON LIGHT FOR READABILITY */
.testimonial-card {
  background: #E8E8E8;
  border-left-color: #8B5CF6;
  color: #2D1B4E;
  padding: 24px;
  position: relative;
}

.testimonial-card p {
  color: #2D1B4E;
  font-style: italic;
  margin-bottom: 16px;
  font-size: 16px;
}

.testimonial-author {
  font-weight: 600;
  color: #2D1B4E;
  margin-top: 16px;
}

.testimonial-author strong {
  color: #8B5CF6;
}

.rating {
  color: #F0E68C;
  font-size: 18px;
  margin-top: 8px;
  text-shadow: none;
}

/* SERVICES SECTION */
.services-featured {
  padding: 60px 20px;
  background: #1A1A1A;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #B8B8B8;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.service-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(135deg, #2D1B4E 0%, #1A1A1A 100%);
  border: 2px solid #3A3A3A;
  border-left: 4px solid #8B5CF6;
  padding: 32px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.service-item:hover {
  border-left-color: #F0E68C;
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.service-item h3 {
  color: #F0E68C;
  font-size: 24px;
}

.service-item ul {
  list-style: none;
  margin-left: 0;
}

.service-item li {
  padding-left: 24px;
  position: relative;
  color: #C0C0C0;
}

.service-item li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #8B5CF6;
  font-weight: 700;
}

/* TEXT-IMAGE SECTIONS */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 40px 0;
}

.text-image-section .text-content {
  flex: 1 1 50%;
  min-width: 280px;
}

.text-image-section .image-content {
  flex: 1 1 40%;
  min-width: 280px;
}

/* BENEFITS SECTION */
.benefits {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1A1A1A 0%, #2D1B4E 100%);
}

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

/* CTA SECTIONS - INDUSTRIAL ACCENT */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #8B5CF6 0%, #2D1B4E 100%);
  text-align: center;
  border-top: 4px solid #F0E68C;
  border-bottom: 4px solid #F0E68C;
}

.cta-section h2 {
  color: #FFFFFF;
  font-size: 40px;
  margin-bottom: 16px;
}

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

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

.guarantee,
.includes,
.offer {
  margin-top: 24px;
  font-size: 14px;
  color: #F0E68C;
  font-weight: 600;
}

.benefits-list {
  list-style: none;
  margin: 24px auto;
  max-width: 500px;
  text-align: left;
}

.benefits-list li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  color: #E0E0E0;
}

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

/* PACKAGES */
.packages {
  padding: 60px 20px;
  background: #1A1A1A;
}

.package-card.featured {
  border: 3px solid #F0E68C;
  border-left: 6px solid #F0E68C;
  transform: scale(1.05);
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  background: #8B5CF6;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  margin-top: 8px;
  text-transform: uppercase;
}

/* FAQ SECTION */
.faq {
  padding: 60px 20px;
  background: #1A1A1A;
}

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

.faq-item {
  background: linear-gradient(135deg, #2D1B4E 0%, #1A1A1A 100%);
  border: 2px solid #3A3A3A;
  border-left: 4px solid #8B5CF6;
  padding: 24px;
  border-radius: 4px;
}

.faq-item h3 {
  color: #F0E68C;
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p {
  color: #C0C0C0;
}

/* FORMS & CALCULATORS */
.calculator,
.contact-form-section {
  padding: 60px 20px;
  background: #1A1A1A;
}

.calculator-form,
.contact-info-box {
  background: linear-gradient(135deg, #2D1B4E 0%, #1A1A1A 100%);
  border: 2px solid #3A3A3A;
  border-left: 4px solid #8B5CF6;
  padding: 32px;
  border-radius: 4px;
  max-width: 600px;
  margin: 0 auto;
}

.form-note {
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid #8B5CF6;
  padding: 16px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.form-fields ul {
  list-style: none;
  margin-left: 0;
}

.form-fields li {
  padding-left: 24px;
  position: relative;
  color: #C0C0C0;
}

.form-fields li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: #8B5CF6;
}

.privacy-note {
  font-size: 14px;
  color: #B8B8B8;
  margin-top: 16px;
}

.contact-methods {
  margin-top: 32px;
}

/* CONTACT INFO */
.contact-info {
  padding: 60px 20px;
  background: linear-gradient(135deg, #2D1B4E 0%, #1A1A1A 100%);
}

.info-grid,
.types-grid,
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.info-card,
.type-card,
.category-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: #1A1A1A;
  border: 2px solid #3A3A3A;
  border-left: 4px solid #8B5CF6;
  padding: 24px;
  border-radius: 4px;
}

.info-card h3,
.type-card h3 {
  color: #F0E68C;
  margin-bottom: 16px;
}

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

.step {
  flex: 1 1 calc(20% - 24px);
  min-width: 180px;
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, #2D1B4E 0%, #1A1A1A 100%);
  border: 2px solid #3A3A3A;
  border-radius: 4px;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #8B5CF6;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 16px;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.step h3 {
  font-size: 16px;
  margin-bottom: 12px;
}

.step-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

/* ELEMENTS & PHASES */
.elements-grid,
.phases-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.element-card,
.phase-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, #2D1B4E 0%, #1A1A1A 100%);
  border: 2px solid #3A3A3A;
  border-left: 4px solid #8B5CF6;
  padding: 24px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.element-card:hover,
.phase-card:hover {
  border-left-color: #F0E68C;
  transform: translateY(-4px);
}

.signs {
  font-size: 14px;
  color: #8B5CF6;
  font-weight: 600;
  margin-bottom: 12px;
}

/* LEGAL PAGES */
.legal-content {
  padding: 60px 20px;
  background: #1A1A1A;
}

.legal-content h1 {
  margin-bottom: 32px;
  text-align: center;
}

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

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

/* THANK YOU PAGE */
.thank-you-page,
.thank-you-hero {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, #2D1B4E 0%, #8B5CF6 100%);
}

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

.success-icon {
  font-size: 80px;
  margin-bottom: 24px;
  animation: pulse 2s infinite;
}

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

.confirmation-note,
.response-time {
  font-size: 16px;
  color: #F0E68C;
  font-weight: 600;
  margin-top: 16px;
}

/* FOOTER - INDUSTRIAL BASE */
footer {
  background: linear-gradient(135deg, #2D1B4E 0%, #1A1A1A 100%);
  padding: 60px 20px 20px;
  border-top: 4px solid #8B5CF6;
  margin-top: 60px;
}

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

.footer-section {
  flex: 1 1 250px;
}

.footer-section h4 {
  color: #F0E68C;
  margin-bottom: 16px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p {
  color: #B8B8B8;
  font-size: 14px;
  margin-bottom: 8px;
}

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

.footer-nav a {
  color: #B8B8B8;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 12px;
  border-left: 2px solid transparent;
}

.footer-nav a:hover {
  color: #F0E68C;
  border-left-color: #8B5CF6;
  text-decoration: none;
  padding-left: 16px;
}

.copyright {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #3A3A3A;
  color: #888;
  font-size: 14px;
}

/* COOKIE CONSENT BANNER - INDUSTRIAL STYLE */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2D1B4E 0%, #1A1A1A 100%);
  border-top: 3px solid #8B5CF6;
  padding: 20px;
  z-index: 2000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.8);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

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

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

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

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

.cookie-modal-content {
  background: linear-gradient(135deg, #2D1B4E 0%, #1A1A1A 100%);
  border: 3px solid #8B5CF6;
  border-radius: 4px;
  padding: 32px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-category {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid #3A3A3A;
  border-left: 4px solid #8B5CF6;
  padding: 16px;
  margin-bottom: 16px;
  border-radius: 4px;
}

.cookie-category h4 {
  color: #F0E68C;
  margin-bottom: 8px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 24px;
  background: #3A3A3A;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: #8B5CF6;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle-switch.active::after {
  transform: translateX(26px);
}

/* PROMO CODE DISPLAY */
.promo-code {
  display: inline-block;
  padding: 12px 24px;
  background: #2D1B4E;
  border: 2px dashed #F0E68C;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 700;
  color: #F0E68C;
  letter-spacing: 2px;
  margin: 16px 0;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Hide desktop nav, show mobile menu */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  /* Stack layouts vertically */
  .hero-cta {
    flex-direction: column;
  }
  
  .text-image-section {
    flex-direction: column;
  }
  
  /* Full width cards on mobile */
  .service-card,
  .benefit-card,
  .testimonial-card,
  .package-card,
  .info-card,
  .type-card,
  .element-card,
  .phase-card {
    flex: 1 1 100%;
  }
  
  /* Footer stacking */
  .footer-content {
    flex-direction: column;
  }
  
  /* Cookie banner mobile */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
  
  /* Step adjustments */
  .step {
    flex: 1 1 100%;
  }
  
  /* Package featured scale reset */
  .package-card.featured {
    transform: scale(1);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .service-card,
  .benefit-card,
  .package-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .step {
    flex: 1 1 calc(33.333% - 24px);
  }
}

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

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

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

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

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

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

/* AUTHOR STYLING IN TESTIMONIALS */
.author {
  font-weight: 600;
  color: #2D1B4E;
  margin-top: 16px;
}

.author strong {
  color: #8B5CF6;
}

/* INTRO PARAGRAPHS */
.intro {
  font-size: 18px;
  color: #B8B8B8;
  text-align: center;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* APPLICATIONS & COMPONENTS GRIDS */
.applications-grid,
.components-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.application-card,
.component-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, #2D1B4E 0%, #1A1A1A 100%);
  border: 2px solid #3A3A3A;
  border-left: 4px solid #8B5CF6;
  padding: 24px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.application-card:hover,
.component-card:hover {
  transform: translateY(-4px);
  border-left-color: #F0E68C;
}

/* PLANETS & SIGNS LISTS */
.planets-list,
.signs-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.planet-item,
.sign-item {
  background: linear-gradient(135deg, #2D1B4E 0%, #1A1A1A 100%);
  border: 2px solid #3A3A3A;
  border-left: 4px solid #8B5CF6;
  padding: 24px;
  border-radius: 4px;
}

.planet-item h3,
.sign-item h3 {
  color: #F0E68C;
  margin-bottom: 12px;
}

/* CASE STUDIES */
.cases-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.case-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, #2D1B4E 0%, #1A1A1A 100%);
  border: 2px solid #3A3A3A;
  border-left: 4px solid #F0E68C;
  padding: 24px;
  border-radius: 4px;
}

.case-card h3 {
  color: #F0E68C;
  margin-bottom: 16px;
}

.testimonial {
  background: #E8E8E8;
  border: 2px solid #8B5CF6;
  border-left: 4px solid #8B5CF6;
  padding: 32px;
  border-radius: 4px;
  margin-top: 24px;
  text-align: center;
}

.testimonial p {
  color: #2D1B4E;
  font-style: italic;
  font-size: 18px;
  margin-bottom: 16px;
}

/* TIPS & ACTIONS GRIDS */
.tips-grid,
.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.tip-card,
.action-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, #2D1B4E 0%, #1A1A1A 100%);
  border: 2px solid #3A3A3A;
  border-left: 4px solid #8B5CF6;
  padding: 24px;
  border-radius: 4px;
}

.action-card h3,
.tip-card h3 {
  color: #F0E68C;
  margin-bottom: 16px;
}

/* EXPLANATION & SYNASTRY SECTIONS */
.explanation,
.synastry-explanation,
.interpretation-services,
.personalized-calendar,
.booking-process,
.consultation-types,
.next-steps,
.what-to-expect,
.while-waiting,
.elements-compatibility,
.moon-in-signs,
.favorable-days,
.moon-phases,
.intro,
.planetary-influences,
.applications,
.case-studies,
.packages {
  padding: 60px 20px;
}

.synastry-includes,
.calculator-info,
.popular-combinations,
.explanation {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid #8B5CF6;
  border-left: 4px solid #8B5CF6;
  padding: 24px;
  border-radius: 4px;
  margin-top: 24px;
}

.synastry-includes h3,
.calculator-info p strong {
  color: #F0E68C;
  margin-bottom: 16px;
}

/* SERVICE OPTIONS */
.service-option {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, #2D1B4E 0%, #1A1A1A 100%);
  border: 2px solid #3A3A3A;
  border-left: 4px solid #8B5CF6;
  padding: 24px;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.service-option.featured {
  border: 3px solid #F0E68C;
  border-left: 6px solid #F0E68C;
  transform: scale(1.05);
}

.service-option:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.4);
}

/* ENSURE NO OVERLAPPING CONTENT */
section {
  position: relative;
  clear: both;
}

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

/* HIGH CONTRAST MODE SUPPORT */
@media (prefers-contrast: high) {
  .btn {
    border-width: 3px;
  }
  
  a {
    text-decoration: underline;
  }
}

/* REDUCED MOTION SUPPORT */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* END OF INDUSTRIAL MODERN CSS */