
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');


:root {
  --metal-dark: #1a1a1a;
  --metal-charcoal: #2c2c2c;
  --metal-iron: #3c3c3c;
  --metal-silver: #e0e0e0;
  --metal-steel: #5a5a5a;
  --vibrant-orange: #ff5e1a;
  --orange-glow: #ff8c42;
  --text-light: #ffffff;
  --text-dark: #111111;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --gradient-primary: linear-gradient(135deg, #1a1a1a 0%, #3c3c3c 100%);
  --gradient-accent: linear-gradient(135deg, #ff5e1a 0%, #ff8c42 100%);
  --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 15px rgba(255, 94, 26, 0.4);
  --radius-sharp: 0px;
  --radius-moderate: 8px;
  --radius-soft: 16px;
}


body {
  background-color: var(--metal-dark);
  color: var(--text-light);
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}


.glass-card {
  background-color: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}


h1, h2, h3, h4, h5, h6 {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}


.hero-section {
  background: var(--gradient-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}


.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
  animation: texturePulse 15s ease-in-out infinite;
  pointer-events: none;
}

.page-hero {
  padding-top: 100px !important;
}

@keyframes texturePulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}


.header {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid var(--glass-border);
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.navbar-nav .nav-link {
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--vibrant-orange);
  transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--vibrant-orange);
  transition: width 0.3s ease;
}

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


.btn-primary {
  background: var(--gradient-accent);
  border: none;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 32px;
  border-radius: var(--radius-sharp);
  box-shadow: var(--shadow-glow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-heavy), var(--shadow-glow);
  color: white;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}


.btn-outline-light {
  border: 2px solid var(--vibrant-orange);
  color: var(--vibrant-orange);
  background: transparent;
  border-radius: var(--radius-sharp);
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 32px;
  position: relative;
  overflow: hidden;
}

.btn-outline-light:hover {
  background: var(--vibrant-orange);
  color: white;
  transform: translateY(-3px);
}


.service-card {
  background: var(--metal-charcoal);
  border: 1px solid var(--metal-iron);
  border-radius: var(--radius-moderate);
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--vibrant-orange);
  box-shadow: var(--shadow-heavy);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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


.advantage-item {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--vibrant-orange);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.advantage-item:hover {
  background: rgba(255, 94, 26, 0.1);
  transform: translateX(10px);
}


.testimonial-card {
  background: var(--metal-iron);
  border: 1px solid var(--metal-steel);
  border-radius: var(--radius-soft);
  padding: 2rem;
  position: relative;
}

.testimonial-card::after {
  content: '"';
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 4rem;
  color: var(--vibrant-orange);
  opacity: 0.3;
  font-family: serif;
}


.form-control, .form-select {
  background-color: var(--metal-charcoal);
  border: 1px solid var(--metal-steel);
  color: var(--text-light);
  border-radius: var(--radius-moderate);
  transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
  background-color: var(--metal-charcoal);
  border-color: var(--vibrant-orange);
  box-shadow: 0 0 0 0.2rem rgba(255, 94, 26, 0.25);
  color: var(--text-light);
}


.footer {
  background: var(--metal-iron);
  border-top: 1px solid var(--metal-steel);
  padding: 3rem 0 1rem;
}


.cookie-consent-banner {
  background: rgba(26, 26, 26, 0.95);
  border-top: 1px solid var(--vibrant-orange);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(10px);
}


@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 4rem 0;
  }
  
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  .btn-primary, .btn-outline-light {
    width: 100%;
    margin-bottom: 1rem;
  }
}


.interaction-target {
  cursor: pointer;
  transition: all 0.2s ease;
}

.interaction-target:hover {
  filter: drop-shadow(0 0 5px var(--vibrant-orange));
}


.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}