/* Sweet Bonanza Construction - Main Styles */
/* CSS Framework: Tailwind-like custom CSS with Industrial Elegance design */

:root {
  /* Primary Colors */
  --steel-navy: #1A2D42;
  --construction-orange: #D97706;
  --construction-orange-light: #F59E0B;
  --concrete-gray: #4B5563;
  --blueprint-blue: #3B82F6;
  
  /* Secondary Colors */
  --scaffold-silver: #F3F4F6;
  --pure-white: #FFFFFF;
  --warm-sand: #FEF3C7;
  --safety-yellow: #FBBF24;
  --success-green: #059669;
  --alert-red: #DC2626;
  
  /* Typography */
  --font-heading: 'Poppins', 'Arial Black', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Oswald', Impact, sans-serif;
  
  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 50%;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-orange: 0 4px 14px rgba(217, 119, 6, 0.3);
  
  /* Transitions */
  --transition-fast: all 0.15s ease;
  --transition-default: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--concrete-gray);
  background: var(--pure-white);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--steel-navy);
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 36px;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-lg);
}

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

h4 {
  font-size: 20px;
  font-weight: 600;
}

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--blueprint-blue);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--construction-orange);
}

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

ul, ol {
  list-style: none;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-white { color: var(--pure-white); }
.text-orange { color: var(--construction-orange); }
.text-navy { color: var(--steel-navy); }

.bg-navy { background-color: var(--steel-navy); }
.bg-silver { background-color: var(--scaffold-silver); }
.bg-orange { background-color: var(--construction-orange); }
.bg-white { background-color: var(--pure-white); }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.py-2xl { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); }
.py-3xl { padding-top: var(--space-3xl); padding-bottom: var(--space-3xl); }
.py-4xl { padding-top: var(--space-4xl); padding-bottom: var(--space-4xl); }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--pure-white);
  box-shadow: var(--shadow-md);
  height: 80px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--steel-navy);
  text-decoration: none;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--construction-orange) 0%, var(--safety-yellow) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 20px;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-list {
  display: flex;
  gap: var(--space-lg);
}

.nav-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--concrete-gray);
  padding: var(--space-sm) 0;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--steel-navy);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--construction-orange);
  transition: var(--transition-default);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--steel-navy);
  font-weight: 600;
}

.header-phone svg {
  color: var(--construction-orange);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--steel-navy);
  transition: var(--transition-default);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--steel-navy);
  padding: var(--space-2xl);
  z-index: 999;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.mobile-nav-link {
  font-size: 24px;
  color: var(--pure-white);
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-default);
  text-decoration: none;
  border: none;
}

.btn-primary {
  background: linear-gradient(90deg, var(--construction-orange) 0%, var(--construction-orange-light) 100%);
  color: var(--pure-white);
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.4);
  color: var(--pure-white);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--steel-navy);
  color: var(--steel-navy);
}

.btn-secondary:hover {
  background: var(--steel-navy);
  color: var(--pure-white);
}

.btn-white {
  background: var(--pure-white);
  color: var(--steel-navy);
}

.btn-white:hover {
  background: var(--scaffold-silver);
  color: var(--steel-navy);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 18px;
}

/* Hero Section */
.hero {
  min-height: 85vh;
  background: linear-gradient(135deg, var(--steel-navy) 0%, #2D4A6E 50%, #3B5998 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255,255,255,0.15);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  color: var(--pure-white);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: var(--space-lg);
  backdrop-filter: blur(10px);
}

.hero-badge svg {
  color: var(--safety-yellow);
}

.hero h1 {
  color: var(--pure-white);
  font-size: 64px;
  max-width: 700px;
  margin-bottom: var(--space-lg);
}

.hero-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 20px;
  max-width: 600px;
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-3xl);
}

.hero-stats {
  display: flex;
  gap: var(--space-3xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.2);
}

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

.hero-stat-number {
  font-family: var(--font-accent);
  font-size: 48px;
  font-weight: 600;
  color: var(--construction-orange);
  line-height: 1;
}

.hero-stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-top: var(--space-sm);
}

