/* ========================================
   ENERGIC WAVE - GEOMETRIC STRUCTURED DESIGN
   Modern, geometric home services website
   ======================================== */

/* 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', Arial, sans-serif;
  line-height: 1.6;
  color: #1A1A1A;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

/* TYPOGRAPHY - GEOMETRIC STRUCTURED */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  text-transform: uppercase;
}

h2 {
  font-size: 32px;
  text-transform: uppercase;
  border-left: 4px solid #FF6B35;
  padding-left: 16px;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

h4 {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}

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

a:hover {
  color: #FF6B35;
}

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

li {
  margin-bottom: 8px;
}

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

/* HEADER - GEOMETRIC DESIGN */
header {
  background-color: #FFFFFF;
  border-bottom: 3px solid #FF6B35;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 5px));
}

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

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

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: #1A1A1A;
  padding: 8px 12px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #FF6B35;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.main-nav a:hover {
  color: #FF6B35;
}

.cta-button {
  background-color: #FF6B35;
  color: #FFFFFF;
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.cta-button:hover {
  background-color: #004E89;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background-color: #FF6B35;
  color: #FFFFFF;
  border: none;
  font-size: 24px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 1001;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), 8px 100%, 0 calc(100% - 8px));
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #004E89;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background-color: #1A1A1A;
  z-index: 2000;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 24px;
  clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%, 0 20px);
}

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

.mobile-menu-close {
  align-self: flex-end;
  background-color: #FF6B35;
  color: #FFFFFF;
  border: none;
  font-size: 32px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  margin-bottom: 32px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), 8px 100%, 0 calc(100% - 8px));
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  padding: 16px 20px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: rgba(255, 107, 53, 0.1);
  border-left-color: #FF6B35;
  padding-left: 28px;
}

/* HERO SECTION - GEOMETRIC */
.hero {
  background: linear-gradient(135deg, #004E89 0%, #002D50 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 50px), 0 100%);
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(45deg, rgba(255, 107, 53, 0.1) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 107, 53, 0.1) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255, 107, 53, 0.1) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255, 107, 53, 0.1) 75%);
  background-size: 60px 60px;
  background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
  opacity: 0.3;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subheadline {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.95;
}

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

.btn-primary, .btn-secondary {
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background-color: #FF6B35;
  color: #FFFFFF;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.btn-primary:hover {
  background-color: #F7B801;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 3px solid #FFFFFF;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.btn-secondary:hover {
  background-color: #FFFFFF;
  color: #004E89;
}

.trust-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.badge {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.4);
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

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

.services-overview, .why-choose-us, .how-it-works, .testimonials,
.cta-banner, .services-detailed, .service-guarantees, .faq,
.about-story, .our-values, .team-approach, .why-trust-us,
.pricing-intro, .pricing-table, .pricing-factors, .pricing-packages,
.work-showcase, .work-process, .quality-guarantee,
.contact-methods, .contact-form-section, .service-areas, .availability,
.trust-signals, .legal-content, .next-steps, .contact-confirmation,
.while-you-wait, .thank-you-hero {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 32px;
  text-align: center;
}

/* HERO INTERNAL */
.hero-internal {
  background: linear-gradient(135deg, #004E89 0%, #002D50 100%);
  color: #FFFFFF;
  padding: 60px 20px 40px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 0 100%);
  margin-bottom: 40px;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 16px;
  opacity: 0.9;
}

.breadcrumb a {
  color: #FFFFFF;
  text-decoration: underline;
}

.last-updated {
  font-size: 14px;
  opacity: 0.8;
  margin-top: 8px;
}

/* CARDS - GEOMETRIC */
.services-grid, .benefits-grid, .guarantees-grid, .values-grid,
.trust-grid, .factors-grid, .projects-grid, .process-grid,
.contact-grid, .schedule-grid, .signals-grid, .suggestions-grid,
.packages-grid, .pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.service-card, .benefit, .guarantee, .value, .trust-item,
.factor, .project-card, .process-step, .contact-method,
.schedule-item, .signal, .suggestion, .package-card,
.pricing-card {
  background-color: #FFFFFF;
  border: 3px solid #E0E0E0;
  padding: 32px;
  flex: 1 1 300px;
  min-width: 280px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}

.service-card:hover, .benefit:hover, .project-card:hover {
  border-color: #FF6B35;
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 20px 20px 0;
  border-color: transparent #FF6B35 transparent transparent;
  transition: all 0.3s ease;
}

.service-card h3, .benefit h3, .guarantee h3, .value h3 {
  color: #004E89;
  margin-bottom: 16px;
  font-size: 22px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #FF6B35;
  margin: 16px 0;
  font-family: 'Montserrat', sans-serif;
}

