/* ============================================
   NovaFuse - Scandinavian Clean Design
   Modern, Professional Reconstruction Services
   ============================================ */

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul, ol {
  list-style-position: inside;
}

/* ============================================
   TYPOGRAPHY - SCANDINAVIAN CLEAN
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #1a4a6d;
  margin-bottom: 16px;
}

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

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

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  color: #4a5568;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}

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

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

.main-nav {
  display: none;
}

.main-nav a {
  color: #2d3748;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #1a4a6d;
  background-color: #f7fafc;
}

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #1a4a6d;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 101;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
  z-index: 200;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 24px;
}

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

.mobile-menu-close {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  background-color: #f7fafc;
  color: #2d3748;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  margin-bottom: 32px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.mobile-nav a {
  color: #2d3748;
  font-size: 18px;
  font-weight: 500;
  padding: 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: #f7fafc;
  color: #1a4a6d;
  transform: translateX(4px);
}

/* ============================================
   BUTTONS - SCANDINAVIAN STYLE
   ============================================ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

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

.btn-primary:hover {
  background-color: #2C5F8D;
  border-color: #2C5F8D;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 74, 109, 0.25);
}

.btn-secondary {
  background-color: transparent;
  color: #1a4a6d;
  border-color: #1a4a6d;
}

.btn-secondary:hover {
  background-color: #1a4a6d;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 74, 109, 0.15);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  background: linear-gradient(135deg, #f7fafc 0%, #e8f1f5 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.hero h1 {
  font-size: 36px;
  color: #1a4a6d;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-subheadline {
  font-size: 18px;
  color: #4a5568;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}

.badge {
  background-color: #ffffff;
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  color: #2d3748;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.benefits {
  padding: 60px 20px;
  background-color: #ffffff;
  margin-bottom: 60px;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 32px;
}

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

.benefit-item {
  flex: 1 1 280px;
  max-width: 360px;
  background-color: #f7fafc;
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 74, 109, 0.1);
}

.benefit-item h3 {
  font-size: 20px;
  color: #1a4a6d;
  margin-bottom: 12px;
}

.benefit-item p {
  color: #4a5568;
  font-size: 15px;
  margin-bottom: 0;
}

/* ============================================
   SERVICES SECTIONS
   ============================================ */

.services-overview {
  padding: 60px 20px;
  background-color: #fafafa;
  margin-bottom: 60px;
}

.services-overview h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 32px;
}

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

.service-card {
  flex: 1 1 280px;
  max-width: 360px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 74, 109, 0.12);
}

.service-card h3 {
  font-size: 22px;
  color: #1a4a6d;
  margin-bottom: 16px;
}

.service-card p {
  color: #4a5568;
  font-size: 15px;
  line-height: 1.6;
  flex-grow: 1;
}

.service-card .price {
  font-size: 20px;
  font-weight: 700;
  color: #E5C299;
  margin-top: 16px;
  margin-bottom: 0;
}

