/* ============================================
   LUMINOUS RENOVATIONEN - INDUSTRIAL MODERN CSS
   Design Style: Industrial Modern Aesthetic
   ============================================ */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #E8E8E8;
  background-color: #1A1A1A;
  overflow-x: hidden;
}

/* TYPOGRAPHY - Industrial Modern */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #F5F5F0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

h1 {
  font-size: 48px;
  color: #F5F5F0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h2 {
  font-size: 32px;
  color: #E8B849;
  border-left: 4px solid #E8B849;
  padding-left: 16px;
  margin-bottom: 32px;
}

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

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

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

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

a:hover {
  color: #FFD666;
  text-decoration: underline;
}

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

li {
  margin-bottom: 12px;
  color: #C8C8C8;
}

strong {
  color: #F5F5F0;
  font-weight: 600;
}

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

/* HEADER - Industrial Style */
header {
  background: linear-gradient(180deg, #2A2A2A 0%, #1A1A1A 100%);
  padding: 20px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 2px solid #E8B849;
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

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

.main-nav a {
  color: #E8E8E8;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

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

.main-nav a:hover {
  color: #E8B849;
  text-decoration: none;
}

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

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1100;
  background-color: #2C5F7D;
  color: #F5F5F0;
  border: 2px solid #E8B849;
  border-radius: 4px;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #E8B849;
  color: #1A1A1A;
  transform: scale(1.05);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #2A2A2A 0%, #1A1A1A 100%);
  z-index: 1000;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.8);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  border-left: 3px solid #E8B849;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background-color: transparent;
  color: #E8B849;
  border: 2px solid #E8B849;
  border-radius: 4px;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #E8E8E8;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 0;
  border-bottom: 1px solid #3A3A3A;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #E8B849;
  padding-left: 12px;
  text-decoration: none;
}

/* HERO SECTION - Industrial Modern */
.hero {
  background: linear-gradient(135deg, #2C5F7D 0%, #1A3A4A 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid #E8B849;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(232, 184, 73, 0.05) 10px,
    rgba(232, 184, 73, 0.05) 20px
  );
  pointer-events: none;
}

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

.hero h1 {
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.hero-subheadline {
  font-size: 20px;
  color: #E8B849;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.value-proposition {
  font-size: 18px;
  color: #C8C8C8;
  margin-bottom: 32px;
}

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

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

.trust-badges span {
  color: #E8B849;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  background-color: rgba(232, 184, 73, 0.1);
  border: 1px solid #E8B849;
  border-radius: 4px;
}

/* BUTTONS - Industrial Style */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.btn-primary {
  background-color: #E8B849;
  color: #1A1A1A;
  border-color: #E8B849;
}

.btn-primary:hover {
  background-color: #FFD666;
  border-color: #FFD666;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(232, 184, 73, 0.4);
  text-decoration: none;
}

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

.btn-secondary:hover {
  background-color: #E8B849;
  color: #1A1A1A;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(232, 184, 73, 0.4);
  text-decoration: none;
}

/* SECTIONS - Industrial Modern */
.services-overview,
.why-choose-us,
.testimonials,
.company-story,
.values,
.team,
.expertise,
.services-detailed,
.service-benefits,
.projects-intro,
.projects-showcase,
.project-results,
.process-overview,
.process-steps,
.quality-assurance,
.contact-intro,
.contact-methods,
.contact-form-section,
.service-area,
.why-contact,
.legal-content,
.next-steps,
.contact-confirmation,
.additional-resources,
.social-proof {
  padding: 60px 20px;
  margin-bottom: 0;
}

.services-overview {
  background-color: #222;
  border-top: 2px solid #3A3A3A;
}

.why-choose-us {
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
  position: relative;
}

.why-choose-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 50px,
    rgba(232, 184, 73, 0.03) 50px,
    rgba(232, 184, 73, 0.03) 51px
  );
  pointer-events: none;
}

.testimonials {
  background-color: #F5F5F0;
  color: #1A1A1A;
  padding: 60px 20px;
}

.testimonials h2 {
  color: #2C5F7D;
}

.section-subheadline {
  font-size: 18px;
  color: #C8C8C8;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  text-transform: none;
}

/* SERVICES GRID - Flexbox Only */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
  justify-content: space-between;
}

