.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.contact-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.contact-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}
.contact-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  color: var(--clr-blue);
}
.contact-card p {
  font-size: 16px;
  color: var(--txt-secondary);
  margin-bottom: 15px;
}
.contact-card .btn {
  font-size: 16px;
  padding: 10px 20px;
}
/* Contact cards before footer */
.contactf-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.contactf-card:nth-child(1) { background: #e0f7fa; } 
.contactf-card:nth-child(2) { background: #fff3e0; } 
.contactf-card:nth-child(3) { background: #e8f5e9; } 
.contactf-card {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}
.contactf-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.contactf-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}
.contactf-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  color: var(--clr-blue);
}
.contactf-card p {
  font-size: 16px;
  color: var(--txt-secondary);
  margin-bottom: 15px;
}
.contactf-card .btn {
  font-size: 16px;
  padding: 10px 20px;
}
/* FORM SECTION */
.contact-form-container {
    max-width: 950px;
  margin: 0 auto;
  text-align: left;
}
.contact-form-container iframe {
  width: 100%;
  min-height: 950px;
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* ALTERNATIVE CONTACT INFO */
section.alt-contact {
  background-color: var(--bg-light) !important;
}
.alt-contact a {
  color: var(--clr-blue-light);
  font-weight: 600;
}
.alt-contact a:hover {
  color: var(--clr-purple-light);
  text-decoration: underline;
}

.map-container { margin-top: 60px; text-align: center; } 
.map-container iframe { width: 80%; height: 600px; border: 0; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }

/* SCROLL TO FORM BUTTON */
.scroll-btn {
  display: inline-block;
  margin-top: 25px;
}
@media (max-width: 768px) {
  .contact-form-container iframe {
    height: 90vh;  
  }
}
@media (max-width: 992px) {
  .contact-form-container iframe {
    min-height: 1100px; 
  }
}

@media (max-width: 768px) {
  .contact-form-container iframe {
    min-height: 1200px; 
  }
}
@media (max-width: 768px) {
   .map-container iframe {
    height: 300px;
    width:100%;
   }