


:root {
  --terracotta-primary: #C75B39;
  --terracotta-dark: #A04829;
  --electric-blue: #007BFF;
  --electric-blue-dark: #0056B3;
  --electric-orange: #FF6B35;
  --lime-green: #7ED957;
  --dark-metal: #1A1A1A;
  --steel-gray: #3D3D3D;
  --concrete-gray: #6B6B6B;
  --warm-cream: #F5F0EB;
  --pure-white: #FFFFFF;
  --glass-bg: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.18);
}


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

body {
  font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.7;
  color: var(--dark-metal);
  background-color: var(--warm-cream);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}


body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(199, 91, 57, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 123, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}


h1, h2, h3, h4, h5, h6 {
  font-family: 'Impact', 'Arial Black', 'Segoe UI Black', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.8em;
  color: var(--dark-metal);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h3 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700;
  font-style: italic;
}

p {
  margin-bottom: 1.2em;
  font-size: 1.05rem;
}


[class*="text-"] strong,
[class*="text-"] b,
[style*="color"] strong,
[style*="color"] b,
.text-white strong, .text-white b,
.text-light strong, .text-light b {
  color: inherit;
}


.main-header {
  background: var(--dark-metal);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--terracotta-primary), var(--electric-orange));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.logo-text {
  color: var(--pure-white);
  font-family: 'Impact', 'Arial Black', sans-serif;
  font-size: 1.4rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.logo-text span {
  display: block;
  font-size: 0.65em;
  font-family: 'Segoe UI', sans-serif;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--concrete-gray);
}


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

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.3rem;
}

.nav-link {
  color: var(--pure-white);
  text-decoration: none;
  padding: 0.7rem 1.1rem;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--electric-orange);
}


.mobile-menu-toggle {
  display: none;
  background: var(--terracotta-primary);
  border: none;
  padding: 0.6rem 0.8rem;
  border-radius: 4px;
  cursor: pointer;
}

.toggle-icon {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--pure-white);
  position: relative;
  transition: background 0.3s;
}

.toggle-icon::before,
.toggle-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--pure-white);
  transition: transform 0.3s;
}

.toggle-icon::before {
  top: -8px;
}

.toggle-icon::after {
  top: 8px;
}

.mobile-menu-toggle.active .toggle-icon {
  background: transparent;
}

.mobile-menu-toggle.active .toggle-icon::before {
  transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-toggle.active .toggle-icon::after {
  transform: rotate(-45deg) translate(5px, -6px);
}


.hero-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--dark-metal) 0%, var(--steel-gray) 100%);
  overflow: hidden;
  padding: 6rem 2rem;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 100px,
      rgba(255, 255, 255, 0.02) 100px,
      rgba(255, 255, 255, 0.02) 101px
    );
  pointer-events: none;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  color: var(--pure-white);
}

.hero-badge {
  display: inline-block;
  background: var(--terracotta-primary);
  color: var(--pure-white);
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  margin-bottom: 0.5em;
  line-height: 1.05;
  color: var(--pure-white);
}

.hero-title .accent {
  color: var(--electric-orange);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--concrete-gray);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s ease;
  min-height: 52px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--electric-orange);
  color: var(--pure-white);
  border: 2px solid var(--electric-orange);
}

.btn-primary:hover {
  background: var(--terracotta-primary);
  border-color: var(--terracotta-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

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

.btn-secondary:hover {
  background: var(--pure-white);
  color: var(--dark-metal);
  transform: translateY(-3px);
}


.hero-visual {
  position: relative;
}

.hero-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.hero-image-container::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 3px solid var(--electric-orange);
  border-radius: 20px;
  z-index: -1;
}

.hero-image-container::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 120px;
  height: 120px;
  background: var(--electric-blue);
  border-radius: 50%;
  z-index: -2;
  opacity: 0.3;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--glass-bg);
  border: var(--glass-border);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--electric-orange);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--concrete-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


.section {
  padding: 5rem 2rem;
  position: relative;
}

.section-dark {
  background: var(--dark-metal);
  color: var(--pure-white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--pure-white);
}

.section-light {
  background: var(--warm-cream);
}

