/* =================================================================
   CREDITORIUM HILL - SOFT PASTEL DESIGN STYLE
   Comprehensive CSS for all pages
   ================================================================= */

/* 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, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.7;
  color: #4A5568;
  background: linear-gradient(135deg, #FDF8F3 0%, #F8F0E8 100%);
  overflow-x: hidden;
}

/* SOFT PASTEL COLOR PALETTE */
:root {
  --pastel-pink: #FFD6E8;
  --pastel-lavender: #E8D6FF;
  --pastel-blue: #D6E8FF;
  --pastel-mint: #D6FFE8;
  --pastel-peach: #FFE8D6;
  --pastel-cream: #FFF9F0;
  --soft-gray: #F5F0F5;
  --text-primary: #5A5A6A;
  --text-secondary: #8A8A9A;
  --white: #FFFFFF;
  --shadow-soft: 0 4px 20px rgba(200, 180, 220, 0.15);
  --shadow-medium: 0 8px 30px rgba(200, 180, 220, 0.25);
}

/* TYPOGRAPHY - SOFT & DREAMY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text-primary);
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

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

h2 {
  font-size: 36px;
  line-height: 1.4;
  margin-bottom: 20px;
}

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

p {
  margin-bottom: 16px;
  color: var(--text-secondary);
}

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #9A7FB8;
}

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

/* HEADER & NAVIGATION */
header {
  background: linear-gradient(135deg, var(--white) 0%, var(--pastel-cream) 100%);
  padding: 20px 0;
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

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

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

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-menu a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
  color: var(--text-primary);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pastel-lavender), var(--pastel-pink));
  transition: width 0.3s ease;
}

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

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1001;
  background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-pink));
  border: none;
  font-size: 24px;
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 35px rgba(200, 150, 220, 0.4);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, var(--white) 0%, var(--pastel-cream) 100%);
  z-index: 1000;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 30px rgba(200, 180, 220, 0.3);
  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: var(--pastel-lavender);
  border: none;
  font-size: 24px;
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: var(--pastel-pink);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  font-size: 16px;
  padding: 12px 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
  color: var(--text-primary);
  background: transparent;
}

.mobile-nav a:hover {
  background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-pink));
  color: var(--white);
  transform: translateX(8px);
}

/* BUTTONS - SOFT & DREAMY */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-pink));
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  background: linear-gradient(135deg, #D6C0FF, #FFB8D8);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--pastel-blue), var(--pastel-mint));
  color: var(--white);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  background: linear-gradient(135deg, #C0D8FF, #B8FFD8);
}

.btn-link {
  color: #9A7FB8;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}

.btn-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pastel-lavender), var(--pastel-pink));
  transition: width 0.3s ease;
}

.btn-link:hover::after {
  width: 100%;
}

/* HERO SECTION - DREAMY & SOFT */
.hero {
  background: linear-gradient(135deg, var(--pastel-cream) 0%, var(--white) 50%, var(--pastel-lavender) 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 0 0 50px 50px;
  box-shadow: var(--shadow-soft);
}

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

.hero h1 {
  color: var(--text-primary);
  margin-bottom: 24px;
  text-shadow: 0 2px 10px rgba(200, 180, 220, 0.2);
}

.hero-subheadline {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.8;
}

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

.season-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--pastel-peach), var(--pastel-pink));
  color: var(--white);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-soft);
}

/* SECTIONS - CONSISTENT SPACING */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.introduction,
.content-introduction,
.services-overview,
.gallery-intro,
.brand-story,
.philosophy,
.current-season {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.introduction h2,
.content-introduction h2,
.services-overview h2,
.gallery-intro h2,
.brand-story h2,
.philosophy h2,
.current-season h2 {
  text-align: center;
  margin-bottom: 24px;
}

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

.section-subheadline {
  text-align: center;
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

/* CARD LAYOUTS - FLEXBOX ONLY */
.values-grid,
.services-grid,
.analysis-grid,
.trends-grid,
.styles-grid,
.differentiators-grid,
.commitment-grid,
.methods-grid,
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.value-card,
.service-card,
.analysis-card,
.trend-card,
.style-card,
.diff-card,
.commitment-card,
.method-card,
.trust-card {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--white);
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.value-card::before,
.service-card::before,
.analysis-card::before,
.trend-card::before,
.style-card::before,
.diff-card::before,
.commitment-card::before,
.method-card::before,
.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--pastel-lavender), var(--pastel-pink));
}

