/* Custom CSS */

/* Example: Override main section background color. */
/* body .jupiterx-main {
    background-color: gray;
} */
img {
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

.text-opacity-80 p{
    opacity: 0.8;
    transition: opacity 0.6s ease;
} 

.color-primary{
  color: var(--e-global-color-primary);
}

/* Header fixed hide/show */
/* Navbar scroll hide/show */
body header .header-fixed {
    transition: all 0.35s ease;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.header-fixed.header-scrolled {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px); 
}
.header-fixed::before{
    content:"";
    display: block;
    width:100%;
    height:100%;
    background-color: #fff !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}
.header-fixed.page-scroll-up::before{
	background-color: #ffffff !important;
	opacity: 1;
    visibility: visible;
    transition: all 0.35s ease;
}
.header-fixed .e-con-inner, .header-fixed{
	transition: all .35s;
}
@media (min-width: 1025px) {
  .header-fixed.page-scroll-up  .e-con-inner, .header-fixed.header-scrolled  .e-con-inner{
      padding: 24px 0px;
  }
}
/*Transparent header*/
.header-fixed.page-scroll-up .sdgi-logo-w, .header-fixed.header-scrolled .sdgi-logo-w, .header-fixed.page-scroll-up .search-w, .header-fixed.header-scrolled .search-w{
        display: none;
}
.header-fixed.page-scroll-up .sdgi-logo-d, .header-fixed.header-scrolled .sdgi-logo-d, .header-fixed.page-scroll-up .search-d, .header-fixed.header-scrolled .search-d{
        display: block;
}
@media (max-width: 1024px) {
    .header-fixed{
        position: relative;
    }
}
/* end header */

/* Hide scrollbar for Chrome, Safari and Opera */
.sdgi-mobile-nav .ue_menu .uc-list-menu::-webkit-scrollbar {
  display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.sdgi-mobile-nav .ue_menu .uc-list-menu {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* Contact Form */
.form-style-1 .gfield .ginput_container input{
    background-color: transparent;
    color: #fff;
    font-size: 16px;
    font-family: "Arial", sans-serif;
    font-weight: 400;
    line-height: 22.4;
    height: 53px;
    padding: 16px 24px;
    min-width: 311px;
    border: 1px solid #fff;
    border-radius: 100px;
}

.form-style-1 .gform_fields {
    display: flex !important;
}
.form-style-1 .gfield input[type=submit]{
    background-color: var(--e-global-color-accent) !important;
    font-family: "Aeonik", Sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 14px !important;
    color: var(--e-global-color-text) !important;
    border-style: solid !important;
    border-width: 1px 1px 1px 1px !important;
    border-color: var(--e-global-color-accent) !important;
    border-radius: 100px 100px 100px 100px !important;
    padding: 16px 57px 16px 27px !important;
    height: 53px !important;
    /* min-width: 176px !important; */
    background-image: url("/wp-content/uploads/2026/01/arrow-right-dark.svg") !important;
    background-repeat: no-repeat !important;
    background-position: right 27px center !important;
    background-size: 18px !important;
    text-align: left !important;
}
.form-style-1 .gfield input[type=submit]:hover{
    border-color: #000 !important;
    background-color: #fff !important;
}

@media (max-width: 1024px) {
    .form-style-1 .gfield input[type=submit]{
        padding: 10px 54px 10px 24px !important;
        height: 44px !important;
        /* min-width: 163px !important; */
        background-position: right 24px center !important;
        font-size: 14px !important;
    }
    .form-style-1 .gfield .ginput_container input{
        height: 44px !important;
        font-size: 14px !important;
    }
}
@media (max-width: 767px) {
     .form-style-1 .gform_fields {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* CTA */
.cta-accent .uc_more_btn:after, .cta-accent .elementor-button:after{
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 18px;
  height: 18px;
  background: url("/wp-content/uploads/2026/01/arrow-right-dark.svg") no-repeat center / contain;
  transform: translateY(-50%);
}
.cta-accent .uc_more_btn, .cta-accent .elementor-button{
    position:relative;
    height:56px;
    display: flex;
    align-items: center;
}
@media (max-width: 1024px) {
    .cta-accent .uc_more_btn, .cta-accent .elementor-button{
      position:relative;
      height:44px;
    }
}
.uc-search-filter__input{
  outline: none !important;
}
.uc-search-filter__input:focus{
  outline: none !important;
}

/* Form Style 2 - Enquiry */
.form-style-2 .gform_wrapper {
  --fs2-bg: rgb(156 16 6 / 5%) !important;            /* light pink input bg */
  --fs2-text: var(--e-global-color-684f466);          /* label text */
  --fs2-muted: rgba(31,42,46,.55);
  --fs2-danger: var(--e-global-color-primary);        /* required asterisk */
  --fs2-radius: 20px;         /* pill */
  --fs2-ctrl-h: 60px;          /* input height */
}

/* Remove Gravity default field spacing inconsistencies */
.form-style-2 .gform_wrapper .gform_fields {
  row-gap: 20px;
  display: flex;
  flex-wrap: wrap;
}
.form-style-2 .gform_wrapper .gfield{
    width: 100%;
}

/* Labels like screenshot */
.form-style-2 .gform_wrapper .gfield_label,
.form-style-2 .gform_wrapper .gform-field-label {
  font-weight: 700;
  color: var(--fs2-text);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
  gap: 2px;
  font-size: 18px;
}

/* Required asterisk red */
.form-style-2 .gform_wrapper .gfield_required {
  color: var(--fs2-danger);
}

/* Inputs / selects / textarea base */
.form-style-2 .gform_wrapper input[type="text"],
.form-style-2 .gform_wrapper input[type="email"],
.form-style-2 .gform_wrapper input[type="tel"],
.form-style-2 .gform_wrapper select,
.form-style-2 .gform_wrapper textarea {
  background: var(--fs2-bg) !important;
  border: 0 !important;
  border-radius: var(--fs2-radius) !important;
  height: var(--fs2-ctrl-h);
  padding: 0 22px !important;
  font-size: 16px;
  color: var(--fs2-text);
  box-shadow: none !important;
  outline: none !important;
}

/* Textarea like screenshot (taller, rounded) */
.form-style-2 .gform_wrapper textarea, .form-style-2 .gform_wrapper .ginput_container_textarea textarea {
  height: 150px !important;
  min-height: 150px !important;
  padding: 18px 22px !important;
  border-radius: 28px !important;
  resize: none;
}

/* Placeholder */
.form-style-2 .gform_wrapper ::placeholder {
  color: var(--fs2-muted);
}

/* Select dropdown caret (match red caret feel) */
.form-style-2 .gform_wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px !important;
  background-image: url("/wp-content/uploads/2026/01/input-arrow.svg") !important;
  background-repeat: no-repeat !important;
  background-position: right 21px center !important;
  background-size: 13px !important;
}

/* Focus state subtle */
.form-style-2 .gform_wrapper input:focus,
.form-style-2 .gform_wrapper select:focus,
.form-style-2 .gform_wrapper textarea:focus {
  /* box-shadow: 0 0 0 3px rgba(255, 210, 210, 0.9) !important; */
}

/* Validation message styling (keep clean) */
.form-style-2 .gform_wrapper .validation_message,
.form-style-2 .gform_wrapper .gfield_validation_message {
  background: transparent !important;
  border: 0 !important;
  padding: 6px 0 0 !important;
  color: #c62828 !important;
  font-size: 13px;
}

.form-style-2 .phone-number .gfield_label{
  display: none;
}

.form-style-2 .phone-number {
    display: flex;
    align-items: flex-end;
    width: calc(31% - 26px) !important;
}

.form-style-2 .phone-country{
  width: 19% !important;
}

.form-style-2 .email-field{
  width: calc(50% - 8px) !important;
}

.form-style-2 .phone-country .gfield_label,
.form-style-2 .phone-country .gform-field-label{
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
}

/* Button */
.form-style-2 .gform_footer input[type=submit]{
    background-color: var(--e-global-color-accent) !important;
    font-family: "Aeonik", Sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 14px !important;
    color: var(--e-global-color-text) !important;
    border-style: solid !important;
    border-width: 1px 1px 1px 1px !important;
    border-color: var(--e-global-color-accent) !important;
    border-radius: 100px 100px 100px 100px !important;
    padding: 16px 57px 16px 27px !important;
    height: 53px !important;
    /* min-width: 176px !important; */
    background-image: url("/wp-content/uploads/2026/01/arrow-right-dark.svg") !important;
    background-repeat: no-repeat !important;
    background-position: right 27px center !important;
    background-size: 18px !important;
    text-align: left !important;
}
.form-style-2 .gform_footer input[type=submit]:hover{
    border-color: #000 !important;
    background-color: #fff !important;
}

.form-style-2 .gform_wrapper select{
  height: var(--fs2-ctrl-h) !important;
  line-height: var(--fs2-ctrl-h) !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  display: block !important;
  box-sizing: border-box !important;
}

.form-style-2 .gform_wrapper select{
  height: var(--fs2-ctrl-h) !important;
  line-height: var(--fs2-ctrl-h) !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  display: block !important;
  box-sizing: border-box !important;
}

.form-style-2 .gform_required_legend{
  display: none;
}

/* iOS/Safari extra nudge */
@supports (-webkit-touch-callout: none){
  .form-style-2 .gform_wrapper select{
    line-height: normal !important;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
}

/* iOS/Safari extra nudge */
@supports (-webkit-touch-callout: none){
  .form-style-2 .gform_wrapper select{
    line-height: normal !important;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
}

@media (max-width: 1024px) {
    .form-style-2 .gform_footer input[type=submit]{
        padding: 10px 54px 10px 24px !important;
        height: 44px !important;
        /* min-width: 163px !important; */
        background-position: right 24px center !important;
        font-size: 14px !important;
    }
    /* Labels like screenshot */
    .form-style-2 .gform_wrapper .gfield_label,
    .form-style-2 .gform_wrapper .gform-field-label {
      font-size: 16px;
    }
    /* Remove Gravity default field spacing inconsistencies */
    .form-style-2 .gform_wrapper .gform_fields {
      row-gap: 15px;
    }
    .form-style-2 .ginput_container{
      width: 100%;
    }
    .form-style-2 .gform_wrapper input[type="text"], .form-style-2 .gform_wrapper input[type="email"], .form-style-2 .gform_wrapper input[type="tel"], .form-style-2 .gform_wrapper select, .form-style-2 .gform_wrapper textarea{
      font-size: 14px;
    }
    .form-style-2 .gform_wrapper {
      --fs2-ctrl-h: 44px;          /* input height */
    }
}
@media (max-width: 767px) {
  .form-style-2 .phone-number {
      width: calc(60% - 10px) !important;
      margin-left: 10px;
  }

  .form-style-2 .phone-country{
    width: 40% !important;
  }

  .form-style-2 .email-field{
    width: 100% !important;
  }
  .form-style-2 .gform_wrapper .gform_fields {
    column-gap: 0px;
  }
}

/* Content Switcher section */
.sdg-switcher .sdg-switcher-panel{ display:none !important; }
.sdg-switcher .sdg-switcher-panel.is-active{ display:flex !important; }
.sdg-switcher .elementor-widget-html{
    height: 100%;
    z-index: -1;
}
.sdg-switcher .sdg-switcher-bg{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}
.sdg-switcher .sdg-switcher-overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
