/* ===================================
   ZEITMEISTER - CREATIVE ARTISTIC DESIGN
   Modern, Vibrant & Organized
   =================================== */

/* CSS RESET & BASE */
* {
  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', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: #2d3436;
  line-height: 1.6;
  background: linear-gradient(135deg, #F4F1E8 0%, #ffffff 100%);
  overflow-x: hidden;
}

/* TYPOGRAPHY - CREATIVE & ARTISTIC */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.2;
  color: #2C5F8D;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -1px;
  text-shadow: 2px 2px 4px rgba(44, 95, 141, 0.1);
}

h2 {
  font-size: 36px;
  color: #E8965B;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #E8965B, #2C5F8D);
  border-radius: 2px;
}

h3 {
  font-size: 24px;
  color: #2C5F8D;
}

h4 {
  font-size: 20px;
}

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

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

a:hover {
  color: #E8965B;
  transform: translateX(3px);
}

ul {
  list-style: none;
}

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

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

/* HEADER - CREATIVE NAVIGATION */
header {
  background: linear-gradient(135deg, #2C5F8D 0%, #1e4465 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(44, 95, 141, 0.2);
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.1) rotate(-5deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #E8965B, #F4F1E8);
  transition: width 0.3s ease;
}

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

.nav-menu a:hover {
  color: #E8965B;
  transform: translateY(-2px);
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #E8965B, #d67e47);
  border: none;
  color: #ffffff;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(232, 150, 91, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 20px rgba(232, 150, 91, 0.6);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, #2C5F8D 0%, #1e4465 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-size: 28px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: #E8965B;
  border-color: #E8965B;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 20px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.mobile-nav a:hover {
  border-left-color: #E8965B;
  background: rgba(232, 150, 91, 0.2);
  transform: translateX(10px);
}

/* BUTTONS - CREATIVE & VIBRANT */
.cta-button,
.cta-primary,
.cta-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.cta-button,
.cta-primary {
  background: linear-gradient(135deg, #E8965B, #d67e47);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(232, 150, 91, 0.4);
}

.cta-button:hover,
.cta-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(232, 150, 91, 0.6);
  background: linear-gradient(135deg, #d67e47, #E8965B);
}

.cta-secondary {
  background: transparent;
  color: #2C5F8D;
  border: 3px solid #2C5F8D;
}

.cta-secondary:hover {
  background: #2C5F8D;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(44, 95, 141, 0.4);
}

/* HERO SECTION - ARTISTIC & VIBRANT */
.hero {
  background: linear-gradient(135deg, #2C5F8D 0%, #1e4465 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 150, 91, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244, 241, 232, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

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

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

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

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

.trust-indicator {
  color: #E8965B;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #636e72;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* GRID LAYOUTS - FLEXBOX ONLY */
.benefits-grid,
.services-grid,
.testimonials-grid,
.tips-grid,
.methods-grid,
.schedule-grid,
.steps-grid,
.stats-grid,
.approach-grid,
.packages-grid,
.proof-grid,
.contact-grid,
.faq-grid,
.office-details,
.actions-grid,
.location-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

/* CARDS - ARTISTIC DESIGN */
.benefit-card,
.service-card,
.testimonial-card,
.tip-card,
.method-card,
.schedule-item,
.step-card,
.stat-card,
.approach-card,
.package-card,
.proof-card,
.contact-card,
.faq-item,
.office-item,
.action-card,
.location-item,
.card {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(44, 95, 141, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  margin-bottom: 20px;
}

.benefit-card::before,
.service-card::before,
.tip-card::before,
.method-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #E8965B, #2C5F8D);
}

.benefit-card:hover,
.service-card:hover,
.tip-card:hover,
.method-card:hover,
.step-card:hover,
.approach-card:hover,
.package-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 15px 40px rgba(232, 150, 91, 0.25);
}

.benefit-card h3,
.service-card h3,
.tip-card h3,
.method-card h3 {
  color: #2C5F8D;
  margin-bottom: 12px;
  font-size: 22px;
}

.benefit-card p,
.service-card p,
.tip-card p,
.method-card p {
  color: #636e72;
  line-height: 1.7;
}

/* PRICE STYLING */
.price {
  font-size: 28px;
  font-weight: 700;
  color: #E8965B;
  margin: 20px 0;
  font-family: 'Montserrat', sans-serif;
}

.old-price {
  font-size: 18px;
  color: #b2bec3;
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 10px;
}

/* TESTIMONIALS - HIGH CONTRAST */
.testimonials {
  background: linear-gradient(135deg, #F4F1E8 0%, #ffffff 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
}

.testimonial-card {
  background: #ffffff;
  border-left: 5px solid #E8965B;
  padding: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.testimonial-card p:first-child {
  font-size: 18px;
  font-style: italic;
  color: #2d3436;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 700;
  color: #2C5F8D;
  font-size: 16px;
  margin-top: 10px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 80px;
  color: rgba(232, 150, 91, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

/* STATS & NUMBERS */
.stat-card h3,
.proof-card h3 {
  font-size: 48px;
  color: #E8965B;
  margin-bottom: 8px;
  font-weight: 900;
}

.stat-card p,
.proof-card p {
  font-size: 16px;
  color: #636e72;
}

/* PROBLEM-SOLUTION LISTS */
.problem-list {
  max-width: 600px;
  margin: 0 auto 32px;
}

.problem-list li {
  padding: 16px 20px 16px 50px;
  margin-bottom: 12px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(44, 95, 141, 0.08);
  position: relative;
  color: #2d3436;
  font-size: 16px;
}

.problem-list li::before {
  content: '✗';
  position: absolute;
  left: 18px;
  color: #E8965B;
  font-size: 20px;
  font-weight: 700;
}

.solution-intro {
  text-align: center;
  font-size: 20px;
  color: #2C5F8D;
  font-weight: 600;
  margin-top: 32px;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #E8965B 0%, #d67e47 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: 0 10px 40px rgba(232, 150, 91, 0.3);
}

.cta-banner h2 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-banner p {
  color: #F4F1E8;
  font-size: 18px;
  margin-bottom: 24px;
}

.cta-banner .cta-button {
  background: #ffffff;
  color: #E8965B;
}

.cta-banner .cta-button:hover {
  background: #2C5F8D;
  color: #ffffff;
}

.guarantee {
  color: #F4F1E8;
  font-size: 14px;
  margin-top: 16px;
  font-style: italic;
}

/* LOCATION INFO */
.location-info,
.location {
  background: #ffffff;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(44, 95, 141, 0.1);
}

.location-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.location-item {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 250px;
  text-align: center;
  padding: 20px;
}

.location-item h3 {
  color: #E8965B;
  margin-bottom: 12px;
  font-size: 20px;
}

/* LEGAL PAGES */
.legal-hero {
  background: linear-gradient(135deg, #2C5F8D 0%, #1e4465 100%);
  padding: 60px 20px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 40px;
}

.legal-hero h1 {
  color: #ffffff;
  margin-bottom: 12px;
}

.last-updated {
  color: #E8965B;
  font-size: 14px;
  font-weight: 600;
}

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

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

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

.legal-content ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

.legal-content li {
  margin-bottom: 8px;
  padding-left: 10px;
  position: relative;
}

.legal-content li::before {
  content: '→';
  position: absolute;
  left: -15px;
  color: #E8965B;
}

/* CONTACT PAGE */
.form-note {
  background: #F4F1E8;
  padding: 30px;
  border-radius: 12px;
  border-left: 5px solid #E8965B;
  margin-bottom: 32px;
}

.form-note p {
  color: #2d3436;
  margin-bottom: 12px;
}

/* FOOTER - CREATIVE */
footer {
  background: linear-gradient(135deg, #2C5F8D 0%, #1e4465 100%);
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

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

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

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

.footer-bottom {
  border-top: 2px solid rgba(244, 241, 232, 0.2);
  padding-top: 24px;
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 16px;
}

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

.footer-nav a:hover {
  color: #E8965B;
  transform: translateY(-2px);
}

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

/* COOKIE CONSENT BANNER */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C5F8D 0%, #1e4465 100%);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  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 400px;
  color: #F4F1E8;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.cookie-accept {
  background: #E8965B;
  color: #ffffff;
}

.cookie-accept:hover {
  background: #d67e47;
  transform: scale(1.05);
}

.cookie-reject {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

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

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

.cookie-settings:hover {
  background: rgba(232, 150, 91, 0.1);
}

/* COOKIE SETTINGS MODAL */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

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

.modal-content {
  background: #ffffff;
  max-width: 600px;
  width: 100%;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #636e72;
  transition: all 0.3s ease;
}

.modal-close:hover {
  color: #E8965B;
  transform: rotate(90deg);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #F4F1E8;
  border-radius: 12px;
}

.cookie-category h3 {
  color: #2C5F8D;
  margin-bottom: 8px;
  font-size: 18px;
}

.cookie-category p {
  color: #636e72;
  font-size: 14px;
  margin-bottom: 12px;
}

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

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  background: #dfe6e9;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: #E8965B;
}

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

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

.toggle-switch.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 40px; }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Hide desktop navigation */
  .nav-menu {
    display: none;
  }
  
  .main-nav .cta-button {
    display: none;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .cta-primary,
  .hero-cta .cta-secondary {
    width: 100%;
  }
  
  /* Card layouts */
  .benefit-card,
  .service-card,
  .testimonial-card,
  .tip-card,
  .method-card,
  .schedule-item,
  .step-card,
  .stat-card,
  .approach-card,
  .package-card,
  .proof-card,
  .contact-card,
  .faq-item,
  .office-item,
  .action-card,
  .location-item {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-section {
    flex: 1 1 100%;
  }
  
  .footer-nav {
    flex-direction: column;
    align-items: center;
  }
  
  /* Cookie consent */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

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

@media (min-width: 1025px) {
  .benefit-card,
  .service-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .tip-card,
  .method-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .step-card {
    flex: 1 1 calc(25% - 24px);
  }
  
  .stat-card,
  .proof-card {
    flex: 1 1 calc(25% - 24px);
  }
}

/* UTILITY CLASSES */
.text-center { text-align: center; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

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

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

/* ACCESSIBILITY */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* PRINT STYLES */
@media print {
  header, footer, .mobile-menu-toggle, .mobile-menu, #cookie-consent {
    display: none;
  }
  
  body {
    background: #ffffff;
  }
  
  .container {
    max-width: 100%;
  }
}