.section-accent {
  background: linear-gradient(135deg, var(--terracotta-primary), var(--electric-orange));
  color: var(--pure-white);
}

.section-accent h2,
.section-accent h3 {
  color: var(--pure-white);
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  background: rgba(199, 91, 57, 0.15);
  color: var(--terracotta-primary);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-dark .section-badge {
  background: rgba(255, 255, 255, 0.1);
  color: var(--electric-orange);
}

.section-title {
  max-width: 800px;
  margin: 0 auto 1rem;
}

.section-subtitle {
  color: var(--concrete-gray);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-subtitle {
  color: var(--concrete-gray);
}


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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}


.service-card {
  background: var(--pure-white);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--terracotta-primary), var(--electric-orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--terracotta-primary), var(--electric-orange));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  font-family: 'Impact', sans-serif;
}

.service-description {
  color: var(--steel-gray);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--electric-blue);
  margin-bottom: 1rem;
}

.service-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--concrete-gray);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--terracotta-primary);
  text-decoration: none;
  font-weight: 600;
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 0.8rem;
}


.glass-card {
  background: var(--glass-bg);
  border: var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.18);
}


.feature-card {
  background: var(--pure-white);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.feature-card:hover {
  border-color: var(--electric-orange);
  transform: translateY(-5px);
}

.feature-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--electric-blue), #00A3FF);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--pure-white);
}

.feature-title {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-family: 'Impact', sans-serif;
}

.feature-text {
  color: var(--steel-gray);
  font-size: 0.98rem;
}


.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-main-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.about-main-image::before {
  content: '';
  position: absolute;
  top: 20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--electric-orange);
  border-radius: 20px;
  z-index: -1;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--electric-blue);
  color: var(--pure-white);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.4);
}

.about-badge-number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.about-badge-text {
  font-size: 0.85rem;
  opacity: 0.9;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--steel-gray);
  margin-bottom: 1.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--lime-green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}


.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.team-card {
  background: var(--pure-white);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.team-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-size: 1.2rem;
  font-family: 'Impact', sans-serif;
  margin-bottom: 0.3rem;
}

.team-role {
  color: var(--terracotta-primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.team-bio {
  color: var(--steel-gray);
  font-size: 0.9rem;
}


.testimonial-card {
  background: var(--pure-white);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--electric-orange);
  opacity: 0.3;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  color: var(--steel-gray);
  margin-bottom: 1.5rem;
  padding-top: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.author-name {
  font-weight: 700;
  font-family: 'Impact', sans-serif;
}

.author-location {
  font-size: 0.85rem;
  color: var(--concrete-gray);
}


.cta-section {
  background: linear-gradient(135deg, var(--dark-metal) 0%, var(--steel-gray) 100%);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

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

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: var(--pure-white);
}

.cta-text {
  font-size: 1.2rem;
  color: var(--concrete-gray);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


.contact-form-wrapper {
  background: var(--pure-white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark-metal);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--pure-white);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--electric-blue);
  box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-submit {
  width: 100%;
  padding: 1.2rem 2rem;
  background: linear-gradient(135deg, var(--terracotta-primary), var(--electric-orange));
  color: var(--pure-white);
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 56px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(199, 91, 57, 0.4);
}


.contact-info-card {
  background: var(--dark-metal);
  border-radius: 16px;
  padding: 2.5rem;
  color: var(--pure-white);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--terracotta-primary), var(--electric-orange));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
}

.contact-info-content h4 {
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
  font-family: 'Impact', sans-serif;
}

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

.contact-info-content a {
  color: var(--electric-orange);
  text-decoration: none;
}


.main-footer {
  background: var(--dark-metal);
  color: var(--pure-white);
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto 3rem;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--terracotta-primary), var(--electric-orange));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.footer-logo-text {
  font-family: 'Impact', sans-serif;
  font-size: 1.3rem;
  text-transform: uppercase;
}

.footer-tagline {
  color: var(--concrete-gray);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pure-white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--electric-orange);
}

.footer-column h4 {
  color: var(--pure-white);
  font-size: 1.1rem;
  font-family: 'Impact', sans-serif;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--concrete-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: var(--concrete-gray);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: var(--concrete-gray);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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


.cookie-consent-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  max-width: 500px;
  background: var(--dark-metal);
  border-radius: 16px;
  padding: 2rem;
  z-index: 9999;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  display: block;
}

