/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #FEFCF8;
  overflow-x: hidden;
}

/* Warm & Friendly Design System */
:root {
  --primary-color: #2C5F7B;
  --secondary-color: #D4AF37;
  --accent-color: #F8F4E8;
  --warm-beige: #F5EFE0;
  --soft-coral: #FF9B85;
  --warm-terracotta: #E07856;
  --text-dark: #2D2D2D;
  --text-light: #5A5A5A;
  --text-on-dark: #FFFFFF;
  --border-light: #E8DCC8;
  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-warm: 0 4px 16px rgba(212, 175, 55, 0.15);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Typography - Warm & Friendly */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 16px;
}

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

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

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

h4 {
  font-size: 20px;
}

p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 16px;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--secondary-color);
}

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

li {
  margin-bottom: 8px;
  color: var(--text-light);
}

strong {
  color: var(--text-dark);
  font-weight: 600;
}

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

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

/* Header - Warm & Welcoming */
header {
  background-color: #FFFFFF;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-bottom: 2px solid var(--accent-color);
}

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

.logo img {
  height: 50px;
  width: auto;
  transition: var(--transition-smooth);
}

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

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

.main-nav a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
  transition: var(--transition-smooth);
}

.main-nav a:hover {
  color: var(--secondary-color);
  border-bottom-color: var(--secondary-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 12px;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-smooth);
}

.mobile-menu-toggle:hover {
  background-color: var(--secondary-color);
  transform: scale(1.05);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, var(--primary-color), #1e4659);
  z-index: 999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.2);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

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

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

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

.mobile-nav a:hover {
  background-color: var(--secondary-color);
  transform: translateX(8px);
}

/* Buttons - Warm & Inviting */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

.btn-primary:hover {
  background-color: #C49F2F;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-secondary {
  background-color: var(--primary-color);
  color: white;
}

.btn-secondary:hover {
  background-color: #1e4659;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* Hero Section - Warm Welcome */
.hero {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--warm-beige) 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 50px 50px;
  margin-bottom: 60px;
}

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

.hero h1 {
  color: var(--primary-color);
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.hero-subheadline {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.value-proposition,
.services-overview,
.process,
.testimonials,
.brand-story,
.values,
.team,
.approach {
  padding: 60px 20px;
}

.value-proposition {
  background-color: white;
  border-radius: 30px;
  margin: 40px 20px;
  box-shadow: var(--shadow-soft);
}

.section-subheadline {
  font-size: 18px;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards - Rounded & Friendly */
.card-container,
.benefits-grid,
.services-grid,
.process-steps,
.testimonials-grid,
.values-grid,
.team-grid,
.categories-grid,
.styles-grid,
.tips-grid,
.org-grid,
.solutions-grid,
.colors-grid,
.posts-grid,
.options-grid,
.consultations-grid,
.signals-grid,
.stats-grid,
.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.benefit-item,
.service-card,
.step,
.testimonial-card,
.value-card,
.team-member,
.category-card,
.style-card,
.tip-card,
.org-card,
.solution-card,
.color-card,
.post-card,
.option-card,
.consultation-card,
.signal-item,
.stat-item,
.action-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  margin-bottom: 20px;
  position: relative;
}

.benefit-item:hover,
.service-card:hover,
.value-card:hover,
.category-card:hover,
.style-card:hover,
.tip-card:hover,
.org-card:hover,
.solution-card:hover,
.color-card:hover,
.post-card:hover,
.option-card:hover,
.consultation-card:hover,
.action-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-warm);
}

.service-card h3,
.benefit-item h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
}

.price,
.price-highlight {
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-top: 16px;
}

/* Process Steps - Friendly Flow */
.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  background: linear-gradient(135deg, var(--accent-color), white);
  border: 2px solid var(--border-light);
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  color: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 16px;
}

/* Testimonials - Warm & Personal */
.testimonials {
  background: linear-gradient(135deg, var(--warm-beige), var(--accent-color));
  border-radius: 30px;
  padding: 60px 20px;
  margin: 40px 20px;
}

.testimonial-card {
  background-color: white;
  padding: 30px;
  border-radius: 20px;
  border-left: 4px solid var(--secondary-color);
  flex: 1 1 calc(50% - 24px);
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
}

.testimonial-author strong {
  color: var(--primary-color);
  font-size: 16px;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 14px;
}

/* Trust Stats */
.trust-stats,
.statistics {
  margin-top: 60px;
  padding: 40px 20px;
  background-color: white;
  border-radius: 20px;
}

.trust-stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.stat,
.stat-item {
  text-align: center;
  flex: 1 1 200px;
}

.stat strong,
.stat-item strong {
  display: block;
  font-size: 36px;
  color: var(--secondary-color);
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}

.stat span,
.stat-item p,
.stat-item span {
  color: var(--text-light);
  font-size: 16px;
}

