.elementor-87 .elementor-element.elementor-element-0a661dc{--display:flex;}/* Start custom CSS for html, class: .elementor-element-313a643 *//* =========================
   CONTACT PAGE
========================= */

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f9fbff;
  color: #222;
}

/* Hero */
.contact-hero {
  background: linear-gradient(135deg, #00BEFA, #0062EB);
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

.contact-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 10px;
}

.contact-hero p {
  font-size: 1.1rem;
  opacity: .9;
}

/* Container */
.contact-container {
  max-width: 1000px;
  margin: auto;
  padding: 60px 20px;
}

/* Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Card */
.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 98, 235, 0.08);
  transition: all .3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
}

/* Icon */
.contact-card .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00BEFA, #0062EB);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.6rem;
  transition: all .3s ease;
}

.contact-card:hover .icon {
  color: #fff;
}

/* Text */
.contact-card h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.contact-card a {
  text-decoration: none;
  color: #0062EB;
  font-weight: 600;
  transition: all .3s ease;
}

.contact-card a:hover {
  color: #00BEFA;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 30px;
  }
}/* End custom CSS */