.cookie-content h4 {
  color: var(--pure-white);
  font-size: 1.2rem;
  font-family: 'Impact', sans-serif;
  margin-bottom: 0.8rem;
}

.cookie-content p {
  color: var(--concrete-gray);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.cookie-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 44px;
}

.cookie-accept {
  background: var(--electric-orange);
  color: var(--pure-white);
  border: none;
}

.cookie-accept:hover {
  background: var(--terracotta-primary);
}

.cookie-decline {
  background: transparent;
  color: var(--pure-white);
  border: 2px solid var(--concrete-gray);
}

.cookie-decline:hover {
  border-color: var(--pure-white);
}


.faq-item {
  background: var(--pure-white);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--electric-orange);
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark-metal);
}

.faq-toggle {
  width: 30px;
  height: 30px;
  background: var(--electric-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pure-white);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-content {
  padding: 0 2rem 1.5rem;
  color: var(--steel-gray);
}


.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

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

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--terracotta-primary), var(--electric-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--pure-white);
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
}

.step-title {
  font-size: 1.2rem;
  font-family: 'Impact', sans-serif;
  margin-bottom: 0.8rem;
  color: var(--dark-metal);
}

.step-text {
  color: var(--steel-gray);
  font-size: 0.95rem;
}

.process-connector {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--electric-orange);
  z-index: 1;
  opacity: 0.3;
}


.map-container {
  border-radius: 16px;
  overflow: hidden;
  height: 400px;
  background: var(--concrete-gray);
}

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


.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.area-card {
  background: var(--pure-white);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.area-card:hover {
  border-color: var(--electric-orange);
  transform: translateY(-3px);
}

.area-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--electric-blue), #00A3FF);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.area-name {
  font-weight: 700;
  font-family: 'Impact', sans-serif;
  color: var(--dark-metal);
}


.page-header {
  background: linear-gradient(135deg, var(--dark-metal) 0%, var(--steel-gray) 100%);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(255, 255, 255, 0.02) 80px, rgba(255, 255, 255, 0.02) 81px);
}

.page-header-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-title {
  color: var(--pure-white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.page-subtitle {
  color: var(--concrete-gray);
  font-size: 1.2rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--electric-orange);
  text-decoration: none;
}

.breadcrumb span {
  color: var(--concrete-gray);
}


@media (max-width: 1200px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto 2rem;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image-wrapper {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

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

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

  .process-connector {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    max-width: none;
  }

  .footer-social {
    justify-content: center;
  }
}

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

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark-metal);
    padding: 1rem;
    display: none;
  }

  .main-nav.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-link {
    display: block;
    padding: 1rem;
    border-radius: 8px;
  }

  .header-container {
    padding: 0.8rem 1rem;
  }

  .hero-section {
    padding: 4rem 1rem;
    min-height: auto;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3rem 1rem;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .areas-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }

  .cookie-consent-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}


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

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

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

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


.text-terracotta { color: var(--terracotta-primary); }
.text-electric-blue { color: var(--electric-blue); }
.text-electric-orange { color: var(--electric-orange); }
.text-lime-green { color: var(--lime-green); }
.text-dark { color: var(--dark-metal); }
.text-white { color: var(--pure-white); }
.text-gray { color: var(--concrete-gray); }

.bg-terracotta { background-color: var(--terracotta-primary); }
.bg-electric-blue { background-color: var(--electric-blue); }
.bg-electric-orange { background-color: var(--electric-orange); }
.bg-lime-green { background-color: var(--lime-green); }
.bg-dark { background-color: var(--dark-metal); }
.bg-light { background-color: var(--warm-cream); }
.bg-white { background-color: var(--pure-white); }

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.hidden { display: none; }
.visible { display: block; }

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

.w-full { width: 100%; }
.max-w-600 { max-width: 600px; }
.max-w-800 { max-width: 800px; }
.max-w-1200 { max-width: 1200px; }

.rounded { border-radius: 8px; }
.rounded-lg { border-radius: 16px; }
.rounded-xl { border-radius: 20px; }

.shadow { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15); }
