.hcel-contact {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hcel-contact::after {
  background: linear-gradient(
    159.889deg,
    rgba(89, 25, 200, 3%) 43%,
    rgba(62, 80, 200, 15%) 62%,
    rgba(25, 157, 200, 10%) 88%
  );
  content: '';
  opacity: 0.4;
  filter: blur(100px);
  border-radius: 50%;
  pointer-events: none;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  position: absolute;
  z-index: -1;
}

.hcel-contact__inner {
  display: flex;
  justify-content: space-between;
}

/* Simplified left side contact info styling */
.hcel-contact__info {
  padding: 50px 60px 50px 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: 480px;
  position: relative;
  z-index: 1;
}

.hcel-contact__info::after {
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  width: 50vw;
  height: 100%;
  background-color: var(--light-color);
  z-index: -1;
}

.hcel-contact__info-title {
  font-size: 30px;
  font-weight: 500;
  color: var(--dark-color);
  margin: 0;
}

.hcel-contact__list {
  margin-top: 60px;
}

.hcel-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 48px;
}

.hcel-contact__item:last-child {
  margin: 0;
}

.hcel-contact__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
}

.hcel-contact__text {
  flex: 1;
}

.hcel-contact__label {
  font-size: 12px;
  color: var(--body-text-color);
  text-transform: uppercase;
  margin: 0 0 8px;
  font-weight: 500;
}

.hcel-contact__para,
.hcel-contact__link {
  font-size: 16px;
  color: var(--dark-color);
  text-decoration: none;
  display: block;
  margin: 0 0 12px;
  line-height: 1.3;
  font-weight: 500;
  transition: 0.3s;
}

.hcel-contact__link:hover {
  color: var(--secondary-color);
}

.hcel-contact__para {
  line-height: 1.6;
}

.hcel-contact__para:last-child,
.hcel-contact__link:last-child {
  margin: 0;
}

.hcel-contact__social-wrap {
  margin-top: 60px;
}
.hcel-contact__social-label {
  font-size: 18px;
  color: var(--dark-color);
  font-weight: 500;
  margin: 0 0 18px;
}

.hcel-contact__social {
  display: flex;
  gap: 24px;
}

.hcel-contact__social-link {
  color: #969494;
  border-radius: 100px;
  transition: 0.3s;
  height: 25px;
  width: 25px;
}

.hcel-contact__social-link:hover {
  transform: translateY(-2px);
}

/* Simplified right side form styling */
.hcel-contact__form-wrapper {
  padding: 50px 0 50px 70px;
  flex: 1;
}
.hcel-contact__title {
  font-size: 44px;
  font-weight: 500;
  color: var(--dark-color);
  line-height: 1.2;
  margin: 0;
  font-family: var(--global-font);
}

.hcel-contact__title span {
  font-weight: 400;
}

.hcel-contact__form {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hcel-contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.hcel-contact__form-group {
  display: flex;
  flex-direction: column;
}

.hcel-contact__form-label {
  font-size: 16px;
  color: var(--dark-color);
  font-weight: 500;
  display: block;
  margin-bottom: 16px;
}

.hcel-contact__form-input,
.hcel-contact__form-select,
.hcel-contact__form-textarea {
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 100px;
  font-size: 14px;
  background: white;
  font-family: var(--global-font);
  outline: none;
}

.hcel-contact__form-select {
  appearance: none;
  padding-right: 40px;
  width: 100%;
}

.hcel-contact__form-select-wrap {
  position: relative;
}

/* .hcel-contact__form-select-wrap::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  border: solid #666;
  border-width: 0 0 1px 1px;
  pointer-events: none;
  transform: translateY(-60%) rotate(-45deg);
} */

.hcel-contact__form-textarea {
  border-radius: 16px;
}

.hcel-contact__form-input::placeholder,
.hcel-contact__form-textarea::placeholder {
  color: #999;
}

.hcel-contact__form-textarea {
  height: 178px;
  resize: vertical;
  resize: none;
}

.hcel-contact__form-submit {
  margin-top: 6px;
  background: var(--primary-gradient);
  color: white;
  border: none;
  padding: 16px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.hcel-contact__form-submit .hcel-fancy-btn__bg {
  position: absolute;
  inset: 0;
  background: var(--primary-gradient);
  border-radius: 100px;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  transition: 0.3s;
}

.hcel-contact__form-submit .hcel-fancy-btn__bg::after {
  content: '';
  position: absolute;
  height: 5px;
  width: 5px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) scale(0);
  background: var(--light-color);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.hcel-contact__form-submit:hover .hcel-fancy-btn__bg::after {
  transform: translateY(-50%) scale(120);
}

.hcel-contact__form-submit .hcel-fancy-icon-wrap {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--light-color);
  transition: transform 0.3s ease;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hcel-contact__form-submit .hcel-fancy-icon {
  transition:
    transform 0.3s cubic-bezier(0.77, 0, 0.175, 1),
    opacity 0.3s cubic-bezier(0.77, 0, 0.175, 1),
    filter 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform, opacity, filter;
  height: 20px;
  width: 20px;
}

.hcel-contact__form-submit:hover .hcel-fancy-icon--default {
  transform: translate(100%, -100%);
  opacity: 0;
}

.hcel-contact__form-submit .hcel-fancy-icon--hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-150%, 50%);
  opacity: 0;
}

