/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* Dropdown container */
.choices {
  font-size: 16px;
  border-bottom: 1px solid #40C2CC;
  /* custom border color */
}

/* Selected item inside input */
.choices__inner {

  padding: 8px;
  border: none;
  /* remove default border */
  min-height: 44px;
  /* adjust height */
}

.choices[data-type*=select-one] .choices__inner::after,
.choices[data-type*=select-one] .choices__inner::before {
  display: none !important;
}




/* Add custom SVG arrow */
.choices__inner {
  position: relative;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 8 5'%3E%3Cpath d='M0 0l4 4 4-4' stroke='%23808080' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  background-size: 8px 5px;
  padding-right: 1.5rem;
  /* space for arrow */
}

/* Dropdown list */
.choices__list--dropdown {
  border-radius: 8px;
  max-height: 200px;
  overflow-y: auto;
}

/* Add left padding to the input text */
.choices__inner {
  padding-left: 12px;
  /* space inside input box */
}

/* If you want more space specifically for typing text */
.choices__input {
  padding-left: 12px !important;
}

/* Placeholder inside the input */
.choices__inner .choices__placeholder {
  color: #808080 !important;
  opacity: 1 !important;
  font-family: "Cairo", sans-serif;
  /* ensures it's not faded */
}


.choices__inner {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  background-color: white !important;
  padding: 0px !important;
  border: 0px !important;
  font-size: 14px;
  min-height: 44px;
  overflow: hidden;
}

.choices[data-type*=select-one] .choices__inner {
  padding-bottom: 0px;
}

/* Each option in dropdown */
.choices__list--dropdown .choices__item {
  padding: 10px;
  cursor: pointer;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted {
  background-color: #40C2CC;
  /* highlight color */

}


.AR_flag {
  position: absolute;
  top: 5%;
}

h2.display,
h1.display,
h3.display,
h4.display,
h5.display,
h6.display {
  font-feature-settings: 'ss01' on, 'ss02' on, 'ss03' on;
  letter-spacing: -0.25rem;
  kerning: auto;
}

body {
  font-family: 'Cairo', sans-serif;
  line-height: 1.6;
  color: #333;
  max-width: 100%;
  overflow-x: hidden;
  /* prevent horizontal scroll */
}

p {
  font-size: 1.3rem;
  font-family: "Cairo", sans-serif;
}

/* Hero Section */
.hero {
  position: relative;
  background: url("./assets/EN_BG_IMG.webp") no-repeat center/cover;
  min-height: 97vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 10% 20px;
  color: #fff;
}

form,
input,
select,
textarea,
button {
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  /* adjust if you want bigger/smaller */
  font-weight: 500;
  /* 400 = normal, 500 = medium, 600/700 = bold */
  color: #333;
}

/* Placeholder styling */
input::placeholder,
textarea::placeholder {
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #808080;
}

/* Select options */
select,
select option {
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  font-weight: 500;
}

/* Submit button */
button,
input[type="submit"] {
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  font-weight: 600;
  /* bolder for emphasis */
  color: #fff;
}

select {
  padding-left: 0;
  /* remove extra space */
  margin-left: 0;
  /* ensure no margin */
  text-indent: 0;
  /* reset inner offset */
  width: 100%;
  /* keep full width */
  box-sizing: border-box;
}




@media screen and (max-width: 1300px) {}


.hero-logo img {
  margin-top: 30px;
  max-width: 34%;
}

.hero h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 3rem;
  padding: 20px 0 0 0;
}

/* Intro */
.intro {
  max-width: 1440px;
  margin: 70px auto;
  padding: 0 100px;
  font-family: 'Cairo', sans-serif;
  line-height: 1.8;
  color: #666;
  text-align: left;
}

.intro h2 {
  color: #40C2CC;
  font-size: 30px;
  font-weight: 700;
}

.intro .subheading {
  color: #40C2CC;
  font-size: 24px;
  margin: 0 0 25px 0;
  line-height: 2rem;
}

.intro .highlight {
  color: #555;
  font-size: 22px;
  font-weight: 700;
}

.intro .highlight .normal {
  font-weight: 400;
  color: #666;
}

.intro .highlight .bold {
  font-weight: 700;
}

.intro .note {
  color: #808080;
  font-size: 22px;
  margin-top: 25px;
}

/* Steps */
.steps-inner {
  padding: 0px 10% 20px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: flex-start;
}

