/* ===================================
   CREDIT FLUX - MONOCHROME SOPHISTICATED DESIGN
   Complete CSS Styles for All Pages
   =================================== */

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

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 24px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 36px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
}

p {
  margin-bottom: 16px;
  color: #2a2a2a;
}

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

ul {
  list-style: none;
}

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

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

/* === HEADER === */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

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

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: #2a2a2a;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 8px 0;
}

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

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

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #000000;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #2a2a2a;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: #000000;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  font-size: 18px;
  font-weight: 500;
  color: #2a2a2a;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #000000;
  padding-left: 10px;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 2px solid #000000;
  background-color: #000000;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  margin: 8px 8px 8px 0;
}

.btn:hover {
  background-color: #ffffff;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}

.btn-secondary {
  background-color: #ffffff;
  border-color: #000000;
  color: #000000;
}

.btn-secondary:hover {
  background-color: #000000;
  color: #ffffff;
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: 120px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,0,0,0.03) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #000000;
}

.hero-subtitle {
  font-size: 20px;
  color: #3a3a3a;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

.trust-badge {
  font-size: 14px;
  color: #5a5a5a;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === HERO INTERNAL === */
.hero-internal {
  background-color: #f8f8f8;
  padding: 80px 20px 60px;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 24px;
  color: #5a5a5a;
}

.breadcrumb a {
  color: #5a5a5a;
  transition: color 0.3s ease;
}

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

/* === SECTIONS === */
section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #4a4a4a;
  max-width: 700px;
  margin: 0 auto 40px;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #3a3a3a;
  max-width: 800px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

/* === FEATURE GRIDS === */
.features-grid,
.services-grid,
.values-grid,
.stats-grid,
.packages-grid,
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 40px;
}

.feature-card,
.service-card,
.value-card,
.package-card,
.price-card {
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  padding: 40px 32px;
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 500px;
  transition: all 0.3s ease;
  position: relative;
}

.feature-card:hover,
.service-card:hover,
.value-card:hover,
.package-card:hover,
.price-card:hover {
  border-color: #000000;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.feature-card h3,
.service-card h3,
.value-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #000000;
}

.service-card .price,
.package-price,
.price-card .price {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin-top: 20px;
  font-family: 'Cormorant Garamond', serif;
}

/* === STAT ITEMS === */
.stat-item {
  text-align: center;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 200px;
  padding: 24px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 8px;
}

/* === TESTIMONIALS === */
.testimonials {
  background-color: #f8f8f8;
  padding: 80px 20px;
}

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

.testimonial-card {
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  padding: 40px;
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  position: relative;
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: #2a2a2a;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 600;
  color: #000000;
  font-style: normal;
}

.rating-display {
  text-align: center;
  font-size: 18px;
  color: #2a2a2a;
  margin-top: 24px;
}

/* === SERVICE DETAILS === */
.service-detail {
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  padding: 48px;
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

.service-detail:hover {
  border-color: #000000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
  font-size: 18px;
  color: #4a4a4a;
}

.service-meta .price {
  font-size: 28px;
  font-weight: 700;
  color: #000000;
}

.duration {
  color: #5a5a5a;
}

.service-benefits {
  margin: 32px 0;
}

.service-benefits h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.service-benefits ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-benefits li {
  padding-left: 28px;
  position: relative;
  color: #2a2a2a;
}

.service-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: 700;
}

/* === PRICING === */
.regular-price {
  text-decoration: line-through;
  color: #888888;
  font-size: 16px;
  display: block;
  margin-bottom: 8px;
}

.savings {
  color: #000000;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 12px;
}

.offer-badge {
  display: inline-block;
  background-color: #000000;
  color: #ffffff;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

/* === FAQ === */
.faq-section,
.faq-contact,
.pricing-faq {
  background-color: #f8f8f8;
  padding: 80px 20px;
}

.faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 32px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #000000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #000000;
}

.faq-item p {
  color: #3a3a3a;
  line-height: 1.8;
}

/* === LISTS === */
.expertise-list,
.promise-list,
.expectations-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
  max-width: 800px;
}

.expertise-list li,
.promise-list li,
.expectations-list li {
  padding-left: 32px;
  position: relative;
  color: #2a2a2a;
  line-height: 1.7;
}

