/*
Theme Name: OceanWP Child Theme
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme. Sample child theme.
Author: OceanWP
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */
.htopcls {
	background-color: #5e3369;
}
.home .htopcls {
	background-color: transparent;
}
#footer-callout-wrap {
    background-color: transparent;
    border-top: 0;
}
body {
    overflow-x:hidden;
}
a:focus {
    outline:none !important;
}
#site-header {
    background-color: transparent !important;
}
.top-bar-right {
    float: none;
}
#top-bar-wrap {
      background-color: transparent !important;
    border-bottom: none !important;
}
.top-bar-left {
    float: none !important;
}
#topbar-template {
    display: unset;
}
/* ===== FORM WRAPPER ===== */
.custom-form {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
form input[type="text"] , form input[type="email"] , form input[type="tel"]{
	border: 1px solid #000;
}
/* ===== INPUT FIELDS ===== */
.custom-form input,
.custom-form select,
.custom-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid #000;
  color: #000;
  transition: all 0.3s ease;
}

/* Placeholder */
.custom-form input::placeholder,
.custom-form textarea::placeholder {
  color: #000;
}

/* ===== FOCUS EFFECT ===== */
.custom-form input:focus,
.custom-form select:focus,
.custom-form textarea:focus {
  border-color: #000;
  box-shadow: 0 0 0 2px rgba(34,197,94,0.2);
  outline: none;
}

/* ===== FULL WIDTH FIELDS ===== */
.custom-form select[name="your-service"],
.custom-form textarea {
  grid-column: 1 / -1;
}

/* ===== TEXTAREA ===== */
.custom-form textarea {
  min-height: 130px;
  resize: none;
}

/* ===== SUBMIT BUTTON ===== */
.custom-form input[type="submit"] {
  grid-column: 1 / -1;
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Hover */
.custom-form input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(34,197,94,0.4);
}

/* ===== LABEL NOTE ===== */
.custom-form .form-note {
  grid-column: 1 / -1;
  font-size: 12px;
  color: #94a3b8;
}
.contact-info {
  display: flex;
  gap: 25px;
  list-style: none;
  padding: 0;
  margin: 0;
 justify-content: end;
}
.contact-info li a {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  font-size: 16px;
}
/* Icon style */
.contact-info i {
  width: 38px;
  height: 38px;
  display: flex;
  color: #fff;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
}
/* Hover */
.contact-info li a:hover {
  color: #EA862E;
}
@media screen and (max-width: 600px) {
  .contact-info li a {
    font-size: 13px;
}
}