.service-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background: linear-gradient(135deg, #2A2A2A 0%, #1F1F1F 100%);
  border: 2px solid #3A3A3A;
  border-left: 4px solid #E8B849;
  padding: 32px;
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(232, 184, 73, 0.3);
  border-left-color: #FFD666;
}

.service-card h3 {
  color: #E8B849;
  margin-bottom: 16px;
  font-size: 20px;
}

.service-card p {
  color: #C8C8C8;
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-card .price {
  color: #E8B849;
  font-size: 20px;
  font-weight: 700;
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.service-highlights span {
  color: #E8B849;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 20px;
  background-color: rgba(232, 184, 73, 0.1);
  border: 2px solid #E8B849;
  border-radius: 4px;
}

/* FEATURES GRID - Flexbox Only */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.feature {
  flex: 1 1 calc(50% - 12px);
  min-width: 260px;
  background: linear-gradient(135deg, #2C5F7D 0%, #1A3A4A 100%);
  padding: 32px;
  border-radius: 4px;
  border: 2px solid #3A3A3A;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(44, 95, 125, 0.4);
  border-color: #E8B849;
}

.feature h3 {
  color: #E8B849;
  font-size: 18px;
  margin-bottom: 0;
}

/* TESTIMONIALS - Readable Text */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
  justify-content: space-between;
}

.testimonial-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background-color: #FFFFFF;
  border: 2px solid #E8B849;
  border-left: 4px solid #2C5F7D;
  padding: 32px;
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(44, 95, 125, 0.25);
}

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

.testimonial-author {
  color: #2C5F7D;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.rating {
  color: #E8B849;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
}

.rating-summary {
  text-align: center;
  font-size: 18px;
  color: #2A2A2A;
  font-weight: 700;
  margin-top: 24px;
}

/* CTA BANNER - Industrial Style */
.cta-banner {
  background: linear-gradient(135deg, #E8B849 0%, #D4A43D 100%);
  color: #1A1A1A;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 4px solid #2C5F7D;
  border-bottom: 4px solid #2C5F7D;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(26, 26, 26, 0.05) 20px,
    rgba(26, 26, 26, 0.05) 40px
  );
  pointer-events: none;
}

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

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

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

.cta-benefits span {
  color: #1A1A1A;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #2C5F7D 0%, #1A3A4A 100%);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 4px solid #E8B849;
}

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

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

.trust-line {
  color: #C8C8C8;
  font-size: 16px;
  margin-top: 16px;
}

/* TIMELINE - Industrial Style */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
  padding-left: 40px;
  border-left: 3px solid #E8B849;
}

.timeline-item {
  position: relative;
  padding: 20px;
  background-color: #2A2A2A;
  border: 2px solid #3A3A3A;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  color: #C8C8C8;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -43px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: #E8B849;
  border: 3px solid #1A1A1A;
  border-radius: 50%;
}

