
.contact-hero {
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.6)), 
              url('../assets/images/contact.jpg') no-repeat center center;
  background-size: cover;

}
.map-contact iframe{
  height: 500px;
}

.cta-section {
  background: var(--primary-gradient);
  color: #fff;
  padding: 80px 0px;
}

.cta-title {
  font-size: 2rem;
}

.cta-subtitle {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.cta-buttons .btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  border: 2px solid #fff;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.cta-buttons .btn-drk{
  background-color: #fff;
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  border: 2px solid #fff;
  transition: all 0.3s ease;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.cta-buttons .btn:hover {
  background: #fff;
  color: var(--primary-color);
  transform: translateY(-3px);
}

.cta-buttons .btn-drk:hover {
  background: transparent;
  color: #fff;
   transform: translateY(-3px);
}


@media only screen and (max-width: 767px){
   .map-contact iframe{
  height: 300px;
} 
.cta-title {
  font-size: 1.2rem;
}
.cta-subtitle {
  font-size: .9rem;
}
}