.value-card:hover,
.service-card:hover,
.analysis-card:hover,
.trend-card:hover,
.style-card:hover,
.diff-card:hover,
.commitment-card:hover,
.method-card:hover,
.trust-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.value-card h3,
.service-card h3,
.analysis-card h3,
.trend-card h3,
.style-card h3,
.diff-card h3,
.commitment-card h3,
.method-card h3,
.trust-card h3 {
  color: var(--text-primary);
  margin-bottom: 12px;
}

/* SERVICE CARDS WITH PRICING */
.service-card .price,
.price-large {
  font-size: 24px;
  font-weight: 700;
  color: #9A7FB8;
  margin: 20px 0;
  display: block;
}

.price-large {
  font-size: 32px;
  text-align: center;
}

.duration {
  font-size: 14px;
  color: var(--text-secondary);
  font-style: italic;
  display: block;
  margin: 12px 0;
}

/* DETAILED SERVICE CARDS */
.services-grid-full {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 60px;
}

.service-card-detailed {
  flex: 1 1 350px;
  max-width: 400px;
  background: var(--white);
  padding: 40px 30px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.service-card-detailed:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.features-list {
  list-style: none;
  margin: 16px 0;
}

.features-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.6;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #9A7FB8;
  font-weight: 700;
}

/* PROCESS & TIMELINE */
.process-grid,
.process-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.process-step,
.timeline-step,
.booking-step {
  flex: 1 1 240px;
  max-width: 280px;
  background: var(--white);
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.process-step:hover,
.timeline-step:hover,
.booking-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-pink));
  color: var(--white);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: var(--shadow-soft);
}

/* TESTIMONIALS - DARK TEXT ON LIGHT BACKGROUND */
.testimonials {
  background: linear-gradient(135deg, var(--pastel-cream), var(--soft-gray));
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
}

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

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  flex: 1 1 400px;
  max-width: 480px;
  background: var(--white);
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.testimonial-quote {
  font-size: 16px;
  font-style: italic;
  color: #4A5568;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.rating {
  color: #FFB8D8;
  font-size: 18px;
  letter-spacing: 2px;
}

/* LISTS & BENEFITS */
.benefits-list ul,
.trends-list,
.color-benefits ul {
  list-style: none;
  max-width: 600px;
  margin: 24px auto;
}

.benefits-list li,
.trends-list li,
.color-benefits li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.7;
}

.benefits-list li::before,
.trends-list li::before,
.color-benefits li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: #9A7FB8;
  font-size: 18px;
}

/* COLOR PALETTE DISPLAY */
.color-palette {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.color-item {
  flex: 1 1 200px;
  max-width: 250px;
  background: var(--white);
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.color-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-medium);
}

/* LOOKS & GALLERY */
.looks-grid,
.pieces-grid,
.tips-grid,
.occasions-grid,
.formulas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.look-card,
.piece-card,
.tip-card,
.occasion-card,
.formula-card {
  flex: 1 1 300px;
  max-width: 360px;
  background: var(--white);
  padding: 28px 24px;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.look-card:hover,
.piece-card:hover,
.tip-card:hover,
.occasion-card:hover,
.formula-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

/* FAQ SECTION */
.faq {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

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

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: var(--white);
  padding: 24px 28px;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-medium);
  transform: translateX(5px);
}

.faq-item h3 {
  color: var(--text-primary);
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* COMPARISON TABLE */
.comparison-table {
  overflow-x: auto;
  margin: 40px 0;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

thead {
  background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-pink));
}

th {
  padding: 16px;
  text-align: left;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

td {
  padding: 16px;
  border-bottom: 1px solid var(--soft-gray);
  color: var(--text-secondary);
}

tr:hover {
  background: var(--pastel-cream);
}

/* CTA SECTIONS */
.cta-banner,
.cta-section,
.inspiration-cta {
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-pink) 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 30px;
  margin: 60px 0;
  box-shadow: var(--shadow-medium);
}