.expertise-list li::before,
.promise-list li::before,
.expectations-list li::before {
  content: '■';
  position: absolute;
  left: 0;
  color: #000000;
  font-size: 12px;
}

/* === CTA SECTIONS === */
.cta-center,
.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
}

.consultation-cta,
.cta-about,
.cta-final,
.booking-cta-gallery {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: 80px 20px;
  text-align: center;
}

/* === CONTACT SECTIONS === */
.contact-info {
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  padding: 40px;
  margin: 40px 0;
  text-align: center;
}

.contact-info p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #2a2a2a;
}

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

.contact-method {
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  padding: 40px;
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 500px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-method:hover {
  border-color: #000000;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-method h3 {
  margin-bottom: 16px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 32px 0;
}

.hours-list p {
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
}

/* === STORY SECTIONS === */
.story-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 40px 0;
}

.story-card {
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  padding: 40px;
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
}

.story-card .treatment,
.story-card .duration {
  font-size: 14px;
  color: #5a5a5a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.story-card .quote {
  font-style: italic;
  color: #2a2a2a;
  margin-top: 16px;
  line-height: 1.8;
}

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

.legal-content h2 {
  font-size: 28px;
  margin-top: 48px;
  margin-bottom: 24px;
  padding-top: 24px;
  border-top: 1px solid #e0e0e0;
}

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

.legal-content p {
  margin-bottom: 20px;
  color: #2a2a2a;
  line-height: 1.8;
}

.last-updated {
  font-size: 14px;
  color: #5a5a5a;
  font-style: italic;
}

/* === THANK YOU PAGE === */
.hero-thankyou {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: 100px 20px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
  font-weight: 700;
}

.steps-grid,
.suggestions-grid,
.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 48px 0;
}

.step-card,
.suggestion-card,
.action-card {
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  padding: 40px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 260px;
  max-width: 360px;
  text-align: center;
  transition: all 0.3s ease;
}

.step-card:hover,
.suggestion-card:hover,
.action-card:hover {
  border-color: #000000;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* === FOOTER === */
footer {
  background-color: #1a1a1a;
  color: #e0e0e0;
  padding: 60px 20px 30px;
  margin-top: 80px;
}

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

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

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

.footer-section p {
  color: #b0b0b0;
  font-size: 14px;
  line-height: 1.8;
}

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #3a3a3a;
}

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

/* === COOKIE CONSENT BANNER === */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 2px solid #e0e0e0;
  padding: 24px 20px;
  z-index: 1500;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.active {
  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 400px;
  font-size: 14px;
  color: #2a2a2a;
}

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

.cookie-buttons .btn {
  padding: 12px 24px;
  font-size: 13px;
  margin: 0;
}

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

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

.cookie-modal-content {
  background-color: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 48px;
  border: 2px solid #e0e0e0;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #000000;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-category {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e0e0e0;
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

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

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

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  
  /* Header */
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  
  /* Hero */
  .hero { padding: 80px 20px; }
  .hero h1 { font-size: 40px; }
  .hero-subtitle { font-size: 18px; }
  .hero-cta { flex-direction: column; }
  
  /* Cards */
  .feature-card,
  .service-card,
  .value-card,
  .package-card,
  .price-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .stat-item {
    flex: 1 1 100%;
  }
  
  /* Testimonials */
  .testimonial-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Service Details */
  .service-detail {
    padding: 32px 20px;
  }
  
  /* Contact */
  .contact-method {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  /* Cookie */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons .btn {
    flex: 1 1 100%;
  }
  
  .cookie-modal-content {
    padding: 32px 20px;
  }
  
  /* Buttons */
  .btn {
    width: 100%;
    margin: 8px 0;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  
  .hero h1 { font-size: 32px; }
  .hero-subtitle { font-size: 16px; }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
  
  .mobile-menu.active {
    right: 0;
  }
  
  section {
    padding: 40px 16px;
  }
  
  .feature-card,
  .service-card,
  .value-card {
    padding: 32px 20px;
  }
}

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

.hero-content,
.feature-card,
.service-card,
.testimonial-card {
  animation: fadeInUp 0.6s ease-out;
}

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

.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* === PRINT STYLES === */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
}