
:root {
  --primary-dark: #0A1A2F;
  --secondary-dark: #1C2530;
  --accent-gold: #D4AF37;
  --text-light: #F5F5F5;
  --text-secondary: #B0B7C3;
  --success: #2E7D32;
  --alert: #C62828;
  --border-light: #3A4A5C;
  --overlay-dark: rgba(10, 26, 47, 0.85);
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-light);
  background-color: var(--primary-dark);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 3px;
  background: var(--accent-gold);
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

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

a:hover {
  color: #F5F5F5;
  text-decoration: none;
}

.section {
  padding: 5rem 0;
}

.section-dark {
  background-color: var(--secondary-dark);
}

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


.navbar {
  background-color: var(--primary-dark);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
}

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

.navbar-dark .navbar-nav .nav-link {
  color: var(--text-secondary);
  font-weight: 600;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .active > .nav-link {
  color: var(--accent-gold);
}

.navbar-dark .navbar-toggler {
  border-color: var(--border-light);
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(212, 175, 55, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.contact-btn {
  background-color: transparent;
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 0;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
}

.navbar-phone {
  color: var(--text-light);
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-right: 1rem;
}

.navbar-phone i {
  color: var(--accent-gold);
  margin-right: 0.5rem;
}


.hero {
  position: relative;
  background-color: var(--primary-dark);
  padding: 0;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/hero-background.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.hero-services {
  margin-bottom: 2rem;
}

.hero-services .badge {
  background-color: var(--secondary-dark);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: normal;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
}

.btn-primary {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--primary-dark);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: transparent;
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
}


.feature-card {
  background-color: var(--secondary-dark);
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-bottom: 3px solid var(--accent-gold);
}

.feature-icon {
  color: var(--accent-gold);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

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

.feature-card ul {
  list-style: none;
  padding-left: 0;
}

.feature-card li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.feature-card li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-size: 0.8rem;
}


.service-item {
  background-color: var(--secondary-dark);
  padding: 2.5rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background-color: var(--accent-gold);
  transition: all 0.3s ease;
}

.service-item:hover::before {
  height: 100%;
}

.service-item:hover {
  transform: translateX(5px);
}

.service-icon {
  color: var(--accent-gold);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

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

.service-item p {
  color: var(--text-secondary);
}


.process-container {
  position: relative;
}

.process-container::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% - 80px);
  background-color: var(--border-light);
}

.process-step {
  position: relative;
  padding-bottom: 4rem;
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-number {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-dark);
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  color: var(--accent-gold);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}

.process-content {
  background-color: var(--secondary-dark);
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.process-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.process-content p {
  color: var(--text-secondary);
}


.result-card {
  background-color: var(--secondary-dark);
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  border-left: 3px solid var(--accent-gold);
}

.result-card h3 {
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.result-card p {
  color: var(--text-secondary);
}


.benefits-list {
  list-style: none;
  padding-left: 0;
}

.benefits-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.benefits-list li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-size: 1.2rem;
}


.contact-form-section {
  background-color: var(--secondary-dark);
  padding: 5rem 0;
}

.form-control {
  background-color: rgba(10, 26, 47, 0.5);
  border: 1px solid var(--border-light);
  border-radius: 0;
  color: var(--text-light);
  padding: 0.75rem 1.25rem;
  height: auto;
}

.form-control:focus {
  background-color: rgba(10, 26, 47, 0.7);
  border-color: var(--accent-gold);
  box-shadow: none;
  color: var(--text-light);
}

.form-control::placeholder {
  color: rgba(176, 183, 195, 0.7);
}

.form-check-input {
  margin-top: 0.3rem;
}

.form-check-label {
  margin-bottom: 0;
  color: var(--text-secondary);
}

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

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

.iti {
  width: 100%;
}


.footer {
  background-color: var(--secondary-dark);
  padding: 3rem 0;
  border-top: 1px solid var(--border-light);
}

.footer-logo {
  margin-bottom: 1.5rem;
}

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

.footer-contact {
  margin-bottom: 1.5rem;
}

.footer-contact p {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.footer-contact i {
  color: var(--accent-gold);
  margin-right: 0.5rem;
  width: 20px;
  text-align: center;
}

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

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

.footer-nav li {
  margin-bottom: 0.75rem;
}

.footer-nav a {
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

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

.footer-bottom {
  background-color: var(--primary-dark);
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--text-secondary);
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.footer-bottom a:hover {
  color: var(--accent-gold);
}


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-dark);
  border-top: 1px solid var(--border-light);
  padding: 1.5rem 0;
  z-index: 1000;
  display: none;
}

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

.cookie-content {
  color: var(--text-secondary);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-direction: column;
}

.cookie-modal .modal-content {
  background-color: var(--primary-dark);
  border: 1px solid var(--border-light);
  border-radius: 0;
  color: var(--text-light);
}

.cookie-modal .modal-header {
  border-bottom: 1px solid var(--border-light);
}

.cookie-modal .modal-footer {
  border-top: 1px solid var(--border-light);
}

.cookie-modal .btn-close {
  color: var(--text-light);
  opacity: 0.8;
}

.cookie-modal .form-check {
  margin-bottom: 1rem;
}

.cookie-category {
  margin-bottom: 1.5rem;
}

.cookie-category h5 {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.cookie-category p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}


.success-modal .modal-content {
  background-color: var(--primary-dark);
  border: 1px solid var(--accent-gold);
  border-radius: 0;
}

.success-modal .modal-header {
  border-bottom: 1px solid var(--border-light);
}

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

.success-modal .modal-body {
  color: var(--text-secondary);
}

.success-modal .modal-footer {
  border-top: 1px solid var(--border-light);
}

.success-modal .btn-close {
  color: var(--text-light);
}

.success-icon {
  color: var(--success);
  font-size: 3rem;
  margin-bottom: 1rem;
}


.page-header {
  position: relative;
  background-color: var(--primary-dark);
  padding: 5rem 0 3rem;
  margin-bottom: 3rem;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}

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

.page-header h1 {
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.25rem;
  max-width: 700px;
  margin-bottom: 0;
}


.methodology-header::before {
  background-image: url('../images/methodology-principles.jpg');
}

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

.methodology-image {
  height: 100%;
  object-fit: cover;
}

.methodology-content {
  padding: 2rem;
  background-color: var(--secondary-dark);
}

.methodology-steps {
  counter-reset: methodology-counter;
  list-style: none;
  padding-left: 0;
}

.methodology-steps li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.methodology-steps li::before {
  counter-increment: methodology-counter;
  content: counter(methodology-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  font-weight: 700;
  border-radius: 50%;
}


.cost-reduction-header::before {
  background-image: url('../images/cost-reduction.jpg');
}

.cost-reduction-card {
  background-color: var(--secondary-dark);
  padding: 2.5rem;
  height: 100%;
  transition: all 0.3s ease;
}

.cost-reduction-card:hover {
  transform: translateY(-5px);
}

.cost-reduction-icon {
  color: var(--accent-gold);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

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

.cost-reduction-card p {
  color: var(--text-secondary);
}

.cost-reduction-card ul {
  list-style: none;
  padding-left: 0;
}

.cost-reduction-card li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.cost-reduction-card li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-size: 0.8rem;
}


.efficiency-header::before {
  background-image: url('../images/efficiency-analysis.jpg');
}

.analysis-card {
  background-color: var(--secondary-dark);
  padding: 2.5rem;
  height: 100%;
  transition: all 0.3s ease;
  border-top: 3px solid var(--accent-gold);
}

.analysis-icon {
  color: var(--accent-gold);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

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

.analysis-card p {
  color: var(--text-secondary);
}

.analysis-image {
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
}


.contacts-header::before {
  background-image: url('../images/office-location.jpg');
}

.contact-info {
  background-color: var(--secondary-dark);
  padding: 2.5rem;
  height: 100%;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.contact-icon {
  color: var(--accent-gold);
  font-size: 1.5rem;
  margin-right: 1rem;
  min-width: 30px;
}

.contact-text {
  color: var(--text-secondary);
}

.contact-text strong {
  display: block;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.map-container {
  height: 400px;
  width: 100%;
  margin-bottom: 2rem;
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.directions-container {
  background-color: var(--secondary-dark);
  padding: 2.5rem;
}


.policy-header {
  padding: 4rem 0 2rem;
}

.policy-content {
  padding: 3rem 0 5rem;
}

.policy-content h2 {
  font-size: 1.75rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.policy-content h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content p {
  margin-bottom: 1.5rem;
}

.policy-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.policy-content ul li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.policy-date {
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}


.thank-you-section {
  padding: 8rem 0;
  text-align: center;
}

.thank-you-icon {
  color: var(--accent-gold);
  font-size: 5rem;
  margin-bottom: 2rem;
}

.thank-you-section h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.thank-you-section p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}


@media (max-width: 991.98px) {
  .navbar-phone {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .process-container::before {
    left: 40px;
  }
  
  .process-number {
    margin: 0;
    margin-right: 2rem;
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
  }
  
  .process-content {
    margin-left: 80px;
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 3rem 0;
  }
  
  .hero {
    min-height: auto;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .feature-card,
  .service-item,
  .process-content,
  .result-card,
  .methodology-content,
  .cost-reduction-card,
  .analysis-card,
  .contact-info {
    padding: 1.5rem;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1rem;
    margin-right: 1.5rem;
  }
  
  .process-content {
    margin-left: 70px;
  }
  
  .footer {
    padding: 2rem 0;
  }
  
  .footer-nav {
    margin-top: 2rem;
  }
}

@media (max-width: 575.98px) {
  .hero h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .process-number {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
    margin-right: 1rem;
  }
  
  .process-content {
    margin-left: 60px;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    margin-bottom: 0.5rem;
  }
}