:root {
  --primary-green: #004D40;
  --primary-blue: #0066ff;
  --primary-blue-s: #214d8f;
  --secondary-dark: #212121;
  --accent-orange: #FF6F00;
  --accent-yellow: #FFC107;
  --light-bg: #F5F5F5;
  --white: #FFFFFF;
}

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

body {
  font-family: 'Roboto', sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
}

.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-green) !important;
  letter-spacing: 1px;
}

.navbar-nav .nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: var(--secondary-dark) !important;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-green) !important;
  transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
  color: var(--primary-green) !important;
  border-bottom: 2px solid var(--primary-green);
}

.hero-section {
  background: linear-gradient(135deg, var(--primary-blue-s) 0%, var(--primary-blue) 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 0L50 50M50 0L100 50M0 50L50 100M50 50L100 100" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
  opacity: 0.3;
}

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

.hero-section h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.btn-primary-custom {
  background-color: var(--accent-orange);
  border: none;
  color: var(--white);
  padding: 12px 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 111, 0, 0.3);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-primary-custom:hover {
  background-color: #E65100;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 111, 0, 0.4);
  color: var(--white);
}

.btn-secondary-custom {
  background-color: var(--accent-yellow);
  border: none;
  color: var(--secondary-dark);
  padding: 12px 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary-custom:hover {
  background-color: #FFA000;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
  color: var(--secondary-dark);
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.card-service {
  background: var(--white);
  border: none;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

.card-service .icon {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.card-service h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card-service p {
  color: #666;
  margin-bottom: 1.5rem;
}

.card-service ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.card-service ul li {
  padding: 0.5rem 0;
  color: #555;
}

.card-service ul li::before {
  content: "✓";
  color: var(--primary-green);
  font-weight: bold;
  margin-right: 10px;
}

.bg-light-custom {
  background-color: var(--light-bg);
}

.bg-dark-custom {
  background-color: var(--primary-green);
  color: var(--white);
}

.bg-dark-custom h2,
.bg-dark-custom h3 {
  color: var(--white);
}

.stats-section {
  background: linear-gradient(135deg, var(--secondary-dark) 0%, #424242 100%);
  color: var(--white);
  padding: 60px 0;
}

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

.stat-box .number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-yellow);
  font-family: 'Montserrat', sans-serif;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-box .label {
  font-size: 1.1rem;
  color: var(--white);
  opacity: 0.9;
}

.feature-box {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-green);
  transition: all 0.3s ease;
}

.feature-box:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transform: translateX(5px);
}

.feature-box h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.feature-box p {
  color: #666;
  margin-bottom: 0;
}

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

.contact-form .form-control {
  border: 2px solid #E0E0E0;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(0, 77, 64, 0.15);
}

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

.contact-info {
  background: var(--primary-green);
  color: var(--white);
  padding: 3rem;
  border-radius: 15px;
  height: 100%;
}

.contact-info h3 {
  color: var(--white);
  margin-bottom: 2rem;
}

.contact-info-item {
  margin-bottom: 2rem;
}

.contact-info-item i {
  font-size: 1.5rem;
  margin-right: 1rem;
  color: var(--accent-yellow);
}

.contact-info-item p {
  margin: 0;
  font-size: 1rem;
}

.footer {
  background-color: var(--secondary-dark);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer h5 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-family: 'Montserrat', sans-serif;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
}

.footer a:hover {
  color: var(--accent-yellow);
  text-decoration: none;
}

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

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

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

.map-section {
  background: var(--light-bg);
  padding: 80px 0;
}

.location-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.location-card h4 {
  color: var(--primary-green);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.location-card p {
  color: #666;
  margin-bottom: 0.5rem;
}

.sector-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.sector-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  border-top: 4px solid var(--primary-green);
}

.sector-card .icon {
  font-size: 3.5rem;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.sector-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.sector-card p {
  color: #666;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-green) 0%, #00695C 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.breadcrumb-custom {
  background: var(--light-bg);
  padding: 20px 0;
  margin-bottom: 0;
}

.breadcrumb-custom .breadcrumb {
  background: transparent;
  margin: 0;
  padding: 0;
}

.breadcrumb-custom .breadcrumb-item a {
  color: var(--primary-green);
  text-decoration: none;
}

.breadcrumb-custom .breadcrumb-item.active {
  color: #666;
}

.list-check {
  list-style: none;
  padding: 0;
}

.list-check li {
  padding: 0.8rem 0;
  color: #555;
  font-size: 1.05rem;
}

.list-check li::before {
  content: "✓";
  color: var(--primary-green);
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 15px;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .section-padding {
    padding: 50px 0;
  }

  .stat-box .number {
    font-size: 2.5rem;
  }

  .contact-form,
  .contact-info {
    margin-bottom: 2rem;
  }
}
