/* === Global & layout (Master) === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }
html { background-color: #fff; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; color: #1f2937; }

.top-contact-bar {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white;
  padding: 12px 0;
  font-size: 14px;
}
.contact-container { max-width: 1400px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; }
.contact-info { display: flex; gap: 32px; }
.contact-item { display: flex; align-items: center; gap: 8px; font-weight: 500; }
.contact-icon { display: flex; align-items: center; opacity: 0.9; }
.company-tagline { font-weight: 500; opacity: 0.95; }

.main-nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-container { max-width: 1400px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; height: 80px; }
.nav-logo .logo-img { height: 48px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 40px; }
.nav-link {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
}
.nav-link:hover { color: #dc2626; }
.nav-link::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 0; height: 2px; background: #dc2626; transition: width 0.3s ease; }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: #dc2626; }
.nav-link.active::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4); }

.page { min-height: calc(100vh - 140px); }

.footer {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  color: white;
  padding: 80px 0 0;
  margin-top: 120px;
}
.footer-container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.footer-content { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; margin-bottom: 60px; }
.footer-company { max-width: 400px; }
.footer-logo { height: 48px; width: auto; margin-bottom: 24px; filter: brightness(0) invert(1); }
.footer-description { color: #d1d5db; line-height: 1.7; margin-bottom: 24px; font-size: 16px; }
.footer-location { display: flex; align-items: center; gap: 12px; color: #d1d5db; font-weight: 500; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.team-member {
  background: rgba(255, 255, 255, 0.05);
  padding: 32px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.team-member:hover { background: rgba(255, 255, 255, 0.08); transform: translateY(-4px); }
.member-header { margin-bottom: 20px; }
.member-name { font-size: 18px; font-weight: 600; color: white; margin-bottom: 6px; }
.member-position { color: #dc2626; font-weight: 500; font-size: 14px; }
.member-contacts { display: flex; flex-direction: column; gap: 12px; }
.contact-link { display: flex; align-items: center; gap: 10px; color: #d1d5db; text-decoration: none; font-size: 14px; transition: all 0.3s ease; padding: 8px 0; }
.contact-link:hover { color: white; transform: translateX(4px); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 32px 0; }
.footer-bottom-content { display: flex; justify-content: space-between; align-items: center; }
.footer-copyright { color: #9ca3af; font-size: 14px; }
.footer-links { display: flex; gap: 32px; }
.footer-link { color: #9ca3af; text-decoration: none; font-size: 14px; transition: color 0.3s ease; }
.footer-link:hover { color: white; }

/* === Common === */
.container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 80px; }
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}
.section-title { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 700; color: #111827; margin-bottom: 20px; line-height: 1.2; }
.section-description { font-size: 1.2rem; color: #6b7280; max-width: 700px; margin: 0 auto; line-height: 1.7; }
.gradient-text {
  background: linear-gradient(135deg, #dc2626 0%, #f87171 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === Index: Hero === */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 800px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-image { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(220, 38, 38, 0.1) 100%);
}
.hero-content { position: relative; z-index: 10; width: 100%; }
.hero-container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.hero-text { max-width: 700px; color: white; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 20px; border-radius: 50px; font-size: 14px; font-weight: 500; margin-bottom: 32px;
}
.hero-title { font-size: clamp(3rem, 8vw, 5rem); font-weight: 700; line-height: 1.1; margin-bottom: 24px; letter-spacing: -0.02em; }
.hero-description { font-size: 1.25rem; line-height: 1.7; color: rgba(255, 255, 255, 0.9); margin-bottom: 40px; max-width: 600px; }
.hero-actions { display: flex; gap: 20px; margin-bottom: 60px; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white; border: none; padding: 16px 32px; border-radius: 12px; font-size: 16px; font-weight: 600;
  display: flex; align-items: center; gap: 12px; cursor: pointer; text-decoration: none;
  transition: all 0.3s ease; box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(220, 38, 38, 0.4); }
.btn-secondary {
  background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(20px); color: white;
  border: 1px solid rgba(255, 255, 255, 0.2); padding: 16px 32px; border-radius: 12px;
  font-size: 16px; font-weight: 600; display: flex; align-items: center; gap: 12px; cursor: pointer; text-decoration: none;
  transition: all 0.3s ease;
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-2px); }
.hero-stats { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-number { font-size: 2.5rem; font-weight: 700; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 14px; color: rgba(255, 255, 255, 0.8); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: rgba(255, 255, 255, 0.3); }

/* === Index: Services, About, Values, Projects, CTA === */
.services-section { padding: 120px 0; background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 32px; }
.service-card {
  background: white; padding: 40px 32px; border-radius: 20px; border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease; position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(135deg, #dc2626 0%, #f87171 100%); transform: scaleX(0); transition: transform 0.4s ease; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); }
.service-card.featured { background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%); color: white; transform: scale(1.05); }
.service-card.featured .service-icon { color: white; }
.service-icon { color: #dc2626; margin-bottom: 24px; }
.service-card h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 16px; color: inherit; }
.service-card p { line-height: 1.7; color: inherit; opacity: 0.9; margin-bottom: 20px; }
.service-features { display: flex; gap: 12px; flex-wrap: wrap; }
.feature-tag { background: rgba(255, 255, 255, 0.2); color: white; padding: 6px 12px; border-radius: 20px; font-size: 12px; font-weight: 500; }

.about-section { padding: 120px 0; background: white; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-title { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 700; color: #111827; margin-bottom: 32px; line-height: 1.2; }
.about-text { margin-bottom: 40px; }
.about-text p { font-size: 1.1rem; line-height: 1.8; color: #6b7280; margin-bottom: 20px; }
.about-features { display: flex; flex-direction: column; gap: 16px; }
.feature-item { display: flex; align-items: center; gap: 12px; font-weight: 500; color: #374151; }
.feature-item svg { color: #dc2626; }
.about-visual { position: relative; }
.visual-card { background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%); padding: 40px 32px; border-radius: 24px; border: 1px solid rgba(0, 0, 0, 0.05); }
.visual-header h3 { font-size: 1.5rem; font-weight: 600; color: #111827; margin-bottom: 32px; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.value-item {
  display: flex; align-items: flex-start; gap: 16px; padding: 20px; background: white;
  border-radius: 16px; border: 1px solid rgba(0, 0, 0, 0.05);
}
.value-icon { font-size: 1.5rem; flex-shrink: 0; color: #dc2626; display: flex; align-items: center; justify-content: center; }
.value-text h4 { font-size: 1rem; font-weight: 600; color: #111827; margin-bottom: 4px; }
.value-text p { font-size: 0.875rem; color: #6b7280; line-height: 1.5; }

.projects-section { padding: 120px 0; background: linear-gradient(135deg, #111827 0%, #1f2937 100%); }
.projects-section .section-badge { background: rgba(220, 38, 38, 0.2); color: #dc2626; border: 1px solid rgba(220, 38, 38, 0.3); }
.projects-section .section-title { color: white; }
.projects-section .section-description { color: rgba(255, 255, 255, 0.8); }
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(500px, 1fr)); gap: 40px; }
.project-card {
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px;
  overflow: hidden; transition: all 0.4s ease; backdrop-filter: blur(20px);
}
.project-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); border-color: rgba(220, 38, 38, 0.3); }
.project-image { position: relative; height: 280px; overflow: hidden; }
.project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.project-card:hover .project-image img { transform: scale(1.05); }
.project-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.4s ease; }
.project-card:hover .project-overlay { opacity: 1; }
.project-btn { background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.3); color: white; padding: 12px 24px; border-radius: 12px; font-size: 14px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; cursor: default; }
.project-content { padding: 32px; }
.project-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; gap: 16px; }
.project-header h3 { font-size: 1.5rem; font-weight: 600; color: white; line-height: 1.3; flex: 1; }
.project-tags { display: flex; gap: 8px; flex-wrap: wrap; flex-shrink: 0; }
.project-tag { background: rgba(220, 38, 38, 0.2); color: #dc2626; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 500; border: 1px solid rgba(220, 38, 38, 0.3); }
.project-description { color: rgba(255, 255, 255, 0.8); line-height: 1.7; margin-bottom: 24px; font-size: 1rem; }
.project-details { display: flex; gap: 24px; flex-wrap: wrap; }
.project-detail { display: flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, 0.7); font-size: 14px; font-weight: 500; }
.project-detail svg { color: #dc2626; }

.cta-section { padding: 120px 0; background: linear-gradient(135deg, #111827 0%, #1f2937 100%); color: white; text-align: center; }
.cta-content h2 { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 700; margin-bottom: 20px; line-height: 1.2; }
.cta-content p { font-size: 1.25rem; color: rgba(255, 255, 255, 0.8); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.btn-outline { background: transparent; color: white; border: 2px solid rgba(255, 255, 255, 0.3); padding: 16px 32px; border-radius: 12px; font-size: 16px; font-weight: 600; display: inline-flex; align-items: center; gap: 12px; cursor: pointer; text-decoration: none; transition: all 0.3s ease; }
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.5); transform: translateY(-2px); }
.btn-primary.large, .btn-outline.large { padding: 20px 40px; font-size: 18px; }

/* === About page === */
.about-hero { min-height: auto; height: auto; padding: 120px 0; background: linear-gradient(135deg, #111827 0%, #1f2937 50%, #dc2626 100%); }
.about-hero .hero-container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.contact-buttons { display: flex; flex-direction: column; gap: 16px; }
.about-stats { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 20px; padding: 32px; color: white; }
.stats-title { font-size: 1.5rem; font-weight: 600; margin-bottom: 24px; color: white; }
.stats-grid { display: flex; flex-direction: column; gap: 24px; }
.about-stats .stat-item { display: flex; align-items: center; gap: 16px; text-align: left; }
.stat-icon { width: 48px; height: 48px; background: #dc2626; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: white; }
.stat-content h4 { font-weight: 600; margin-bottom: 4px; color: white; }
.stat-content p { color: rgba(255, 255, 255, 0.98); font-size: 0.9375rem; line-height: 1.5; font-weight: 500; }

.scaffolding-section { padding: 120px 0; background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-bottom: 40px; }
.pricing-card { background: white; border-radius: 16px; border: 1px solid rgba(0, 0, 0, 0.05); padding: 24px; transition: all 0.3s ease; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1); }
.pricing-card h3 { font-weight: 600; color: #111827; margin-bottom: 12px; font-size: 1.125rem; }
.price { font-size: 1.5rem; font-weight: 700; color: #dc2626; margin-bottom: 8px; }
.description { color: #6b7280; font-size: 0.875rem; line-height: 1.5; }
.pricing-note { display: flex; align-items: flex-start; gap: 16px; background: #fef3c7; border: 1px solid #f59e0b; border-radius: 16px; padding: 24px; }
.note-icon { width: 24px; height: 24px; color: #f59e0b; flex-shrink: 0; }
.note-content h4 { font-weight: 600; color: #92400e; margin-bottom: 8px; }
.note-content p { color: #92400e; font-size: 0.875rem; line-height: 1.6; }

.proscreen-section { padding: 120px 0; background: white; }
.proscreen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.proscreen-content .feature-item { display: flex; align-items: flex-start; gap: 16px; }
.proscreen-content .feature-icon { width: 48px; height: 48px; background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(248, 113, 113, 0.1) 100%); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #dc2626; flex-shrink: 0; }
.proscreen-content .feature-item h3 { font-weight: 600; color: #111827; margin-bottom: 4px; }
.proscreen-content .feature-item p { color: #6b7280; font-size: 0.875rem; }
.proscreen-benefits { background: linear-gradient(135deg, #f8fafc 0%, white 100%); border-radius: 20px; padding: 40px; border: 1px solid rgba(0, 0, 0, 0.05); }
.proscreen-benefits h3 { font-size: 1.5rem; font-weight: 600; color: #111827; margin-bottom: 24px; }
.benefits-list { display: flex; flex-direction: column; gap: 16px; }
.benefit-item { display: flex; align-items: flex-start; gap: 12px; }
.benefit-item svg { color: #22c55e; flex-shrink: 0; margin-top: 2px; }
.benefit-item p { color: #374151; line-height: 1.6; }

.contact-section.about-contact { padding: 120px 0; background: linear-gradient(135deg, #111827 0%, #1f2937 50%, #dc2626 100%); color: white; }
.contact-section .section-title { color: white; }
.contact-section .section-description { color: rgba(255, 255, 255, 0.8); }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; margin-top: 60px; }
.contact-card {
  background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px; padding: 32px; text-align: center; transition: all 0.3s ease;
}
.contact-card:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.15); }
.contact-card .contact-icon { width: 64px; height: 64px; background: #dc2626; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.contact-card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 8px; }
.contact-card p { color: rgba(255, 255, 255, 0.8); margin-bottom: 12px; }
.contact-card .contact-link { color: #f87171; font-weight: 600; font-size: 1.125rem; justify-content: center; }

/* === Services page === */
.services-hero { min-height: 800px; background: linear-gradient(135deg, #111827 0%, #1f2937 50%, #dc2626 100%); }
.main-services-section { padding: 120px 0; background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%); }
.main-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(500px, 1fr)); gap: 40px; }
.main-service-card { background: white; border-radius: 24px; overflow: hidden; border: 1px solid rgba(0, 0, 0, 0.05); transition: all 0.4s ease; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); }
.main-service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); }
.service-image { position: relative; height: 280px; overflow: hidden; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.main-service-card:hover .service-image img { transform: scale(1.05); }
.service-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(220, 38, 38, 0.8) 0%, rgba(185, 28, 28, 0.9) 100%); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.4s ease; }
.main-service-card:hover .service-overlay { opacity: 1; }
.service-overlay .service-icon { color: white; }
.service-content { padding: 32px; }
.service-content h3 { font-size: 1.75rem; font-weight: 600; color: #111827; margin-bottom: 16px; }
.service-content p { color: #6b7280; line-height: 1.7; margin-bottom: 24px; font-size: 1.1rem; }
.service-features { list-style: none; padding: 0; margin: 0 0 32px 0; }
.service-features li { padding: 8px 0; color: #374151; position: relative; padding-left: 24px; }
.service-features li::before { content: '✓'; position: absolute; left: 0; color: #dc2626; font-weight: 600; }
.service-btn { background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%); color: white; border: none; padding: 12px 24px; border-radius: 8px; font-size: 14px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; cursor: pointer; transition: all 0.3s ease; text-decoration: none; }
.service-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 16px rgba(220, 38, 38, 0.3); }

.additional-services-section { padding: 120px 0; background: white; }
.additional-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 32px; }
.additional-service-card { background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%); padding: 32px; border-radius: 20px; border: 1px solid rgba(0, 0, 0, 0.05); transition: all 0.3s ease; text-align: center; }
.additional-service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1); }
.additional-service-card .service-icon { margin: 0 auto 20px; }
.additional-service-card h3 { font-size: 1.25rem; font-weight: 600; color: #111827; margin-bottom: 12px; }
.additional-service-card p { color: #6b7280; line-height: 1.6; font-size: 0.95rem; }

.process-section { padding: 120px 0; background: linear-gradient(135deg, #111827 0%, #1f2937 100%); color: white; }
.process-section .section-badge { background: rgba(220, 38, 38, 0.2); color: #dc2626; border: 1px solid rgba(220, 38, 38, 0.3); }
.process-section .section-title { color: white; }
.process-section .section-description { color: rgba(255, 255, 255, 0.8); }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.process-step { text-align: center; position: relative; }
.step-number { width: 80px; height: 80px; background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700; color: white; margin: 0 auto 24px auto; box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3); }
.step-content h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 12px; }
.step-content p { color: rgba(255, 255, 255, 0.8); line-height: 1.6; }

/* === Contact page === */
.contact-hero { padding: 120px 0; background: linear-gradient(135deg, #111827 0%, #1f2937 50%, #dc2626 100%); min-height: auto; height: auto; }
.contact-hero .hero-container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.contact-hero-info { display: flex; flex-direction: column; gap: 24px; }
.contact-hero-info .contact-item { display: flex; align-items: center; gap: 16px; }
.contact-hero-info .contact-icon { width: 48px; height: 48px; background: #dc2626; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-hero-info .contact-details h3 { font-weight: 600; margin-bottom: 4px; }
.contact-hero-info .contact-details p { color: rgba(255, 255, 255, 0.8); }
.quick-contact-card { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 20px; padding: 32px; color: white; }
.quick-contact-title { font-size: 1.5rem; font-weight: 600; margin-bottom: 24px; color: white; }
.quick-contact-items { display: flex; flex-direction: column; gap: 16px; }
.quick-contact-item { display: flex; align-items: center; justify-content: space-between; padding: 16px; background: rgba(255, 255, 255, 0.1); border-radius: 12px; }
.quick-contact-label { display: flex; align-items: center; gap: 12px; font-weight: 500; color: white; }
.quick-contact-label svg { color: #dc2626; flex-shrink: 0; }
.quick-contact-value { color: rgba(255, 255, 255, 0.98); font-size: 0.9375rem; line-height: 1.5; font-weight: 500; }

.contact-form-section { padding: 120px 0; background: white; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.form-content h2 { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 700; color: #111827; margin-bottom: 24px; line-height: 1.2; }
.form-description { font-size: 1.25rem; color: #6b7280; margin-bottom: 32px; line-height: 1.7; }
.form-features { display: flex; flex-direction: column; gap: 16px; }
.form-feature { display: flex; align-items: center; gap: 12px; color: #374151; }
.form-feature svg { color: #dc2626; flex-shrink: 0; }
.contact-form { background: linear-gradient(135deg, #f8fafc 0%, white 100%); padding: 40px; border-radius: 20px; border: 1px solid rgba(0, 0, 0, 0.05); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); }
.form-group { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: #374151; margin-bottom: 8px; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 12px 16px; border: 1px solid #d1d5db; border-radius: 8px; font-size: 1rem; transition: all 0.3s ease; background: white; }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: #dc2626; box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1); }
.form-textarea { resize: vertical; min-height: 120px; }
.submit-btn { width: 100%; background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%); color: white; border: none; padding: 16px 24px; border-radius: 12px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; gap: 8px; }
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-success { padding: 24px; background: #dcfce7; border: 1px solid #22c55e; border-radius: 12px; color: #166534; font-weight: 500; }

.contact-info-section { padding: 120px 0; background: linear-gradient(135deg, #111827 0%, #1f2937 50%, #dc2626 100%); color: white; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.info-content h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 32px; }
.info-items { display: flex; flex-direction: column; gap: 32px; }
.info-item { display: flex; align-items: flex-start; gap: 16px; }
.info-icon { width: 48px; height: 48px; background: #dc2626; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-details h3 { font-weight: 600; margin-bottom: 8px; }
.info-details p { color: rgba(255, 255, 255, 0.8); line-height: 1.6; }
.info-details .small { font-size: 0.875rem; margin-top: 4px; }
.hours-card { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 20px; padding: 32px; }
.hours-title { font-size: 1.5rem; font-weight: 600; margin-bottom: 24px; }
.hours-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.hours-item { display: flex; justify-content: space-between; align-items: center; padding: 16px; background: rgba(255, 255, 255, 0.1); border-radius: 12px; }
.hours-day { font-weight: 500; }
.hours-time { color: rgba(255, 255, 255, 0.8); }
.hours-closed { color: #f87171; }
.current-status { padding: 16px; background: rgba(34, 197, 94, 0.2); border: 1px solid rgba(34, 197, 94, 0.3); border-radius: 12px; }
.status-title { font-weight: 600; margin-bottom: 8px; color: #22c55e; }
.status-text { font-size: 0.875rem; color: rgba(255, 255, 255, 0.8); }

.footer-cta { padding: 80px 0; background: white; border-top: 1px solid rgba(0, 0, 0, 0.1); text-align: center; }
.footer-cta .container { display: flex; flex-direction: column; align-items: center; }
.cta-title { font-size: 2rem; font-weight: 700; color: #111827; margin-bottom: 16px; }
.cta-description { font-size: 1.125rem; color: #6b7280; margin-bottom: 32px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin: 0 auto; width: fit-content; }

/* Responsive */
@media (max-width: 1024px) {
  .footer-content { grid-template-columns: 1fr; gap: 60px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .proscreen-grid, .hero-container, .form-grid, .info-grid { grid-template-columns: 1fr; gap: 60px; }
  .services-grid { grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); }
  .values-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 32px; }
  .main-services-grid { grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 32px; }
  .contact-hero .hero-container { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .contact-container { flex-direction: column; gap: 12px; text-align: center; }
  .contact-info { flex-direction: column; gap: 12px; }
  .company-tagline { display: none; }
  .nav-menu { display: none; }
  .team-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom-content { flex-direction: column; gap: 20px; text-align: center; }
  .hero-actions { flex-direction: column; }
  .hero-stats { justify-content: center; }
  .stat-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card.featured { transform: none; }
  .cta-actions { flex-direction: column; align-items: center; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .project-image { height: 240px; }
  .project-content { padding: 24px; }
  .about-hero .hero-container { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 16px; }
  .contact-form { padding: 24px; }
  .main-services-grid { grid-template-columns: 1fr; }
  .additional-services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .hero-title { font-size: 2.5rem; }
  .section-title { font-size: 2rem; }
  .quick-contact-item { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hours-item { flex-direction: column; align-items: flex-start; gap: 4px; }
}
@media (max-width: 480px) {
  .hero-section { min-height: 600px; }
  .container { padding: 0 16px; }
}