/* Page Hero (for inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--steel-navy) 0%, #2D4A6E 100%);
  padding: var(--space-4xl) 0;
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

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

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  font-size: 14px;
  margin-bottom: var(--space-md);
}

.breadcrumb a {
  color: rgba(255,255,255,0.7);
}

.breadcrumb span {
  color: rgba(255,255,255,0.5);
}

.breadcrumb-current {
  color: var(--pure-white);
}

.page-hero h1 {
  color: var(--pure-white);
  margin-bottom: var(--space-md);
}

.page-hero-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* Section */
.section {
  padding: var(--space-4xl) 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  color: var(--concrete-gray);
  font-size: 18px;
  margin-bottom: 0;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.cards-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cards-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* Service Card */
.service-card {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border-bottom: 4px solid transparent;
  transition: var(--transition-default);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--construction-orange);
}

.service-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--scaffold-silver) 0%, var(--warm-sand) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.service-card-icon svg {
  width: 32px;
  height: 32px;
  color: var(--construction-orange);
}

.service-card h3 {
  margin-bottom: var(--space-md);
}

.service-card p {
  color: var(--concrete-gray);
  margin-bottom: var(--space-md);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--construction-orange);
  font-weight: 600;
}

.service-card-link:hover {
  gap: var(--space-md);
}

/* Stats Section */
.stats-section {
  background: var(--scaffold-silver);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.stat-item {
  text-align: center;
  padding: var(--space-xl);
}

.stat-number {
  font-family: var(--font-accent);
  font-size: 56px;
  font-weight: 600;
  color: var(--construction-orange);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-label {
  font-size: 16px;
  color: var(--concrete-gray);
}

/* Two Column Layout */
.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3xl);
  align-items: center;
}

.two-col-reverse {
  direction: rtl;
}

.two-col-reverse > * {
  direction: ltr;
}

.two-col-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.two-col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.two-col-content h2 {
  margin-bottom: var(--space-lg);
}

/* Features List */
.features-list {
  margin: var(--space-lg) 0 var(--space-xl);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--success-green);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-top: 3px;
}

.feature-icon svg {
  width: 14px;
  height: 14px;
}

.feature-text strong {
  color: var(--steel-navy);
}

/* Project Card */
.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.project-card:hover img {
  transform: scale(1.1);
}

.project-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  background: linear-gradient(transparent 0%, rgba(26,45,66,0.95) 100%);
  color: white;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition-default);
}

.project-card:hover .project-card-overlay {
  transform: translateY(0);
  opacity: 1;
}

.project-card-category {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--construction-orange);
  margin-bottom: var(--space-xs);
}

.project-card h4 {
  color: white;
  margin-bottom: var(--space-sm);
}

.project-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0;
}

/* Testimonials Section */
.testimonials-section {
  background: var(--steel-navy);
  color: white;
}

.testimonials-section .section-header h2 {
  color: white;
}

.testimonials-section .section-header p {
  color: rgba(255,255,255,0.8);
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-item {
  text-align: center;
  padding: var(--space-xl);
}

.testimonial-quote {
  font-size: 22px;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  color: rgba(255,255,255,0.95);
}

.testimonial-quote::before {
  content: '"';
  font-size: 48px;
  color: var(--construction-orange);
  line-height: 0;
  vertical-align: -15px;
  margin-right: var(--space-sm);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: var(--scaffold-silver);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--steel-navy);
}

.testimonial-name {
  font-weight: 600;
  color: white;
}

.testimonial-title {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.testimonial-rating {
  display: flex;
  gap: var(--space-xs);
  color: var(--safety-yellow);
  margin-top: var(--space-sm);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition-fast);
}

.testimonial-dot.active {
  background: var(--construction-orange);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(90deg, var(--construction-orange) 0%, var(--construction-orange-light) 100%);
  text-align: center;
  padding: var(--space-4xl) 0;
}

.cta-section h2 {
  color: white;
  margin-bottom: var(--space-md);
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  margin-bottom: var(--space-xl);
}

.cta-section .btn {
  margin-bottom: var(--space-md);
}

