:root {
  --charcoal-900: #1a1a1a;
  --charcoal-800: #2d2d2d;
  --charcoal-700: #3d3d3d;
  --silver-100: #f5f5f5;
  --silver-200: #e5e5e5;
  --silver-300: #d9d9d9;
  --silver-400: #d4d4d4;
  --silver-500: #a3a3a3;
  --cyan-500: #06b6d4;
  --cyan-400: #22d3ee;
  --cyan-300: #67e8f9;
  --rose-gold: #e11d48;
  --white: #ffffff;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-light: #f5f5f5;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--silver-100);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

strong, p {
  color: inherit;
}

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

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

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


.glass-panel {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-panel-dark {
  background: rgba(26, 26, 26, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}


.text-metallic-gradient {
  background: linear-gradient(135deg, var(--silver-400) 0%, var(--charcoal-700) 50%, var(--silver-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--charcoal-900) 0%, var(--charcoal-700) 100%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../assets/img/hero-bg.webp') center/cover;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(45, 45, 45, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
}


.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--cyan-500) 0%, var(--cyan-400) 100%);
  color: var(--white);
  font-weight: 600;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(6, 182, 212, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--silver-100);
  font-weight: 600;
  border-radius: 0.5rem;
  border: 2px solid var(--silver-400);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--silver-100);
  color: var(--charcoal-900);
  border-color: var(--silver-100);
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: var(--rose-gold);
  color: var(--white);
  font-weight: 600;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-accent:hover {
  background: #be123c;
  transform: translateY(-1px);
}


.section-dark {
  background: var(--charcoal-900);
  color: var(--silver-100);
}

.section-light {
  background: var(--silver-100);
  color: var(--text-primary);
}

.section-accent {
  background: linear-gradient(135deg, var(--charcoal-800) 0%, var(--charcoal-700) 100%);
  color: var(--silver-100);
}

.section-padding {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 7rem 0;
  }
}


h1 {
  font-size: clamp(2.5rem, 5vw, 4rem) !important;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem) !important;
  font-weight: 600;
  line-height: 1.3;
}

.text-cyan {
  color: var(--cyan-400);
}

.text-rose {
  color: var(--rose-gold);
}


.card {
  padding: 2rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.card-dark {
  background: var(--charcoal-800);
  color: var(--silver-100);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-dark:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-light {
  background: var(--white);
  color: var(--text-primary);
  border: 1px solid var(--silver-200);
}

.card-light:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}


.icon-box {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--cyan-500) 0%, var(--cyan-400) 100%);
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}


.form-input {
  width: 100%;
  padding: 1rem;
  background: var(--charcoal-800);
  border: 1px solid var(--charcoal-700);
  border-radius: 0.5rem;
  color: var(--silver-100);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.2);
}

.form-input::placeholder {
  color: var(--silver-500);
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--silver-200);
}


.contact-info-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--charcoal-800);
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cyan-500) 0%, var(--cyan-400) 100%);
  border-radius: 0.5rem;
  color: var(--white);
  flex-shrink: 0;
}


.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background: var(--white);
  transition: all 0.4s ease;
}

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

.service-card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.service-card-content {
  padding: 1.5rem;
  color: var(--text-primary);
}

.service-price {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--cyan-500) 0%, var(--cyan-400) 100%);
  color: var(--white);
  font-weight: 700;
  border-radius: 0.375rem;
  margin-top: 1rem;
}


.stat-box {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan-400) 0%, var(--rose-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1rem;
  color: var(--silver-400);
  margin-top: 0.5rem;
}


.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--silver-100);
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--cyan-500) 0%, var(--silver-400) 100%);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.nav-links {
  display: none;
  gap: 2rem;
  list-style: none;
}

@media (min-width: 992px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  color: var(--silver-200);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan-500), var(--cyan-400));
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--cyan-400);
}

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


.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 1.5rem;
  height: 2px;
  background: var(--silver-100);
  transition: all 0.3s ease;
}

@media (min-width: 992px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--charcoal-900);
  z-index: 999;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  height: 100vh;
}

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

.mobile-menu-link {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--silver-100);
}

.mobile-menu-link:hover {
  color: var(--cyan-400);
}


.main-footer {
  background: var(--charcoal-900);
  color: var(--silver-200);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: var(--silver-400);
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--cyan-400);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--silver-300);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: var(--silver-500);
  font-size: 0.875rem;
}


.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: 500px;
  width: calc(100% - 2rem);
  background: var(--charcoal-800);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  display: block;
}

.cookie-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cookie-text {
  font-size: 0.875rem;
  color: var(--silver-300);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

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

.cookie-btn {
  flex: 1;
  min-width: 120px;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--cyan-500) 0%, var(--cyan-400) 100%);
  color: var(--white);
}

.cookie-btn-accept:hover {
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--silver-300);
  border: 1px solid var(--silver-500);
}

.cookie-btn-decline:hover {
  background: var(--charcoal-700);
  color: var(--white);
}

@media (max-width: 480px) {
  .cookie-banner {
    bottom: 1rem;
    padding: 1.25rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}


.gallery-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  color: var(--silver-100);
  font-weight: 600;
}


.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: var(--charcoal-800);
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--silver-100);
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--charcoal-700);
}

.faq-icon {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cyan-500);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--charcoal-700);
}

.faq-answer-content {
  padding: 1.5rem;
  color: var(--silver-300);
  line-height: 1.7;
}


.testimonial-card {
  padding: 2rem;
  background: var(--charcoal-800);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-stars {
  color: #fbbf24;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.testimonial-text {
  font-size: 1.125rem;
  color: var(--silver-200);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

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

.testimonial-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--cyan-500);
}

.testimonial-name {
  font-weight: 700;
  color: var(--white);
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--silver-500);
}


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

.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-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 3rem;
}

.gap-2 {
  gap: 1rem;
}

.gap-3 {
  gap: 1.5rem;
}

.gap-4 {
  gap: 2rem;
}

.grid-2 {
  display: grid;
  gap: 2rem;
}

.grid-3 {
  display: grid;
  gap: 2rem;
}

.grid-4 {
  display: grid;
  gap: 2rem;
}

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

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

.hidden {
  display: none !important;
}


.page-header {
  padding: 10rem 0 5rem;
  background: linear-gradient(135deg, var(--charcoal-900) 0%, var(--charcoal-700) 100%);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../assets/img/factory-floor.webp') center/cover;
  opacity: 0.2;
}

.page-header-content {
  position: relative;
  z-index: 10;
}


.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--silver-400);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--cyan-400);
}

.breadcrumb a:hover {
  color: var(--cyan-300);
}


.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--charcoal-800);
  border-radius: 0.75rem;
  overflow: hidden;
}

.price-table th,
.price-table td {
  padding: 1.25rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-table th {
  background: var(--charcoal-700);
  color: var(--white);
  font-weight: 700;
}

.price-table td {
  color: var(--silver-200);
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table tr:hover td {
  background: rgba(6, 182, 212, 0.1);
}

.price-value {
  font-weight: 700;
  color: var(--cyan-400);
}


.map-container {
  width: 100%;
  height: 450px;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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


.separator-line {
  height: 4px;
  width: 80px;
  background: linear-gradient(90deg, var(--cyan-500), var(--rose-gold));
  border-radius: 2px;
  margin: 2rem auto;
}

.separator-line-left {
  height: 4px;
  width: 80px;
  background: linear-gradient(90deg, var(--cyan-500), var(--rose-gold));
  border-radius: 2px;
}
