/* ===================================
   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', Roboto, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ===================================
   TYPOGRAPHY - Professional Corporate
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #2C3E50;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  color: #5C2D0A;
}

h2 {
  font-size: 32px;
  color: #2C3E50;
}

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

h4 {
  font-size: 18px;
  color: #2C3E50;
}

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

strong {
  font-weight: 600;
  color: #5C2D0A;
}

/* ===================================
   LAYOUT CONTAINERS
   =================================== */

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

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

/* ===================================
   HEADER - Professional Corporate Style
   =================================== */

header {
  background-color: #FFFFFF;
  border-bottom: 2px solid #E0E0E0;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

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

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

.main-nav a {
  font-size: 16px;
  font-weight: 500;
  color: #2C3E50;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

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

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

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

/* ===================================
   MOBILE MENU - HAMBURGER NAVIGATION
   =================================== */

.mobile-menu-toggle {
  display: none;
  background: #5C2D0A;
  border: none;
  color: #FFFFFF;
  font-size: 24px;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 4px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #7A3D0F;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 16px rgba(0,0,0,0.1);
  z-index: 999;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #2C3E50;
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #5C2D0A;
}

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

.mobile-nav a {
  padding: 16px 0;
  font-size: 18px;
  font-weight: 500;
  color: #2C3E50;
  border-bottom: 1px solid #E0E0E0;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-nav a:hover {
  color: #5C2D0A;
  padding-left: 8px;
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
}

/* ===================================
   BUTTONS - Professional Corporate
   =================================== */

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

.btn-primary {
  background-color: #5C2D0A;
  color: #FFFFFF;
  border-color: #5C2D0A;
}

.btn-primary:hover {
  background-color: #7A3D0F;
  border-color: #7A3D0F;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(92,45,10,0.3);
}
 

.btn-primary:hover {
  background-color: #5C2D0A;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(92,45,10,0.2);
}

.btn-outline {
  background-color: transparent;
  color: #2C3E50;
  border-color: #2C3E50;
}

.btn-outline:hover {
  background-color: #2C3E50;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44,62,80,0.2);
}

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

.hero {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  padding: 80px 20px;
  color: #FFFFFF;
  margin-bottom: 60px;
}

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

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

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

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

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

.trust-badges span {
  font-size: 14px;
  padding: 8px 16px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
}

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

.page-hero {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  padding: 60px 20px;
  color: #FFFFFF;
  margin-bottom: 40px;
  text-align: center;
}

.page-hero h1 {
  color: #FFFFFF;
  font-size: 40px;
  margin-bottom: 16px;
}

.page-hero p {
  color: #E0E0E0;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

/* ===================================
   SERVICES GRID - FLEXBOX ONLY
   =================================== */

.services-preview {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.services-preview h2 {
  text-align: center;
  margin-bottom: 16px;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #5A6C7D;
}

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

.service-card {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 32px 24px;
  flex: 1 1 300px;
  max-width: 380px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-color: #D4A574;
}

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

.service-card p {
  color: #5A6C7D;
  margin-bottom: 16px;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #5C2D0A;
  margin-top: 16px;
}

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

/* ===================================
   BENEFITS GRID - FLEXBOX
   =================================== */

.why-choose {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.why-choose h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.benefit-item {
  flex: 1 1 250px;
  max-width: 280px;
  text-align: center;
}

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

.benefit-item p {
  color: #5A6C7D;
  font-size: 15px;
}

/* ===================================
   PROCESS STEPS - FLEXBOX
   =================================== */

.process {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.process h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.step {
  background-color: #FFFFFF;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  padding: 32px 24px;
  flex: 1 1 200px;
  max-width: 220px;
  text-align: center;
  transition: all 0.3s ease;
}

.step:hover {
  border-color: #5C2D0A;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: #5C2D0A;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 16px;
}

.step h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #2C3E50;
}

.step p {
  font-size: 14px;
  color: #5A6C7D;
}

/* ===================================
   TESTIMONIALS - READABLE CONTRAST
   =================================== */

.testimonials {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

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

.testimonial-card {
  background-color: #F8F9FA;
  border-left: 4px solid #5C2D0A;
  padding: 32px;
  flex: 1 1 400px;
  max-width: 550px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.testimonial-card .author {
  color: #5A6C7D;
  font-size: 14px;
  font-style: normal;
  margin-top: 16px;
}

.testimonial-card .author strong {
  color: #5C2D0A;
  font-weight: 600;
}

/* ===================================
   COVERAGE AREA
   =================================== */

.coverage-area {
  padding: 60px 20px;
  background-color: #F8F9FA;
  text-align: center;
}

.coverage-area h2 {
  margin-bottom: 16px;
}

.coverage-area p {
  max-width: 600px;
  margin: 0 auto 32px;
  color: #5A6C7D;
}

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

.cities-list span {
  background-color: #FFFFFF;
  border: 2px solid #E0E0E0;
  padding: 12px 24px;
  border-radius: 24px;
  font-weight: 500;
  color: #2C3E50;
  transition: all 0.3s ease;
}

.cities-list span:hover {
  border-color: #5C2D0A;
  color: #5C2D0A;
  transform: translateY(-2px);
}

.radius-info {
  font-size: 14px;
  color: #5A6C7D;
  font-style: italic;
}

/* ===================================
   CTA BANNER
   =================================== */

.cta-banner {
  background: linear-gradient(135deg, #5C2D0A 0%, #7A3D0F 100%);
  padding: 60px 20px;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 0;
}

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

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

.cta-banner .note {
  font-size: 14px;
  margin-top: 16px;
  opacity: 0.9;
}

/* ===================================
   SERVICES DETAILED PAGE
   =================================== */

.services-detailed {
  padding: 60px 20px;
}

.intro-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #5A6C7D;
}

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

.service-detail {
  background-color: #F8F9FA;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 32px;
  transition: all 0.3s ease;
}

.service-detail:hover {
  border-color: #D4A574;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.service-detail h2 {
  color: #5C2D0A;
  margin-bottom: 16px;
  font-size: 24px;
}

.service-detail p {
  color: #5A6C7D;
  margin-bottom: 16px;
}

.service-detail .price {
  font-size: 28px;
  font-weight: 700;
  color: #5C2D0A;
  margin-top: 16px;
}

/* ===================================
   SERVICE COMPARISON
   =================================== */

.service-comparison {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.service-comparison h2 {
  text-align: center;
  margin-bottom: 16px;
}

.service-comparison > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #5A6C7D;
}

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

.material-card {
  background-color: #FFFFFF;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  padding: 32px 24px;
  flex: 1 1 280px;
  max-width: 360px;
  transition: all 0.3s ease;
}

.material-card:hover {
  border-color: #5C2D0A;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.material-card h3 {
  color: #5C2D0A;
  margin-bottom: 16px;
  font-size: 22px;
}

.material-card ul {
  list-style: none;
  margin-bottom: 20px;
}

.material-card ul li {
  padding: 8px 0;
  color: #5A6C7D;
  position: relative;
  padding-left: 24px;
}

.material-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #5C2D0A;
  font-weight: 700;
}

.best-for {
  font-size: 14px;
  font-style: italic;
  color: #5A6C7D;
  border-top: 1px solid #E0E0E0;
  padding-top: 16px;
  margin-top: 16px;
}

/* ===================================
   WARRANTY & QUALITY
   =================================== */

.warranty-quality {
  padding: 60px 20px;
  background-color: #FFFFFF;
  text-align: center;
}

.warranty-quality h2 {
  margin-bottom: 24px;
}

.warranty-highlight {
  font-size: 32px;
  font-weight: 700;
  color: #5C2D0A;
  margin-bottom: 32px;
}

.quality-points {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.quality-points li {
  padding: 12px 0 12px 32px;
  color: #5A6C7D;
  position: relative;
  font-size: 16px;
}

.quality-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #5C2D0A;
  font-weight: 700;
  font-size: 18px;
}

/* ===================================
   MATERIALS PARTNERS
   =================================== */

.materials-partners {
  padding: 60px 20px;
  background-color: #F8F9FA;
  text-align: center;
}

.materials-partners h2 {
  margin-bottom: 16px;
}

.materials-partners p {
  max-width: 700px;
  margin: 0 auto 32px;
  color: #5A6C7D;
}

.partners-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.partners-list span {
  background-color: #FFFFFF;
  border: 2px solid #E0E0E0;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  color: #2C3E50;
  font-size: 16px;
}

/* ===================================
   CONSULTATION CTA
   =================================== */

.consultation-cta {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.consultation-cta h2 {
  text-align: center;
  margin-bottom: 16px;
}

.consultation-cta > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
  color: #5A6C7D;
  font-size: 18px;
}

.consultation-cta ul {
  max-width: 600px;
  margin: 0 auto 32px;
}

.consultation-cta ul li {
  padding: 12px 0 12px 32px;
  color: #5A6C7D;
  position: relative;
}

.consultation-cta ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #5C2D0A;
  font-weight: 700;
  font-size: 18px;
}

.consultation-cta .btn {
  display: block;
  max-width: 300px;
  margin: 0 auto;
}

/* ===================================
   PORTFOLIO - REALIZACE PAGE
   =================================== */

.portfolio-intro {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 200px;
  max-width: 250px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #5C2D0A;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: #5A6C7D;
}

.project-categories {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.project-categories h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.category-item {
  background-color: #F8F9FA;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  padding: 32px 24px;
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
}

.category-item:hover {
  border-color: #5C2D0A;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.category-item h3 {
  color: #5C2D0A;
  margin-bottom: 12px;
  font-size: 20px;
}

.category-item p {
  color: #5A6C7D;
  font-size: 14px;
}

.project-showcase {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.project-showcase h2 {
  text-align: center;
  margin-bottom: 40px;
}

.projects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.project-card {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 32px 24px;
  flex: 1 1 320px;
  max-width: 380px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-color: #D4A574;
}

.project-card h3 {
  color: #5C2D0A;
  margin-bottom: 12px;
  font-size: 20px;
}

.project-card .location {
  font-size: 14px;
  color: #5A6C7D;
  font-style: italic;
  margin-bottom: 16px;
}

.project-card p {
  color: #5A6C7D;
  margin-bottom: 16px;
}

.project-specs {
  border-top: 1px solid #E0E0E0;
  padding-top: 16px;
  margin-top: 16px;
}

.project-specs li {
  padding: 6px 0;
  color: #5A6C7D;
  font-size: 14px;
}

.customer-testimonials {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.customer-testimonials h2 {
  text-align: center;
  margin-bottom: 40px;
}

.project-cta {
  padding: 60px 20px;
  background-color: #F8F9FA;
  text-align: center;
}

.project-cta h2 {
  margin-bottom: 16px;
}

.project-cta p {
  max-width: 700px;
  margin: 0 auto 32px;
  color: #5A6C7D;
  font-size: 18px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================================
   O NAS - ABOUT PAGE
   =================================== */

.company-story {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.company-story h2 {
  text-align: center;
  margin-bottom: 24px;
}

.company-story > p {
  max-width: 800px;
  margin: 0 auto 40px;
  color: #5A6C7D;
  font-size: 16px;
  line-height: 1.8;
}

.timeline {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.milestone {
  background-color: #F8F9FA;
  border-left: 4px solid #5C2D0A;
  padding: 16px 24px;
  border-radius: 4px;
  color: #5A6C7D;
}

.milestone strong {
  color: #5C2D0A;
  font-size: 18px;
}

.company-values {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.company-values h2 {
  text-align: center;
  margin-bottom: 40px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.value-item {
  background-color: #FFFFFF;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  padding: 32px 24px;
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
}

.value-item:hover {
  border-color: #5C2D0A;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.value-item h3 {
  color: #5C2D0A;
  margin-bottom: 12px;
  font-size: 20px;
}

.value-item p {
  color: #5A6C7D;
  font-size: 15px;
}

.team {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.team h2 {
  text-align: center;
  margin-bottom: 16px;
}

.team > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #5A6C7D;
  font-size: 16px;
}

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

.team-stats .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-stats .stat strong {
  font-size: 48px;
  color: #5C2D0A;
  margin-bottom: 8px;
}

.team-stats .stat span {
  font-size: 16px;
  color: #5A6C7D;
}

.service-area {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.service-area h2 {
  text-align: center;
  margin-bottom: 16px;
}

.service-area > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
  color: #5A6C7D;
}

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

.cities-served span {
  background-color: #FFFFFF;
  border: 2px solid #E0E0E0;
  padding: 12px 24px;
  border-radius: 24px;
  font-weight: 500;
  color: #2C3E50;
}

.radius-note {
  text-align: center;
  font-size: 14px;
  color: #5A6C7D;
  font-style: italic;
}

.certifications {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.certifications h2 {
  text-align: center;
  margin-bottom: 40px;
}

.cert-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.cert-col {
  flex: 1 1 300px;
}

.cert-col h3 {
  color: #5C2D0A;
  margin-bottom: 16px;
  font-size: 22px;
}

.cert-col ul li {
  padding: 8px 0 8px 24px;
  color: #5A6C7D;
  position: relative;
}

.cert-col ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #5C2D0A;
  font-weight: 700;
}

.contact-cta {
  padding: 60px 20px;
  background-color: #F8F9FA;
  text-align: center;
}

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

.contact-cta p {
  max-width: 600px;
  margin: 0 auto 32px;
  color: #5A6C7D;
  font-size: 16px;
}

/* ===================================
   PRICING PAGE
   =================================== */

.pricing-intro {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.pricing-intro h2 {
  text-align: center;
  margin-bottom: 16px;
}

.pricing-intro > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 32px;
  color: #5A6C7D;
  font-size: 16px;
}

.pricing-notes {
  max-width: 700px;
  margin: 0 auto;
}

.pricing-notes li {
  padding: 8px 0 8px 28px;
  color: #5A6C7D;
  position: relative;
}

.pricing-notes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #5C2D0A;
  font-weight: 700;
  font-size: 16px;
}

.pricing-table {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

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

.price-item {
  background-color: #F8F9FA;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
}

.price-item:hover {
  border-color: #D4A574;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.price-item h3 {
  color: #5C2D0A;
  margin-bottom: 8px;
  font-size: 22px;
}

.price-item p {
  color: #5A6C7D;
  margin-bottom: 0;
}

.price-item .price {
  font-size: 28px;
  font-weight: 700;
  color: #5C2D0A;
  margin-top: 8px;
}

.additional-services {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.additional-services h2 {
  text-align: center;
  margin-bottom: 40px;
}

.additional-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.additional-item {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.additional-item .price {
  font-weight: 700;
  color: #5C2D0A;
  font-size: 18px;
}

.pricing-factors {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.pricing-factors h2 {
  text-align: center;
  margin-bottom: 16px;
}

.pricing-factors > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
  color: #5A6C7D;
}

.factors-list {
  max-width: 800px;
  margin: 0 auto;
}

.factors-list li {
  padding: 12px 0;
  color: #5A6C7D;
  margin-bottom: 8px;
}

.factors-list li strong {
  color: #5C2D0A;
}

.discount-offers {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.discount-offers h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.offer-card {
  background-color: #FFFFFF;
  border: 2px solid #5C2D0A;
  border-radius: 8px;
  padding: 32px 24px;
  flex: 1 1 260px;
  max-width: 320px;
  text-align: center;
}

.offer-card h3 {
  color: #2C3E50;
  margin-bottom: 16px;
  font-size: 20px;
}

.offer-card .discount {
  font-size: 48px;
  font-weight: 700;
  color: #5C2D0A;
  display: block;
  margin-bottom: 8px;
}

.offer-card p {
  color: #5A6C7D;
  font-size: 14px;
}

.discount-offers .note {
  text-align: center;
  font-size: 14px;
  color: #5A6C7D;
  font-style: italic;
}

.payment-terms {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.payment-terms h2 {
  text-align: center;
  margin-bottom: 24px;
}

.payment-terms ul {
  max-width: 700px;
  margin: 0 auto 32px;
}

.payment-terms ul li {
  padding: 8px 0 8px 28px;
  color: #5A6C7D;
  position: relative;
}

.payment-terms ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #5C2D0A;
  font-weight: 700;
}

.payment-terms p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  color: #5A6C7D;
}

.quote-cta {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.quote-cta h2 {
  text-align: center;
  margin-bottom: 16px;
}

.quote-cta > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
  color: #5A6C7D;
  font-size: 18px;
}

.quote-cta ul {
  max-width: 600px;
  margin: 0 auto 32px;
}

.quote-cta ul li {
  padding: 8px 0 8px 28px;
  color: #5A6C7D;
  position: relative;
}

.quote-cta ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #5C2D0A;
  font-weight: 700;
}

.quote-cta p {
  text-align: center;
  font-weight: 600;
  color: #2C3E50;
  margin-bottom: 24px;
}

.quote-cta .btn {
  display: block;
  max-width: 300px;
  margin: 0 auto;
}

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

.contact-methods {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

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

.contact-card {
  background-color: #FFFFFF;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  padding: 32px 24px;
  flex: 1 1 280px;
  max-width: 360px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: #5C2D0A;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.contact-card h3 {
  color: #5C2D0A;
  margin-bottom: 16px;
  font-size: 22px;
}

.contact-card .detail {
  font-size: 16px;
  font-weight: 600;
  color: #2C3E50;
  margin-bottom: 8px;
}

.contact-card .availability {
  font-size: 14px;
  color: #5A6C7D;
  margin-bottom: 12px;
}

.contact-card .note {
  font-size: 13px;
  color: #5A6C7D;
  font-style: italic;
}

.contact-info {
  padding: 60px 20px;
  background-color: #FFFFFF;
  text-align: center;
}

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

.contact-info p {
  max-width: 700px;
  margin: 0 auto 16px;
  color: #5A6C7D;
}

.office-info {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.office-info h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.detail-block {
  flex: 1 1 250px;
  max-width: 350px;
}

.detail-block h3 {
  color: #5C2D0A;
  margin-bottom: 12px;
  font-size: 20px;
}

.detail-block p {
  color: #5A6C7D;
}

.office-info .directions {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  color: #5A6C7D;
  font-style: italic;
}

.service-area-map {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.service-area-map h2 {
  text-align: center;
  margin-bottom: 16px;
}

.service-area-map > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
  color: #5A6C7D;
}

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

.city-item {
  background-color: #F8F9FA;
  border: 1px solid #E0E0E0;
  padding: 16px 20px;
  border-radius: 8px;
  flex: 1 1 280px;
  max-width: 380px;
}

.city-item strong {
  color: #5C2D0A;
}

.faq-contact {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.faq-contact h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.faq-item {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 24px;
}

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

.faq-item p {
  color: #5A6C7D;
  margin-bottom: 0;
}

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

.legal-content {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

.content-wrapper h2 {
  color: #5C2D0A;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 24px;
}

.content-wrapper h3 {
  color: #2C3E50;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

.content-wrapper p {
  color: #5A6C7D;
  margin-bottom: 16px;
  line-height: 1.8;
}

.content-wrapper ul {
  margin: 16px 0 24px 24px;
}

.content-wrapper ul li {
  color: #5A6C7D;
  padding: 6px 0;
  position: relative;
  padding-left: 20px;
}

.content-wrapper ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #5C2D0A;
  font-weight: 700;
}

.content-wrapper a {
  color: #5C2D0A;
  text-decoration: underline;
}

.content-wrapper a:hover {
  color: #7A3D0F;
}

/* ===================================
   THANK YOU PAGES
   =================================== */

.thank-you-hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: #FFFFFF;
  text-align: center;
}

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

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

.thank-you-content h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.thank-you-content .message {
  font-size: 18px;
  color: #E0E0E0;
  margin-bottom: 16px;
}

.thank-you-content .confirmation {
  font-size: 16px;
  color: #E0E0E0;
}

.what-happens-next {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.what-happens-next h2 {
  text-align: center;
  margin-bottom: 40px;
}

.timeline-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-step {
  background-color: #FFFFFF;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  padding: 32px 24px;
  flex: 1 1 220px;
  max-width: 240px;
  text-align: center;
  position: relative;
}

.step-num {
  width: 40px;
  height: 40px;
  background-color: #5C2D0A;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  margin: 0 auto 16px;
}

.timeline-step h3 {
  color: #2C3E50;
  margin-bottom: 12px;
  font-size: 18px;
}

.timeline-step p {
  color: #5A6C7D;
  font-size: 14px;
  margin-bottom: 12px;
}

.timeline-step .timeframe {
  font-size: 12px;
  color: #5C2D0A;
  font-weight: 600;
  font-style: italic;
}

.contact-reminder {
  padding: 60px 20px;
  background-color: #FFFFFF;
  text-align: center;
}

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

.contact-reminder p {
  max-width: 600px;
  margin: 0 auto;
  color: #5A6C7D;
}

.while-you-wait {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.while-you-wait h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.suggestion-card {
  background-color: #FFFFFF;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  padding: 32px 24px;
  flex: 1 1 280px;
  max-width: 360px;
  text-align: center;
  transition: all 0.3s ease;
}

.suggestion-card:hover {
  border-color: #5C2D0A;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.suggestion-card h3 {
  color: #5C2D0A;
  margin-bottom: 12px;
  font-size: 20px;
}

.suggestion-card p {
  color: #5A6C7D;
  margin-bottom: 20px;
}

.social-proof-mini {
  padding: 60px 20px;
  background-color: #FFFFFF;
  text-align: center;
}

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

.mini-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mini-stat strong {
  font-size: 36px;
  color: #5C2D0A;
  margin-bottom: 4px;
}

.mini-stat span {
  font-size: 14px;
  color: #5A6C7D;
}

.rating-note {
  font-size: 14px;
  color: #5A6C7D;
  font-style: italic;
}

.return-home {
  padding: 40px 20px 60px;
  text-align: center;
  background-color: #F8F9FA;
}

.thank-you-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  text-align: center;
}

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

.thank-you-box h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.thank-you-box p {
  color: #E0E0E0;
  font-size: 18px;
  margin-bottom: 16px;
}

/* ===================================
   FOOTER - Professional Corporate
   =================================== */

footer {
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-col {
  flex: 1 1 200px;
  max-width: 280px;
}

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

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

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

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

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

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

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 20px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
  z-index: 1000;
  display: none;
  animation: slideUp 0.4s ease;
}

.cookie-banner.active {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

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

.cookie-text p {
  color: #E0E0E0;
  font-size: 14px;
  margin-bottom: 0;
}

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

.cookie-buttons .btn {
  padding: 10px 24px;
  font-size: 14px;
}

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

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

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal-content h2 {
  color: #2C3E50;
  margin-bottom: 24px;
}

.cookie-category {
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 16px;
}

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

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

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

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

.cookie-toggle label {
  font-size: 14px;
  color: #2C3E50;
  cursor: pointer;
}

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

/* ===================================
   RESPONSIVE DESIGN - MOBILE FIRST
   =================================== */

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 12px;
  }
  
  .services-grid,
  .benefits-grid,
  .process-steps,
  .testimonials-grid,
  .categories-grid,
  .projects-grid,
  .values-grid,
  .contact-grid,
  .offers-grid,
  .suggestions-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .service-card,
  .benefit-item,
  .step,
  .testimonial-card,
  .category-item,
  .project-card,
  .value-item,
  .contact-card,
  .offer-card,
  .suggestion-card {
    max-width: 100%;
    width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-col {
    max-width: 100%;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  .timeline-steps {
    flex-direction: column;
  }
  
  .timeline-step {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .section {
    padding: 32px 16px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

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

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

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

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

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

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

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

/* ===================================
   ANIMATIONS AND TRANSITIONS
   =================================== */

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

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

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

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus {
  outline: 2px solid #5C2D0A;
  outline-offset: 2px;
}

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