a{
  text-decoration: none;
}
/* Ensure phone input shows Latin (ASCII) digits visually */
input#phone,
.form-login input#phone {
  font-family: Arial, Helvetica, "Segoe UI", Tahoma, sans-serif;
}
@font-face {
  font-family: "GE SS Two";
  src: url("../fonts/ArbFONTS-GE_SS_Two_Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "GE SS Two";
  src: url("../fonts/ArbFONTS-GE_SS_Two_Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "GE SS Two";
  src: url("../fonts/ArbFONTS-GE-SS-Two-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "GE SS Text";
  src: url("../fonts/ArbFONTS-GE-SS-Text-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

/* أنماط عامة */
img {
  max-width: 100%;
  height: auto;
}
.w-full {
  width: 100%;
}
body {
  margin: 0;
  position: relative;
}
.hero {
  background-color: #fcf8f7;
  /* background-image: url('../imgs/bgHero.svg'); */
  min-height: 100vh;
}
.gift {
  position: absolute;
  bottom: 0;
  right: 0;
  width: clamp(200px, 25vw, 389.049px);
  height: auto;
  aspect-ratio: 440 / 299;
}
.customizeNavbar {
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}
.customizeNavbar .log {
  width: 80px;
  height: 48px;
  aspect-ratio: 5/3;
}
.box {
  height: calc(100vh - 100px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.box-form {
  display: flex;
  width: 462px;
  padding: 24px;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .box {
    align-items: baseline;
  }
  .box-form {
    background-color: transparent;
    box-shadow: none;
  }
  .btn-login{
    width:100% !important;
  }
}
.box-form .title h2 {
  color: #4b4b4b;
  text-align: center;
  font-family: "GE SS Two";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32.9px;
}
.box-form form {
  width: 100%;
}
.box-form input {
  display: flex;
  height: 30px;
  padding: 16px;
  gap: 8px;
  border-radius: 12px;
  border: 1px solid var(--Design-System-Colors-Primary-500, #e9c7be);
  background: var(--Base-White, #fff);
  width: -webkit-fill-available;
  color: var(--Design-System-Colors-Grey-600, #434343);
  font-family: "GE SS Two";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.box-form input:focus-visible {
  border: 1px solid var(--Design-System-Colors-Primary-500, #e9c7be) !important;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.08) !important;
  outline: none !important;
}
.form-login {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.btn-login {
  display: flex;
  height: 56px;
  /* padding: 16px 115px; */
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  background: var(--Design-System-Colors-Primary-500, #e9c7be);
  border: 0;
  color: var(--Design-System-Colors-Primary-950, #331811);
  text-align: center;
  font-family: "GE SS Two";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 80%;
  margin: auto;
}
.btn-login:hover {
  background: #ddb5aa;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.btn-login:active {
  transform: translateY(0);
}

/* Form Group Styles */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

/* Password Wrapper */
.password-wrapper {
  position: relative;
  width: 100%;
}

.password-wrapper input {
  padding-left: 45px; /* مساحة للأيقونة */
}

/* Toggle Password Icon */
.toggle-password {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.toggle-password:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.toggle-password:active {
  transform: translateY(-50%) scale(0.95);
}

.eye-icon {
  pointer-events: none;
}

/* Eye Icon States */
.password-visible .eye-open {
  display: none;
}

.password-visible .eye-slash {
  display: block !important;
}

/* Error Message Styles */
.error-message {
  color: #dc3545;
  font-family: "GE SS Two";
  font-size: 14px;
  font-weight: 700;
  display: none;

  margin-top: 8px;
  margin-bottom: 8px;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Input Error State */
.input-error {
  border: 1px solid #dc3545 !important;
  background-color: #fff5f5 !important;
}

.input-error:focus-visible {
  border: 1px solid #dc3545 !important;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
}
header {
  /* min-height:164px; */
  background-image: url("../imgs/header.svg");
  background-color: #e9ddd8; /* fallback color if image not found */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 25px;
  display: flex;
  padding: 24px;
  justify-content: space-between;
  position: relative;
}
.detailsCard {
  margin: auto;
  width: 40%;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .detailsCard {
    width: 100% !important;
  }
  .header {
    padding: 16px;
  }
}

/* Header content (status + info) */
.header-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: "GE SS Two";
  color: #4b4b4b;
}

.status-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.status-row .label,
.info-item .label {
  color: var(--Design-System-Colors-Grey-400, #6e6e6e);
  text-align: center;
  font-family: "GE SS Two";
  font-size: 14px;
  font-weight: 300;
  line-height: 20.4px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
}

.status-badge.status-active {
  /* semantic hook if needed */
  background: #fff;
  color: #009b27;
  text-align: center;
  font-family: "GE SS Two";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.info-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.info-item {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 8px;
}

.info-item .value {
  color: var(--Design-System-Colors-Grey-700, #353535);
  text-align: center;

  /* Paragraph/P-LG */
  font-family: "GE SS Two";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 22.9px; /* 143.125% */
}
.info-item .value.muted {
  font-family: Roboto;
  font-weight: 400;
}

@media (max-width: 768px) {
  .detailsCard,
  .box-details {
    width: 90% !important;
  }
  .header-content {
    padding: 16px;
  }
}
.box-details {
  align-self: stretch;
  margin: auto;
  width: 40%;
  margin-top: 20px;
}
.giftDetails{
    background: #fff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    display: flex;
    padding: 16px 10px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    margin: auto;


}
.box-details h3 {
  color: var(--Design-System-Colors-Grey-700, #353535);
  font-family: "GE SS Two";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  text-align: start;
}
.box-details .info {
  display: flex;
  padding: 8px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
  border-radius: 8px;
  border: 1px solid var(--Design-System-Colors-Grey-50, #ededed);
}
.box-details .info .person {
  display: flex;
  gap: 8px;
  align-items: center;
}
.box-details .info .person img {
  width: 35.057px;
  height: 33.333px;
  flex-shrink: 0;
  aspect-ratio: 35.06/33.33;
  border-radius: 50%;
}
.box-details .info .person h5 {
  color: var(--Design-System-Colors-Grey-700, #353535);
  text-align: center;
  font-family: "GE SS Two";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

/* =============================
   Benefit Item (Reusable card)
   ============================= */
.benefit-item {
  width: -webkit-fill-available;
  padding: 10px;
  background: var(--Design-System-Colors-Primary-50, #fcf8f7);
  border-radius: 8px;
  outline: 1px solid var(--Design-System-Colors-Grey-50, #ededed);
  outline-offset: -1px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin:8px 0;

}

.benefit-item .row-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.benefit-item .row-top .left,
.benefit-item .row-top .right {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Small prize icon (CSS-only) */
.benefit-item .prize-icon {
  width: 14px;
  height: 16px;
  position: relative;
  overflow: hidden;
}
.benefit-item .prize-icon .cup {
  position: absolute;
  left: 0;
  top: 0;
  width: 14px;
  height: 14.79px;
  background: var(--Design-System-Colors-Grey-300, #868686);
}
.benefit-item .prize-icon .base {
  position: absolute;
  left: 8.23px;
  top: 13.02px;
  width: 5.77px;
  height: 2.97px;
  background: var(--Design-System-Colors-Grey-300, #868686);
}

.benefit-item .amount {
  color: var(--Design-System-Colors-Grey-600, #434343);
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.benefit-item .title {
  color: var(--Design-System-Colors-Grey-500, #4a4a4a);
  font-family: "GE SS Two";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/* Custom Checkbox from Uiverse.io */
.checkbox-container {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.checkbox-container input {
  display: none;
}

.checkbox-container svg {
  overflow: visible;
}

.checkbox-container .path {
  fill: none;
  stroke: var(--Design-System-Colors-Grey-200, #acacac);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke-dasharray 0.5s ease, stroke-dashoffset 0.5s ease,
    stroke 0.3s ease;
  stroke-dasharray: 241 9999999;
  stroke-dashoffset: 0;
}

.checkbox-container input:checked ~ svg .path {
  stroke: var(--Design-System-Colors-Primary-500, #e9c7be);
  stroke-dasharray: 70.5096664428711 9999999;
  stroke-dashoffset: -262.2723388671875;
}

.benefit-item .desc {
  color: var(--Design-System-Colors-Grey-500, #4a4a4a);
  font-family: "GE SS Two";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 20.4px;
}

.benefit-item .row-bottom {
  display: flex;
  align-items: center;
  gap: 8px;
}

.benefit-item .duration {
  color: var(--Design-System-Colors-Primary-600, #d69786);
  font-family: "GE SS Two";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 20.4px;
}

/* Optional info icon placeholder (20x20) */
.benefit-item .info-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.total {
  display: flex;
  padding: 8px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: 8px;
  border: 1px solid var(--Design-System-Colors-Grey-50, #ededed);
  background: var(--Design-System-Colors-Primary-100, #f9efec);
  margin: 15px 0 0 0;
}
.total h4 {
  color: var(--Design-System-Colors-Grey-900, #1f1f1f);
  font-family: "GE SS Two";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}
.total span {
  color: var(--Design-System-Colors-Grey-900, #1f1f1f);
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 120% */
}
@media (max-width: 768px) {
  .d-768-none {
    display: none;
  }
  .btn-useCard{
    width:90% !important;
    padding: 16px 40px;
  }
}
.btn-useCard {
  border-radius: 12px;
  background: var(--Design-System-Colors-Primary-500, #e9c7be);
  display: flex;
  height: 56px;
  padding: 16px 80px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  margin: 16px auto 0;
  border: 0;
  color: var(--Design-System-Colors-Primary-950, #331811);
  text-align: center;
  font-family: "GE SS Two";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 100%;

}
.pb-60{
    padding-bottom: 60px;
}

/* =============================
   Usage Section Styles
   ============================= */
.usage-section {
  width: -webkit-fill-available;
  padding: 8px;
  background: var(--Design-System-Colors-Primary-50, #FCF8F7);
  border-radius: 8px;
  outline: 1px solid var(--Design-System-Colors-Grey-50, #EDEDED);
  outline-offset: -1px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4px;
  margin-top: 8px;
}

.usage-input-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 8px;
}

.usage-label {
  width: 100%;
  color: var(--Design-System-Colors-Grey-500, #4A4A4A);
  font-size: 16px;
  font-family: "GE SS Two";
  font-weight: 300;
  line-height: 22.90px;
  word-wrap: break-word;
}

.usage-input-container {
  width: 100%;
  height: 45px;
  position: relative;
  background: white;
  overflow: hidden;
  border-radius: 8px;
  outline: 1px solid var(--Design-System-Colors-Primary-300, #F1DBD5);
  outline-offset: -1px;
}

.usage-input {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  color: black;
  font-size: 16px;
  font-family: Roboto;
  font-weight: 400;
  direction: rtl;
}

.usage-input:focus {
  outline: none;
  background: white;
}

.usage-input::placeholder {
  opacity: 0.50;
  color: black;
  font-size: 16px;
  font-family: Roboto;
  font-weight: 400;
}

/* Remove number input arrows */
.usage-input::-webkit-outer-spin-button,
.usage-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.usage-input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.remaining-balance {
  width: -webkit-fill-available;
  padding: 8px;
  background: var(--Design-System-Colors-Primary-200, #F5E5E0);
  border-radius: 8px;
  outline: 1px solid var(--Design-System-Colors-Grey-50, #EDEDED);
  outline-offset: -1px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.balance-text {
  color: var(--Design-System-Colors-Grey-900, #1F1F1F);
  font-size: 14px;
  font-family: "GE SS Two";
  font-weight: 500;
  word-wrap: break-word;
}

.balance-amount {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}

.balance-amount span {
  color: var(--Design-System-Colors-Grey-900, #1F1F1F);
  font-size: 20px;
  font-family: Roboto;
  font-weight: 700;
  line-height: 24px;
  word-wrap: break-word;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .usage-section {
    padding: 12px;
  }

  .usage-label {
    font-size: 14px;
    line-height: 20px;
  }

  .usage-input {
    font-size: 14px;
    padding: 0 14px;
  }

  .usage-input::placeholder {
    font-size: 14px;
  }


  .balance-text {
    font-size: 13px;
  }

  .balance-amount span {
    font-size: 18px;
    line-height: 22px;
  }

  .balance-amount svg {
    width: 16px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .usage-section {
    padding: 10px;
  }

  .usage-input-container {
    height: 42px;
  }

  .usage-label {
    font-size: 13px;
  }

  .remaining-balance {
    padding: 8px;
    gap: 6px;
  }

  .balance-text {
    font-size: 12px;
  }

  .balance-amount span {
    font-size: 16px;
    line-height: 20px;
  }
}

/* =============================
   Selected Services Section
   ============================= */
.selected-services {
  width: -webkit-fill-available;
  padding: 8px 8px 12px 8px;
  border-radius: 8px;
  outline: 1px solid var(--Design-System-Colors-Grey-50, #EDEDED);
  outline-offset: -1px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 16px;
  margin-top: 8px;
}

.services-title {
  width: 100%;
  color: var(--Design-System-Colors-Grey-700, #353535);
  font-size: 16px;
  font-family: "GE SS Two";
  font-weight: 500;
  word-wrap: break-word;
}

.service-item {
  width: 100%;
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-item.has-border {
  border-bottom: 1px solid var(--Design-System-Colors-Primary-100, #F9EFEC);
}

.service-title {
  color: var(--Design-System-Colors-Grey-500, #4A4A4A);
  font-size: 16px;
  font-family: "GE SS Two";
  font-weight: 300;
  line-height: 22.90px;
  word-wrap: break-word;
}

.service-price-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}

.service-price {
  color: var(--Design-System-Colors-Grey-600, #434343);
  font-size: 16px;
  font-family: Roboto;
  font-weight: 700;
  line-height: 24px;
  word-wrap: break-word;
}

/* Responsive for Selected Services */
@media (max-width: 768px) {
  .selected-services {
    padding: 10px;
  }

  .services-title {
    font-size: 15px;
  }

  .service-item {
    padding: 10px 0;
  }

  .service-title {
    font-size: 14px;
    line-height: 20px;
  }

  .service-price {
    font-size: 15px;
    line-height: 22px;
  }

  .service-price-wrapper svg {
    width: 12px;
    height: 14px;
  }
}

@media (max-width: 480px) {
  .selected-services {
    padding: 8px;
    gap: 12px;
  }

  .services-title {
    font-size: 14px;
  }

  .service-item {
    padding: 8px 0;
  }

  .service-title {
    font-size: 13px;
    line-height: 18px;
  }

  .service-price {
    font-size: 14px;
    line-height: 20px;
  }

  .service-price-wrapper svg {
    width: 11px;
    height: 13px;
  }
}
.servicesList{
    width:100%;
}
.benefitsContainer{
    width:100%;
}
@media(max-width:1200px){
    .box-details,.detailsCard{
        width:60%;
    }
}

/* =============================
   Responsive Navbar Styles
   ============================= */

/* Navbar Container */
.navbar {
  width: 100%;
  height: auto;
  padding: 16px 0;
  background: var(--Base-White, white);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 32px;
}

/* Logo */
.navbar-logo img {
  width: 107px;
  height: 64px;
  object-fit: contain;
}

/* Desktop Navigation Links */
.navbar-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex: 1;
}

.nav-link {
  text-align: center;
  color: black;
  font-size: 16px;
  font-family: "GE SS Two";
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
  word-wrap: break-word;
}

.nav-link:hover {
  color: var(--Design-System-Colors-Primary-600, #d69786);
}

/* Navbar Actions (Language + Download Button) */
.navbar-actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 32px;
}

/* Language Switcher */
.language-switcher {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.3s ease, opacity 0.3s ease;
  font-family: "GE SS Two";
  font-size: 16px;
  font-weight: 500;
  color: var(--Design-System-Colors-Grey-600, #434343);
}

.language-switcher:hover {
  background: var(--Design-System-Colors-Primary-50, #fcf8f7);
  opacity: 0.85;
}

.language-switcher:focus-visible {
  outline: 2px solid var(--Design-System-Colors-Primary-300, #f1dbd5);
  outline-offset: 2px;
}

.language-switcher svg path {
  fill: #6e6e6e;
}

.lang-text {

  color: var(--Design-System-Colors-Grey-600, #434343);
  font-size: 16px;
  font-family: "GE SS Two";
  font-weight: 500;
  line-height: 24px;
  word-wrap: break-word;
}

/* Download App Button */
.btn-download-app {
  padding: 12px 16px;
  background: var(--Design-System-Colors-Primary-500, #e9c7be);
  border-radius: 8px;
  border: none;
  text-align: center;
  color: var(--Design-System-Colors-Grey-900, #1f1f1f);
  font-size: 16px;
  font-family: "GE SS Two";
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  word-wrap: break-word;
}

.btn-download-app:hover {
  background: #ddb5aa;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-download-app:active {
  transform: translateY(0);
}

/* Mobile Menu Toggle - Hidden on Desktop */
.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #1f1f1f;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Sidebar - Hidden on Desktop */
.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1002;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}

.sidebar.active {
  right: 0;
}

/* Sidebar Header */
.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--Design-System-Colors-Grey-50, #ededed);
}

.sidebar-logo {
  width: 80px;
  height: auto;
  object-fit: contain;
}

.sidebar-close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  border-radius: 4px;
}

.sidebar-close:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* Sidebar Links */
.sidebar-links {
  display: flex;
  flex-direction: column;
  /* gap: 24px; */
  flex: 1;
}

.sidebar-link {

  color: black;
  font-size: 16px;
  font-family: "GE SS Two";
  font-weight: 500;
  text-decoration: none;
  padding: 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.sidebar-link:hover {
  background: var(--Design-System-Colors-Primary-50, #fcf8f7);
  color: var(--Design-System-Colors-Primary-600, #d69786);
}

/* Sidebar Footer */
.sidebar-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--Design-System-Colors-Grey-50, #ededed);
}

.sidebar-footer .language-switcher {
  justify-content: flex-end;
}

.sidebar-footer .btn-download-app {
  width: 100%;
}

/* Sidebar Overlay */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Page Content */
.page-content {
  min-height: calc(100vh - 96px);
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .navbar {
    padding: 16px 60px;
  }

  .navbar-links {
    gap: 24px;
  }

  .navbar-actions {
    gap: 20px;
  }
}

/* Mobile Styles - Navbar becomes Sidebar */
@media (max-width: 992px) {
  .navbar {
    padding: 16px 24px;
  }

  /* Hide desktop navigation and actions */
  .navbar-links,
  .navbar-actions {
    display: none;
  }

  /* Show mobile toggle button */
  .navbar-toggle {
    display: flex;
  }

  /* Animate hamburger to X when active */
  .navbar-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .navbar-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .navbar-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  /* Adjust logo size */
  .navbar-logo img {
    width: 80px;
    height: 48px;
  }

  /* Sidebar adjustments */
  .sidebar {
    width: 280px;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .navbar {
    padding: 12px 16px;
  }

  .navbar-logo img {
    width: 70px;
    height: 42px;
  }

  .sidebar {
    width: 260px;
  }

  .sidebar-link {
    font-size: 15px;
  }
}

/* Prevent body scroll when sidebar is open */
body.sidebar-open {
  overflow: hidden;
}

/* =============================
   Hero Section Styles
   ============================= */

/* CSS Variables for Design System Colors */
:root {
  --Design-System-Colors-Primary-300: #F1DBD5;
  --Design-System-Colors-Primary-200: #F5E5E0;
  --Design-System-Colors-Primary-500: #E9C7BE;
  --Design-System-Colors-Primary-600: #D69786;
  --Design-System-Colors-Primary-700: #C3674F;
  --Design-System-Colors-Primary-950: #331811;
  --Design-System-Colors-Grey-50: #EDEDED;
  --Design-System-Colors-Grey-200: #ACACAC;
  --Design-System-Colors-Grey-300: #868686;
  --Design-System-Colors-Grey-400: #6E6E6E;
  --Design-System-Colors-Grey-500: #4A4A4A;
  --Design-System-Colors-Grey-600: #434343;
  --Design-System-Colors-Grey-700: #353535;
  --Design-System-Colors-Grey-900: #1F1F1F;
  --Base-White: #FFFFFF;
  --Design-System-Colors-Primary-50: #FCF8F7;
  --Design-System-Colors-Primary-100: #F9EFEC;
}

/* Hero Section Container */
.hero-section {
  width: 100%;
  min-height: calc(100vh - 96px);
  position: relative;
  background: linear-gradient(260deg, #FFF8F6 6.72%, #FFF 98.83%);
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
}

/* Decorative Shape */
.decorative-shape {
  position: absolute;
  right: -100px;
  top: 50%;
  width: 260.534px;
  height: 199.218px;
  border-radius: 20px;
  z-index: 0;
}



/* Hero Container */
.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 125px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Hero Image Wrapper */
.hero-image-wrapper {
  flex: 0 0 auto;
}

.hero-image {
  width: 520px;
  height: 546px;
  background: #D4CECE;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* Hero Content */
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  max-width: 579px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.hero-title {
  color: var(--Design-System-Colors-Grey-700, #353535);
  font-size: clamp(1.75rem, 3vw + 1rem, 3.5rem);
  font-family: 'GE SS Two';
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  width: 100%;
}

.hero-subtitle {
  color: var(--Design-System-Colors-Primary-700, #C3674F);
  font-size: clamp(1.75rem, 3vw + 1.2rem, 3.5rem);
  font-family: 'GE SS Two';
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  width: 100%;
}

.hero-description {

  color: var(--Design-System-Colors-Grey-600, #434343);
  font-size: 18px;
  font-family: 'GE SS Two';
  font-weight: 500;
  line-height: 28px;
  margin: 0;
  width: 100%;
}

/* CTA Button */
.btn-cta {
  padding: 16px 24px;
  min-width: 246px;
  background: var(--Design-System-Colors-Primary-600, #D69786);
  border-radius: 8px;
  border: none;
  color: var(--Base-White, white);
  text-align: center;
  font-size: 18px;
  font-family: 'GE SS Two';
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.btn-cta:hover {
  background: #C3674F;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.btn-cta:active {
  transform: translateY(0);
}

/* Tablet Responsive (992px - 1200px) */
@media (max-width: 1200px) {
  .hero-section {
    padding: 60px 80px;
  }

  .hero-container {
    gap: 80px;
  }

  .hero-image {
    width: 400px;
    height: 420px;
  }

  .hero-description {
    font-size: 16px;
    line-height: 26px;
  }
}

/* Small Tablet (768px - 992px) */
@media (max-width: 992px) {
  .hero-section {
    padding: 40px 40px;
    min-height: auto;
  }

  .hero-container {
    flex-direction: column-reverse;
    gap: 40px;
    align-items: center;
  }

  .hero-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-image {
    width: 100%;
    max-width: 400px;
    height: 380px;
  }

  .hero-content {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .hero-text {
    align-items: center;
  }

  .hero-title,
  .hero-subtitle {
    text-align: center;
  }

  .hero-description {
    text-align: center;
    font-size: 16px;
  }

  .btn-cta {
    align-self: center;
  }

  .decorative-shape {
    width: 180px;
    height: 180px;
    right: -50px;
  }
}

/* Mobile (480px - 768px) */
@media (max-width: 768px) {
  .hero-section {
    padding: 30px 24px;
  }

  .hero-container {
    gap: 32px;
  }

  .hero-image {
    max-width: 320px;
    height: 320px;
  }

  .hero-description {
    font-size: 15px;
    line-height: 24px;
  }

  .btn-cta {
    font-size: 16px;
    padding: 14px 20px;
    min-width: 200px;
    width: 100%;
    max-width: 300px;
  }

  .decorative-shape {
    width: 150px;
    height: 150px;
  }
}

/* Small Mobile (< 480px) */
@media (max-width: 480px) {
  .hero-section {
    padding: 20px 16px;
  }

  .hero-container {
    gap: 24px;
  }

  .hero-image {
    max-width: 280px;
    height: 280px;
  }

  .hero-content {
    gap: 20px;
  }

  .hero-text {
    gap: 12px;
  }

  .hero-title,
  .hero-subtitle {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-description {
    font-size: 14px;
    line-height: 22px;
  }

  .btn-cta {
    font-size: 16px;
    padding: 12px 16px;
    width: 100%;
    max-width: none;
  }

  .decorative-shape {
    width: 120px;
    height: 120px;
    right: -30px;
  }

  .hero-section::before {
    height: 6px;
  }
}

/* =============================
   Features Section Styles
   ============================= */

/* Features Section Container */
.features-section {
  width: 100%;
  min-height: 100vh;
  position: relative;
  background: #F8F8F8;
  padding: 96px 0;
  overflow: hidden;
}

/* Features Container */
.features-container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

/* Features Header */
.features-header {
  max-width: 630px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.features-title {
  color: var(--Design-System-Colors-Grey-700, #353535);
  font-size: clamp(2rem, 2.5vw + 1rem, 2.5rem);
  font-family: 'GE SS Two';
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.features-description {
  color: var(--Design-System-Colors-Grey-600, #434343);
  font-size: 18px;
  font-family: 'GE SS Two';
  font-weight: 500;
  line-height: 28px;
  margin: 0;
}

/* Features Grid */
.features-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Feature Card */
.feature-card {
  background: var(--Base-White, white);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease-out forwards;
}

/* Staggered Animation Delays */
.feature-card:nth-child(1) {
  animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
  animation-delay: 0.4s;
}

/* .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.12);
} */

/* Feature Icon */
.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--Design-System-Colors-Primary-100, #F9EFEC);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* .feature-card:hover .feature-icon {
  background: var(--Design-System-Colors-Primary-200, #F5E5E0);
  transform: scale(1.1) rotate(5deg);
} */

.feature-icon svg {
  transition: transform 0.3s ease;
}

/* .feature-card:hover .feature-icon svg {
  transform: scale(1.1);
} */

/* Feature Content */
.feature-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

.feature-card-title {
  color: var(--Design-System-Colors-Grey-900, #1F1F1F);
  font-size: 20px;
  font-family: 'GE SS Two';
  font-weight: 700;
  line-height: 28px;
  margin: 0;
  width: 100%;
}

.feature-card-description {
  color: var(--Design-System-Colors-Grey-600, #434343);
  font-size: 14px;
  font-family: 'GE SS Two';
  font-weight: 500;
  line-height: 24px;
  margin: 0;
  width: 100%;
}

/* Keyframe Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Tablet Responsive (992px - 1200px) */
@media (max-width: 1200px) {
  .features-section {
    padding: 80px 80px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Small Tablet (768px - 992px) */
@media (max-width: 992px) {
  .features-section {
    padding: 60px 40px;
  }

  .features-header {
    max-width: 100%;
  }

  .features-title {
    font-size: 32px;
  }

  .features-description {
    font-size: 16px;
    line-height: 26px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .feature-card {
    padding: 24px;
  }
}

/* Mobile (480px - 768px) */
@media (max-width: 768px) {
  .features-section {
    padding: 40px 24px;
    min-height: auto;
  }

  .features-container {
    gap: 40px;
  }

  .features-title {
    font-size: 28px;
  }

  .features-description {
    font-size: 15px;
    line-height: 24px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 24px;
    align-items: center;
    text-align: center;
  }

  .feature-content {
    align-items: center;
  }

  .feature-card-title,
  .feature-card-description {
    text-align: center;
  }
}

/* Small Mobile (< 480px) */
@media (max-width: 480px) {
  .features-section {
    padding: 30px 16px;
  }

  .features-container {
    gap: 32px;
  }

  .features-header {
    gap: 16px;
  }

  .features-title {
    font-size: 24px;
  }

  .features-description {
    font-size: 14px;
    line-height: 22px;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
  }

  .feature-icon svg {
    width: 28px;
    height: 28px;
  }

  .feature-card-title {
    font-size: 18px;
    line-height: 26px;
  }

  .feature-card-description {
    font-size: 13px;
    line-height: 22px;
  }
}

/* =============================
   How It Works Section Styles
   ============================= */

/* How It Works Section Container */
.how-it-works-section {
  width: 100%;
  min-height: 100vh;
  position: relative;
  background: var(--Base-White, white);
  padding: 96px 0;
  overflow: hidden;
}

/* How It Works Container */
.how-it-works-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

/* How It Works Header */
.how-it-works-header {
  max-width: 630px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.how-it-works-title {
  color: var(--Design-System-Colors-Grey-700, #353535);
  font-size: clamp(2rem, 2.5vw + 1rem, 2.5rem);
  font-family: 'GE SS Two';
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.how-it-works-description {
  color: var(--Design-System-Colors-Grey-600, #434343);
  font-size: 18px;
  font-family: 'GE SS Two';
  font-weight: 500;
  line-height: 28px;
  margin: 0;
}

/* Steps Grid */
.steps-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

/* Step Card */
.step-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  overflow: visible;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  transform: none;
  position: relative;
}

/* JS-drawn connector line between step numbers */
.step-connector {
  position: absolute;
  height: 1px;
  background: transparent;
  border-bottom: 1px dashed var(--Design-System-Colors-Primary-600, #D69786);
  z-index: 1;
  transform-origin: left center;
  transform: scaleX(0);
  opacity: 0;
  animation: lineGrow 0.4s ease-out forwards;
  pointer-events: none;
}

/* Line Animation */
@keyframes lineGrow {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

/* Staggered Animation Delays for Steps */
.step-card[data-step="4"] {
  animation-delay: 0.1s;
}

.step-card[data-step="3"] {
  animation-delay: 0.2s;
}

.step-card[data-step="2"] {
  animation-delay: 0.3s;
}

.step-card[data-step="1"] {
  animation-delay: 0.4s;
}

/* .step-card:hover {
  transform: translateY(-8px);
} */

/* Step Number */
.step-number {
  width: 79px;
  height: 79px;
  background: var(--Design-System-Colors-Primary-500, #E9C7BE);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--Design-System-Colors-Grey-900, #1F1F1F);
  font-size: 24px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

/* .step-card:hover .step-number {
  background: var(--Design-System-Colors-Primary-600, #D69786);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
} */

/* Ripple effect on hover */
.step-number::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.5s ease;
}
/*
.step-card:hover .step-number::before {
  transform: scale(2);
  opacity: 0;
} */

/* Step Content */
.step-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  width: 100%;
}

.step-title {
  color: var(--Design-System-Colors-Grey-900, #1F1F1F);
  font-size: 20px;
  font-family: 'GE SS Two';
  font-weight: 700;
  line-height: 28px;
  margin: 0;
  text-align: center;
  width: 100%;
}

.step-description {
  color: var(--Design-System-Colors-Grey-600, #434343);
  font-size: 14px;
  font-family: 'GE SS Two';
  font-weight: 500;
  line-height: 24px;
  margin: 0;
  text-align: center;
  width: 100%;
  min-height: 52px;
}

/* Tablet Responsive (992px - 1200px) */
@media (max-width: 1200px) {
  .how-it-works-section {
    padding: 80px 80px;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

}

/* Small Tablet (768px - 992px) */
@media (max-width: 992px) {
  .how-it-works-section {
    padding: 60px 40px;
  }

  .how-it-works-header {
    max-width: 100%;
  }

  .how-it-works-title {
    font-size: 32px;
  }

  .how-it-works-description {
    font-size: 16px;
    line-height: 26px;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .step-card {
    padding: 20px;
  }

  .step-number {
    width: 70px;
    height: 70px;
    font-size: 22px;
  }
}

/* Mobile (480px - 768px) */
@media (max-width: 768px) {
  .how-it-works-section {
    padding: 40px 24px;
    min-height: auto;
  }

  .how-it-works-container {
    gap: 40px;
  }

  .how-it-works-title {
    font-size: 28px;
  }

  .how-it-works-description {
    font-size: 15px;
    line-height: 24px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step-card {
    padding: 20px;
  }

  .step-number {
    width: 65px;
    height: 65px;
    font-size: 20px;
  }
}

/* Small Mobile (< 480px) */
@media (max-width: 480px) {
  .how-it-works-section {
    padding: 30px 16px;
  }

  .how-it-works-container {
    gap: 32px;
  }

  .how-it-works-header {
    gap: 16px;
  }

  .how-it-works-title {
    font-size: 24px;
  }

  .how-it-works-description {
    font-size: 14px;
    line-height: 22px;
  }

  .step-card {
    padding: 16px;
    gap: 20px;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 18px;
  }

  .step-title {
    font-size: 18px;
    line-height: 26px;
  }

  .step-description {
    font-size: 13px;
    line-height: 22px;
    min-height: auto;
  }
}

/* ===================== App Screens Section ===================== */
:root {
  --Design-System-Colors-Grey-700: #353535;
  --Design-System-Colors-Grey-600: #434343;
  --Design-System-Colors-Primary-400: #EDD1C9;
  --Design-System-Colors-Primary-700: #C3674F;
  --Base-White: #ffffff;
}

.app-screens-section {
  width: 100%;
  min-height: 100vh;
  background: #F8F8F8;
  padding: 112px 0;
  position: relative;
  overflow: hidden;
}

.app-screens-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

/* Header Styles */
.app-screens-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  max-width: 800px;
}

.app-screens-title {
  color: var(--Design-System-Colors-Grey-700, #353535);
  font-size: 40px;
  font-family: 'GE SS Two';
  font-weight: 700;
  word-wrap: break-word;
  margin: 0;
}

.app-screens-description {
  color: var(--Design-System-Colors-Grey-600, #434343);
  font-size: 18px;
  font-family: 'GE SS Two';
  font-weight: 500;
  line-height: 28px;
  word-wrap: break-word;
  margin: 0;
}

/* Slider Container */
.screens-slider-container {
  width: 100%;
  position: relative;
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

/* Owl Carousel Styles */
.screens-carousel {
  width: 100%;
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
}

.screens-carousel .owl-stage-outer {
  padding: 20px 0;
}

.screens-carousel .owl-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Phone Mockup */
.phone-mockup {
  width: 241.7px;
  height: 524px;
  position: relative;
}

.phone-mockup img {
  width: 100%;
  height: 90%;
  object-fit: cover;
  border-radius: 19.68px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
}

/* Active item - no scale effect */
.screens-carousel .owl-item.active .phone-mockup {
  transform: scale(1);
}

/* Navigation Buttons */
.screens-carousel .owl-nav button.owl-prev,
.screens-carousel .owl-nav button.owl-next {
  width: 64px !important;
  height: 64px !important;
  background: transparent !important;
  box-shadow: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) !important;
  z-index: 5;
  margin: 0 !important;
  padding: 0 !important;
}

/* Positioning: prev on the right, next on the left (works for RTL too) */
.screens-carousel .owl-nav button.owl-prev {
  right: 8px;
  left: auto;
}

.screens-carousel .owl-nav button.owl-next {
  left: 8px;
  right: auto;
}

/* RTL Support */
html[dir="rtl"] .screens-carousel .owl-nav button.owl-prev {
  left: 8px;
  right: auto;
}

html[dir="rtl"] .screens-carousel .owl-nav button.owl-next {
  right: 8px;
  left: auto;
}

.screens-carousel .owl-nav button.owl-prev:hover,
.screens-carousel .owl-nav button.owl-next:hover {
  transform: translateY(-50%) scale(1.03) !important;
  background: transparent !important;
}

.screens-carousel .owl-nav button.owl-prev span,
.screens-carousel .owl-nav button.owl-next span {
  font-size: 0;
  line-height: 0;
}

/* Pagination */
.screens-carousel .owl-dots {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.screens-carousel .owl-dots .owl-dot {
  width: 24px;
  height: 4px;
  border-radius: 0;
  background: var(--Design-System-Colors-Primary-400, #EDD1C9) !important;
  opacity: 1;
  border: none;
  transition: all 0.3s ease;
  margin: 0 6px !important;
  display: inline-block;
}

.screens-carousel .owl-dots .owl-dot span {
  display: none;
}

.screens-carousel .owl-dots .owl-dot.active {
  background: var(--Design-System-Colors-Primary-700, #C3674F) !important;
}

/* Responsive Design */
@media (max-width: 1440px) {
  .screens-carousel {
    padding: 0 50px;
  }
}

@media (max-width: 1024px) {
  .app-screens-section {
    padding: 80px 20px;
  }

  .app-screens-title {
    font-size: 32px;
  }

  .app-screens-description {
    font-size: 16px;
  }

  .phone-mockup {
    width: 200px;
    height: 434px;
  }
}

@media (max-width: 768px) {
  .app-screens-section {
    padding: 60px 20px;
  }

  .app-screens-container {
    gap: 40px;
  }

  .app-screens-title {
    font-size: 28px;
  }

  .screens-carousel {
    padding: 0 40px;
  }

  .phone-mockup {
    width: 180px;
    height: 390px;
  }

  .screens-carousel .owl-nav button.owl-prev,
  .screens-carousel .owl-nav button.owl-next {
    width: 40px !important;
    height: 40px !important;
  }

  .screens-carousel .owl-nav button svg {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .app-screens-title {
    font-size: 24px;
  }

  .app-screens-description {
    font-size: 14px;
    line-height: 24px;
  }

  .phone-mockup {
    width: 150px;
    height: 325px;
  }

  .screens-carousel {
    padding: 0 30px;
  }
}

/* =============================
   Download App Section Styles
   ============================= */

/* Section Container */
.download-app-section {
  width: 100%;
  min-height: 709px;
  position: relative;
  background: var(--Design-System-Colors-Primary-300, #F1DBD5);
  padding: 112px 20px;
  overflow: hidden;
}

/* Container */
.download-app-container {
  /* max-width: 1223px; */
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Main Card */
.download-app-card {
  width: 100%;
  /* max-width: 1223px; */
  min-height: 485px;
  background: var(--Base-White, white);
  box-shadow: 0px 4px 32px rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  padding: 64px 80px;
  position: relative;
  overflow: hidden;
  animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Content Wrapper */
.download-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  width: 100%;
}

/* Header Section */
.download-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  text-align: center;
}

.download-title-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.download-title {
  color: var(--Design-System-Colors-Grey-700, #353535);
  font-size: 32px;
  font-family: 'GE SS Two';
  font-weight: 700;
  margin: 0;
  word-wrap: break-word;
}

.download-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.download-description {
  color: var(--Design-System-Colors-Grey-700, #353535);
  font-size: 18px;
  font-family: 'GE SS Two';
  font-weight: 500;
  line-height: 28px;
  margin: 0;
  max-width: 600px;
  word-wrap: break-word;
  animation: fadeIn 1.2s ease-out;
}

/* Stats Grid */
.download-stats-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  width: 100%;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 108px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px) scale(1.05);
}

.stat-value {
  color: var(--Design-System-Colors-Primary-700, #C3674F);
  font-size: 32px;
  font-family: 'Roboto';
  font-weight: 700;
  line-height: 28px;
  word-wrap: break-word;
  animation: countUp 1s ease-out;
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.stat-label {
  color: var(--Design-System-Colors-Grey-700, #353535);
  font-size: 16px;
  font-family: 'GE SS Two';
  font-weight: 500;
  line-height: 28px;
  text-align: center;
  word-wrap: break-word;
}

/* App Store Buttons */
.app-store-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.store-button {
  min-width: 164px;
  padding: 8px 16px;
  background: var(--Base-Black, black);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInRight 0.6s ease-out forwards;
  cursor: pointer;
  display:flex;
  justify-content: center !important;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.store-button:hover {
  background: #333;
  transform: translateY(-3px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
}

.store-button:active {
  transform: translateY(-1px);
}

.store-button img {
  width: 35px;
  height: 40px;
  object-fit: contain;
}

.store-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.store-label {
  color: var(--Base-White, white);
  font-size: 16px;
  font-family: 'GE SS Two';
  font-weight: 300;
  line-height: 28px;
  word-wrap: break-word;
}

.store-name {
  color: var(--Base-White, white);
  font-size: 16px;
  font-family: 'GE SS Two';
  font-weight: 700;
  line-height: 28px;
  word-wrap: break-word;
}

/* Responsive Design */

/* Large Tablets (992px - 1200px) */
@media (max-width: 1200px) {
  .download-app-card {
    padding: 60px 60px;
  }

  .download-stats-grid {
    gap: 80px;
  }
}

/* Tablets (768px - 992px) */
@media (max-width: 992px) {
  .download-app-section {
    padding: 80px 20px;
  }

  .download-app-card {
    padding: 48px 40px;
    min-height: auto;
  }

  .download-content-wrapper {
    gap: 48px;
  }

  .download-title {
    font-size: 28px;
  }

  .download-description {
    font-size: 16px;
    line-height: 26px;
  }

  .download-stats-grid {
    gap: 60px;
  }

  .stat-value {
    font-size: 28px;
  }

  .stat-label {
    font-size: 15px;
  }

  .app-store-buttons {
    gap: 32px;
  }
}

/* Mobile (480px - 768px) */
@media (max-width: 768px) {
  .download-app-section {
    padding: 60px 16px;
    min-height: auto;
  }

  .download-app-card {
    padding: 40px 24px;
  }

  .download-content-wrapper {
    gap: 40px;
  }

  .download-header {
    gap: 24px;
  }

  .download-title {
    font-size: 24px;
  }

  .download-icon svg {
    width: 32px;
    height: 32px;
  }

  .download-description {
    font-size: 15px;
    line-height: 24px;
  }

  .download-stats-grid {
    gap: 40px;
    flex-direction: row;
    justify-content: space-around;
  }

  .stat-item {
    min-width: 90px;
  }

  .stat-value {
    font-size: 26px;
  }

  .stat-label {
    font-size: 14px;
    line-height: 22px;
  }

  .app-store-buttons {
    gap: 24px;
    width: 100%;
    flex-direction: column;
  }

  .store-button {
    width: 100%;
    max-width: 280px;
    justify-content: flex-end;
    padding: 10px 16px;
  }
}

/* Small Mobile (< 480px) */
@media (max-width: 480px) {
  .download-app-section {
    padding: 40px 12px;
  }

  .download-app-card {
    padding: 32px 20px;
  }

  .download-content-wrapper {
    gap: 32px;
  }

  .download-header {
    gap: 20px;
  }

  .download-title {
    font-size: 22px;
  }

  .download-icon svg {
    width: 28px;
    height: 28px;
  }

  .download-description {
    font-size: 14px;
    line-height: 22px;
  }

  .download-stats-grid {
    gap: 24px;
    flex-direction: column;
  }

  .stat-item {
    width: 100%;
  }

  .stat-value {
    font-size: 24px;
    line-height: 32px;
  }

  .stat-label {
    font-size: 13px;
    line-height: 20px;
  }

  .app-store-buttons {
    gap: 16px;
  }

  .store-button {
    max-width: 100%;
    min-width: auto;
  }

  .store-button img {
    width: 28px;
    height: 32px;
  }

  .store-label,
  .store-name {
    font-size: 14px;
    line-height: 22px;
  }
}

/* Animation delays for staggered effects */
.stat-item:nth-child(1) {
  animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
  animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
  animation-delay: 0.3s;
}

.store-button.google-play {
  animation-delay: 0.4s;
}

.store-button.app-store {
  animation-delay: 0.5s;
}

/* =============================
   Footer Styles
   ============================= */

/* Footer Container */
.footer {
  width: 100%;
  background: var(--Design-System-Colors-Grey-900, #1F1F1F);
  padding: 72px 144px 48px;
  position: relative;
  overflow: hidden;
}

.footer-container {
  max-width: 1224px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Footer Top Section */
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  animation: fadeIn 0.8s ease-out;
}

/* Footer Brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 453px;
  text-align: center;
}

.footer-logo {
  width: 100px;
  height: 100px;
  background: linear-gradient(180deg, var(--Design-System-Colors-Primary-300, #F1DBD5) 0%, var(--Design-System-Colors-Primary-600, #D69786) 100%);
  box-shadow: 6px 8px 24px rgba(0, 0, 0, 0.16);
  border-radius: 19.43px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  transition: all 0.3s ease;
  animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.footer-logo:hover {
  transform: scale(1.05) rotate(3deg);
  box-shadow: 8px 10px 30px rgba(0, 0, 0, 0.25);
}

.footer-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-description {
  color: var(--Design-System-Colors-Grey-200, #ACACAC);
  font-size: 18px;
  font-family: 'GE SS Two';
  font-weight: 500;
  line-height: 28px;
  margin: 0;
  word-wrap: break-word;
}

/* Social Media Links */
.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.social-link {
  width: 24px;
  height: 24px;
  color: var(--Design-System-Colors-Grey-100, #C7C7C7);
  opacity: 0.5;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: fadeInScale 0.6s ease-out;
  animation-fill-mode: both;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0) rotate(-180deg);
  }
  to {
    opacity: 0.5;
    transform: scale(1) rotate(0deg);
  }
}

.social-link:nth-child(1) { animation-delay: 0.1s; }
.social-link:nth-child(2) { animation-delay: 0.2s; }
.social-link:nth-child(3) { animation-delay: 0.3s; }
.social-link:nth-child(4) { animation-delay: 0.4s; }
.social-link:nth-child(5) { animation-delay: 0.5s; }

.social-link:hover {
  opacity: 1;
  color: var(--Design-System-Colors-Primary-500, #E9C7BE);
  transform: translateY(-3px) scale(1.1);
}

.social-link::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(233, 199, 190, 0.1);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
  z-index: -1;
}

.social-link:hover::after {
  transform: scale(1);
}

/* Contact Info */
.footer-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 16px;
  font-family: 'GE SS Two';
  font-weight: 500;
  line-height: 28px;
  transition: all 0.3s ease;
  animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-item:first-child {
  animation-delay: 0.2s;
}

.contact-item:last-child {
  animation-delay: 0.3s;
}

/* .contact-item:hover {
  color: var(--Design-System-Colors-Primary-500, #E9C7BE);
  transform: translateX(-5px);
} */

.contact-item svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
/* الزر الخاص ب ابدء الان غير مترجم عند استخدام اللغه الانجليزيه  */

/* Footer Divider */
.footer-divider {
  width: 100%;
  height: 1px;
  background: var(--Design-System-Colors-Grey-600, #434343);
  margin: 24px 0;
  position: relative;
  overflow: hidden;
}

.footer-divider::after {
  content: '';
  position: absolute;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--Design-System-Colors-Primary-500, #E9C7BE) 50%,
    transparent 100%);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-copyright {
  color: white;
  font-size: 16px;
  font-family: 'GE SS Two';
  font-weight: 300;
  line-height: 28px;
  margin: 0;
  word-wrap: break-word;
}

.footer-copyright .heart {
  display: inline-block;
  color: #F24C4C;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  10%, 30% {
    transform: scale(1.1);
  }
  20%, 40% {
    transform: scale(0.95);
  }
}

.footer-developer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 16px;
  font-family: 'GE SS Two';
  font-weight: 300;
  line-height: 28px;
}

.developer-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.developer-logo:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.developer-logo img {
  height: 24px;
  width: auto;
  object-fit: contain;
}

/* Responsive Design */

/* Large Tablets (992px - 1200px) */
@media (max-width: 1200px) {
  .footer {
    padding: 60px 80px 40px;
  }
}

/* Tablets (768px - 992px) */
@media (max-width: 992px) {
  .footer {
    padding: 60px 40px 40px;
  }

  .footer-container {
    gap: 40px;
  }

  .footer-description {
    font-size: 16px;
    line-height: 26px;
  }

  .footer-contact {
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-developer {
    justify-content: center;
  }
}

/* Mobile (480px - 768px) */
@media (max-width: 768px) {
  .footer {
    padding: 48px 24px 32px;
  }

  .footer-container {
    gap: 32px;
  }

  .footer-top {
    gap: 20px;
  }

  .footer-brand {
    gap: 20px;
  }

  .footer-logo {
    width: 80px;
    height: 80px;
    padding: 20px;
  }

  .footer-description {
    font-size: 15px;
    line-height: 24px;
  }

  .footer-social {
    gap: 28px;
  }

  .social-link {
    width: 22px;
    height: 22px;
  }

  .footer-contact {
    flex-direction: column;
    gap: 16px;
  }

  .contact-item {
    font-size: 15px;
  }

  .footer-copyright,
  .footer-developer {
    font-size: 14px;
    line-height: 24px;
  }
}

/* Small Mobile (< 480px) */
@media (max-width: 480px) {
  .footer {
    padding: 40px 16px 24px;
  }

  .footer-container {
    gap: 28px;
  }

  .footer-top {
    gap: 16px;
  }

  .footer-brand {
    gap: 16px;
    max-width: 100%;
  }

  .footer-logo {
    width: 70px;
    height: 70px;
    padding: 18px;
  }

  .footer-description {
    font-size: 14px;
    line-height: 22px;
  }

  .footer-social {
    gap: 24px;
  }

  .social-link {
    width: 20px;
    height: 20px;
  }

  .contact-item {
    font-size: 14px;
    line-height: 22px;
  }

  .contact-item svg {
    width: 20px;
    height: 20px;
  }

  .footer-divider {
    margin: 16px 0;
  }

  .footer-bottom {
    gap: 16px;
  }

  .footer-copyright,
  .footer-developer {
    font-size: 13px;
    line-height: 22px;
  }

  .developer-logo img {
    height: 20px;
  }
}