/* CTA Section - Warm Invitation */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), #1e4659);
  padding: 80px 20px;
  text-align: center;
  border-radius: 30px;
  margin: 60px 20px;
  box-shadow: var(--shadow-medium);
}

.cta-content h2 {
  color: white;
  margin-bottom: 16px;
}

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

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

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

/* Page Hero - Breadcrumbs */
.page-hero {
  background: linear-gradient(135deg, var(--accent-color), var(--warm-beige));
  padding: 60px 20px 40px;
  border-radius: 0 0 30px 30px;
  margin-bottom: 40px;
}

.breadcrumbs {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.breadcrumbs a {
  color: var(--primary-color);
}

.breadcrumbs span {
  color: var(--text-dark);
  font-weight: 600;
}

.page-subheadline {
  font-size: 18px;
  color: var(--text-light);
  max-width: 700px;
}

/* Service Details */
.service-detail {
  padding: 40px 20px;
  margin-bottom: 40px;
}

.service-content {
  background-color: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  max-width: 900px;
  margin: 0 auto;
}

.service-details {
  background-color: var(--accent-color);
  padding: 30px;
  border-radius: 15px;
  margin: 24px 0;
}

.service-details h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
}

.service-details ul {
  list-style-position: inside;
}

/* Portfolio & Blog */
.project-card,
.post-featured {
  background-color: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 32px;
  border-left: 4px solid var(--secondary-color);
}

.project-meta {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 16px;
}

.project-features {
  background-color: var(--accent-color);
  padding: 24px;
  border-radius: 12px;
  margin: 20px 0;
}

.client-quote {
  font-style: italic;
  color: var(--primary-color);
  padding: 20px;
  background-color: var(--warm-beige);
  border-left: 3px solid var(--secondary-color);
  border-radius: 8px;
  margin: 20px 0;
}

.result {
  color: var(--secondary-color);
  font-weight: 600;
  margin-top: 20px;
}

/* Blog Specific */
.badge {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--text-dark);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.read-time {
  color: var(--text-light);
  font-size: 14px;
  margin-top: 12px;
}

.category {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--primary-color);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 12px;
}

.category-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: white;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

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

.popular-list {
  list-style-position: inside;
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
}

.popular-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-dark);
  font-weight: 500;
}

.popular-list li:last-child {
  border-bottom: none;
}

/* Contact Page */
.form-info {
  background-color: var(--accent-color);
  padding: 30px;
  border-radius: 15px;
  margin: 24px 0;
}

.form-info p {
  color: var(--text-dark);
  margin-bottom: 12px;
}

/* Thank You Page */
.thank-you-hero,
.thank-you-page {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, var(--accent-color), var(--warm-beige));
  border-radius: 30px;
  margin: 40px 20px;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #4CAF50;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-medium);
}

.subheadline {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 16px;
  font-weight: 600;
}

.timeline-note {
  text-align: center;
  color: var(--text-light);
  font-style: italic;
  margin-top: 32px;
}

/* Legal Pages */
.legal-content {
  padding: 40px 20px;
}

.legal-content h2 {
  color: var(--primary-color);
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid var(--border-light);
}

.legal-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  color: var(--text-dark);
  margin-top: 24px;
}

.legal-content ul {
  background-color: var(--accent-color);
  padding: 24px 24px 24px 48px;
  border-radius: 12px;
  margin: 16px 0;
}

/* Footer - Warm & Welcoming */
footer {
  background: linear-gradient(135deg, var(--primary-color), #1e4659);
  color: white;
  padding: 60px 20px 30px;
  margin-top: 80px;
  border-radius: 30px 30px 0 0;
}

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

.footer-col {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
}

.footer-col h4 {
  color: var(--secondary-color);
  margin-bottom: 16px;
  font-size: 18px;
}

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

.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-smooth);
}

.footer-col a:hover {
  color: var(--secondary-color);
  padding-left: 4px;
}

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

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

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

/* Cookie Consent Banner - Friendly */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-color), #1e4659);
  color: white;
  padding: 24px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 20px 20px 0 0;
}

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

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

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  font-size: 14px;
}

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

.cookie-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.cookie-btn-accept {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

.cookie-btn-accept:hover {
  background-color: #C49F2F;
  transform: translateY(-2px);
}

.cookie-btn-reject {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.cookie-btn-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-btn-settings {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.cookie-btn-settings:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

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

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

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

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

.cookie-category {
  padding: 20px;
  background-color: var(--accent-color);
  border-radius: 12px;
  margin-bottom: 16px;
}

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

.cookie-category p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 12px;
}

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

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

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

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

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .benefit-item,
  .service-card,
  .step,
  .testimonial-card,
  .value-card,
  .team-member,
  .category-card,
  .style-card,
  .tip-card,
  .org-card,
  .solution-card,
  .color-card,
  .post-card,
  .option-card,
  .consultation-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .benefit-item,
  .service-card,
  .value-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .step {
    flex: 1 1 calc(50% - 24px);
  }
}

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

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

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

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

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

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

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none;
  }
}