
:root {
  --primary: #1A2C42;
  --secondary: #B8860B;
  --accent: #D4AF37;
  --background: #F5F5F5;
  --text: #333333;
  --light-text: #FFFFFF;
  --border: #CCCCCC;
  --success: #2E8B57;
  --error: #B22222;
  --industrial-texture: #E0E0E0;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background-color: var(--background);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  color: var(--primary);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover, a:focus {
  color: var(--secondary);
  text-decoration: none;
}

.btn {
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover, .btn-primary:focus {
  background-color: #0f1c2d;
  border-color: #0f1c2d;
}

.btn-secondary {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--light-text);
}

.btn-secondary:hover, .btn-secondary:focus {
  background-color: #9e7209;
  border-color: #9e7209;
  color: var(--light-text);
}

.btn-outline-primary {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
  background-color: var(--primary);
  color: var(--light-text);
}


.container {
  max-width: 1200px;
}

.section {
  padding: 60px 0;
}

.section-title {
  margin-bottom: 40px;
  position: relative;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--secondary);
}


.navbar {
  background-color: var(--light-text);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  height: 40px;
}

.navbar-nav .nav-link {
  font-weight: 600;
  padding: 0.5rem 1rem;
}

.navbar-contact {
  display: flex;
  align-items: center;
}

.navbar-contact i {
  color: var(--secondary);
  margin-right: 8px;
}


.hero {
  background-color: var(--primary);
  color: var(--light-text);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

.hero h1 {
  font-size: 2.5rem;
  color: var(--light-text);
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

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


.card {
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
  overflow: hidden;
  height: 100%;
  background: var(--light-text);
}

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

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 20px;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.card-text {
  color: var(--text);
  margin-bottom: 20px;
}

.feature-card {
  background-color: var(--light-text);
  border-radius: 4px;
  padding: 30px 25px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.feature-card i {
  color: var(--secondary);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.feature-card:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--secondary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.feature-card:hover:after {
  transform: scaleX(1);
}


.business-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.business-card {
  background-color: var(--light-text);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.business-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.business-card-image {
  height: 200px;
  overflow: hidden;
}

.business-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.business-card:hover .business-card-image img {
  transform: scale(1.05);
}

.business-card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.business-card-title {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.business-card-text {
  margin-bottom: 20px;
  flex-grow: 1;
}

.business-card-features {
  margin-bottom: 20px;
}

.business-card-feature {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.business-card-feature i {
  color: var(--secondary);
  margin-right: 10px;
  font-size: 0.9rem;
}


.form-section {
  background-color: var(--light-text);
  padding: 50px;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-control {
  border-radius: 0;
  border: 1px solid var(--border);
  padding: 12px;
  height: auto;
  background-color: var(--background);
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary);
}

.form-label {
  font-weight: 600;
  color: var(--primary);
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

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


.industrial-bg {
  background-color: var(--industrial-texture);
  position: relative;
}

.industrial-bg:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23bdbdbd' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.3;
  z-index: 0;
}

.metal-accent {
  position: relative;
}

.metal-accent:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--secondary), var(--accent));
}


.cta-section {
  background-color: var(--primary);
  color: var(--light-text);
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--light-text);
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}


.footer {
  background-color: var(--primary);
  color: var(--light-text);
  padding: 60px 0 20px;
}

.footer h5 {
  color: var(--light-text);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer p {
  margin-bottom: 0.5rem;
}

.footer a {
  color: var(--light-text);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer a:hover {
  opacity: 1;
  color: var(--accent);
}

.footer-contact {
  margin-bottom: 20px;
}

.footer-contact i {
  margin-right: 10px;
  color: var(--accent);
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 40px;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 20px;
}


.map-container {
  height: 300px;
  width: 100%;
  margin-bottom: 20px;
}

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


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--light-text);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px;
  z-index: 1000;
  display: none;
}

.cookie-consent.show {
  display: block;
}

.cookie-settings-modal .modal-content {
  border-radius: 0;
  border: none;
}

.cookie-settings-modal .modal-header {
  background-color: var(--primary);
  color: var(--light-text);
  border-radius: 0;
}

.cookie-settings-modal .modal-title {
  color: var(--light-text);
}

.cookie-settings-modal .close {
  color: var(--light-text);
}

.cookie-category {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.cookie-category-title {
  font-weight: 600;
  margin: 0;
}

.cookie-category-description {
  margin-bottom: 10px;
}


@media (max-width: 992px) {
  .navbar-collapse {
    background-color: var(--light-text);
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
  
  .hero {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .business-card-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .form-section {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .business-card-grid {
    grid-template-columns: 1fr;
  }
  
  .footer {
    text-align: center;
  }
  
  .footer-links {
    margin-bottom: 30px;
  }
}


.iti {
  width: 100%;
}