/* Style overrides for specific elements to match the new yellow/black theme */

/* Make yellow elements more prominent */
.cta-section {
  background: linear-gradient(
      135deg,
      rgba(250, 208, 44, 0.95),
      rgba(250, 208, 44, 0.8)
    ),
    url('../images/pattern-bg.jpg');
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Add a subtle pattern overlay */
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h20v20H0V0zm2 2v16h16V2H2z' fill='%23ffffff' fill-opacity='0.1'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* CTA Content styling */
.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-title {
  color: #000000;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.cta-description {
  color: #000000;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 800px;
}

/* CTA Button styling */
.cta-main-btn {
  background-color: #000000;
  color: #ffffff;
  padding: 15px 40px;
  border: 2px solid #000000;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.cta-main-btn:hover {
  background-color: transparent;
  color: #000000;
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

/* Create a decorative element in the background */
.cta-accent-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  bottom: -150px;
  right: -150px;
  z-index: 1;
}

.cta-accent-shape-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  top: -100px;
  left: -100px;
  z-index: 1;
}

/* Update icons to match theme */
.feature-icon,
.service-icon,
.info-icon i {
  color: #fad02c;
}

/* Button hover effects */
.btn-primary:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

/* Make dark sections more impactful */
.dark-section {
  background-color: #000000;
}

/* Text highlights */
.highlight {
  color: #fad02c;
}

/* Update hover effects */
a:hover {
  color: #fad02c;
}

/* Card hover effects */
.card:hover,
.service-card:hover,
.team-card:hover,
.project-card:hover {
  box-shadow: 0 15px 30px rgba(250, 208, 44, 0.2);
  transform: translateY(-5px);
}

/* Active states */
.nav-links a.active {
  color: #fad02c;
}

/* Section backgrounds */
.testimonials-section {
  background: linear-gradient(to bottom, #000000, #121212);
}

.map-faq-section {
  background-color: #000000; /* Updated to black for consistency */
}

/* Dark mode specific overrides */
body:not(.light-mode) .map-faq-section {
  background-color: #000000; /* Pure black background */
}

body:not(.light-mode) .location-info {
  background-color: #1a1a1a;
}

/* Form focus states */
input:focus,
textarea:focus,
select:focus {
  border-color: #fad02c;
  box-shadow: 0 0 0 2px rgba(250, 208, 44, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cta-section {
    padding: 60px 0;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-description {
    font-size: 1rem;
  }

  .cta-main-btn {
    padding: 12px 30px;
  }
}

@media (max-width: 576px) {
  .cta-section {
    padding: 50px 0;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .cta-main-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}
