@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;600;700&family=Exo+2:wght@400;500;600;700&display=swap');

:root {
  --industrial-orange: #ff6b2c;
  --industrial-orange-dark: #e55a1a;
  --industrial-orange-light: #ff8555;
  --charcoal-dark: #1a1a1f;
  --charcoal-medium: #2d2d35;
  --charcoal-light: #3d3d47;
  --steel-gray: #5a5a65;
  --chrome-white: #f0f0f5;
  --electric-cyan: #00e5ff;
  --hot-red: #ff3366;
  --warning-yellow: #ffc107;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Exo 2', sans-serif;
  background-color: var(--chrome-white);
  color: var(--charcoal-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

strong, p {
  color: inherit;
}

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

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

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


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, var(--charcoal-dark) 0%, var(--charcoal-dark) 80%, transparent 100%);
  padding: 15px 0;
  transition: all 0.3s ease;
}

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

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--industrial-orange) 0%, var(--industrial-orange-dark) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.logo-text {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--chrome-white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo-text span {
  color: var(--industrial-orange);
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 10px 16px;
  color: var(--chrome-white);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 6px;
  position: relative;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--industrial-orange);
  background: rgba(255, 107, 44, 0.1);
}

.nav-link.active {
  color: var(--industrial-orange);
  background: rgba(255, 107, 44, 0.15);
}

.mobile-menu-btn {
  display: none;
  width: 50px;
  height: 50px;
  background: var(--industrial-orange);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 3px;
  background: var(--chrome-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}


.hero-section {
  min-height: 100vh;
  background: 
    linear-gradient(135deg, rgba(26, 26, 31, 0.92) 0%, rgba(45, 45, 53, 0.88) 100%),
    url('../media/hero-background.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(255, 107, 44, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 44, 0.15);
  border: 1px solid rgba(255, 107, 44, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  color: var(--industrial-orange);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 24px;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 44, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(255, 107, 44, 0); }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--chrome-white);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.hero-title .accent {
  color: var(--industrial-orange);
  position: relative;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(240, 240, 245, 0.8);
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--industrial-orange) 0%, var(--industrial-orange-dark) 100%);
  color: var(--chrome-white);
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 107, 44, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 44, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: transparent;
  color: var(--chrome-white);
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(240, 240, 245, 0.3);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--electric-cyan);
  color: var(--electric-cyan);
  background: rgba(0, 229, 255, 0.05);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(240, 240, 245, 0.1);
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--industrial-orange);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(240, 240, 245, 0.6);
  margin-top: 4px;
}


.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--charcoal-dark);
  color: var(--chrome-white);
}

.section-accent {
  background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal-medium) 100%);
  color: var(--chrome-white);
}

.section-light {
  background: var(--chrome-white);
  color: var(--charcoal-dark);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 44, 0.1);
  border: 1px solid rgba(255, 107, 44, 0.2);
  padding: 6px 14px;
  border-radius: 50px;
  color: var(--industrial-orange);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.section-description {
  font-size: 1.1rem;
  color: rgba(240, 240, 245, 0.7);
  line-height: 1.8;
}

.section-light .section-description {
  color: var(--steel-gray);
}


.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.card {
  background: var(--charcoal-medium);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 44, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-light {
  background: var(--chrome-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.card-light:hover {
  border-color: rgba(255, 107, 44, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--industrial-orange) 0%, var(--industrial-orange-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 24px;
}

.card-title {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--chrome-white);
}

.card-light .card-title {
  color: var(--charcoal-dark);
}

.card-text {
  font-size: 1rem;
  color: rgba(240, 240, 245, 0.7);
  line-height: 1.7;
}

.card-light .card-text {
  color: var(--steel-gray);
}

.card-price {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--industrial-orange);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.card-light .card-price {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}


.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.team-card {
  background: var(--charcoal-medium);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team-info {
  padding: 24px;
}

.team-name {
  font-size: 1.3rem;
  color: var(--chrome-white);
  margin-bottom: 4px;
}

.team-role {
  color: var(--industrial-orange);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 0.95rem;
  color: rgba(240, 240, 245, 0.7);
  line-height: 1.6;
}


.review-card {
  background: var(--charcoal-medium);
  border-radius: 16px;
  padding: 30px;
  position: relative;
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--warning-yellow);
  font-size: 1.1rem;
}

.review-text {
  font-size: 1rem;
  color: rgba(240, 240, 245, 0.85);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.review-name {
  font-weight: 600;
  color: var(--chrome-white);
  font-size: 1rem;
}

.review-location {
  font-size: 0.85rem;
  color: rgba(240, 240, 245, 0.5);
}


.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  background: var(--charcoal-medium);
  border-radius: 20px;
  padding: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--industrial-orange) 0%, var(--industrial-orange-dark) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.85rem;
  color: rgba(240, 240, 245, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 1.1rem;
  color: var(--chrome-white);
  font-weight: 500;
}


.contact-form {
  background: var(--charcoal-medium);
  border-radius: 20px;
  padding: 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(240, 240, 245, 0.8);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--charcoal-dark);
  border: 2px solid transparent;
  border-radius: 10px;
  color: var(--chrome-white);
  font-family: 'Exo 2', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--industrial-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 44, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(240, 240, 245, 0.3);
}

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

.form-submit {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--industrial-orange) 0%, var(--industrial-orange-dark) 100%);
  color: var(--chrome-white);
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 44, 0.3);
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--charcoal-medium);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.service-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-content {
  padding: 30px;
}

