/* 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 */
}

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

/* Remove Choices.js custom arrow */
.choices[data-type*="select-one"]::after {
  display: none !important;
}

/* Remove Choices.js default arrow */
.choices[data-type*="select-one"]::after {
  display: none !important;
}

/* Add your SVG as background to the input */
.choices__inner {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="5" viewBox="0 0 8 5"><path d="M0 0l4 4 4-4" stroke="%23808080" stroke-width="1.5" fill="none" stroke-linecap="round"/></svg>') no-repeat right 0.75rem center;
  background-size: 8px 5px;
  /* smaller size */
  padding-right: 1.5rem;
  /* adjust padding for text */
}


/* For Arabic RTL pages, move the arrow to the left */
body.ar .choices__inner {
  background-position: left 0.2rem center;
  padding-left: 2rem;
  padding-right: 0.5rem;
}





/* 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-size: 1rem;
  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 */

}

/* Change dropdown arrow color */
.choices[data-type*="select-one"]::after {
  border-color: #808080 transparent transparent transparent !important;
}


/* Flip dropdown icon to the left */
.choices[data-type*="select-one"]::after {
  left: 0.75rem;
  /* move it to the left side */
  right: auto;
  /* disable default right */
}

/* Adjust padding so text doesn’t overlap the icon */
.choices[data-type*="select-one"] .choices__inner {
  padding-left: 2rem;
  /* space for icon on left */
  padding-right: 0.75rem;
  /* normal spacing on right */
}


/* Import Cairo font */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700&display=swap');

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;
}


@font-face {
  font-family: "SalmaArabic";
  src: url("./Salma_Arabic.otf") format("opentype");
}

/* Headlines */
h3,
h4,
h5,
h6,
.display {
  font-family: 'SalmaArabic', serif;
}

h2.display {
  font-weight: 400 !important;
}

h1 {
  font-family: 'Cairo', sans-serif !important;
}

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


body {
  direction: rtl;
  /* Right-to-left for Arabic */
  text-align: right;
  font-family: 'Readex Pro', sans-serif;
  font-weight: 300 !important;
  line-height: 1.6;
  color: #333;
  max-width: 100%;
  overflow-x: hidden;
  /* prevent horizontal scroll */
}

p {
  font-size: 22px;
  font-family: 'Cairo', sans-serif;
}

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



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

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

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

.intro h2 {
  font-family: 'Cairo', sans-serif;
  color: #40C2CC;
  font-size: 22px;
  font-weight: 700;
}

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

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

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

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

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

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

/* 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: 110px;
  font-weight: 700;
  line-height: 1.2;
}

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

.gapstep {
  gap:
    72px !important;
  /* adjust gap for steps */
}

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

.step1 {
  gap: 32px;
}

.step2 {
  gap: 60px;
}

.step3 {
  gap: 60px;
}

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

.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: 110px;
  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;
}



/* For all input + textarea placeholders */

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

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

input,
select,
.toggle-label {
  text-align: right;
  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;
  cursor: pointer;
  user-select: none;
}

.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;
}

/* 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: 50px;
  width: auto;
}

.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 {
  font-weight: 500;
  cursor: pointer;
  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%;
  text-align: right;
}


/* 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: 60px;
}

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




/* ===========================
   MOBILE RESPONSIVE FIXES
=========================== */
@media (max-width: 768px) {

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



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

  .AR_flag p {
    color: white !important;
  }

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

  .hero-content {
    padding: 50px 1.25rem 0px;
    text-align: right;
  }

  .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 */
    text-align: right;
  }




  .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 20px 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: 36px;
  }

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