/* Global styles for fixed header spacing */
body {
    padding-top: 82px!important; /* Height of the fixed header */
}

/* Responsive adjustments if needed */
@media screen and (max-width: 768px) {
    body {
        padding-top: 82px; /* Adjust if header height is different on mobile */
    }
}

/* Layout wrapper */
.wpcf7, .wpcf7 form, .contact-form-custom { height: 100%; }

.contact-page {
  background: white;
  width: 100%;
  height: 100%;
}
.contact-page .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* Left side */
.contact-left {
  flex: 1;
  min-width: 300px;
}

.contact-left h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-left p {
  max-width: 500px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-left img {
  max-width: 100%;
  border-radius: 6px;
  margin-top: 10px;
}

/* Right side */
.contact-right {
  flex: 1;
  min-width: 300px;
}

/* Form layout */
.contact-right .two-col {
  display: flex;
  gap: 24px;
}

.contact-right input,
.contact-right textarea {
  width: 100%;
  border: none!important;
  border-bottom: 1px solid #ccc!important;
  background: transparent;
  padding: 8px 0;
  font-size: 16px;
  font-family: inherit;
  padding-left: 0!important;
  outline: none!important;
}

.contact-right .wpcf7-textarea {
  min-height: 150px;
}


/* Focus state */
.contact-right input:focus,
.contact-right textarea:focus {
  outline: none!important;
  border-bottom: 1px solid #02B9F7!important; /* Your blue color */
}

/* Textarea */
.contact-right textarea {
  resize: none;
  height: 120px;
}

/* Submit button */
.contact-right input[type="submit"] {
  background: none!important;
  border: none!important;
  color: #434C67!important;
  font-family: 'Futura Light';
  width: fit-content!important;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  position: relative; /* Needed for absolute positioning of the dot */
}

.contact-right input[type="submit"]:hover {
  border-bottom-color: #4a90e2;
}

.submit-wrap {
  display: inline-block;
  position: relative;
  width: fit-content
}

.submit-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 112%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: #00b8f4;
  border-radius: 50%;
}
.contact-page .wpcf7-spinner{
  margin-left: 48px;
  top: 7px;
  position: absolute;
}

@media (max-width: 768px) {
  .submit-wrap::after {
    background: url('/path-to-mobile-icon.png') no-repeat center center;
    background-size: contain;
    border-radius: 0;
    width: 16px;
    height: 16px;
  }
}


    /* Only affect desktop */
@media (min-width: 1024px) {
  a.group:hover .dot,
  div.group:hover .dot {
    width: 24px!important;   /* Grow width */
    height: 24px!important;  /* Grow height */
    border-radius: 0!important; /* Optional: remove rounded corners so it becomes the full icon */
  }
}