.steps h2 {
  color: #40C2CC;
  font-size: 130px;
  font-family: 'Bodoni Moda', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 23px;
}

.step1,
.step2,
.step3 {
  gap: 50px;
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.step1,
.step2,
.step3 {
  display: flex;
  align-items: center;
  color: #808080;
}



.steps {
  list-style: none;
  /* remove browser default numbers */
  counter-reset: step;
  /* custom counter */
  padding-left: 0;
  /* no default padding */
}


.steps li {
  font-family: 'Cairo', sans-serif;
  counter-increment: step;
  margin-bottom: 12px;
  padding-left: 24px;
  /* space for number */
  text-indent: -16px;
  /* aligns wrapped lines with text */
}

.steps li::before {
  content: counter(step) ") ";
  font-weight: bold;
}

option {
  text-indent: -20px;
}




.step1 h3,
.step2 h3,
.step3 h3 {
  font-size: 120px;
  color: #40C2CC;
  font-family: 'Bodoni Moda', serif;
  font-weight: 700;
}

.step p {
  font-size: 31px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Wishlist Section */
.wishlist-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 130px;
  align-items: flex-start;
  padding: 70px 10% 100px;
}

.wishlist-left h2 {
  font-size: 130px;
  font-weight: bold;
  color: #40C2CC;
  line-height: 1.1;
  margin-bottom: 20px;
}

.disclaimer {
  font-size: 18px;
  line-height: 1.6;
  color: #808080;
}

.disclaimer-mobile {
  display: none;
  /* hide on desktop */
}

/* Form */
form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row input,
.form-row select {
  flex: 1;
}

input,
select {
  width: 100%;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid #40C2CC;
  font-size: 15px;
  color: #808080;
  background: transparent;
  outline: none;
  transition: border-color 0.3s;
}

input:focus,
select:focus {
  border-color: #18a7ad;
}

/* Toggle Switch */
.toggle-label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  cursor: pointer;
  user-select: none;
  padding: 5px 0;
  border-bottom: 1px solid #40C2CC;
  color: #808080;
}

.toggle-label input {
  display: none;
}

.toggle-slider {
  width: 42px;
  height: 22px;
  background: #ccc;
  border-radius: 22px;
  position: relative;
  transition: 0.3s;
}

.toggle-slider::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
}

.toggle-label input:checked+.toggle-slider {
  background: #40C2CC;
}

.toggle-label input:checked+.toggle-slider::before {
  transform: translateX(20px);
}

/* Submit Button */
button {
  padding: 15px;
  border: none;
  border-radius: 30px;
  background: #40C2CC;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #18a7ad;
}


/* Ensure inputs and selects align flush left */
input,
select {
  width: 100%;
  padding: 10px 0;
  /* only top/bottom */
  padding-left: 0 !important;
  /* kill left padding */
  border: none;
  border-bottom: 1px solid #40C2CC;
  font-size: 15px;
  color: #808080;
  background: transparent;
  outline: none;
  transition: border-color 0.3s;
  text-indent: 0 !important;
  /* Safari/iOS fix */
  -webkit-appearance: none;
  /* remove native select styling */
  -moz-appearance: none;
  appearance: none;
}

/* Hide the default arrow on selects (IE/Edge) */
select::-ms-expand {
  display: none;
}

/* Custom dropdown arrow */
select {
  background: transparent url("data:image/svg+xml;utf8,<svg fill='%23808080' height='20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 0.5rem center;
  background-size: 16px;
  padding-right: 25px;
  /* space for arrow */
}



/* Footer */
.footer {
  background: url("./assets/AR_Footer_IMG.png") no-repeat center top;
  background-size: cover;
  color: #fff;
  padding: 100px 160px 40px;
  font-family: 'Bodoni Moda', sans-serif;
  position: relative;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  justify-items: start;
  gap: 9%;
}

.footer-left h2 {
  font-size: 140px;
  font-weight: bold;
  line-height: 1.1;
  margin: 0;
}

.footer-right details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding: 15px 0;
}