.hcel-contact__form-submit:hover .hcel-fancy-icon--hover {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.hcel-contact__form-submit .hcel-gradient-border {
  position: absolute;
  inset: -1px;
  z-index: 1;
  overflow: hidden;
  border-radius: 100px;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: exclude;
  mask-composite: exclude;
  padding: 1px;
  pointer-events: none;
}

.hcel-contact__form-submit .hcel-gradient-border::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 300%;
  width: 200%;
  overflow: hidden;
  z-index: 1;
  background: conic-gradient(from 90deg, transparent 0%, white 7%, transparent 15%, transparent 100%);
  animation: rotateGradient 5s linear infinite;
}

/* Staggered Text Effect for Contact Button */
.hcel-contact__form-submit.staggered-text-btn {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hcel-contact__form-submit .staggered-text-container {
  position: relative;
  display: inline-block;
  overflow: hidden;
  z-index: 2;
}

.hcel-contact__form-submit .staggered-text-default,
.hcel-contact__form-submit .staggered-text-hover {
  display: inline-block;
  transition: all 0.1s ease-out;
  white-space: nowrap;
}

.hcel-contact__form-submit .staggered-text-default {
  opacity: 1;
  transform: translateY(0);
}

.hcel-contact__form-submit .staggered-text-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(100%);
}

.hcel-contact__form-submit.staggered-text-btn:hover .staggered-text-hover {
  opacity: 1;
  transform: translateY(0);
}

.hcel-contact__form-submit.staggered-text-btn:hover .staggered-text-default span {
  opacity: 0;
  transform: translateY(-100%);
}

.hcel-contact__form-submit.staggered-text-btn .staggered-text-hover span {
  transform: translateY(100%);
}

.hcel-contact__form-submit.staggered-text-btn:hover .staggered-text-hover span {
  opacity: 1;
  transform: translateY(0);
}

/* Individual letter animations for contact button */
.hcel-contact__form-submit .staggered-text-default span,
.hcel-contact__form-submit .staggered-text-hover span {
  display: inline-block;
  transition: all 0.3s ease-out;
  will-change: transform, opacity;
  transition-delay: 0ms; /* Default delay, will be overridden by jQuery */
}

@keyframes rotateGradient {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Simplified responsive design */
@media (max-width: 1200px) {
  .hcel-contact__info {
    padding: 50px 30px 50px 0;
    max-width: 480px;
  }
  .hcel-contact__list {
    margin-top: 40px;
  }

  .hcel-contact__form-wrapper {
    padding: 50px 0 50px 30px;
  }

  .hcel-contact__form-submit {
    padding: 12px 20px;
  }
}

@media (max-width: 991px) {
  .hcel-contact__inner {
    flex-direction: column-reverse;
    gap: 40px;
    padding: 50px 15px;
  }

  .hcel-contact__info-title {
    font-size: 28px;
  }

  .hcel-contact__item {
    margin-bottom: 20px;
  }

  .hcel-contact__form {
    gap: 16px;
  }

  .hcel-contact__form-label {
    margin-bottom: 8px;
  }

  .hcel-contact__info::after {
    display: none;
  }
  .hcel-contact__info,
  .hcel-contact__form-wrapper {
    padding: 0;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .hcel-contact {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hcel-contact__info-title {
    font-size: 24px;
  }

  .hcel-contact__form-row {
    grid-template-columns: 1fr;
  }

  .hcel-contact__title {
    font-size: 32px;
  }
}

/* Map Section */
.hcel-map {
  position: relative;
}
.hcel-map__iframe {
  width: 100%;
  height: 530px;
  vertical-align: middle;
}

@media (max-width: 1023px) {
  .hcel-map__iframe {
    height: 450px;
  }
}

@media (max-width: 767px) {
  .hcel-map__iframe {
    height: 350px;
  }
}
