.elementor-20 .elementor-element.elementor-element-7d13dd7{--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;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-20 .elementor-element.elementor-element-c295805{width:100%;max-width:100%;column-gap:53px;text-align:start;}.elementor-20 .elementor-element.elementor-element-c295805 p{margin-block-end:7px;}:root{--page-title-display:none;}/* Start custom CSS for text-editor, class: .elementor-element-c295805 */:root {
  --royal-blue: #134686;
  --royal-gold: #FEB21A;
  --text-dark: #333;
  --text-light: #555;
  --bg-color: #fafafa;
  --card-bg: #ffffff;
}

.rh-contact-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #fafafa, #f2f5f9);
  font-family: 'Montserrat', sans-serif;
}

.rh-container {
  max-width: 1200px;
  margin: auto;
}

.rh-header-center {
  text-align: center;
  margin-bottom: 60px;
}

.rh-subtitle {
  color: var(--royal-gold);
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 14px;
  text-transform: uppercase;
}

.rh-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--royal-blue);
  margin: 10px 0 20px;
}

.rh-intro-p {
  max-width: 780px;
  margin: auto;
  font-size: 18px;
  color: var(--text-light);
}

.rh-contact-wrapper {
  display: flex;
  gap: 40px;
}

.rh-contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rh-contact-card {
  background: var(--card-bg);
  padding: 25px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  transition: all .4s ease;
  cursor: pointer;
}

.rh-contact-card:hover {
  transform: translateX(12px);
  box-shadow: 0 20px 50px rgba(19,70,134,.15);
}

.rh-icon-circle-small {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(19,70,134,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: .4s;
}

.rh-contact-card:hover .rh-icon-circle-small {
  background: var(--royal-blue);
  color: var(--royal-gold);
}

.rh-contact-text h3 {
  margin: 0 0 5px;
  color: var(--royal-blue);
  font-size: 18px;
}

.rh-contact-text a {
  color: var(--text-light);
  text-decoration: none;
}

.rh-form-container {
  flex: 1.5;
  background: var(--card-bg);
  padding: 45px;
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
  border-top: 6px solid var(--royal-gold);
}

.rh-form-container h3 {
  font-size: 26px;
  color: var(--royal-blue);
  margin-bottom: 25px;
}

input, textarea {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  transition: .3s;
}

input:focus, textarea:focus {
  border-color: var(--royal-blue);
  box-shadow: 0 0 0 3px rgba(19,70,134,.15);
  outline: none;
}

input[type="submit"] {
  background: var(--royal-blue);
  color: #fff;
  padding: 15px 40px;
  border-radius: 8px;
  border: none;
  font-weight: 700;
  letter-spacing: 1px;
  transition: .3s;
}

input[type="submit"]:hover {
  background: #0d2b52;
  transform: translateY(-2px);
}

@media(max-width:900px){
  .rh-contact-wrapper{flex-direction:column}
  .rh-title{font-size:30px}
}

.rh-success-message {
  display: none;
  text-align: center;
  padding: 40px 30px;
  animation: fadeScale .6s ease forwards;
}

.rh-success-message h4 {
  color: var(--royal-blue);
  font-size: 24px;
  margin: 20px 0 10px;
  font-weight: 700;
}

.rh-success-message p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.6;
}

.rh-checkmark {
  width: 80px;
  height: 80px;
  margin: auto;
  border-radius: 50%;
  background: var(--royal-blue);
  color: var(--royal-gold);
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: popCheck .6s ease forwards;
}

@keyframes popCheck {
  0% { transform: scale(0); }
  80% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

@keyframes fadeScale {
  from {
    opacity: 0;
    transform: scale(.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}/* End custom CSS */