.services-overview > .container > .btn-primary {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* ============================================
   SERVICES DETAIL PAGE
   ============================================ */

.services-detail {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.services-detail .intro {
  text-align: center;
  font-size: 18px;
  color: #2d3748;
  margin-bottom: 48px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-detail-card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.service-detail-card:hover {
  box-shadow: 0 8px 24px rgba(26, 74, 109, 0.1);
}

.service-detail-card h3 {
  font-size: 24px;
  color: #1a4a6d;
  margin-bottom: 16px;
}

.service-detail-card .price {
  font-size: 22px;
  font-weight: 700;
  color: #E5C299;
  margin: 16px 0;
}

.service-detail-card .details {
  font-size: 14px;
  color: #718096;
  margin-top: 12px;
}

/* ============================================
   MATERIALS SECTION
   ============================================ */

.materials {
  padding: 60px 20px;
  background-color: #f7fafc;
  margin-bottom: 60px;
}

.materials h2 {
  text-align: center;
  margin-bottom: 32px;
}

.materials p {
  text-align: center;
  margin-bottom: 24px;
}

.materials ul {
  max-width: 700px;
  margin: 32px auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.materials li {
  padding: 16px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
  padding: 60px 20px;
  background-color: #ffffff;
  margin-bottom: 60px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 32px;
}

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

.testimonial-card {
  flex: 1 1 320px;
  max-width: 500px;
  background-color: #f7fafc;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: relative;
  margin-bottom: 20px;
}

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

.testimonial-card .author {
  color: #1a4a6d;
  font-weight: 600;
  font-size: 14px;
  font-style: normal;
  margin-bottom: 0;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.stat {
  background-color: #1a4a6d;
  color: #ffffff;
  padding: 20px 32px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.testimonials > .container > .btn-secondary {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* ============================================
   TESTIMONIALS DETAILED PAGE
   ============================================ */

.testimonials-detailed {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-full {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

.testimonial-full p:first-child {
  color: #2d3748;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-full .author {
  color: #1a4a6d;
  font-weight: 600;
  font-size: 16px;
  font-style: normal;
  margin-bottom: 12px;
}

.testimonial-full .rating {
  color: #E5C299;
  font-size: 20px;
  margin-bottom: 0;
}

/* ============================================
   PROJECTS/REFERENCE SECTION
   ============================================ */

.projects {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.project-card {
  flex: 1 1 280px;
  max-width: 360px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 74, 109, 0.12);
}

.project-card h3 {
  font-size: 20px;
  color: #1a4a6d;
  margin-bottom: 16px;
}

.project-details {
  font-size: 13px;
  color: #718096;
  margin-bottom: 16px;
}

.project-card > p {
  color: #4a5568;
  font-size: 15px;
  line-height: 1.6;
}

.project-card .testimonial {
  color: #2d3748;
  font-style: italic;
  background-color: #f7fafc;
  padding: 16px;
  border-radius: 8px;
  margin-top: 16px;
  font-size: 14px;
}

/* ============================================
   SUCCESS METRICS
   ============================================ */

.success-metrics {
  padding: 60px 20px;
  background-color: #f7fafc;
  margin-bottom: 60px;
}

.success-metrics h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.metric {
  flex: 1 1 220px;
  max-width: 280px;
  background-color: #1a4a6d;
  color: #ffffff;
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(26, 74, 109, 0.2);
}

/* ============================================
   CTA SECTIONS
   ============================================ */

.cta-banner, .cta-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1a4a6d 0%, #2C5F8D 100%);
  color: #ffffff;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 12px;
}

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

.cta-banner p, .cta-section p {
  color: #e8f1f5;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-banner .btn-primary, .cta-section .btn-primary {
  background-color: #E5C299;
  color: #1a4a6d;
  border-color: #E5C299;
}

.cta-banner .btn-primary:hover, .cta-section .btn-primary:hover {
  background-color: #ffffff;
  color: #1a4a6d;
  border-color: #ffffff;
}

/* ============================================
   PAGE HERO
   ============================================ */

.page-hero {
  padding: 48px 20px;
  background: linear-gradient(135deg, #f7fafc 0%, #e8f1f5 100%);
  margin-bottom: 48px;
}

.breadcrumbs {
  font-size: 14px;
  color: #718096;
  margin-bottom: 16px;
}

.breadcrumbs a {
  color: #1a4a6d;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: #2C5F8D;
}

.page-hero h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #4a5568;
}

.page-hero .stats {
  margin-top: 32px;
  justify-content: flex-start;
}

.page-hero .stats span {
  background-color: #ffffff;
  color: #1a4a6d;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* ============================================
   COMPANY STORY & VALUES
   ============================================ */

.company-story, .values, .team, .certifications, .office-info {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.company-story h2, .values h2, .team h2, .certifications h2, .office-info h2 {
  margin-bottom: 32px;
}

.company-story p, .team p, .certifications p, .office-info p {
  max-width: 800px;
  line-height: 1.8;
}

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

.value-item {
  flex: 1 1 240px;
  max-width: 280px;
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  text-align: center;
  margin-bottom: 20px;
}

.value-item h3 {
  font-size: 22px;
  color: #1a4a6d;
  margin-bottom: 12px;
}

.value-item p {
  color: #4a5568;
  font-size: 15px;
  margin-bottom: 0;
}

.team ul, .certifications ul, .office-info ul {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.team li, .certifications li {
  padding: 16px;
  background-color: #f7fafc;
  border-radius: 8px;
}

/* ============================================
   PRICING SECTIONS
   ============================================ */

.pricing-intro, .payment-terms {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.pricing-intro h2, .payment-terms h2 {
  margin-bottom: 32px;
}

.pricing-intro ul, .payment-terms ul {
  max-width: 700px;
  margin: 24px auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-intro li, .payment-terms li {
  padding: 16px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.pricing-intro .disclaimer {
  background-color: #fff3cd;
  color: #856404;
  padding: 16px;
  border-radius: 8px;
  margin-top: 16px;
  font-size: 14px;
  text-align: center;
}

.pricing-table {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.pricing-table h2 {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-item {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

.pricing-item h3 {
  font-size: 24px;
  color: #1a4a6d;
  margin-bottom: 16px;
}

.pricing-item .price {
  font-size: 28px;
  font-weight: 700;
  color: #E5C299;
  margin: 16px 0;
}

.pricing-item p {
  color: #4a5568;
  line-height: 1.6;
}

.pricing-item .note {
  font-size: 14px;
  color: #718096;
  font-style: italic;
  margin-top: 12px;
}

.pricing-packages {
  padding: 60px 20px;
  background-color: #f7fafc;
  margin-bottom: 60px;
}

.pricing-packages h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.package {
  flex: 1 1 280px;
  max-width: 360px;
  background-color: #ffffff;
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.package:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 74, 109, 0.12);
}

.package h3 {
  font-size: 24px;
  color: #1a4a6d;
  margin-bottom: 16px;
}

.package .price {
  font-size: 24px;
  font-weight: 700;
  color: #E5C299;
  margin: 16px 0 24px;
}

.package p {
  color: #4a5568;
  font-size: 15px;
  margin-bottom: 0;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-methods {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.method {
  flex: 1 1 280px;
  max-width: 400px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  text-align: center;
  margin-bottom: 20px;
}

.method h3 {
  font-size: 22px;
  color: #1a4a6d;
  margin-bottom: 16px;
}

.method p {
  color: #2d3748;
  font-size: 16px;
  font-weight: 600;
}

.method .note {
  font-size: 14px;
  color: #718096;
  font-weight: 400;
  margin-top: 8px;
}

.contact-form-section {
  padding: 60px 20px;
  background-color: #f7fafc;
  margin-bottom: 60px;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.contact-form-section > .container > p {
  text-align: center;
  margin-bottom: 32px;
}

.form-note {
  max-width: 700px;
  margin: 32px auto;
  background-color: #fff3cd;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #E5C299;
}

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

.office-details {
  max-width: 600px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.office-details h3 {
  margin-top: 24px;
  margin-bottom: 16px;
}

.company-details {
  padding: 60px 20px;
  background-color: #f7fafc;
  margin-bottom: 60px;
}

.company-details h2 {
  text-align: center;
  margin-bottom: 32px;
}

.company-details p {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 12px;
}

.response-time {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.response-time h2 {
  text-align: center;
  margin-bottom: 32px;
}

.response-time ul {
  max-width: 600px;
  margin: 24px auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.response-time li {
  padding: 16px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.response-time p {
  text-align: center;
  font-weight: 600;
  color: #1a4a6d;
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-page {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 48px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.legal-content h2 {
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #1a4a6d;
}

.legal-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

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

.legal-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.legal-content a {
  color: #1a4a6d;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #2C5F8D;
}

.last-update {
  color: #718096;
  font-size: 14px;
  font-style: italic;
  margin-bottom: 32px;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

.thank-you-page {
  padding: 60px 20px;
  min-height: 60vh;
}

.thank-you-content {
  text-align: center;
  margin-bottom: 48px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #48bb78;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
  box-shadow: 0 4px 12px rgba(72, 187, 120, 0.3);
}

.thank-you-content h1 {
  font-size: 32px;
  margin-bottom: 16px;
}

.thank-you-content p {
  font-size: 18px;
  color: #4a5568;
}

.next-steps {
  margin-bottom: 48px;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 32px;
}

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

.step {
  flex: 1 1 240px;
  max-width: 280px;
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  text-align: center;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 20px;
  color: #1a4a6d;
  margin-bottom: 12px;
}

.step p {
  color: #4a5568;
  font-size: 15px;
  margin-bottom: 0;
}

.contact-reminder {
  background-color: #f7fafc;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 48px;
}

.contact-reminder h2 {
  margin-bottom: 16px;
}

.contact-reminder p {
  font-weight: 600;
  color: #1a4a6d;
  margin-bottom: 8px;
}

.useful-links {
  margin-bottom: 48px;
}

.useful-links h2 {
  text-align: center;
  margin-bottom: 24px;
}

.useful-links ul {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.useful-links li {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.useful-links li:hover {
  transform: translateX(4px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.useful-links a {
  display: block;
  padding: 16px;
  color: #1a4a6d;
  font-weight: 500;
}

.social-proof-mini {
  margin-bottom: 48px;
}

.social-proof-mini h2 {
  text-align: center;
  margin-bottom: 32px;
}

.social-proof-mini .stats {
  justify-content: center;
}

.back-home {
  text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background-color: #1a4a6d;
  color: #e8f1f5;
  padding: 48px 20px 24px;
  margin-top: 60px;
}

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

.footer-section {
  flex: 1 1 240px;
  max-width: 320px;
}

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

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

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

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

.footer-nav a:hover {
  color: #ffffff;
}

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

.footer-bottom p {
  color: #e8f1f5;
  font-size: 14px;
  margin-bottom: 0;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  padding: 24px;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.show {
  transform: translateY(0);
}

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

.cookie-text {
  flex: 1 1 300px;
  color: #2d3748;
  font-size: 14px;
  line-height: 1.5;
}

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

.cookie-btn {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.cookie-btn-accept {
  background-color: #1a4a6d;
  color: #ffffff;
}

.cookie-btn-accept:hover {
  background-color: #2C5F8D;
}

.cookie-btn-reject {
  background-color: #e2e8f0;
  color: #2d3748;
}

.cookie-btn-reject:hover {
  background-color: #cbd5e0;
}

.cookie-btn-settings {
  background-color: transparent;
  color: #1a4a6d;
  border: 1px solid #1a4a6d;
}

.cookie-btn-settings:hover {
  background-color: #f7fafc;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 32px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background-color: #f7fafc;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

.cookie-modal h2 {
  margin-bottom: 24px;
  color: #1a4a6d;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #f7fafc;
  border-radius: 8px;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 0;
  color: #1a4a6d;
}

.cookie-toggle {
  width: 48px;
  height: 24px;
  background-color: #cbd5e0;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle.active {
  background-color: #1a4a6d;
}

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

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

.cookie-toggle.active .cookie-toggle-slider {
  transform: translateX(24px);
}

.cookie-category p {
  color: #4a5568;
  font-size: 14px;
  margin-bottom: 0;
}

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

/* ============================================
   RESPONSIVE DESIGN - TABLET
   ============================================ */

@media (min-width: 768px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 36px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-subheadline {
    font-size: 20px;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
    gap: 8px;
  }

  .benefits-grid {
    justify-content: space-between;
  }

  .services-grid {
    justify-content: space-between;
  }

  .service-card {
    max-width: 48%;
  }

  .footer-content {
    justify-content: space-between;
  }

  .cookie-content {
    flex-wrap: nowrap;
  }
}

/* ============================================
   RESPONSIVE DESIGN - DESKTOP
   ============================================ */

@media (min-width: 1024px) {
  h1 {
    font-size: 48px;
  }

  .hero h1 {
    font-size: 56px;
  }

  .section {
    padding: 60px 20px;
  }

  .benefits-grid {
    gap: 32px;
  }

  .benefit-item {
    flex: 1 1 280px;
    max-width: 30%;
  }

  .services-grid {
    gap: 32px;
  }

  .service-card {
    flex: 1 1 280px;
    max-width: 30%;
  }

  .testimonials-grid {
    gap: 32px;
  }

  .projects-grid {
    gap: 32px;
  }

  .project-card {
    max-width: 30%;
  }
}

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */

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

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

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
.btn:focus {
  outline: 2px solid #E5C299;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .btn {
    display: none;
  }

  body {
    background-color: #ffffff;
  }

  .container {
    max-width: 100%;
  }
}

/* ============================================
   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;
}

/* ============================================
   END OF STYLESHEET
   ============================================ */
