/* ===== PRICING TABLE (WPForms pricing-card) ===== */

/* General layout */
.wpforms-container .pricing-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  padding: 40px 25px;
  text-align: center;
  margin: 10px;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 360px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Hover effect */
.wpforms-container .pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Headings */
.wpforms-container .pricing-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Price styling */
.wpforms-container .pricing-card .price {
  font-size: 36px;
  font-weight: 800;
  color: #000;
  margin-bottom: 10px;
}

.wpforms-container .pricing-card .price small {
  font-size: 20px;
  font-weight: 600;
  color: #555;
}

/* Description text */
.wpforms-container .pricing-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* Feature list */
.wpforms-container .pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  min-height: 280px; /* keeps columns equal visually */
}

.wpforms-container .pricing-card ul li {
  padding: 10px 0;
  border-bottom: 1px solid #e5e5e5;
  font-weight: 500;
}

/* Button */
.wpforms-container .trial-btn {
  background-color: #007bff;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  padding: 12px 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.wpforms-container .trial-btn:hover {
  background-color: #0056b3;
}

/* Trial text */
.wpforms-container .trial-text {
  font-size: 14px;
  color: #555;
  margin-top: 8px;
}

/* Highlight middle plan */
.wpforms-container .pricing-card.popular {
  background-color: #0b1d3a;
  color: #fff;
  position: relative;
}

.wpforms-container .pricing-card.popular h3,
.wpforms-container .pricing-card.popular .price,
.wpforms-container .pricing-card.popular ul li,
.wpforms-container .pricing-card.popular p {
  color: #fff;
}

.wpforms-container .pricing-card.popular .trial-btn {
  background-color: #fff;
  color: #0b1d3a;
}

.wpforms-container .pricing-card.popular .trial-btn:hover {
  background-color: #e5e5e5;
}

/* Layout spacing for pricing columns */
.wpforms-field-layout {
  display: flex;
  justify-content: center;
  align-items: stretch; /* equal height columns */
  gap: 40px;
}

/* Ribbon on popular plan */
.ribbon {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #4db8ff;
  color: #0b1d3a;
  font-weight: 700;
  font-size: 14px;
  padding: 6px 24px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  z-index: 10;
}

/* Hide page title if needed */
.page-title {
  display: none !important;
}


/* ===== FEATURES FORM (WPForms features-form) ===== */

.features-form {
  max-width: 1200px;
  margin: 60px auto;
  background: #ffffff;
  padding: 60px 80px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.features-form h2,
.features-form h3 {
  text-align: center;
  font-weight: 700;
  color: #222;
}

.features-form label {
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
  display: block;
}

.features-form .wpforms-field {
  margin-bottom: 28px;
}

/* Name field side-by-side */
.features-form .wpforms-field-name .wpforms-field-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.features-form .wpforms-field-name .wpforms-field-row-block {
  flex: 1;
  min-width: 0;
}

/* Inputs */
.features-form input[type="text"],
.features-form input[type="email"],
.features-form select,
.features-form textarea {
  width: 100%;
  box-sizing: border-box;
  font-size: 16px;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

/* Email full width */
.features-form .wpforms-field-email input {
  width: 100% !important;
}

/* Submit button */
.features-form .wpforms-submit-container {
  text-align: center;
  margin-top: 30px;
}

.features-form button.wpforms-submit {
  background-color: #0073e6;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  padding: 14px 28px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 16px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0,115,230,0.25);
}

.features-form button.wpforms-submit:hover {
  background-color: #005bb5;
}

/* Responsive features form */
@media (max-width: 1024px) {
  .features-form {
    max-width: 95%;
    padding: 40px 30px;
  }

  .features-form .wpforms-field-name .wpforms-field-row {
    flex-direction: column;
    gap: 20px;
  }
}


/* ===== FEATURE BOXES (Elementor) ===== */

.elementor-container.feature-box,
.elementor-element.feature-box {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  padding: 60px 80px;
  margin: 60px auto;
  max-width: 1200px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.elementor-container.feature-box:hover,
.elementor-element.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Inner rows stay clean */
.elementor-container.feature-box .elementor-container,
.elementor-element.feature-box .elementor-container {
  background: none;
  box-shadow: none;
  border-radius: 0;
}


/* ===== GLOBAL BACKGROUND ===== */

body {
  background: linear-gradient(180deg, #d9f0ff 0%, #ffffff 100%);
  background-attachment: fixed;
}


/* ===== CONTACT PAGE LAYOUT (Elementor section) ===== */

.elementor-section.contact-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
  background: linear-gradient(180deg, #d9f0ff 0%, #ffffff 100%);
}


/* ===== CONTACT FORM (WPForms on Contact page) ===== */
/* Make sure WPForms widget on Contact page has CSS ID: contact-wpform */

#contact-wpform .wpforms-container {
  max-width: 700px;
  margin: 40px auto;
  padding: 30px;
}

#contact-wpform .wpforms-field {
  width: 100%;
  margin-bottom: 20px;
}

/* Name fields side-by-side */
#contact-wpform .wpforms-field-name .wpforms-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
}

#contact-wpform .wpforms-field-name .wpforms-field-row-block {
  width: 100%;
}

/* Inputs */
#contact-wpform input,
#contact-wpform textarea {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/* Submit button */
#contact-wpform .wpforms-submit-container {
  text-align: center;
}

#contact-wpform .wpforms-submit {
  background: #007bff;
  color: #fff;
  padding: 12px 30px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}
.hide-submit .wpforms-submit-container {
  display: none !important;
}