.footer-right summary {
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-right summary::-webkit-details-marker {
  display: none;
}

summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  padding: 10px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

summary::after {
  content: "+";
  font-size: 20px;
  transition: transform 0.3s ease, content 0.3s ease;
}

details[open] summary::after {
  content: "–";
}

.faq-content {
  margin-top: 10px;
  font-size: 15px;
}

.footer-bottom {
  margin-top: 50px;
  display: flex;
  align-items: center;

  justify-content: space-between;

}

.footer-bottom .brand img {
  height: 35px;
  width: auto;
}


.AR_flag a {
  text-decoration: none;
  color: white;
  font-weight: 400;
}

.footer-bottom a {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom p,
.faq-content p {
  font-size: 11px !important;
}


.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 0;
}

.faq-question {
  cursor: pointer;
  font-weight: 700;
  margin: 0;
  font-size: 18px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.arrow svg {
  transition: transform 0.3s ease;
}

/* Hide answer initially */
.faq-answer {
  display: none;
  margin-top: 8px;

}

.faq {
  width: 100%;
}


/* Show when active */
.faq-item.active .faq-answer {
  display: block;
}

/* Rotate chevron up when active */
.faq-item.active .arrow svg {
  transform: rotate(180deg);
}

.arrow {
  margin-left: 8px;
  /* adds space between text and arrow */
  display: flex;
  align-items: center;
}

.arrow svg {
  transition: transform 0.3s ease;
}

.faq_title {
  font-size: 110px;
}

.faq-answer p {
  font-size: 16px !important;
}



/* ===========================
   MOBILE RESPONSIVE FIXES
=========================== */


@media (max-width: 768px) {


  .faq-answer p {
    font-size: 12px !important;
  }

  .steps li {
    font-size: 12px;
    /* aligns wrapped lines with text */
  }


  /* Hero */
  .hero {
    background: none;
    /* remove background image */
    padding: 0;
    display: block;
    text-align: center;
    min-height: auto;
  }

  .hero-content {
    padding: 1.25rem;
    text-align: left;
  }

  .AR_flag {
    position: absolute;
    top: 5%;
    left: 5%;
  }

  .AR_flag p {
    color: white !important;
  }

  .hero::before {
    content: "";
    display: block;
    background: url("./assets/AR_MOB_IMG.webp") no-repeat center;
    background-size: contain;
    width: 100%;
    height: 0;
    padding-top: 100.7%;
    /* adjust ratio to match image aspect */
  }

  .hero-logo img {
    display: none;
    /* still hide logo */
  }

  .hero p {
    font-size: 16px;
    color: #40C2CC;
  }

  .hero h1 {
    font-size: 29px;
    line-height: 2rem;
    color: #40C2CC;
    padding: 10px 0px;
  }

  /* Intro */
  .intro {
    padding: 1.25rem;
    margin: auto;
  }

  .intro h2 {
    font-size: 18px;
  }

  .intro .subheading,
  .intro .highlight,
  .intro .note {
    font-size: 16px;
    line-height: 24px;
  }

  /* Steps */
  /* Steps - Mobile */
  .steps-inner {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .steps h2 {
    font-size: 60px;

    margin-bottom: 30px;
  }


  .gapstep {
    gap: 28px !important;
    /* reduce gap for mobile */
  }


  .steps-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    /* keep number left, text right */
  }

  .steps-container>div {
    display: flex;
    flex-direction: row;
    /* number left, text right */
    align-items: center;
    text-align: left;
    gap: 20px;
    width: 100%;
  }

  .steps-container h3 {
    font-size: 60px;
    font-weight: bold;
    color: #40C2CC;
    line-height: 1;
    flex-shrink: 0;
    /* number never shrinks */
  }

  .steps-container p {
    font-size: 18px;
    color: #555;
    line-height: 1.4em;
    margin: 0;
    flex: 1;
    /* take remaining space */
  }

  .steps-inner {
    grid-template-columns: 1fr;
    padding: 40px 1.25rem;
    gap: 0px;
  }

  .steps-container {
    align-items: center;
  }

  .step1,
  .step2,
  .step3 {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .steps h2 {
    font-size: 60px;
  }

  .step1 h3,
  .step2 h3,
  .step3 h3 {
    font-size: 81px;
  }

  .step p {
    font-size: 18px;
  }

  /* Wishlist */
  .wishlist-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 1.25rem;
  }

  .wishlist-left h2 {
    font-size: 60px;

  }

  .disclaimer {
    display: none;
  }

  .disclaimer-mobile {
    display: block;
    font-size: 14px;
    color: #808080;
    margin-top: 20px;
  }


  /* Footer */
  .footer {
    padding: 80px 1.25rem 30px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 0px;
    text-align: left;
  }

  .footer-left h2 {
    font-size: 60px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    font-size: 12px;
  }

  .footer-bottom .brand img {
    height: 22px;
  }

  .footer-bottom p {
    font-size: 12px;
  }
}