.service-badge {
  display: inline-block;
  background: rgba(255, 107, 44, 0.15);
  color: var(--industrial-orange);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-title {
  font-size: 1.4rem;
  color: var(--chrome-white);
  margin-bottom: 12px;
}

.service-description {
  color: rgba(240, 240, 245, 0.7);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-price {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--industrial-orange);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--electric-cyan);
  font-weight: 600;
  margin-top: 16px;
}

.service-link:hover {
  gap: 12px;
}


.site-footer {
  background: var(--charcoal-dark);
  color: var(--chrome-white);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-tagline {
  color: rgba(240, 240, 245, 0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-title {
  font-size: 1.1rem;
  color: var(--chrome-white);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(240, 240, 245, 0.6);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--industrial-orange);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(240, 240, 245, 0.7);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  color: rgba(240, 240, 245, 0.4);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(240, 240, 245, 0.4);
  font-size: 0.9rem;
}

.footer-legal a:hover {
  color: var(--industrial-orange);
}


.cookie-consent-banner {
  position: fixed;
  bottom: 30px;
  left: 30px;
  max-width: 420px;
  background: var(--charcoal-dark);
  border: 1px solid rgba(255, 107, 44, 0.3);
  border-radius: 16px;
  padding: 24px;
  z-index: 9999;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  animation: slideUp 0.5s ease;
}

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

.cookie-title {
  font-size: 1.1rem;
  color: var(--chrome-white);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-text {
  font-size: 0.9rem;
  color: rgba(240, 240, 245, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.cookie-btn {
  flex: 1;
  min-width: 120px;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: linear-gradient(135deg, var(--industrial-orange) 0%, var(--industrial-orange-dark) 100%);
  color: var(--chrome-white);
  border: none;
}

.cookie-accept:hover {
  transform: translateY(-2px);
}

.cookie-decline {
  background: transparent;
  color: var(--chrome-white);
  border: 1px solid rgba(240, 240, 245, 0.3);
}

.cookie-decline:hover {
  border-color: var(--steel-gray);
}


.page-header {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal-medium) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 107, 44, 0.1) 0%, transparent 70%);
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--chrome-white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.page-breadcrumb {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 1rem;
  color: rgba(240, 240, 245, 0.6);
}

.page-breadcrumb a {
  color: var(--industrial-orange);
}

.page-breadcrumb span {
  color: rgba(240, 240, 245, 0.4);
}


.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--chrome-white);
}

.about-text p {
  color: rgba(240, 240, 245, 0.8);
  line-height: 1.8;
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  margin-top: 30px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(240, 240, 245, 0.85);
}

.feature-list .check {
  width: 24px;
  height: 24px;
  background: var(--industrial-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 20px;
  background: linear-gradient(transparent, rgba(26, 26, 31, 0.95));
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-title {
  font-size: 1.2rem;
  color: var(--chrome-white);
  margin-bottom: 4px;
}

.gallery-category {
  font-size: 0.9rem;
  color: var(--industrial-orange);
}


.map-container {
  background: var(--charcoal-medium);
  border-radius: 20px;
  overflow: hidden;
  height: 500px;
}

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


.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.6rem;
  color: var(--chrome-white);
  margin: 40px 0 20px;
}

.legal-content h3 {
  font-size: 1.3rem;
  color: var(--industrial-orange);
  margin: 30px 0 16px;
}

.legal-content p {
  color: rgba(240, 240, 245, 0.8);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  margin-left: 24px;
  margin-bottom: 20px;
}

.legal-content li {
  color: rgba(240, 240, 245, 0.75);
  line-height: 1.8;
  margin-bottom: 8px;
}


.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px;
}

.thank-you-content {
  max-width: 600px;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--industrial-orange) 0%, var(--industrial-orange-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 30px;
  animation: success-bounce 0.6s ease;
}

@keyframes success-bounce {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.thank-you-title {
  font-size: 2.5rem;
  color: var(--chrome-white);
  margin-bottom: 20px;
}

.thank-you-text {
  font-size: 1.2rem;
  color: rgba(240, 240, 245, 0.8);
  line-height: 1.8;
  margin-bottom: 40px;
}


@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .main-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--charcoal-dark);
    flex-direction: column;
    padding: 100px 20px 40px;
    transition: right 0.3s ease;
  }
  
  .main-navigation.active {
    right: 0;
  }
  
  .mobile-menu-btn {
    display: flex;
    z-index: 1001;
  }
  
  .nav-link {
    width: 100%;
    text-align: center;
    padding: 16px;
    font-size: 1.1rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }
  
  .hero-cta-group {
    flex-direction: column;
  }
  
  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .section {
    padding: 70px 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent-banner {
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    border-radius: 20px 20px 0 0;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .logo-text {
    font-size: 1.1rem;
  }
  
  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .contact-form,
  .contact-info {
    padding: 24px;
  }
}
