/* Common Call Section Styles */
.contact-call-section {
  background: linear-gradient(135deg, #D81324 0%, #B31020 100%);
  color: white;
  padding: 40px 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(216, 19, 36, 0.3);
  margin: 60px auto 40px auto;
  max-width: 800px;
  position: relative;
  overflow: hidden;
}

.contact-call-section h2 {
  position: relative;
  font-size: 1.3rem;
  margin: 0 0 20px 0;
  font-weight: 600;
  color: white;
}

.contact-phone {
  position: relative;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  display: inline-block;
  padding: 12px 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
}

.contact-phone:hover {
  background: rgba(255, 255, 255, 0.25);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-call-section {
    padding: 30px 25px;
    margin: 40px 20px;
    border-radius: 15px;
  }

  .contact-call-section h2 {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  .contact-phone {
    font-size: 1.4rem;
    padding: 10px 30px;
  }
}

@media (max-width: 480px) {
  .contact-call-section {
    padding: 25px 20px;
  }

  .contact-call-section h2 {
    font-size: 1rem;
  }

  .contact-phone {
    font-size: 1.2rem;
    padding: 8px 25px;
  }
}