.cta-small-text {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

/* Footer */
.footer {
  background: var(--steel-navy);
  color: rgba(255,255,255,0.8);
  padding: var(--space-4xl) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand .logo {
  color: white;
  margin-bottom: var(--space-lg);
}

.footer-brand p {
  font-size: 14px;
  margin-bottom: var(--space-lg);
}

.footer-contact-item {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: 14px;
}

.footer-contact-item svg {
  color: var(--construction-orange);
  flex-shrink: 0;
}

.footer-title {
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--construction-orange);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition-default);
}

.footer-social a:hover {
  background: var(--construction-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-lg) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

.footer-legal a {
  color: rgba(255,255,255,0.6);
}

.footer-legal a:hover {
  color: white;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--pure-white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: var(--space-lg);
  border-top: 3px solid var(--construction-orange);
  z-index: 10000;
  transform: translateY(100%);
  transition: var(--transition-default);
}

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

.cookie-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

.cookie-text h4 {
  margin-bottom: var(--space-sm);
}

.cookie-text p {
  font-size: 14px;
  color: var(--concrete-gray);
  margin-bottom: 0;
}

.cookie-text a {
  color: var(--blueprint-blue);
}

.cookie-buttons {
  display: flex;
  gap: var(--space-md);
  flex-shrink: 0;
}

/* Forms */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--steel-navy);
  margin-bottom: var(--space-sm);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  border: 1px solid #D1D5DB;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--blueprint-blue);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-error {
  border-color: var(--alert-red);
}

.form-error-text {
  color: var(--alert-red);
  font-size: 13px;
  margin-top: var(--space-xs);
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-3xl);
}

.contact-info {
  background: var(--scaffold-silver);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.contact-info h3 {
  margin-bottom: var(--space-lg);
}

.contact-info-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--steel-navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.contact-info-content h4 {
  margin-bottom: var(--space-xs);
  font-size: 16px;
}

.contact-info-content p {
  font-size: 14px;
  color: var(--concrete-gray);
  margin-bottom: 0;
}

.contact-form {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  margin-bottom: var(--space-lg);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

/* Map */
.map-container {
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: var(--space-3xl);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Policy Pages */
.policy-content {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: var(--space-3xl);
  align-items: flex-start;
}

.policy-toc {
  position: sticky;
  top: 100px;
  background: var(--scaffold-silver);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.policy-toc h4 {
  margin-bottom: var(--space-md);
  font-size: 16px;
}

.policy-toc-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.policy-toc-list a {
  font-size: 14px;
  color: var(--concrete-gray);
  padding: var(--space-sm) 0;
  border-left: 2px solid transparent;
  padding-left: var(--space-md);
  transition: var(--transition-fast);
}

.policy-toc-list a:hover,
.policy-toc-list a.active {
  color: var(--steel-navy);
  border-left-color: var(--construction-orange);
}

.policy-main h2 {
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--scaffold-silver);
}

.policy-main h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.policy-main h3 {
  margin-top: var(--space-lg);
  font-size: 18px;
}

.policy-main ul {
  list-style: disc;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.policy-main li {
  margin-bottom: var(--space-sm);
}

/* Team Cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.team-card {
  background: var(--pure-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-default);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-avatar {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-full);
  background: var(--scaffold-silver);
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  color: var(--steel-navy);
  border: 4px solid var(--scaffold-silver);
  transition: var(--transition-default);
}

.team-card:hover .team-avatar {
  border-color: var(--construction-orange);
}

.team-card h4 {
  margin-bottom: var(--space-xs);
}

.team-position {
  color: var(--construction-orange);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.team-bio {
  font-size: 14px;
  color: var(--concrete-gray);
}

/* Values Cards */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.value-card {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--construction-orange) 0%, var(--construction-orange-light) 100%);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: white;
}

.value-icon svg {
  width: 40px;
  height: 40px;
}

.value-card h3 {
  margin-bottom: var(--space-md);
}

/* Process Timeline */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-md);
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 60px;
  right: 60px;
  height: 4px;
  background: var(--scaffold-silver);
}