.service-link {
  display: inline-block;
  margin-top: 16px;
  color: #004E89;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  position: relative;
  padding-right: 20px;
}

.service-link::after {
  content: '→';
  position: absolute;
  right: 0;
  transition: right 0.3s ease;
}

.service-link:hover::after {
  right: -5px;
}

/* STEPS - GEOMETRIC */
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 200px;
  max-width: 250px;
  padding: 24px;
  background-color: #F5F5F5;
  border: 3px solid #E0E0E0;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #FF6B35;
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

/* TESTIMONIALS - GEOMETRIC */
.testimonials {
  background-color: #F5F5F5;
  padding: 60px 20px;
  clip-path: polygon(0 30px, 100% 0, 100% calc(100% - 30px), 0 100%);
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.testimonial-card {
  background-color: #FFFFFF;
  border: 3px solid #E0E0E0;
  border-left: 5px solid #FF6B35;
  padding: 32px;
  flex: 1 1 400px;
  max-width: 550px;
  margin-bottom: 20px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), 0 100%);
}

.stars {
  color: #F7B801;
  font-size: 24px;
  margin-bottom: 16px;
}

.testimonial-card p {
  color: #1A1A1A;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.author {
  font-weight: 600;
  color: #004E89;
  font-size: 14px;
  text-transform: uppercase;
}

/* CTA BANNER - GEOMETRIC */
.cta-banner {
  background: linear-gradient(135deg, #FF6B35 0%, #F7B801 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 60px 20px;
  margin: 60px 0;
  clip-path: polygon(0 20px, 100% 0, 100% calc(100% - 20px), 0 100%);
}

.cta-banner h2 {
  color: #FFFFFF;
  border: none;
  padding: 0;
  margin-bottom: 16px;
}

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

.urgency-note, .social-proof {
  font-size: 14px;
  margin-top: 16px;
  opacity: 0.95;
  font-weight: 600;
}

/* STATS */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 40px 0;
}

.stat {
  text-align: center;
  flex: 1 1 150px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #FF6B35;
  font-family: 'Montserrat', sans-serif;
  display: block;
  margin-bottom: 8px;
}

/* SERVICE DETAIL */
.service-detail {
  background-color: #FFFFFF;
  border: 3px solid #E0E0E0;
  border-top: 5px solid #FF6B35;
  padding: 40px;
  margin-bottom: 32px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), 0 100%);
}

.service-detail h2 {
  color: #004E89;
}

.service-detail h3 {
  color: #1A1A1A;
  margin-top: 24px;
  font-size: 20px;
}

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

.service-detail li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
}

.service-detail li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #FF6B35;
  font-size: 20px;
}

/* PRICING */
.price-large {
  font-size: 48px;
  font-weight: 700;
  color: #FF6B35;
  font-family: 'Montserrat', sans-serif;
  margin: 24px 0;
  display: block;
}

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

.package-duration {
  font-size: 16px;
  color: #004E89;
  font-weight: 600;
  margin-bottom: 16px;
}

.savings, .discount-large {
  background-color: #F7B801;
  color: #1A1A1A;
  padding: 8px 16px;
  font-weight: 700;
  display: inline-block;
  margin: 16px 0;
  text-transform: uppercase;
  font-size: 14px;
  clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
}

/* PROJECT CARDS */
.project-category {
  background-color: #004E89;
  color: #FFFFFF;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 16px;
  clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
}

.project-details {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: 14px;
  color: #666;
}

/* FAQ - GEOMETRIC */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: #FFFFFF;
  border: 3px solid #E0E0E0;
  border-left: 5px solid #004E89;
  padding: 24px;
  margin-bottom: 20px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), 0 100%);
}

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

/* CONTACT */
.contact-value {
  font-size: 18px;
  font-weight: 600;
  color: #004E89;
  margin: 8px 0;
}

.contact-note {
  font-size: 14px;
  color: #666;
}

.form-placeholder {
  background-color: #F5F5F5;
  border: 3px dashed #E0E0E0;
  padding: 60px 40px;
  text-align: center;
  margin: 32px 0;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), 0 100%);
}

.form-note {
  font-size: 20px;
  font-weight: 600;
  color: #004E89;
  margin-bottom: 16px;
}