.cta-banner h2,
.cta-section h2,
.inspiration-cta h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p,
.cta-section p,
.inspiration-cta p {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.cta-banner .btn,
.cta-section .btn,
.inspiration-cta .btn {
  background: var(--white);
  color: #9A7FB8;
}

.cta-banner .btn:hover,
.cta-section .btn:hover,
.inspiration-cta .btn:hover {
  background: var(--pastel-cream);
  transform: translateY(-3px) scale(1.05);
}

/* LOCATION & CONTACT */
.location-highlight,
.location-details-section,
.wuerzburg-connection {
  background: var(--white);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.location-content,
.location-info {
  max-width: 700px;
  margin: 0 auto;
}

.location-details p {
  margin: 12px 0;
  color: var(--text-secondary);
}

.note {
  font-style: italic;
  color: #9A7FB8;
  margin-top: 16px;
}

/* CONTACT FORM */
.contact-form-section {
  max-width: 700px;
  margin: 60px auto;
  padding: 0 20px;
}

.form-placeholder {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.form-placeholder p {
  margin: 16px 0;
  padding: 12px;
  background: var(--pastel-cream);
  border-radius: 8px;
  color: var(--text-secondary);
}

.form-placeholder strong {
  display: block;
  margin-bottom: 24px;
  font-size: 20px;
  color: var(--text-primary);
}

/* THANK YOU PAGE */
.confirmation-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--pastel-mint), var(--pastel-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--white);
  margin: 0 auto 24px;
  box-shadow: var(--shadow-medium);
}

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

.suggestion-card {
  flex: 1 1 280px;
  max-width: 350px;
  background: var(--white);
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.suggestion-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

/* LEGAL CONTENT */
.legal-content {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.legal-content .text-section {
  text-align: left;
  max-width: 100%;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 28px;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

.legal-content ul {
  margin: 16px 0 16px 24px;
}

.legal-content li {
  margin: 8px 0;
  color: var(--text-secondary);
}

/* FOOTER - SOFT & ELEGANT */
footer {
  background: linear-gradient(135deg, var(--text-primary) 0%, #6A6A7A 100%);
  color: var(--white);
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-brand,
.footer-contact,
.footer-links,
.footer-legal {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.tagline {
  font-style: italic;
  opacity: 0.9;
  font-size: 14px;
  line-height: 1.6;
}

footer h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 600;
}

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

footer a:hover {
  color: var(--pastel-pink);
}

footer ul {
  list-style: none;
}

footer li {
  margin: 8px 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--white), var(--pastel-cream));
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(200, 180, 220, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.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;
  color: var(--text-secondary);
  font-size: 14px;
}

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-accept {
  background: linear-gradient(135deg, var(--pastel-mint), var(--pastel-blue));
  color: var(--white);
}

.cookie-reject {
  background: var(--soft-gray);
  color: var(--text-primary);
}

.cookie-settings {
  background: transparent;
  color: #9A7FB8;
  border: 2px solid #9A7FB8;
}

.cookie-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

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

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

.cookie-modal-content {
  background: var(--white);
  max-width: 600px;
  width: 100%;
  padding: 40px 32px;
  border-radius: 24px;
  box-shadow: var(--shadow-medium);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal h2 {
  margin-bottom: 24px;
  color: var(--text-primary);
}

.cookie-category {
  margin: 20px 0;
  padding: 16px;
  background: var(--pastel-cream);
  border-radius: 12px;
}

.cookie-category h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--text-primary);
}

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

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  background: var(--soft-gray);
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: linear-gradient(135deg, var(--pastel-mint), var(--pastel-blue));
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

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

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .nav-menu { display: none; }
  .mobile-menu-toggle { display: block; }
  
  .hero { padding: 60px 20px; }
  .hero h1 { font-size: 28px; }
  .hero-subheadline { font-size: 16px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  
  .values-grid,
  .services-grid,
  .analysis-grid,
  .trends-grid,
  .process-grid,
  .testimonials-grid,
  .looks-grid,
  .footer-content {
    flex-direction: column;
    gap: 20px;
  }
  
  .value-card,
  .service-card,
  .analysis-card,
  .testimonial-card,
  .look-card {
    max-width: 100%;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  table {
    font-size: 12px;
  }
  
  th, td {
    padding: 10px 8px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container { padding: 0 32px; }
  
  .values-grid,
  .services-grid {
    gap: 20px;
  }
  
  .value-card,
  .service-card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (min-width: 1025px) {
  .hero h1 { font-size: 56px; }
  h2 { font-size: 42px; }
  
  .value-card,
  .service-card,
  .analysis-card {
    flex: 1 1 calc(33.333% - 24px);
  }
}

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

.hero,
.value-card,
.service-card,
.testimonial-card {
  animation: fadeInUp 0.6s ease forwards;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }

/* UTILITY CLASSES */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

/* ACCESSIBILITY */
*:focus {
  outline: 2px solid var(--pastel-lavender);
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #9A7FB8;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer { display: none; }
  
  body { background: white; }
  * { box-shadow: none !important; }
}