.timeline-item strong {
  color: #E8B849;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.value-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 260px;
  background: linear-gradient(135deg, #2A2A2A 0%, #1F1F1F 100%);
  padding: 32px;
  border-radius: 4px;
  border: 2px solid #3A3A3A;
  border-top: 4px solid #E8B849;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(232, 184, 73, 0.3);
}

.value-card h3 {
  color: #E8B849;
  margin-bottom: 16px;
}

.value-card p {
  color: #C8C8C8;
}

/* SERVICES DETAILED */
.service-detailed {
  background: linear-gradient(135deg, #2A2A2A 0%, #1F1F1F 100%);
  border: 2px solid #3A3A3A;
  border-left: 4px solid #E8B849;
  padding: 32px;
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  margin-bottom: 24px;
  transition: all 0.3s ease;
  position: relative;
}

.service-detailed:hover {
  transform: translateX(4px);
  box-shadow: 0 12px 32px rgba(232, 184, 73, 0.3);
}

.service-detailed h3 {
  color: #E8B849;
  margin-bottom: 16px;
}

.service-detailed p {
  color: #C8C8C8;
  margin-bottom: 16px;
}

.service-detailed strong {
  color: #E8B849;
}

/* BENEFITS GRID */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.benefit {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 260px;
  background: linear-gradient(135deg, #2C5F7D 0%, #1A3A4A 100%);
  padding: 32px;
  border-radius: 4px;
  border: 2px solid #3A3A3A;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.benefit:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(44, 95, 125, 0.4);
  border-color: #E8B849;
}

.benefit h3 {
  color: #E8B849;
  font-size: 18px;
  margin-bottom: 12px;
}

.benefit p {
  color: #E8E8E8;
}

/* PROJECT CARDS */
.project-card {
  background: linear-gradient(135deg, #2A2A2A 0%, #1F1F1F 100%);
  border: 2px solid #3A3A3A;
  border-left: 4px solid #2C5F7D;
  padding: 32px;
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  margin-bottom: 24px;
  transition: all 0.3s ease;
  position: relative;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(44, 95, 125, 0.4);
  border-left-color: #E8B849;
}

.project-card h3 {
  color: #E8B849;
  margin-bottom: 16px;
  font-size: 22px;
}

.project-card p {
  color: #C8C8C8;
  margin-bottom: 12px;
}

.project-card strong {
  color: #E8B849;
}

.project-location {
  color: #E8B849;
  font-weight: 600;
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

/* PROCESS STEPS */
.step {
  background: linear-gradient(135deg, #2A2A2A 0%, #1F1F1F 100%);
  border: 2px solid #3A3A3A;
  border-left: 4px solid #E8B849;
  padding: 32px;
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  margin-bottom: 24px;
  transition: all 0.3s ease;
  position: relative;
}

.step:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 32px rgba(232, 184, 73, 0.3);
}

.step h3 {
  color: #E8B849;
  margin-bottom: 16px;
}

.step p {
  color: #C8C8C8;
  margin-bottom: 12px;
}

.step strong {
  color: #E8B849;
}

/* CONTACT METHODS */
.contact-method {
  background: linear-gradient(135deg, #2A2A2A 0%, #1F1F1F 100%);
  border: 2px solid #3A3A3A;
  border-top: 4px solid #E8B849;
  padding: 32px;
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  margin-bottom: 24px;
  transition: all 0.3s ease;
  position: relative;
}

.contact-method:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(232, 184, 73, 0.3);
}

.contact-method h3 {
  color: #E8B849;
  margin-bottom: 16px;
  font-size: 20px;
}

.contact-method p {
  color: #C8C8C8;
  margin-bottom: 8px;
}

.contact-method strong {
  color: #E8B849;
}

/* FORM INFO */
.form-info {
  background: linear-gradient(135deg, #2C5F7D 0%, #1A3A4A 100%);
  border: 2px solid #3A3A3A;
  padding: 32px;
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  margin-top: 32px;
}

.form-info p {
  color: #E8E8E8;
  margin-bottom: 16px;
}

.form-info a {
  color: #E8B849;
  font-weight: 700;
}

.form-info ul {
  margin-top: 16px;
}

.form-info li {
  color: #C8C8C8;
}

/* LEGAL CONTENT */
.legal-content {
  background-color: #222;
  padding: 60px 20px;
}

.legal-content h2 {
  color: #E8B849;
  margin-top: 40px;
}

.legal-content p,
.legal-content li {
  color: #C8C8C8;
  line-height: 1.8;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #2C5F7D 0%, #1A3A4A 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 4px solid #E8B849;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #E8B849;
  color: #1A1A1A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  margin: 0 auto 32px;
  box-shadow: 0 8px 24px rgba(232, 184, 73, 0.4);
}

.next-steps ol {
  max-width: 700px;
  margin: 32px auto;
  text-align: left;
}

.next-steps li {
  background: linear-gradient(135deg, #2A2A2A 0%, #1F1F1F 100%);
  border: 2px solid #3A3A3A;
  border-left: 4px solid #E8B849;
  padding: 20px;
  margin-bottom: 16px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  color: #C8C8C8;
}

/* RESOURCES GRID */
.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.resource-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 260px;
  background: linear-gradient(135deg, #2A2A2A 0%, #1F1F1F 100%);
  border: 2px solid #3A3A3A;
  padding: 32px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(232, 184, 73, 0.3);
  border-color: #E8B849;
}

.resource-card h3 {
  color: #E8B849;
  margin-bottom: 16px;
}

.resource-card p {
  color: #C8C8C8;
  margin-bottom: 20px;
}

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

.stat {
  text-align: center;
  min-width: 150px;
}

.stat strong {
  display: block;
  font-size: 42px;
  color: #E8B849;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.stat p {
  color: #C8C8C8;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-snippet {
  text-align: center;
  font-style: italic;
  color: #E8B849;
  font-size: 18px;
  margin-top: 32px;
}

/* FOOTER - Industrial Style */
footer {
  background: linear-gradient(180deg, #1A1A1A 0%, #0A0A0A 100%);
  color: #C8C8C8;
  padding: 60px 20px 32px;
  border-top: 4px solid #E8B849;
}

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

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

.footer-column h4 {
  color: #E8B849;
  margin-bottom: 20px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column p {
  color: #C8C8C8;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

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

.footer-column nav a {
  color: #C8C8C8;
  font-size: 14px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-column nav a:hover {
  color: #E8B849;
  padding-left: 8px;
}

.copyright {
  text-align: center;
  color: #7A7A7A;
  font-size: 14px;
  padding-top: 32px;
  border-top: 1px solid #3A3A3A;
  margin-top: 40px;
}

/* COOKIE CONSENT BANNER */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #2A2A2A 0%, #1A1A1A 100%);
  border-top: 3px solid #E8B849;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.8);
  z-index: 999;
  display: none;
}

#cookie-banner.show {
  display: block;
  animation: slideUp 0.4s ease-out;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  color: #C8C8C8;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cookie-accept {
  background-color: #E8B849;
  color: #1A1A1A;
  border-color: #E8B849;
}

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

.cookie-reject {
  background-color: transparent;
  color: #C8C8C8;
  border-color: #3A3A3A;
}

.cookie-reject:hover {
  background-color: #3A3A3A;
  color: #F5F5F0;
}

.cookie-settings {
  background-color: transparent;
  color: #E8B849;
  border-color: #E8B849;
}

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

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

#cookie-modal.show {
  display: flex;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.cookie-modal-content {
  background: linear-gradient(180deg, #2A2A2A 0%, #1A1A1A 100%);
  border: 3px solid #E8B849;
  border-radius: 4px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.9);
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

.cookie-category {
  background-color: #222;
  border: 2px solid #3A3A3A;
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 16px;
}

.cookie-category h3 {
  color: #E8B849;
  font-size: 16px;
  margin-bottom: 12px;
}

.cookie-category p {
  color: #C8C8C8;
  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 {
  color: #E8B849;
  font-weight: 600;
  cursor: pointer;
}

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

/* RESPONSIVE DESIGN - Mobile First */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  .value-proposition {
    font-size: 16px;
  }
  
  /* Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Grids - Stack on Mobile */
  .services-grid,
  .features-grid,
  .testimonials-grid,
  .values-grid,
  .benefits-grid,
  .resources-grid {
    flex-direction: column;
  }
  
  .service-card,
  .feature,
  .testimonial-card,
  .value-card,
  .benefit,
  .resource-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Timeline */
  .timeline {
    padding-left: 30px;
  }
  
  .timeline-item::before {
    left: -33px;
  }
  
  /* Stats */
  .stats {
    flex-direction: column;
    gap: 24px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Cookie Modal */
  .cookie-modal-content {
    padding: 24px;
    max-height: 90vh;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons .cookie-btn {
    width: 100%;
  }
  
  /* Sections */
  .services-overview,
  .why-choose-us,
  .testimonials,
  .company-story,
  .values,
  .team,
  .expertise,
  .services-detailed,
  .service-benefits,
  .projects-intro,
  .projects-showcase,
  .project-results,
  .process-overview,
  .process-steps,
  .quality-assurance,
  .contact-intro,
  .contact-methods,
  .contact-form-section,
  .service-area,
  .why-contact,
  .legal-content,
  .next-steps,
  .contact-confirmation,
  .additional-resources,
  .social-proof {
    padding: 40px 20px;
  }
  
  .page-hero {
    padding: 40px 20px;
  }
  
  .cta-banner {
    padding: 40px 20px;
  }
  
  footer {
    padding: 40px 20px 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .services-grid,
  .features-grid,
  .values-grid {
    gap: 20px;
  }
  
  .service-card,
  .feature,
  .value-card {
    flex: 1 1 calc(50% - 10px);
  }
  
  .benefit,
  .resource-card {
    flex: 1 1 calc(50% - 12px);
  }
}

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

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

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

/* ACCESSIBILITY */
a:focus,
button:focus,
input:focus {
  outline: 2px solid #E8B849;
  outline-offset: 2px;
}

/* SMOOTH TRANSITIONS */
* {
  transition-property: background-color, border-color, color, transform, box-shadow;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal,
  .cta-banner {
    display: none;
  }
  
  body {
    background-color: white;
    color: black;
  }
}
