:root {
  --primary: #00A1DD;
  --black: #000000;
  --white: #FFFFFF;

  --gray-900: #111111;
  --gray-950: #0D0D0D;
  --gray-700: #333333;
  --gray-500: #777777;
  --gray-300: #C8C8C8;
  --gray-100: #F3F3F3;

  --curious-blue-50: #f0faff;
  --curious-blue-100: #e0f4fe;
  --curious-blue-200: #b9ebfe;
  --curious-blue-300: #7cdcfd;
  --curious-blue-400: #36cbfa;
  --curious-blue-500: #0cb5eb;
  --curious-blue-600: #00a1dd;
  --curious-blue-700: #0174a3;
  --curious-blue-800: #066286;
  --curious-blue-900: #0b516f;
  --curious-blue-950: #07344a;

  --yellow: #FFD57C;
}


html {
  scroll-behavior: smooth;
}

.separator {
  display: none;
}
.rank-math-breadcrumb a::before,
.rank-math-breadcrumb .last::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0px 6px -3px 0px;
  background: url("../assets/images/keyboard_arrow_right\ \(1\).svg") no-repeat
    center;
}
.rank-math-breadcrumb a:first-child:before {
  display: none;
}

/* Hide Joli TOC on frontend */
.single-post #wpj-jtoc {
  display: none !important;
}

.has-fixed-layout {
  width: 100%;
}

.has-fixed-layout thead {
  text-align: left;
}
.wp-block-image.size-large img {
  border-radius: 10px;
  width: 100%;
}
.newsletter-panel {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.12);
}

.faq-content {
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.faq-icon {
  transition: transform 0.3s ease-in-out;
}
.faq-icon.rotate-180 {
  transform: rotate(180deg);
}

@media (max-width: 1025px) {
  .collapsible {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
  }

  .collapsible.open {
    max-height: 1000px;
  }
  .body-no-scroll {
    overflow: hidden;
    height: 100vh;
  }
}

/* ===============================
   CONTACT FORM SECTION
================================ */

.contact-form-section {
  padding: 32px 0;
}

.newsletter-form .wpcf7-form-control.wpcf7-email {
  background: #fff !important;
  border: 1px solid #f9f9fb !important;
  margin-top: 32px !important;
  border-radius: 8px;
  color: #777777;
  font-size: 16px;
  font-weight: 400;
}
.newsletter-form .form-field {
  margin-bottom: 15px !important;
}

.newsletter-form .cf-submit {
  width: 100%;
  padding: 8px 87px !important;
   margin-top: 0px !important;
   background: #00a1dd !important;
}
.newsletter-form .cf-submit:hover{
  transform: none !important;
  border: 1px solid #00a1dd !important;
  background: #fff !important;
  color: #00a1dd !important;
}
.newsletter-form .wpcf7-list-item label {
  display: flex;
  align-items: start;
  gap: 5px;
}
.newsletter-form .wpcf7-list-item label input {
  margin-top: 6px !important;
}
.newsletter-form .wpcf7-list-item label span a{
 color: #00a1dd;
}
.newsletter-tick{
  max-width: 322px;
}

@media (min-width: 1024px) {
  .contact-form-section {
    padding: 48px 0;
  }
}

/* Container */
.contact-form-container {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Card */
.contact-form-card {
  width: 100%;
}

/* ===============================
   FORM GRID
================================ */

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 768px;
  margin: 0 auto;
}

.upper-container {
  display: flex;
  width: 100%;
  gap: 20px;
}
.form-field {
  width: 100%;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .contact-form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field.full-width {
  grid-column: span 2;
}

/* ===============================
   INPUTS
================================ */

.cf-input,
.cf-textarea {
  width: 100%;
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid #6b7280; /* gray-500 */
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  transition: all 0.3s ease;
  letter-spacing: 0.2px;
}

.wpcf7-spinner {
  position: absolute !important;
  left: 50%;
  transform: translateX(calc(-50% + 34px));
  top: 10px;
}

.cf-input::placeholder,
.cf-textarea::placeholder {
  color: #808080;
}

.cf-input:focus,
.cf-textarea:focus {
  outline: none;
  border-color: #00a1dd;
}

/* Textarea */
.cf-textarea {
  resize: vertical;
  padding-top: 16px;
}

/* ===============================
   SUBMIT BUTTON
================================ */

.submit-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
}

.cf-submit {
  background-color: #00a1dd;
  color: #ffffff;
  padding: 10px 87px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.cf-submit:hover {
  background-color: #ffffff;
  color: #00a1dd;
  border-color: #00a1dd;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px) scale(1.02);
}

.wp-embed-aspect-16-9 .wp-block-embed__wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
}

.wp-embed-aspect-16-9 iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border-radius: 10px;
}

/* ===============================
   FORM ERROR MESSAGE
================================ */

.wpcf7 form .wpcf7-response-output {
  display: none;
}

.content-image img {
  width: 100%;
  border-radius: 20px;
}



/* signup newsletter form UI */
.sign-up-newsletter {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin: 0 auto;
}

.newsletter-input {
  width: 100%;
  padding: 12px 24px 12px 50px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border: 2px solid #C8C8C8;
  border-radius: 12px;
   background: rgba(255,255,255,0.8)
  url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C8C8C8'%3E%3Cpath d='M3 6a2 2 0 012-2h14a2 2 0 012 2v1l-9 6-9-6V6zm18 3.2V18a2 2 0 01-2 2H5a2 2 0 01-2-2V9.2l9 6 9-6z'/%3E%3C/svg%3E")
  no-repeat 18px center / 22px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: #111111;
}

.newsletter-btn{
      width: 100%;
    background: #00A1DD;
    color: white;
    font-weight: 700;
    padding: 16px 30px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 22px;
}

.newsletter-consent .wpcf7-list-item{
      margin: 0 0 0 0 !important;
}

.single-article--article iframe{
  max-width: 100% !important;
  width: 100% !important;
  min-width: 1px !important;
}

.woocommerce-checkout .wc-block-components-checkout-return-to-cart-button{
  display: none;
}

@media screen and (min-width: 768px) {
  .woocommerce-checkout .prose{
    max-width: 100% !important;
  }
  .woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main.wc-block-checkout__main{
    width: 65%;
  }
  .woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar.wc-block-checkout__sidebar{
    width: 35%;
  }
}