/* ===================================================
   Footer Contact Cards Styles
   =================================================== */

.contact-cards-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 40px auto 0;
  padding: 0 20px;
}

@media only screen and (min-width: 768px) {
  .contact-cards-container {
    flex-direction: row;
    gap: 30px;
    padding: 0;
  }
}

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@media only screen and (min-width: 768px) {
  .contact-card {
    flex: 1;
    padding: 40px 30px;
  }
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: #93C3AD;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-card h3 {
  color: #93C3AD;
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media only screen and (min-width: 768px) {
  .contact-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

.contact-card p {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Sen", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 25px 0;
  font-weight: 300;
}

@media only screen and (min-width: 768px) {
  .contact-card p {
    font-size: 17px;
    margin-bottom: 30px;
  }
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-family: "Sen", sans-serif;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-width: 140px;
}

@media only screen and (min-width: 768px) {
  .contact-btn {
    padding: 18px 35px;
    font-size: 17px;
    min-width: 160px;
  }
}

.contact-btn .btn-icon {
  font-size: 18px;
}

@media only screen and (min-width: 768px) {
  .contact-btn .btn-icon {
    font-size: 20px;
  }
}

/* Call button styles */
.call-btn {
  background: #93C3AD;
  color: white;
}

.call-btn:hover {
  background: #4B5F52;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(147, 195, 173, 0.4);
}

/* Text button styles */
.text-btn {
  background: #4B5F52;
  color: white;
}

.text-btn:hover {
  background: #93C3AD;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(75, 95, 82, 0.4);
}

/* Website attribution */
.website-attribution {
  margin-top: 40px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-block;
  width: auto;
}

.website-attribution p {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Sen", sans-serif;
  font-size: 14px;
  font-style: italic;
  margin: 0;
  text-align: center;
  line-height: 1.4;
}

@media only screen and (min-width: 768px) {
  .website-attribution p {
    font-size: 15px;
  }
}

/* Hover effects for accessibility */
@media (hover: hover) {
  .contact-card {
    cursor: pointer;
  }
  
  .contact-btn:focus {
    outline: 2px solid #93C3AD;
    outline-offset: 2px;
  }
}

/* Ensure proper spacing in footer */
.footer-contact-form .headline {
  margin-bottom: 0;
}

/* Mobile responsiveness improvements */
@media only screen and (max-width: 480px) {
  .contact-cards-container {
    padding: 0 10px;
  }
  
  .contact-card {
    padding: 25px 20px;
  }
  
  .contact-card h3 {
    font-size: 22px;
  }
  
  .contact-card p {
    font-size: 15px;
  }
  
  .contact-btn {
    padding: 12px 25px;
    font-size: 15px;
    min-width: 120px;
  }
}

/* Desktop Phone Display Styles */
.desktop-phone-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: default;
}

@media only screen and (min-width: 768px) {
  .desktop-phone-display {
    padding: 18px 35px;
  }
}

.desktop-phone-display .phone-icon {
  font-size: 18px;
  opacity: 0.9;
}

@media only screen and (min-width: 768px) {
  .desktop-phone-display .phone-icon {
    font-size: 20px;
  }
}

.desktop-phone-display .phone-number {
  color: white;
  font-family: "Sen", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
}

@media only screen and (min-width: 768px) {
  .desktop-phone-display .phone-number {
    font-size: 18px;
  }
}

/* Call card specific desktop styling */
.call-card .desktop-phone-display {
  background: none;
  border-color: transparent;
}

/* Text card specific desktop styling */
.text-card .desktop-phone-display {
  background: none;
  border-color: transparent;
}