.contact-details {
  margin-top: 32px;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.time {
  font-size: 24px;
  font-weight: 700;
  color: #FF6B35;
  display: block;
  margin: 8px 0;
  font-family: 'Montserrat', sans-serif;
}

.flexibility-note {
  text-align: center;
  margin-top: 32px;
  font-style: italic;
  color: #666;
}

/* THANK YOU PAGE */
.thank-you-hero {
  text-align: center;
  padding: 80px 20px;
}

.success-icon {
  width: 100px;
  height: 100px;
  background-color: #4CAF50;
  color: #FFFFFF;
  font-size: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), 20px 100%, 0 calc(100% - 20px));
}

/* TEXT SECTIONS */
.text-section {
  max-width: 800px;
  margin: 0 auto 32px;
}

.text-section p {
  margin-bottom: 20px;
}

/* FOOTER - GEOMETRIC */
footer {
  background-color: #1A1A1A;
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 80px;
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
}

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

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

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

.footer-section h4 {
  color: #FF6B35;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  border-bottom: 2px solid #FF6B35;
  padding-bottom: 8px;
  display: inline-block;
}

.footer-section p, .footer-section a {
  color: #CCCCCC;
  font-size: 14px;
  line-height: 1.8;
  display: block;
  margin-bottom: 8px;
}

.footer-section a:hover {
  color: #FF6B35;
  padding-left: 5px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  padding: 24px 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  margin-bottom: 24px;
}

.footer-legal a {
  color: #CCCCCC;
  font-size: 13px;
  text-transform: uppercase;
}

.copyright {
  text-align: center;
  color: #999;
  font-size: 13px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1A1A1A;
  color: #FFFFFF;
  padding: 20px;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-banner p {
  flex: 1 1 300px;
  margin: 0;
  font-size: 14px;
}

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

.cookie-accept, .cookie-reject, .cookie-settings {
  padding: 10px 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.cookie-accept {
  background-color: #FF6B35;
  color: #FFFFFF;
}

.cookie-accept:hover {
  background-color: #F7B801;
}

.cookie-reject {
  background-color: #666;
  color: #FFFFFF;
}

.cookie-reject:hover {
  background-color: #004E89;
}

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

.cookie-settings:hover {
  background-color: #FFFFFF;
  color: #1A1A1A;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #FF6B35;
  color: #FFFFFF;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), 8px 100%, 0 calc(100% - 8px));
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #F5F5F5;
  border: 2px solid #E0E0E0;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), 0 100%);
}

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

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

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

.toggle-switch.active {
  background-color: #FF6B35;
}

.toggle-slider {
  width: 22px;
  height: 22px;
  background-color: #FFFFFF;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: left 0.3s ease;
}

.toggle-switch.active .toggle-slider {
  left: 26px;
}

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

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Mobile Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 26px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  /* Mobile Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .cta-button {
    display: none;
  }
  
  /* Mobile Header */
  header .container {
    justify-content: space-between;
  }
  
  /* Mobile Sections */
  .hero {
    padding: 60px 20px 40px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 0 100%);
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  .cta-group {
    flex-direction: column;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  .trust-badges {
    flex-direction: column;
  }
  
  .badge {
    text-align: center;
  }
  
  /* Mobile Cards */
  .services-grid, .benefits-grid, .steps, .testimonials-grid,
  .guarantees-grid, .values-grid, .trust-grid, .factors-grid,
  .projects-grid, .process-grid, .stats-grid, .contact-grid,
  .schedule-grid, .signals-grid, .suggestions-grid,
  .packages-grid, .pricing-grid {
    flex-direction: column;
  }
  
  .service-card, .benefit, .step, .testimonial-card, .guarantee,
  .value, .trust-item, .factor, .project-card, .process-step,
  .stat, .contact-method, .schedule-item, .signal, .suggestion,
  .package-card, .pricing-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Mobile Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  
  /* Mobile Cookie Banner */
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-accept, .cookie-reject, .cookie-settings {
    width: 100%;
  }
  
  /* Mobile Forms */
  .form-placeholder {
    padding: 40px 20px;
  }
  
  /* Mobile Text */
  .text-section {
    padding: 0 10px;
  }
  
  .price-large {
    font-size: 36px;
  }
  
  .stat-number {
    font-size: 36px;
  }
}

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

/* ACCESSIBILITY */
*:focus {
  outline: 3px solid #FF6B35;
  outline-offset: 2px;
}

button:focus, a:focus, input:focus, select:focus, textarea:focus {
  outline: 3px solid #FF6B35;
  outline-offset: 2px;
}

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

.service-card, .benefit, .project-card, .testimonial-card {
  animation: fadeIn 0.6s ease-out;
}

/* PRINT STYLES */
@media print {
  header, footer, .mobile-menu-toggle, .cookie-banner, .cta-banner {
    display: none;
  }
  
  body {
    color: #000;
    background: #FFF;
  }
  
  a {
    text-decoration: underline;
  }
}