.process-step {
  text-align: center;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--construction-orange);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-family: var(--font-accent);
  font-size: 24px;
  font-weight: 600;
  color: white;
  position: relative;
  z-index: 1;
}

.process-step h4 {
  font-size: 16px;
  margin-bottom: var(--space-sm);
}

.process-step p {
  font-size: 13px;
  color: var(--concrete-gray);
}

/* Service Block */
.service-block {
  padding: var(--space-3xl) 0;
  border-bottom: 1px solid var(--scaffold-silver);
}

.service-block:last-child {
  border-bottom: none;
}

.service-block:nth-child(even) .two-col {
  direction: rtl;
}

.service-block:nth-child(even) .two-col > * {
  direction: ltr;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 15px;
}

.service-list svg {
  color: var(--success-green);
  flex-shrink: 0;
}

/* Quote Form */
.quote-form-container {
  max-width: 800px;
  margin: 0 auto;
}

.progress-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-2xl);
  position: relative;
}

.progress-bar::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 40px;
  right: 40px;
  height: 4px;
  background: var(--scaffold-silver);
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  position: relative;
  z-index: 1;
}

.progress-step-number {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--scaffold-silver);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--concrete-gray);
  transition: var(--transition-default);
}

.progress-step.active .progress-step-number {
  background: var(--construction-orange);
  color: white;
}

.progress-step.completed .progress-step-number {
  background: var(--success-green);
  color: white;
}

.progress-step-label {
  font-size: 13px;
  color: var(--concrete-gray);
}

.progress-step.active .progress-step-label {
  color: var(--steel-navy);
  font-weight: 600;
}

.quote-step {
  display: none;
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.quote-step.active {
  display: block;
}

.quote-step h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.project-type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.project-type-option {
  background: var(--scaffold-silver);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-default);
}

.project-type-option:hover {
  border-color: var(--blueprint-blue);
}

.project-type-option.selected {
  border-color: var(--construction-orange);
  background: var(--warm-sand);
}

.project-type-option svg {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md);
  color: var(--steel-navy);
}

.project-type-option h4 {
  margin-bottom: var(--space-xs);
  font-size: 16px;
}

.project-type-option p {
  font-size: 13px;
  color: var(--concrete-gray);
  margin-bottom: 0;
}

.quote-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--scaffold-silver);
}

.trust-indicators {
  background: var(--scaffold-silver);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-top: var(--space-2xl);
}

.trust-indicators h4 {
  margin-bottom: var(--space-md);
  text-align: center;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 14px;
}

.trust-item svg {
  color: var(--success-green);
  flex-shrink: 0;
}

/* Portfolio Filter */
.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.filter-btn {
  padding: var(--space-sm) var(--space-lg);
  background: var(--scaffold-silver);
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--concrete-gray);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--steel-navy);
  color: white;
}

/* Certifications */
.certifications-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-xl);
}

.cert-item {
  width: 150px;
  height: 80px;
  background: var(--scaffold-silver);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition-default);
}

.cert-item:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.cert-item span {
  font-size: 12px;
  font-weight: 600;
  color: var(--steel-navy);
  text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  
  .hero h1 { font-size: 48px; }
  
  .cards-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .two-col {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .two-col-reverse {
    direction: ltr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
    row-gap: var(--space-xl);
  }
  
  .process-timeline::before {
    display: none;
  }
  
  .project-type-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .trust-list {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .policy-content {
    grid-template-columns: 1fr;
  }
  
  .policy-toc {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  
  .header { height: 64px; }
  
  .nav-list,
  .header-phone {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .hero { min-height: auto; padding: var(--space-3xl) 0; }
  .hero h1 { font-size: 36px; }
  .hero-subtitle { font-size: 16px; }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: var(--space-lg);
    text-align: center;
  }
  
  .hero-stat-number {
    font-size: 36px;
  }
  
  .cards-grid,
  .stats-grid,
  .team-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
  
  .cookie-container {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .project-type-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-list {
    grid-template-columns: 1fr;
  }
  
  .service-list {
    grid-template-columns: 1fr;
  }
  
  .stat-number {
    font-size: 42px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.animate-pulse {
  animation: pulse 2s infinite;
}
