.elementor-61 .elementor-element.elementor-element-17ca4f2{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for container, class: .elementor-element-17ca4f2 *//* ============================= */
/* 🌟 Elegant Contact Us Page */
/* ============================= */

.contact-us-container {
  font-family: 'Poppins', sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  color: #1A293D;
  line-height: 1.7;
}

/* Hero Section */
.contact-hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000000;
  text-align: center;
}

.contact-hero p {
  font-size: 18px;
  color: #333;
  max-width: 800px;
  margin: 0 auto 50px auto;
  text-align: center;
}

/* Card Style for Sections */
.contact-card {
  background: #f7f7f7;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.contact-card h2 {
  font-size: 24px;
  font-weight: 600;
  color: #ff0000; /* red titles */
  margin-bottom: 12px;
}

.contact-card p, .contact-card li {
  font-size: 16px;
  color: #333;
  margin-bottom: 8px;
}

.contact-card a {
  color: #000000;
  text-decoration: none;
  font-weight: 600;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-card ul {
  list-style-type: disc;
  padding-left: 20px;
}

/* Contact Form Section */
.contact-form-container {
  background: rgba(26, 41, 61, 0.85); /* dark transparent background */
  padding: 40px 30px;
  border-radius: 16px;
  color: #fff;
  text-align: center;
}

.contact-form-container h2 {
  font-size: 28px;
  font-weight: 700;
  color: #ff0000;
  margin-bottom: 15px;
}

.contact-form-container p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #fff;
}

.wpform-shortcode {
  max-width: 500px;
  margin: 0 auto;
}

.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form input[type="tel"],
.wpforms-form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 12px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  font-size: 16px;
}

.wpforms-form button[type="submit"] {
  background: #ff0000;
  color: #fff;
  font-size: 18px;
  padding: 15px 25px;
  border-radius: 12px;
  width: 100%;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.wpforms-form button[type="submit"]:hover {
  background: #cc0000;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 32px;
  }

  .contact-card h2,
  .contact-form-container h2 {
    font-size: 22px;
  }
}/* End custom CSS */