*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #4a5565;
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  border: none;
  cursor: pointer;
  background: none;
}

.container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 16px;
}
.heading-line {
  position: relative;
}

.heading-line::after {
  position: absolute;
  content: "";
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #039F9E 0%, #068786 100%);
  border-radius: 2px;
  bottom: 20px;
  z-index: 1;
  margin-left: 16px;
}
h1.login-heading.heading-line:after {
  bottom: 0;
}
/* Topbar */
.topbar {
  border-bottom: 1px solid #F1F1F3;
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #039f9e 0%, #068786 100%);
  color: #ffffff;
  font-weight: 700;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.logo-subtitle {
  font-size: 11px;
  color: #a0aec0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 41px;
  font-size: 14px; 
}

.nav-link {
  position: relative;
  color: #4a5565;
  font-family: "Be Vietnam Pro", sans-serif;
}

.nav-link.active,
.nav-link:hover {
  color: #039f9e;
}
.nav-link.active::after {
  background: transparent;
}
.nav-link.active::after,
.nav-link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #01A2A1 0%, #01A2A1 100%);
  top: 46px;
}

.auth-actions {
  display: flex;
  align-items: center;
  gap: 27px;
}

.auth-actions a {
  text-decoration: none;
  display: inline-block;
}

.auth-actions a.active {
  opacity: 1;
  pointer-events: none;
}

.btn-text {
  font-size: 14px;
  color: #4a5565;
  text-decoration: none;
}

.btn-text.active {
  color: #039F9E;
  font-weight: 600;
}

.btn-primary {
  padding: 10px 22px;
  border-radius: 10px;
  background: linear-gradient(90deg, #039f9e 0%, #068786 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

.btn-small {
  padding-inline: 20px;
}
.topbar button.btn-small {
    padding: 12px 24px;
    font-weight: 400;
}
.btn-secondary {
  padding: 10px 24px;
  border-radius: 999px;
  background-color: #ffffff;
  color: #039f9e;
  font-size: 14px;
  font-weight: 500;
}

.btn-outline {
  padding: 10px 24px;
  border-radius: 999px;
  border: 1px solid #cbd5e0;
  background-color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  color: #4a5565;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  color: #191A15;
  font-family: 'Inter';
  font-weight: 500;
}

.btn-light {
  padding: 12px 32px;
  border-radius: 999px;
  background-color: #ffffff;
  color: #039f9e;
  font-weight: 600;
  font-size: 14px;
}

.full-width {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background-color: #4a5565;
  transition: all 0.3s ease;
  display: block;
}

@media (max-width: 768px) {
  .topbar-inner {
    padding-block: 12px;
    position: relative;
  }

  .main-nav,
  .auth-actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
    position: relative;
    z-index: 21;
  }

  /* Hamburger to X transformation */
  .nav-toggle {
    justify-content: center;
    align-items: center;
  }

  .topbar.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .topbar.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
    width: 0;
  }

  .topbar.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background-color: #ffffff;
    width: 100%;
  }

  .topbar.is-open {
    background-color: #ffffff;
  }

  .topbar.is-open .topbar-inner {
    background-color: #ffffff;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
  }

  .topbar.is-open .container {
    background-color: #ffffff;
  }

  .topbar.is-open .topbar-inner::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    min-height: 100vh;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1;
    animation: slideDown 0.3s ease-out;
  }

  .topbar.is-open .main-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    background-color: transparent;
    border-top: 1px solid #f1f1f3;
    padding: 20px 24px 0;
    gap: 0;
    z-index: 2;
  }

  .topbar.is-open .main-nav .nav-link {
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
  }

  .topbar.is-open .main-nav .nav-link.active {
    color: #039f9e;
    font-weight: 600;
  }

  .topbar.is-open .main-nav .nav-link.active::after {
    display: none;
  }

  .topbar.is-open .auth-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 272px);
    width: 100%;
    background-color: transparent;
    padding: 12px 24px 20px;
    gap: 12px;
    z-index: 2;
  }

  .topbar.is-open .auth-actions .btn-text {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    font-size: 16px;
    border: 1px solid #039f9e;
    border-radius: 999px;
    background-color: transparent;
    color: #039f9e;
    font-weight: 500;
  }

  .topbar.is-open .auth-actions .btn-primary {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    font-size: 16px;
    border-radius: 999px;
  }

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

/* Hero */
.hero {
  padding: 85px 0 70px;
  background: radial-gradient(circle at right, #e6fffa 0, #ffffff 55%);
  position: relative;
  overflow: hidden;
}
.hero:after {
  content: "";
  background: rgba(1, 162, 161, 0.12);
  filter: blur(100px);
  bottom: 0;
  position: absolute;
  width: 100%;
  max-width: 752px;
  height: 100%;
  max-height: 769px;
  left: -10%;
  top: 81px;
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-content:before {
  content: "";
  background: url(../images/Polygon1.svg);
  position: absolute;
  width: 100%;
  max-width: 200px;
  height: auto;
  aspect-ratio: 1;
  left: 0;
  top: 0;
  background-size: contain;
  background-repeat: no-repeat;
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: center;
  gap: 40px;
}
.eyebrow {
  font-size: 14px;
  font-weight: 500;
  color: #4a5565;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 66px;
  font-weight: 700;
  color: #001431;
}

.hero-content h1 span {
  color: #039f9e;
}

.hero-subtitle {
  margin-top: 17px;
  color: #2F2F2F;
  font-size: 20px;
  line-height: 36px;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.hero-image {
  position: relative;
}

.hero-circle {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 383.48px;
  height: 383.48px;
  border-radius: 50%;
  background: url(../images/Asian-Medical-Tile.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
}

.hero-image img {
  position: relative;
  z-index: 1;
  top: -65px;
}
.hero-actions button.btn-primary {
  padding: 17.5px 29px;
  font-size: 18px;
}
/* Search strip */
.search-strip {
  background: linear-gradient(90deg, #039f9e 0%, #068786 100%);
  padding: 40px 0;
  text-align: center;
}

.search-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-label {
  color: #ffffff;
  font-weight: 500;
  font-size: 23px;
  line-height: 63px;
  font-family: 'Poppins';
  text-align: center;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: 8px;
  padding-inline: 4px;
  gap: 8px;
  width: 100%;
  max-width: 837px;
  margin: 0 auto;
  height: 52px;
}

.search-input-wrap button.btn-secondary {
  border-radius: 8px;
  background-color: #02A1A0;
  color: #fff;
  font-size: 13px;
  font-family: 'Poppins';
  padding: 11px 28px;
  font-weight: bold;
}
.search-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  margin-left: 13px;
}

.search-input-wrap input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 15px;
  color: #A8A8A8;
  font-family: 'Poppins';
  font-weight: 400;
  padding-left: 16px;
}

.search-input-wrap input::placeholder {
  color: #a0aec0;
}

/* Sections generic */
.section {
  padding: 72px 0;
  overflow: hidden;
  width: 100%;
}

.section-header {
  margin-bottom: 32px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 21px;
  line-height: 63px;
  font-family: 'Poppins';
  font-weight: 600;
  color: #001431;
}

.section-header h2 span {
  color: #02A1A0;
}

.section-header.center {
  text-align: center;
}

.section-header.center p {
  margin: 0 auto;
  color: #4A5565;
  font-size: 20px;
  line-height: 36px;
  font-family: Montserrat;
}

/* About */
.about-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 21px;
  line-height: 63px;
  font-family: 'Poppins';
  font-weight: 600;
  color: #001431;
}

.about-text h2 span {
  color: #02A1A0;
}

.about-text p {
  margin-top: 20px;
  font-size: 17px;
  line-height: 33px;
  font-family: 'Poppins';
  color: #2F2F2F;
}
section.section.about {
  padding: 98px 0 64px;
}
.about-stats {
  background: linear-gradient(90deg, #039f9e 0%, #068786 100%);
  padding: 40px 0;
  width: 100%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  text-align: center;
}

.stat-value {
  font-size: 37px;
  font-weight: 700;
  color: #ffffff;
}
.about-stats .stat-label {
  font-size: 16px;
  color: #ffffff;
}
.about-stats .stat-value {
  font-size: 37px;
  font-weight: 700;
  color: #ffffff;
}
.stat-label {
  font-size: 16px;
  color: #ffffff;
}

/* How it works */
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 23px;
}

.hiw-card {
  padding: 44px 20px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.13);
  border-radius: 13px;
}

.hiw-card h3 {
  margin-top: 21px;
  font-size: 20px;
  line-height: 44px;
  font-family: 'Poppins';
  text-align: center;
  font-weight: 600;
  color: #1A181A;
}

.hiw-card p {
  font-size: 16px;
  line-height: 30px;
  color: #4A5565;
  text-align: center;
}

.hiw-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

/* About Us Page */
.about-banner-section {
  width: 100%;
  padding: 0;
  position: relative;
}

.about-banner-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.about-banner-image {
  width: 100%;
  height: 530px;
  display: block;
  object-fit: cover;
}

.about-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 530px;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.about-banner-content {
  padding: 0;
  color: #FFFFFF;
  max-width: 605px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  margin: 0 auto;
}

.about-banner-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 66px;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-align: center;
}

.about-banner-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 31px;
  color: #FFFFFF;
  margin-bottom: 35px;
  text-align: center;
}

.about-banner-content .btn-primary {
  background-color: #01A2A1;
  color: #FFFFFF;
  padding: 9px 33px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  display: inline-block;
  margin: 0 auto;
}

.preparing-section {
  padding: 60px 0 0px;
  text-align: center;
}

.preparing-section .heading-line {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 63px;
  color: #001431;
  margin-bottom: 0;
}

.preparing-section .heading-line span {
  color: #02A1A0;
}

.about-content-section {
  padding: 110px 0 0;
}
section.section.how-it-works {
  padding-top: 113px;
}
.about-content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 153px;
}

.about-content-block:last-child {
  margin-bottom: 0;
}

.about-content-block-reverse {
  grid-template-columns: 1fr 1fr;
}

.about-content-text {
  display: flex;
  flex-direction: column;
}

.about-content-text h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 63px;
  color: #001431;
  margin-bottom: 10px;
}

.about-content-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  line-height: 40px;
  color: #767676;
  margin: 0;
}

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

.about-content-image {
  width: 100%;
  max-width: 453px;
  height: auto;
  display: block;
}

/* Benefits */
.benefits-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 63px;
  align-items: center;
}

.benefits-text h2 {
  font-size: 36px;
  margin-bottom: 47px;
  line-height: 63px;
  color: #1A181A;
  letter-spacing: 0.2px;
}
.section.benefits {
  background-color: #FAFBFC;
  padding: 47px 0 55px;
}
.benefits-text h2 span {
  color: #039F9E;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 32px;
  font-size: 14px;
}

.benefits-list li {
  position: relative;
  padding-left: 32px;
  display: flex;
  align-items: center;
  font-size: 21px;
  line-height: 30px;
  color: #191A15;
  font-family: 'Poppins';
  margin-bottom: 30px;
}

.benefits-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("../images/Subtract.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.benefits-image {
  position: relative;
}

.benefits-circle {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 383.48px;
  height: 383.48px;
  border-radius: 50%;
  background: url(../images/Asian-Medical-Tile.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
  opacity: 0.8;
}

.benefits-image img {
  position: relative;
  z-index: 2;
}

/* Pricing */
.pricing {
  padding: 52px 0 70px;
}

.billing-toggle {
  display: flex;
  justify-content: center;
  padding: 4px;
  margin: 0 auto 52px;
  background: #FFFFFF;
  box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  width: fit-content;
}

.pricing .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.billing-btn {
  padding: 8px 28px;
  border-radius: 999px;
  font-size: 18px;
  color: #191A15;
  line-height: 30px;
}

.billing-btn.active {
  color: #ffffff;
  background: #039F9E;
  border-radius: 10px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.price-card {
  padding: 24px 20px 28px;
  border-radius: 20px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 9px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
article.price-card:hover {
  border: 1px solid #01A2A1;
}
.price-card-featured h3 {
  color: #fff;
}
.price-card-featured p.price-subtitle {
  color: #fff;
}
.price-card-featured {
  background: #039F9E;
  transform: translateY(-12px);
  color: #fff;
  position: relative;
}
.price-card-featured:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 538px;
  background: url(../images/price-box-circle.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.price-card h3 {
  font-size: 30px;
  margin-bottom: 4px;
  color: #191A15;
  text-align: center;
  font-family: inter;
  font-weight: 600;
}
.price-card-featured h3 {
  color: #fff;
}
.price-subtitle {
  font-size: 18px;
  color: #A6A6A6;
  line-height: 27px;
  text-align: center;
  max-width: 251px;
  margin: 0 auto;
  margin-bottom: 13px;
}
article.price-card .btn-outline {
  background: #FFFFFF;
  box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  color: #039F9E;
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
  font-family: 'Inter';
  border: none;
}
.price-value {
  margin: 18px 0;
  display: flex;
  align-items: baseline;
  gap: 4px;
  justify-content: center;
}

.price-currency {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  font-family: 'Inter';
  position: relative;
  top: -30px;
}

.price-amount {
  font-size: 50px;
  font-weight: 600;
  line-height: 30px;
  color: #191A15;
  text-align: center;
  font-family: 'Inter';
}

.price-tag {
  margin: 0 auto;
  margin-bottom: 15px;
  font-size: 14px;
  padding: 3px 8px;
  border-radius: 10px;
  background-color: #85DAB9;
  color: #fff;
  line-height: 30px;
  font-family: 'Inter';
  font-weight: 600;
}
.price-card-featured .price-amount {
  color: #fff;
}
.price-card-featured .price-features button.btn-primary {
  line-height: 30px;
  background-color: #039F9E;
  padding: 15px 20px;
  font-size: 18px;
  font-family: 'Inter';
  font-weight: 600;
  border-radius: 999px;
}
.price-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
  background-color: #F9FAFB;
  border-radius: 10px;
  padding: 26px 37px;
}
.price-features ul {
  list-style: none;
  font-size: 18px;
  color: #191A15;
  font-family: 'Inter';
  line-height: 30px;
  gap: 24px;
  display: flex;
  flex-direction: column;
}

.price-features ul li {
  position: relative;
  padding-left: 32px;
  display: flex;
  align-items: center;
}

.price-features ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("../images/Subtract.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

/* Why choose */
.why-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 0px;
  align-items: center;
}

.why-text h2 {
  font-size: 36px;
  margin-bottom: 30px;
  line-height: 63px;
  letter-spacing: 0.2px;
  font-family: 'Poppins';
  color: #1A181A;
}

.why-text h2 span {
  color: #039f9e;
}

.why-text h4 {
  font-size: 23px;
  margin-bottom: 4px;
  line-height: 63px;
  letter-spacing: 0.2px;
  color: #1A181A;
  font-family: 'Poppins';
  font-weight: 600;
}
section.section.why-choose {
  padding: 0;
}
.why-text p {
  font-size: 17px;
  color: #2F2F2F;
  line-height: 33px;
  font-family: 'Poppins';
  letter-spacing: 0.2px;
  margin-bottom: 25px;
}
.why-text p:last-child {
  margin: 0;
}
.why-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  right: 20px;
}

.why-circle {
  position: absolute;
  top: 58%;
  left: 70%;
  transform: translate(-50%, -50%);
  width: 383.48px;
  height: 383.48px;
  border-radius: 50%;
  background: url(../images/Asian-Medical-Tile.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
}

.why-image img {
  position: relative;
  z-index: 2;
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

/* CTA */
.cta {
  padding-bottom: 60px;
  margin-top: 38px;
}

.cta-inner {
  padding: 48px 83px 51px 51px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  position: relative;
  background: linear-gradient(90deg, #039F9E 0%, #068786 100%);
  border-radius: 32px;
  overflow: visible;
}

.cta-inner::before {
  content: "";
  position: absolute;
  width: 442px;
  height: 442px;
  border-radius: 50%;
  background: url(../images/Asian-Medical-Tile.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  left: -65px;
  bottom: -47px;
  z-index: 0;
}

.cta-text {
  position: relative;
  z-index: 1;
  color: #ffffff;
}
.cta-text button.btn-light {
  font-family: 'Inter';
  font-size: 18px;
  font-weight: 500;
  padding: 20px 32px;
}
.cta-text h2 {
  font-size: 35px;
  margin-bottom: 7px;
  line-height: 54px;
  letter-spacing: 0.2px;
  font-family: 'Poppins';
  font-weight: 600;
}

.cta-text p {
  font-weight: 400;
  line-height: 34px;
  font-size: 20px;
  margin-bottom: 47px;
  font-family: 'Poppins';
  letter-spacing: 0.2px;
}

.cta-image {
  position: absolute;
  z-index: 1;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  right: 83px;
  top: -18px;
}

.cta-image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Footer */
.footer {
  padding-top: 95px;
  border-top: 1px solid #DFDADA;
  font-family: "DM Sans", sans-serif;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr);
  gap: 40px;
  padding-bottom: 97px;
}

.footer-desc {
  font-size: 19px;
  color: #0F2841;
  margin-top: 25px;
  max-width: 413px;
  line-height: 34px;
  font-family: 'Poppins';

}
.footer-bottom-links a {
  font-size: 18px;
  line-height: 40px;
  font-family: 'Poppins';
  color: #fff;
  font-weight: 500;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 38px;
}

.social-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  border-radius: 0;
  background-color: transparent;
  line-height: 0;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.social-dot:hover {
  opacity: 0.8;
}

.social-dot svg {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.footer-col a:hover {
  color: #0AA2A1;
}


.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.footer-col h4 {
  font-size: 26px;
  margin-bottom: 30px;
  color: #0AA2A1;
  line-height: 30px;
  font-family: "DM Sans", sans-serif;
}

.footer-col a {
  display: block;
  font-size: 21px;
  color: #0F2841;
  margin-bottom: 20px;
  line-height: 27px;
  font-family: "DM Sans", sans-serif;
}

.footer-bottom {
  border-top: 1px solid #e2e8f0;
  padding: 14px 0;
  font-size: 12px;
  color: #a0aec0;
  background-color: #161616;
}
.footer-bottom span {
  font-size: 18px;
  line-height: 40px;
  font-family: 'Poppins';
  color: #fff;
  font-weight: 500;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-bottom-links a:first-child::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 16px;
  background-color: #6F6C90;
  margin-left: 16px;
  position: relative;
  top: 3px;
}

/* Responsive */
@media (max-width: 1199px) {
  .footer-inner {
    gap: 20px;
  }
  .footer-col a {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 24px;
}
.footer-columns {
  gap: 12px;
}
.why-image {
  right: 0;
}
.search-input-wrap {
  width: 100%;
}
}
/* Tablet (iPad) - 768px to 1024px */
@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }
  .container.topbar-inner {
    padding: 16px 24px;
  }

  .about-banner-overlay {
    width: 100%;
  }

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

  .contact-info-panel {
    max-width: 100%;
    width: 100%;
  }

  .contact-form-panel {
    width: 100%;
    padding-left: 16px;
  }

  .about-banner-content h1 {
    font-size: 40px;
    line-height: 54px;
  }

  .about-banner-subtitle {
    font-size: 18px;
    line-height: 32px;
  }

  .about-content-block {
    gap: 50px;
  }
.benefits-list li {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 16px;
}
.cta {
  padding-left: 24px;
  padding-right: 24px;
}
.benefits-list {
  gap: 8px 12px;
}
  .hero-inner,
  .about-grid,
  .benefits-inner,
  .why-inner {
    gap: 40px;
  }

  .hiw-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-inner {
    padding: 40px 40px 40px 40px;
  }

  .cta-image {
    right: 40px;
  }

  .why-circle {
    width: 300px;
    height: 300px;
  }

  .benefits-circle {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 992px) {
  .hero-inner,
  .about-grid,
  .benefits-inner,
  .why-inner,
  .cta-inner,
  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-banner-overlay {
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
  }

  .about-banner-content h1 {
    font-size: 36px;
    line-height: 48px;
  }

  .about-banner-subtitle {
    font-size: 17px;
    line-height: 30px;
  }

  .preparing-section .heading-line {
    font-size: 32px;
    line-height: 48px;
  }

  .about-content-text h3 {
    font-size: 32px;
    line-height: 48px;
  }

  .about-content-text p {
    font-size: 16px;
    line-height: 30px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 20px;
  }

  .contact-info-panel {
    padding: 40px 30px;
    max-width: 100%;
    width: 100%;
  }

  .contact-form-panel {
    padding: 40px 30px;
    width: 100%;
    padding-left: 30px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .price-card-featured {
    transform: none;
  }

  .hero {
    padding-top: 40px;
  }

  .about-stats {
    padding: 30px 0;
  }

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

  .cta-inner {
    padding: 32px 20px;
    overflow: hidden;
  }

  .cta-image {
    position: relative;
    right: auto;
    top: auto;
    margin-top: 24px;
  }

  .why-image {
    margin-top: 24px;
  }

}

/* Mobile - 768px and below */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 60px 0 40px;
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: 44px;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 28px;
  }

  .hero-image {
    margin-top: 24px;
  }

  .hero-circle {
    width: 250px;
    height: 250px;
  }

  .hero:after {
    display: none;
  }

  .hero-content:before {
    max-width: 120px;
  }

  .hero-image img {
    max-width: 100%;
    height: auto;
  }

  .search-strip {
    padding: 24px 0;
  }

  .search-label {
    font-size: 18px;
    line-height: 28px;
  }

  .search-input-wrap {
    height: 48px;
    padding-inline: 8px;
  }

  .section-header h2 {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 16px;
  }

  .section-header.center p {
    font-size: 16px;
    line-height: 28px;
  }

  .about-grid {
    gap: 24px;
  }

  .about-text h2 {
    font-size: 28px;
    line-height: 40px;
  }

  .about-text p {
    font-size: 15px;
    line-height: 28px;
  }

  .about-content-text h3 {
    font-size: 28px;
    line-height: 40px;
  }

  .about-content-text p {
    font-size: 15px;
    line-height: 28px;
  }

  .about-stats {
    padding: 24px 0;
  }

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

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

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

  .hiw-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .hiw-card {
    padding: 32px 20px;
  }

  .hiw-card h3 {
    font-size: 18px;
    line-height: 32px;
  }

  .hiw-card p {
    font-size: 14px;
    line-height: 24px;
  }

  .benefits-inner {
    gap: 24px;
  }

  .benefits-text h2 {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 24px;
  }

  .benefits-list li {
    font-size: 16px;
    line-height: 24px;
  }

  .benefits-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 24px;
  }

  .benefits-image img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
  }

  .about-photos img {
    max-width: 100%;
    height: auto;
    width: 100%;
  }

  .about-banner-overlay {
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
  }

  .about-banner-content h1 {
    font-size: 32px;
    line-height: 44px;
    margin-bottom: 16px;
  }

  .about-banner-subtitle {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 24px;
  }

  .preparing-section {
    padding: 40px 0 24px;
  }

  .preparing-section .heading-line {
    font-size: 28px;
    line-height: 40px;
  }

  .about-content-section {
    padding: 24px 0 40px;
  }


  .about-content-text h3 {
    font-size: 28px;
    line-height: 40px;
  }

  .about-content-text p {
    font-size: 15px;
    line-height: 28px;
  }

  .hero-image {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .billing-toggle {
    margin-bottom: 32px;
  }

  .price-card {
    padding: 24px 16px;
  }

  .price-card h3 {
    font-size: 24px;
  }

  .price-amount {
    font-size: 40px;
  }

  .price-features {
    padding: 20px 24px;
  }

  .price-card-featured:after {
    height: auto;
    max-height: 400px;
  }

  .price-card-featured {
    transform: none;
  }

  .why-inner {
    gap: 24px;
  }

  .why-text h2 {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 10px;
  }

  .why-text h4 {
    font-size: 20px;
    line-height: 32px;
  }

  .why-text p {
    font-size: 15px;
    line-height: 28px;
  }

  .why-image {
    position: relative;
    right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .cta {
    padding: 40px 16px;
    margin-top: 24px;
  }

  .cta-inner {
    padding: 32px 24px;
    text-align: center;
  }

  .cta-text h2 {
    font-size: 28px;
    line-height: 40px;
  }

  .cta-text p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 24px;
  }

  .cta-image {
    position: relative;
    right: auto;
    top: auto;
    margin-top: 24px;
    justify-content: center;
  }

  .cta-inner::before {
    width: 200px;
    height: 200px;
    left: -10px;
    bottom: -10px;
  }

  .cta-inner {
    overflow: visible;
    padding-bottom: 0;
  }

  .cta-image img {
    max-width: 100%;
    height: auto;
  }

  .footer {
    padding-top: 40px;
  }

  .footer-inner {
    padding-bottom: 40px;
    gap: 24px;
  }

  .footer-columns {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .footer-col h4 {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .footer-col a {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 0;
    text-align: center;
  }

  .footer-bottom span {
    font-size: 14px;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 0px;
  }

  .footer-bottom-links a {
    font-size: 14px;
  }

  .footer-bottom-links a:first-child::after {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .contact-section {
    padding: 40px 0;
  }

  .contact-header {
    margin-bottom: 32px;
  }

  .contact-header h1 {
    font-size: 24px;
    line-height: 36px;
  }

  .contact-header p {
    font-size: 14px;
    line-height: 24px;
  }

  .contact-info-panel {
    padding: 32px 20px;
  }

  .contact-info-panel h2 {
    font-size: 24px;
    line-height: 36px;
  }

  .contact-info-subtitle {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 32px;
  }

  .contact-details {
    gap: 20px;
  }

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

  .contact-icon {
    width: 20px;
    height: 20px;
  }

  .contact-wrapper {
    padding: 10px;
    gap: 16px;
  }

  .contact-info-panel {
    max-width: 100%;
    width: 100%;
  }

  .contact-form-panel {
    padding: 32px 20px;
    width: 100%;
    padding-left: 20px;
  }

  .contact-form .form-group {
    margin-bottom: 20px;
  }

  .form-actions {
    justify-content: center;
  }

  .form-actions .btn-primary {
    width: 100%;
    padding: 14px 24px;
  }

  .about-content-block.about-content-block-reverse {
    flex-direction: column-reverse;
    display: flex;
}
section.section.how-it-works {
  padding-top: 30px;
}
  .about-content-block {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }
  .about-content-block-reverse {
    grid-template-columns: 1fr;
}
  .about-content-block {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
}
.about-content-block {
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
  .form-grid-3col .form-row {
    grid-template-columns: 100%;
}
  .benefits-list {
    flex-direction: column;
    display: flex;
  }
  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    width: 100%;
  }
  .price-features ul {
    gap: 16px;
  }
  .price-subtitle {
    max-width: 100%;
  }
  .section.benefits {
    padding: 47px 0 90px;
  }

  /* Search input and button fixes for small mobile */
  .search-input-wrap {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    height: auto;
    padding: 12px;
    align-items: center;
  }

  .search-icon {
    width: 20px;
    height: 20px;
    margin-left: 0;
    grid-column: 1;
    grid-row: 1;
    align-self: center;
  }

  .search-input-wrap input {
    font-size: 14px;
    padding: 12px 8px 12px 8px;
    grid-column: 2;
    grid-row: 1;
    border: none;
    outline: none;
  }

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

  .search-input-wrap button.btn-secondary {
    font-size: 14px;
    padding: 12px 24px;
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    border-radius: 8px;
  }
}

/* Login Page Styles */
.login-section {
  padding: 80px 0;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
}

.login-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.login-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  width: 100%;
}

.login-circle {
  position: absolute;
  width: 383px;
  height: 383px;
  border-radius: 50%;
  background: url(../images/Asian-Medical-Tile.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
  inset: 0;
  margin: auto;
}

.login-image img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  top: -50px;
}

/* Forgot password page - no circle background */
.forgot-password-section .login-image {
  min-height: auto;
}

.forgot-password-section .login-circle {
  display: none;
}

.login-form-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-form {
  width: 100%;
  max-width: 450px;
}

.login-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #171829;
  margin-bottom: 16px;
  line-height: 24px;
}

.login-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #9B9B9B;
  margin-bottom: 32px;
  line-height: 24px;
}

.form {
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 19px;
}

.form-group label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #171829;
  margin-bottom: 8px;
  line-height: 21px;
}

.form-group input {
  width: 100%;
  padding: 10px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #4A5565;
  outline: none;
  transition: border-color 0.3s ease;
  background: rgba(211, 213, 248, 0.1);
  border: 1px solid #F1F1F1;
  border-radius: 6px;
}

.form-group input:focus {
  border-color: #039F9E;
}

.form-group input::placeholder {
  color: #A8A8A8;
}

.password-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-input-wrapper input {
  padding-right: 50px;
}

.password-toggle {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.password-toggle svg {
  width: 20px;
  height: 20px;
}

.form-footer {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
}

.forgot-password {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.75);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  line-height: 18px;
}

.forgot-password:hover {
  color: #068786;
}

.btn-login {
  width: 100%;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 21px;
}

.login-footer {
  text-align: center;
}

.login-footer p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #525252;
  margin-bottom: 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.login-footer p::before,
.login-footer p::after {
  content: '';
  width: 85px;
  height: 1px;
  background-color: #F0EDFF;
  flex-shrink: 0;
}

.btn-outline {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  padding: 16px 32px;
  background: transparent;
  border: 1px solid #F0EDFF;
  color: #1C1C1C;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 12px;
}

.btn-outline:hover {
  background: #01A2A1;
  color: #ffffff;
}

/* Login Page Responsive */
@media (max-width: 992px) {
  .login-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .login-image {
    order: 2;
    min-height: 400px;
  }

  .login-form-wrapper {
    order: 1;
  }

  .login-circle {
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .login-section {
    padding: 40px 0;
  }

  .login-heading {
    font-size: 32px;
  }

  .login-subtitle {
    font-size: 14px;
  }

  .login-image {
    min-height: 300px;
  }

  .login-circle {
    width: 300px;
    height: 300px;
  }
}

/* Create Account Page Styles */
.create-account-section {
  background-color: #FAFAFA;
  padding: 53px 0 78px;
  min-height: calc(100vh - 200px);
}

.create-account-header {
  text-align: center;
  margin-bottom: 48px;
}

.create-account-header h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #171829;
  margin-bottom: 12px;
  line-height: 24px;
}

.create-account-header p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #9B9B9B;
  line-height: 24px;
}

/* Progress Steps */
.progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 38px;
  gap: 155px;
  background-color: #FFFFFF;
  padding: 16px 0;
  border-radius: 8px;
  border: 1px solid #FBFAFA;
  width: 100%;
  position: relative;
}
.progress-steps:before {
  position: absolute;
  content: "";
  background-color: #FBFAFA;
  height: 5px;
  max-width: 496px;
  width: 100%;
  top: 33px;
  left: 0;
  right: 0;
  bottom: 14px;
  margin: 0 auto;
  z-index: 0;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  z-index: 1;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #FBFAFA;
  color: #4D5E80;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  line-height: 1;
  text-align: center;
  border: 1px solid #EEEEEE;
}

.step-item.active .step-circle {
  background-color: #039F9E;
  color: #FFFFFF;
  border: 5px solid #FFFFFF;
  box-shadow: 0 0 0 3px #039F9E;
  line-height: 1;
  text-align: center;
}

.step-label {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #4D5E80;
  line-height: 21px;
  font-weight: 500;
}

/* Account Type Section */
.account-type-section {
  margin-top: 48px;
}

.account-type-section .section-header h2 {
  color: #171829;
  font-size: 22px;
  line-height: 24px;
  margin-bottom: 10px;
  font-weight: 500;
}

.account-type-section .section-header p {
  color: #9B9B9B;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Poppins';
}

.account-type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.account-type-card {
  background: #FFFFFF;
  box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 41px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.account-type-card:hover {
  border: 1px solid #01A2A1;
  transform: translateY(-4px);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
}

.account-icon {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 108px;
  background-color: #F6F6F6;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.account-icon img {
  max-width: 60px;
  height: auto;
  transition: all 0.3s ease;
}

.account-type-card:hover .account-icon {
  background-color: #01A2A1;
}

.account-type-card:hover .account-icon img {
  filter: brightness(0) invert(1);
}

.account-type-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #171829;
  margin-bottom: 8px;
  line-height: 22px;
}

.account-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #9B9B9B;
  margin-bottom: 16px;
  line-height: 24px;
}

.account-description {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #039F9E;
  margin-bottom: 42px;
  line-height: 27px;
}

.account-features {
  width: 100%;
  margin-bottom: 0;
  flex: 1;
  background-color: #F9FAFB;
  padding: 20px 16px 24px;
  border-radius: 8px;
}

.account-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.account-features ul li {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #171829;
  line-height: 30px;
  margin-bottom: 22px;
  padding-left: 36px;
  position: relative;
}

.account-features ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  background: url(../images/Subtract.png) no-repeat center;
  background-size: contain;
}

.btn-account-type {
  font-family: inter;
  font-size: 18px;
  font-weight: 600;
  color: #039F9E;
  background: #FFFFFF;
  border-radius: 9px;
  padding: 21px 24px;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 9px;
  line-height: 30px;
  box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.05);
}

.btn-account-type:hover {
  background: #039F9E;
  color: #FFFFFF;
  border-color: #039F9E;
}

.account-type-card:hover .btn-account-type {
  background: #039F9E;
  color: #FFFFFF;
}

/* Create Account Responsive */
@media (max-width: 992px) {
  .account-type-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .create-account-header h1 {
    font-size: 32px;
  }

  .progress-steps {
    gap: 100px;
    padding: 15px 20px;
  }

  .progress-steps::before {
    max-width: 85%;
  }
}

@media (max-width: 768px) {
  .create-account-section {
    padding: 40px 0 60px;
  }

  .create-account-header h1 {
    font-size: 28px;
  }

  .create-account-header p {
    font-size: 14px;
  }

  .progress-steps {
    margin-bottom: 40px;
    gap: 50px;
    padding: 14px 10px;
  }

  .progress-steps::before {
    max-width: 75%;
    height: 4px;
    top: 30px;
  }

  .step-circle {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .step-item.active .step-circle {
    border: 4px solid #FFFFFF;
    box-shadow: 0 0 0 2.5px #039F9E;
  }

  .step-label {
    font-size: 11px;
    line-height: 16px;
  }

  .account-type-card {
    padding: 32px 20px 20px 20px;
  }
}
@media (max-width: 640px) {
  .about-stats .stat-value {
    font-size: 24px;
    line-height: 30px;;
}
  .account-type-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .account-type-card {
    padding: 20px 20px 20px 20px;
  }
}
/* Completed Step Styling */
.step-item.completed .step-circle {
  background-color: #039F9E;
  color: #FFFFFF;
  border: 1px solid #039F9E;
}

/* Account Info Section */
.account-info-section {
  margin-top: 48px;
  background-color: #fff;
  padding: 26px 0 35px 0;
}
.account-info-section .section-header {
  background-color: #fff;
  border-radius: 0;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.8);
}
.account-info-section .section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #171829;
  margin-bottom: 10px;
  line-height: 24px;
}

.account-info-section .section-header p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #9B9B9B;
  line-height: 24px;
  margin-bottom: 34px;
}

.account-info-form {
  max-width: 100%;
  padding: 0 35px 0 35px;
}

.form-grid-3col {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
}

.form-grid-3col .form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 33px;
  margin-bottom: 28px;
}

.form-grid-3col .form-row:last-child {
  margin-bottom: 0;
}

.form-grid-3col .form-group {
  margin-bottom: 0;
}

/* Contact Details Section */
.contact-details-section {
  margin-top: 48px;
  background-color: #fff;
  padding: 26px 0 35px 0;
}

.contact-details-section .section-header {
  background-color: #fff;
  border-radius: 0;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.8);
}

.contact-details-section .section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #171829;
  margin-bottom: 10px;
  line-height: 24px;
}

.contact-details-section .section-header p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #9B9B9B;
  line-height: 24px;
  margin-bottom: 34px;
}

.contact-details-form {
  max-width: 100%;
  padding: 0 35px 0 35px;
}

.contact-details-form .form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 33px;
}
.privacy-section {
    margin-bottom: 32px;
    border: 2px solid #E0E0E0;
    padding: 16px;
    border-radius: 10px;
}
.contact-details-form .form-row:last-of-type {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 0;
}

/* Privacy Section */
.privacy-section {
  margin-bottom: 16px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #039F9E;
  flex-shrink: 0;
}

.checkbox-label {
font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #171829;
  line-height: 21px;
  cursor: pointer;
  margin-bottom: 0;
}

.privacy-description {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #6E6E6E;
    line-height: 21px;
    margin-left: 32px;
    margin-top: 0;
}

/* Terms Disclaimer */
.terms-disclaimer {
  margin-bottom: 0;
    border: 2px solid #E0E0E0;
    padding: 16px;
    border-radius: 10px;
}

.terms-disclaimer p {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #6E6E6E;
  line-height: 25px;
  margin: 0;
}

.terms-disclaimer a {
  color: #039F9E;
  text-decoration: none;
  font-weight: 500;
}

.terms-disclaimer a:hover {
  text-decoration: underline;
}

/* Form Actions */
.form-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 31px;
}

.btn-back {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #171829;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  padding: 10px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 27px;
  max-height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-back:hover {
  background: #F9F9F9;
  border-color: #039F9E;
}

.btn-next,
.btn-submit {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #FFFFFF;
  background: #039F9E;
  border: none;
  border-radius: 8px;
  padding: 10px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 27px;
  max-height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-next:hover,
.btn-submit:hover {
  background: #068786;
}

/* Responsive Styles for Account Info and Contact Details */
@media (max-width: 992px) {
  .form-grid-3col .form-row {
    gap: 19px;
  }

  .form-grid-3col .form-row {
    margin-bottom: 19px;
  }

  .contact-details-form .form-row {
    gap: 16px;
  }

  .contact-details-form .form-row:last-of-type {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .account-info-section .section-header h2,
  .contact-details-section .section-header h2 {
    font-size: 20px;
  }

  .privacy-description {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .form-grid-3col .form-row {
    grid-template-columns: 100%;
  }
  .account-info-form {
    max-width: 100%;
    padding: 0 16px 0 16px;
  }
  .contact-details-form {
    max-width: 100%;
    padding: 0 16px 0 16px;
  }
  .form-grid-3col {
    margin-bottom: 0;
  }
  .account-info-section .section-header {
    padding: 0 16px;
  }
  .contact-details-section .section-header {
    padding: 0 16px;
  }
  .contact-details-form .form-row {
    grid-template-columns: 100%;
    gap: 0;
  }
  .contact-details-form .form-row:last-of-type {
    grid-template-columns: 100%;
  }

  /* Progress Steps Responsive */
  .progress-steps {
    gap: 40px;
    padding: 12px 16px;
  }

  .progress-steps::before {
    max-width: 70%;
    height: 3px;
    top: 28px;
  }

  .step-circle {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .step-item.active .step-circle {
    border: 3px solid #FFFFFF;
    box-shadow: 0 0 0 2px #039F9E;
  }

  .step-label {
    font-size: 10px;
    line-height: 14px;
  }
}

/* Tablet Responsive for Progress Steps */
@media (max-width: 992px) and (min-width: 768px) {
  .progress-steps {
    gap: 60px;
    padding: 14px 20px;
  }

  .progress-steps::before {
    max-width: 75%;
  }

  .step-circle {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .step-item.active .step-circle {
    border: 4px solid #FFFFFF;
    box-shadow: 0 0 0 2.5px #039F9E;
  }

  .step-label {
    font-size: 11px;
  }
}

/* Payment Page Styles */
.payment-page-section {
  background-color: #FAFAFA;
  padding: 53px 0 78px;
  min-height: calc(100vh - 200px);
}

.payment-page-section .create-account-header {
  margin-bottom: 48px;
}

/* Payment Content Layout */
.payment-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 29px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Secure Payment Section */
.secure-payment-section {
  margin-bottom: 0;
}

/* Checkout Panel */
.checkout-panel {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 9px 0 rgba(0, 0, 0, 0.05);
  max-width: 100%;
  height: 100%;
}

.checkout-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 44px;
}

.checkout-image {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.checkout-header-text {
  flex: 1;
  text-align: center;
}

.checkout-header-text .security-message {
  margin-bottom: 0;
}

/* Order Summary Section */
.order-summary-section {
  margin-top: 0;
}

.panel-title {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #171829;
  margin-bottom: 10px;
  line-height: 24px;
}
.order-summary-panel .panel-title {
  text-align: center;
  border-bottom: 1.5px solid #EDEDED;
  margin-bottom: 26px;
  padding-bottom: 26px;
}
.security-message {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #9B9B9B;
  margin-bottom: 24px;
  line-height: 24px;
}

/* Payment Methods */
.payment-methods {
  gap: 12px;
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
  padding: 7px;
  background: #FFFFFF;
  box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.payment-method-btn {
  flex: 1;
  padding: 18px 16px;
  border-radius: 8px;
  background: #FFFFFF;
  color: #171829;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.payment-method-btn:hover {
  border-color: #039F9E;
}

.payment-method-btn.active {
  background: #039F9E;
  color: #FFFFFF;
  border-color: #039F9E;
}

/* Payment Form */
.payment-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.payment-form .form-group label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #171829;
  margin-bottom: 8px;
  line-height: 21px;
}

.payment-form .form-group input {
  width: 100%;
  padding: 10px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #4A5565;
  outline: none;
  transition: border-color 0.3s ease;
  background: rgba(211, 213, 248, 0.1);
  border: 1px solid #F1F1F1;
  border-radius: 6px;
}

.payment-form .form-group input:focus {
  border-color: #039F9E;
}

.payment-form .form-group input::placeholder {
  color: #A8A8A8;
}

.card-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.card-input-wrapper input {
  padding-right: 60px;
}

.card-brand-img {
  position: absolute;
  right: 16px;
  width: auto;
  height: 20px;
  object-fit: contain;
}

.payment-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.payment-form .form-group {
  margin-bottom: 31px;
}
.btn-pay {
  width: 100%;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #FFFFFF;
  background: #039F9E;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 27px;
}

.btn-pay:hover {
  background: #068786;
}

/* Order Summary Panel */
.order-summary-panel {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 9px 0 rgba(0, 0, 0, 0.05);
  max-width: 100%;
  margin-bottom: 28px;
}


.order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 23px;
}

.order-label {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  color: #707070;
  line-height: 30px;
}

.order-value {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #121212;
  line-height: 30px;
}

.order-divider {
  height: 1px;
  background: #E5E5E5;
  margin: 16px 0;
  border: none;
  border-top: 1px dashed #E5E5E5;
}

.order-total {
  margin-top: 16px;
  margin-bottom: 0;
}

.order-total .order-label {
  font-weight: 600;
  color: #121212;
}

.order-total .order-value {
  font-weight: 600;
  color: #121212;
}

/* Security Features */
.security-features {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 4px 9px 0 rgba(0, 0, 0, 0.05);
  max-width: 100%;
}
.security-item:last-child img.security-icon {
  width: 28px;
  height: 28px;
}
.security-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 32px;
}

.security-item:last-child {
  margin-bottom: 0;
}

.security-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  object-fit: contain;
}

.security-item span {
  font-family: 'Poppins', sans-serif;
  font-size: 21px;
  color: #01A2A1;
  font-weight: 400;
  line-height: 30px;
}

.renewal-info {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #9B9B9B;
  line-height: 24px;
}

/* Payment Page Responsive */
@media (max-width: 992px) {
  .payment-content-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .payment-page-section {
    padding: 40px 0 60px;
  }

  .payment-page-section .create-account-header {
    margin-bottom: 32px;
  }

  .payment-content-wrapper {
    gap: 20px;
  }
  .payment-form .form-group {
    margin-bottom: 16px;
}
  .checkout-panel,
  .order-summary-panel {
    padding: 24px 20px;
  }

  .panel-title {
    font-size: 20px;
  }

  .checkout-image {
    width: 35px;
    height: 35px;
  }

  .payment-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .payment-method-btn {
    padding: 18px 10px;
}
}

/* Pricing Page Styles */
.pricing-page-section {
  background-color: #FAFAFA;
  padding: 53px 0 78px;
  min-height: calc(100vh - 200px);
}

.pricing-page-section .create-account-header {
  margin-bottom: 24px;
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 38px;
  flex-wrap: wrap;
  background: #fff;
  padding: 21px;
  border-radius: 7px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #039F9E;
  line-height: 24px;
  font-weight: 500;
}

.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #039F9E;
  display: inline-block;
  flex-shrink: 0;
}

.pricing-page-section .billing-toggle {
  margin-bottom: 52px;
}

/* Responsive Styles for Pricing Page */
@media (max-width: 768px) {
  .pricing-page-section {
    padding: 40px 0 60px;
  }
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}
  .pricing-page-section .create-account-header h1 {
    font-size: 28px;
  }


  .trust-item {
    font-size: 13px;
  }

  .pricing-page-section .billing-toggle {
    margin-bottom: 32px;
  }
}

@media (max-width: 640px) {
  .trust-indicators {
    align-items: flex-start;
  }
}

/* Search Results Section */
.search-results-section {
  padding: 44px 0 44px;
  background-color: #FAFAFA;
}

.search-results-section .section-header {
  margin-bottom: 32px;
}

.search-results-section .section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #171829;
  margin-bottom: 12px;
  line-height: 24px;
  text-align: center;
}

.search-results-section .section-header p {
  font-family: 'Poppins';
  font-size: 14px;
  color: #9B9B9B;
  line-height: 24px;
  margin: 0;
  text-align: center;
}

/* Search Bar Wrapper */
.search-bar-wrapper {
  margin-bottom: 40px;
}

.search-bar-form {
  max-width: 100%;
}

.search-bar-form .search-input-wrap {
  background-color: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  padding: 4px;
  height: 52px;
}

.search-bar-form .search-input-wrap input {
  color: #4A5565;
}

.search-bar-form .search-input-wrap input::placeholder {
  color: #A8A8A8;
}

/* Item Listings */
.item-listings {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.item-card {
  background: #FFFFFF;
  border-radius: 7px;
  padding: 12px;
  display: flex;
  gap: 24px;
  transition: all 0.3s ease;
}

.item-card:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.item-image {
  flex-shrink: 0;
  width: 235px;
  height: 175px;
  border-radius: 8px;
  overflow: hidden;
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.item-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.item-title {
  font-family: 'Poppins', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: #171829;
  line-height: 33px;
  margin: 0;
}

.status-badge {
  display: inline-block;
  padding: 0px 19px;
  border-radius: 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 20px;
  flex-shrink: 0;
}

.status-badge.active {
  background-color: #DCFBEA;
  color: #249F5D;
}

.item-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.item-category {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #767676;
  line-height: 24px;
  margin: 0;
}

.item-description {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #767676;
  line-height: 21px;
  margin: 0;
}

.item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #1D1D1D;
  line-height: 24px;
  font-weight: 500;
}

.meta-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Search Results Responsive */
@media (max-width: 768px) {
  .search-results-section {
    padding: 40px 0 60px;
  }

  .search-results-section .section-header h2 {
    font-size: 28px;
    line-height: 42px;
  }

  .search-results-section .section-header p {
    font-size: 16px;
    line-height: 28px;
  }

  .item-card {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  .item-image {
    width: 100%;
    height: 200px;
  }

  .item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .item-title {
    font-size: 20px;
    line-height: 30px;
  }

  .item-meta {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .search-results-section .section-header h2 {
    font-size: 24px;
    line-height: 36px;
  }

  .item-card {
    padding: 16px;
  }

  .item-image {
    height: 180px;
  }

  .search-bar-form .search-input-wrap {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    height: auto;
    padding: 12px;
    align-items: center;
  }

  .search-bar-form .search-icon {
    width: 20px;
    height: 20px;
    margin-left: 0;
    grid-column: 1;
    grid-row: 1;
    align-self: center;
  }

  .search-bar-form .search-input-wrap input {
    font-size: 14px;
    padding: 12px 8px;
    grid-column: 2;
    grid-row: 1;
    border: none;
    outline: none;
  }

  .search-bar-form .search-input-wrap input::placeholder {
    font-size: 14px;
  }

  .search-bar-form .search-input-wrap button.btn-secondary {
    font-size: 14px;
    padding: 12px 24px;
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    border-radius: 8px;
  }
}

/* Contact Us Page */
.contact-section {
  padding: 41px 0 72px;
  background-color: #FAFAFA;
}

.contact-header {
  text-align: center;
  margin-bottom: 42px;
}

.contact-header h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 24px;
  color: #171829;
  margin-bottom: 12px;
}

.contact-header p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 24px;
  color: #9B9B9B;
  margin: 0;
  font-weight: 400;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  padding: 10px 26px 10px 10px;
}

.contact-info-panel {
  padding: 40px 141px 40px 40px;
  display: flex;
  flex-direction: column;
  background: #01A2A1;
  border-radius: 10px;
  max-width: 491px;
  position: relative;
}
.contact-info-panel:after {
  background: url(../images/contact-circle.svg);
  width: 208px;
  height: 233px;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
}
.contact-info-panel h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 48px;
  color: #FFFFFF;
}

.contact-info-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 24px;
  color: #C9C9C9;
  margin-bottom: 114px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.contact-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  object-fit: contain;
}

.contact-form-panel {
  background-color: #FFFFFF;
  padding: 16px;
  width: 644px;
  padding-left: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 0;
}

.contact-form .form-group {
  margin-bottom: 27px;
}

.contact-form input {
  width: 310px;
}

.contact-form textarea {
  width: 100%;
  padding: 10px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #4A5565;
  outline: none;
  transition: border-color 0.3s ease;
  background: rgba(211, 213, 248, 0.1);
  border: 1px solid #F1F1F1;
  border-radius: 6px;
  resize: vertical;
  min-height: 161px;
}

.contact-form textarea:focus {
  border-color: #039F9E;
}

.contact-form textarea::placeholder {
  color: #A8A8A8;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 27px;
  padding-bottom: 21px;
}

.form-actions .btn-primary {
  background-color: #01A2A1;
  color: #FFFFFF;
  padding: 15px 32px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: background-color 0.3s ease;
}

.form-actions .btn-primary:hover {
  background-color: #039F9E;
}

/* ============================================
   DASHBOARD STYLES
   ============================================ */

.dashboard-wrapper {
  display: flex;
  min-height: 100vh;
  background-color: #FAFAFA;
  position: relative;
}

/* Mobile Menu Toggle */
.dashboard-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 101;
  background-color: #FFFFFF;
  border: 1px solid #F1F1F3;
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dashboard-menu-toggle span {
  width: 20px;
  height: 2px;
  background-color: #171829;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.dashboard-wrapper.sidebar-open .dashboard-menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.dashboard-wrapper.sidebar-open .dashboard-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.dashboard-wrapper.sidebar-open .dashboard-menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Sidebar */
.dashboard-sidebar {
  width: 280px;
  background-color: #FFFFFF;
  border-right: 1px solid #F1F1F3;
  padding: 24px 16px 0 0;
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 100;
}

.sidebar-logo {
  padding: 0 36px 35px 36px;
}

.sidebar-logo-image {
  object-fit: contain;
  display: block;
}

.sidebar-logo-text {
  display: flex;
  flex-direction: column;
}

.sidebar-logo-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #171829;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.sidebar-logo-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #9B9B9B;
  line-height: 18px;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-nav-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 16px;
  border-radius: 0 8px 8px 0;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #212121;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.3px;
}

.sidebar-nav-item:hover {
  background-color: #F9FAFB;
  color: #039F9E;
}

.sidebar-nav-item.active {
  background-color: #01A2A1;
  color: #FFFFFF;
}

.sidebar-nav-item.active::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #171829;
}

.sidebar-nav-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  opacity: 1;
  visibility: visible;
}

/* Inactive state - ensure icon is visible with dark color matching text */
.sidebar-nav-item:not(.active) .sidebar-nav-icon {
  filter: brightness(0);
  opacity: 0.6;
}

.sidebar-nav-item:hover:not(.active) .sidebar-nav-icon {
  filter: brightness(0) saturate(100%) invert(48%) sepia(95%) saturate(1200%) hue-rotate(145deg) brightness(0.9) contrast(0.9);
  opacity: 1;
}

.sidebar-nav-item.active .sidebar-nav-icon {
  filter: brightness(0) invert(1);
  opacity: 1;
}

.sidebar-nav-item span {
  display: inline-block;
  line-height: 1.2;
}

/* Main Content Area */
.dashboard-main {
  flex: 1;
  margin-left: 280px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.dashboard-header {
  padding: 22px 31px 0 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
}

.dashboard-header-left {
  flex: 1;
}

.breadcrumb-text {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 24px;
}

.dashboard-page-title {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #171829;
  line-height: 42px;
  margin: 0;
  letter-spacing: -0.02em;
}

.dashboard-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-register-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16.5px 24px;
  background: linear-gradient(90deg, #039f9e 0%, #068786 100%);
  color: #FFFFFF;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-register-item:hover {
  background: linear-gradient(90deg, #068786 0%, #039f9e 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(1, 162, 161, 0.3);
}

.btn-register-icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.dashboard-user-avatar {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: visible;
  cursor: pointer;
}

.dashboard-user-avatar img {
  object-fit: cover;
  width: 40px;
  height: 40px;
  max-width: 40px;
  object-position: center;
  border-radius: 50%;
  display: block;
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 15px);
  right: 0;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 8px 0;
}

.dashboard-user-avatar.active .user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-dropdown-item {
  padding: 12px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #171829;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #E5E7EB;
}

.user-dropdown-item:hover {
  background-color: #F8F9FA;
}

.user-dropdown-item:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.user-dropdown-item:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom: none;
}

.dashboard-content {
  flex: 1;
  padding: 36px 28px 102px 21px;
  background-color: #F8F9FA;
}

.dashboard-page {
  display: none;
}

.dashboard-page.active {
  display: block;
}

/* Dashboard Stats */
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.stat-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.stat-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.stat-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(1, 184, 188, 0.09);
    border-radius: 12px;
    padding: 14px;
}

.stat-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stat-content {
  flex: 1;
}

.stat-value {
  font-family: 'Poppins', sans-serif;
  font-size: 23px;
  font-weight: 600;
  color: #2B3674;
  line-height: normal;
  margin-bottom: 0;
  letter-spacing: 1px;
}

.stat-label {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #6D7797;
  line-height: normal;

}

/* Items List */
.dashboard-items-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.item-card {
  background-color: #FFFFFF;
  border-radius: 7px;
  padding: 11px;
  display: flex;
  gap: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  position: relative;
}

.item-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.item-image {
  width: 235px;
  height: 175px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.item-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.item-title {
  font-family: 'Poppins', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: #171829;
  line-height: 27px;
  margin: 0;
}

.item-status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 16px;
  text-transform: uppercase;
}

.item-status-badge.active {
  background-color: #DCFBEA;
  color: #249F5D;
}

.item-status-badge.stolen {
  background-color: #D4183D;
  color: #FFFFFF;
  font-size: 11px;
  letter-spacing: 0.1em;
  line-height: 20px;
  padding: 0px 16px;
}

.item-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.item-category {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #767676;
    line-height: 31px;
    margin: 0;
}

.item-description {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #767676;
    line-height: 31px;
    margin: 0;
}

.item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 8px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #1D1D1D;
    line-height: 24px;
    font-weight: 500;
}

.meta-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

.item-actions {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  justify-content: flex-start;
  padding: 10px;
}

.btn-report-stolen {
  padding: 11px 20px;
  background-color: #D4183D;
  color: #FFFFFF;
  border-radius: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
}

.btn-report-stolen:hover {
  background-color: #B0152F;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212, 24, 61, 0.3);
}

.btn-mark-recovered {
    padding: 11px 20px;
    background: linear-gradient(90deg, #039f9e 0%, #068786 100%);
    color: #FFFFFF;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

.btn-mark-recovered:hover {
  background: linear-gradient(90deg, #068786 0%, #039f9e 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(1, 162, 161, 0.3);
}

.btn-contact-owner {
  padding: 12px 24px;
  background-color: #01A2A1;
  color: #FFFFFF;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-contact-owner:hover {
  background-color: #039F9E;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(1, 162, 161, 0.3);
}

.btn-share {
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  background: #FFFFFF;
  border: 1.5px solid #01A2A1;
  flex-shrink: 0;
}

.btn-share:hover {
  background-color: #01A2A1;
  border-color: #01A2A1;
}

.btn-share img {
  width: 18px;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(48%) sepia(95%) saturate(1200%) hue-rotate(145deg) brightness(0.95) contrast(0.95);
}

.btn-share:hover img {
  filter: brightness(0) invert(1);
}

.item-reward {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #01A2A1;
  font-weight: 600;
  line-height: 21px;
  position: absolute;
  bottom: 8px;
  right: 13px;
}

/* Search Filter Section */
.search-filter-section {
  padding: 18px 11px 18px 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  background: #FFFFFF;
  border-radius: 7px;
}

.search-filter-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-icon {
  width: 18px;
  height: 21px;
}

.filter-label {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #1B1B1B;
  line-height: 21px;
}

.search-filter-controls {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  justify-content: flex-end;
}

.filter-select {
  padding: 10px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  cursor: pointer;
  outline: none;
  min-width: 205px;
  background: #FFFFFF;
  border: 1px solid rgba(117, 140, 153, 0.4);
  border-radius: 8px;
  color: #758C99;
  line-height: 24px;
}

.filter-select:focus {
  border-color: #039F9E;
}

.search-input {
  flex: 1;
  padding: 10px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  outline: none;
  max-width: 205px;
  border: 1px solid rgba(117, 140, 153, 0.4);
  border-radius: 8px;
  color: #758C99;
  line-height: 24px;
}

.search-input:focus {
  border-color: #039F9E;
}

.search-input::placeholder {
  color: #9B9B9B;
}

/* QR Codes */
.qr-tabs {
  display: flex;
  justify-content: center;
  padding: 4px;
  margin: 0 auto 42px;
  background: #FFFFFF;
  box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  width: fit-content;
  gap: 0;
}

.qr-tab {
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 18px;
  color: #191A15;
  line-height: 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  background: transparent;
}

.qr-tab.active {
  color: #ffffff;
  background: #039F9E;
  border-radius: 10px;
  font-weight: 500;
}

.qr-tab-content {
  display: none;
}

.qr-tab-content.active {
  display: block;
}

.qr-codes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.qr-code-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.qr-code-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.qr-code-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.qr-code-item-name {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #171829;
  line-height: 24px;
  margin: 0;
}

.qr-code-category {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #767676;
  line-height: 21px;
}

.qr-code-status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 16px;
  text-transform: uppercase;
  width: fit-content;
  background-color: #D4183D;
  color: #FFFFFF;
}

.qr-code-image {
  width: 100%;
  background-color: #F9FAFB;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 16px;
}

.qr-code-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 158px;
}

.qr-code-id {
  background-color: #F2F2F2;
  border-radius: 8px;
  padding: 9.5px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #4A5565;
  text-align: center;
  margin-bottom: 21px;
  font-weight: 500;
}

.qr-code-actions {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.qr-action-btn {
  width: 100%;
  height: 35px;
  border: 1px solid #01A2A1;
  border-radius: 8px;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.qr-action-btn:hover {
  background-color: #01A2A1;
}

.qr-action-btn img {
  width: 20px;
  height: 20px;
}

.qr-action-btn:hover img {
  filter: brightness(0) invert(1);
}

/* Order Stickers */
.order-stickers-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: flex-start;
}

.order-stickers-left {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.order-stickers-right {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.order-stickers-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #171829;
  line-height: 34px;
  margin-bottom: 52px;
}

.order-items-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.order-item-card {
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.order-item-card:hover {
  border-color: #01A2A1;
  background-color: #F0FDFA;
}

.order-item-info {
  flex: 1;
}

.order-item-name {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #171829;
  line-height: 24px;
  margin: 0 0 4px 0;
}

.order-item-category {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #767676;
  line-height: 21px;
  margin: 0;
}

.order-item-checkbox {
  width: 24px;
  height: 24px;
  cursor: pointer;
  accent-color: #01A2A1;
}

.order-form {
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.order-form .form-group {
  margin-bottom: 20px;
}

.order-form .form-group label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #171829;
  margin-bottom: 8px;
  line-height: 21px;
}

.order-form .form-input {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #4A5565;
  outline: none;
  transition: border-color 0.3s ease;
  background: rgba(211, 213, 248, 0.1);
  border: 1px solid #F1F1F1;
  border-radius: 6px;
}

.order-form .form-input:focus {
  border-color: #039F9E;
}

.order-form .form-input::placeholder {
  color: #A8A8A8;
}

.order-form select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%234A5565' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

/* Dashboard Order Summary - matches Payment page */
.order-form .order-details {
  margin: 35px 0 0 0;
}

.order-form .order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 23px;
}

.order-form .order-label {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  color: #707070;
  line-height: 30px;
}

.order-form .order-value {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #121212;
  line-height: 30px;
}

.order-form .order-divider {
  height: 1px;
  background: #E5E5E5;
  margin: 16px 0;
  border: none;
  border-top: 1px dashed #E5E5E5;
}

.order-form .order-total {
  margin-top: 16px;
  margin-bottom: 0;
}

.order-form .order-total .order-label {
  font-weight: 600;
  color: #121212;
}

.order-form .order-total .order-value {
  font-weight: 600;
  color: #121212;
}

.btn-order-now {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(90deg, #039f9e 0%, #068786 100%);
  color: #FFFFFF;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  margin-top: 0;
  margin-left: auto;
  grid-column: 2;
  justify-self: end;
}

.btn-order-now:hover {
  background: linear-gradient(90deg, #068786 0%, #039f9e 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(1, 162, 161, 0.3);
}

/* Register Item Form */

.register-item-form {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.register-form-title {
  font-family: 'Poppins', sans-serif;
  font-size: 21px;
  font-weight: 600;
  color: #171829;
  line-height: 36px;
  text-align: center;
  margin: 0 0 8px 0;
}

.register-form-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #A3A3A3;
  line-height: 36px;
  text-align: center;
  margin: 0 0 32px 0;
}

.register-form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 24px;
}

.register-item-form .form-group {
  margin-bottom: 0;
}

.register-item-form .form-group label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #171829;
  margin-bottom: 8px;
  line-height: 21px;
}

.register-item-form .form-input {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #4A5565;
  outline: none;
  transition: border-color 0.3s ease;
  background: rgba(211, 213, 248, 0.1);
  border: 1px solid #F1F1F1;
  border-radius: 6px;
}
.register-item-form .form-textarea {
  min-height: 113px;
}
.register-item-form .form-input:focus {
  border-color: #039F9E;
}

.register-item-form .form-input::placeholder {
  color: #A8A8A8;
}

.register-item-form select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%234A5565' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group-scan {
  grid-column: 2 / -1;
}

.scan-input-wrapper {
  display: flex;
  gap: 12px;
}

.scan-input-wrapper .form-input {
  flex: 1;
}

.btn-scan {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: #F1F1F3;
  color: #171829;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
}

.btn-scan:hover {
  background-color: #01A2A1;
  color: #FFFFFF;
}

.btn-scan img {
  width: 16px;
  height: 16px;
}

.date-input-wrapper {
  position: relative;
}

  .date-input-wrapper .form-input {
    padding-right: 40px;
  }
  .date-picker-input {
    font-size: 16px; /* Prevents zoom on iOS */
  }

.date-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  cursor: pointer;
  pointer-events: auto;
  z-index: 1;
}

.date-picker-input {
  cursor: pointer;
}

.date-picker-input::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.form-textarea {
  width: 100%;
  padding: 10px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #4A5565;
  outline: none;
  transition: border-color 0.3s ease;
  background: rgba(211, 213, 248, 0.1);
  border: 1px solid #F1F1F1;
  border-radius: 6px;
  resize: vertical;
  min-height: 161px;
}

.form-textarea:focus {
  border-color: #039F9E;
}

.form-textarea::placeholder {
  color: #A8A8A8;
}

.upload-section {
  margin-bottom: 32px;
  width: 100%;
}

.upload-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #171829;
  margin-bottom: 12px;
  line-height: 21px;
  text-align: left;
}

.upload-area {
  border: 2px dashed #01A2A1;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 53px;
  gap: 18px;
  width: 310px;
  max-width: 100%;
}

.upload-area:hover {
  background-color: #F9FAFB;
  border-color: #039F9E;
}

.upload-icon {
  width: 24px;
  height: 21px;
  display: block;
  object-fit: contain;
}

.upload-text {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #01A2A1;
  font-weight: 400;
  margin: 0;
  line-height: 24px;
}

.register-form-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn-cancel {
  padding: 7px 32px;
  background-color: #FFFFFF;
  color: #16151C;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 21px;
}

.btn-cancel:hover {
  background-color: #F9FAFB;
  border-color: #039F9E;
  color: #039F9E;
}

.register-item-form .btn-submit {
  padding: 12px 32px;
  background: linear-gradient(90deg, #039f9e 0%, #068786 100%);
  color: #FFFFFF;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.register-item-form .btn-submit:hover {
  background: linear-gradient(90deg, #068786 0%, #039f9e 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(1, 162, 161, 0.3);
}

/* Dashboard Footer */
.dashboard-footer {
  padding: 23px 32px;
  text-align: center;
  background: #FFFFFF;
  border-top: 1px solid rgba(0, 0, 0, 0.13);
}

.dashboard-footer p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #6D7797;
  line-height: 24px;
  margin: 0;
  letter-spacing: -0.02em;
}
@media (max-width: 1024px) {
  .contact-wrapper {
      gap: 20px;
      padding-right: 10px;
  }
  .contact-info-panel {
    max-width: 100%;
    width: 100%;
    padding-right: 40px;
}
.contact-form-panel {
  width: 100%;
}
.contact-form input {
  width: 100%;
}
}
@media (max-width: 991px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-info-panel {
    max-width: 100%;
    width: 100%;
    padding: 20px 20px 20px 20px;
  }
  .contact-form-panel {
    width: 100%;
  }
  .contact-info-subtitle {
    margin-bottom: 20px;
}
.contact-details {
  gap: 20px;
}
.form-actions {
  margin-top: 0;
  padding-bottom: 0;
}
}
@media (max-width: 640px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
}
.contact-form .form-group {
  margin-bottom: 16px;
}
}

/* ============================================
   RESPONSIVE STYLES - ALL MEDIA QUERIES
   ============================================ */

/* Large Desktop - 1199px and below */
@media (max-width: 1199px) {
  .footer-inner {
    gap: 20px;
  }
  .footer-col a {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 24px;
  }
  .footer-columns {
    gap: 12px;
  }
  .why-image {
    right: 0;
  }
  .search-input-wrap {
    width: 100%;
  }
}

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }
  .container.topbar-inner {
    padding: 16px 24px;
  }
  .about-banner-overlay {
    width: 100%;
  }
  .contact-wrapper {
    gap: 20px;
    padding-right: 10px;
  }
  .contact-info-panel {
    max-width: 100%;
    width: 100%;
    padding-right: 40px;
}
.contact-form-panel {
    width: 100%;
  }
  .contact-form input {
    width: 100%;
  }
  .register-item-form {
    padding: 32px 24px;
  }
  .register-form-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .register-form-grid .form-group:nth-child(1),
  .register-form-grid .form-group:nth-child(2),
  .register-form-grid .form-group:nth-child(3) {
    grid-column: span 1;
  }
  .register-form-grid .form-group:nth-child(3) {
    grid-column: 1 / span 2;
  }
  .register-form-grid .form-group:nth-child(4) {
    grid-column: 1 / span 1;
  }
  .form-group-scan {
    grid-column: 2 / span 1;
  }
  .register-form-grid .form-group:nth-child(6),
  .register-form-grid .form-group:nth-child(7),
  .register-form-grid .form-group:nth-child(8) {
    grid-column: span 1;
  }
  .register-form-grid .form-group:nth-child(6) {
    grid-column: 1;
  }
  .register-form-grid .form-group:nth-child(7) {
    grid-column: 2;
  }
  .register-form-grid .form-group:nth-child(8) {
    grid-column: 1 / span 2;
  }
  .upload-area {
    width: 100%;
    max-width: 100%;
  }
  .register-form-actions {
    flex-wrap: wrap;
    gap: 12px;
  }
  .btn-cancel,
  .register-item-form .btn-submit {
    flex: 1;
    min-width: 120px;
  }
  .about-banner-content h1 {
    font-size: 40px;
    line-height: 54px;
  }
  .about-banner-subtitle {
    font-size: 18px;
    line-height: 32px;
  }
  .about-content-block {
    gap: 50px;
  }
  .benefits-list li {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 16px;
  }
  .cta {
    padding-left: 24px;
    padding-right: 24px;
  }
  .benefits-list {
    gap: 8px 12px;
  }
  .hero-inner,
  .about-grid,
  .benefits-inner,
  .why-inner {
    gap: 40px;
  }
  .hiw-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cta-inner {
    padding: 40px 40px 40px 40px;
  }
  .cta-image {
    right: 40px;
  }
  .why-circle {
    width: 300px;
    height: 300px;
  }
  .benefits-circle {
    width: 300px;
    height: 300px;
  }
  .dashboard-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .qr-codes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .order-stickers-layout {
    grid-template-columns: 1fr;
  }
  .btn-order-now {
    grid-column: 1;
    justify-self: end;
  }
  .item-meta {
    gap: 10px;

}
}

/* Tablet - 992px and below */
@media (max-width: 992px) {
  .hero-inner,
  .about-grid,
  .benefits-inner,
  .why-inner,
  .cta-inner,
  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .about-banner-overlay {
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
  }
  .about-banner-content h1 {
    font-size: 36px;
    line-height: 48px;
  }
  .about-banner-subtitle {
    font-size: 17px;
    line-height: 30px;
  }
  .preparing-section .heading-line {
    font-size: 32px;
    line-height: 48px;
  }
  .about-content-text h3 {
    font-size: 32px;
    line-height: 48px;
  }
  .about-content-text p {
    font-size: 16px;
    line-height: 30px;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 20px;
  }
  .contact-info-panel {
    padding: 40px 30px;
    max-width: 100%;
    width: 100%;
  }
  .contact-form-panel {
    padding: 40px 30px;
    width: 100%;
    padding-left: 30px;
  }
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
  .price-card-featured {
    transform: none;
  }
  .hero {
    padding-top: 40px;
  }
  .about-stats {
    padding: 30px 0;
  }
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .cta-inner {
    padding: 32px 20px;
    overflow: hidden;
  }
  .cta-image {
    position: relative;
    right: auto;
    top: auto;
    margin-top: 24px;
  }
  .why-image {
    margin-top: 24px;
  }
  .login-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .login-image {
    order: 2;
    min-height: 400px;
  }
  .login-form-wrapper {
    order: 1;
  }
  .login-circle {
    width: 400px;
    height: 400px;
  }
  .account-type-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .create-account-header h1 {
    font-size: 32px;
  }
  .progress-steps {
    gap: 100px;
    padding: 15px 20px;
  }
  .progress-steps::before {
    max-width: 85%;
  }
  .form-grid-3col .form-row {
    gap: 19px;
    margin-bottom: 19px;
  }
  .contact-details-form .form-row {
    gap: 16px;
  }
  .contact-details-form .form-row:last-of-type {
    grid-template-columns: 1fr;
  }
  .payment-content-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .dashboard-sidebar {
    width: 240px;
  }
  .dashboard-main {
    margin-left: 240px;
  }
  .register-form-grid {
    grid-template-columns: 1fr;
  }
}

/* Tablet Range - 992px to 768px */
@media (max-width: 992px) and (min-width: 768px) {
  .progress-steps {
    gap: 60px;
    padding: 14px 20px;
  }
  .progress-steps::before {
    max-width: 75%;
  }
  .step-circle {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  .step-item.active .step-circle {
    border: 4px solid #FFFFFF;
    box-shadow: 0 0 0 2.5px #039F9E;
  }
  .step-label {
    font-size: 11px;
  }
  .register-item-form {
    padding: 28px 20px;
  }
  .register-form-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .register-form-grid .form-group:nth-child(1),
  .register-form-grid .form-group:nth-child(2),
  .register-form-grid .form-group:nth-child(3) {
    grid-column: span 1;
  }
  .register-form-grid .form-group:nth-child(3) {
    grid-column: 1 / span 2;
  }
  .register-form-grid .form-group:nth-child(4) {
    grid-column: 1;
  }
  .form-group-scan {
    grid-column: 2 / span 1;
  }
  .register-form-grid .form-group:nth-child(6),
  .register-form-grid .form-group:nth-child(7),
  .register-form-grid .form-group:nth-child(8) {
    grid-column: span 1;
  }
  .register-form-grid .form-group:nth-child(6) {
    grid-column: 1;
  }
  .register-form-grid .form-group:nth-child(7) {
    grid-column: 2;
  }
  .register-form-grid .form-group:nth-child(8) {
    grid-column: 1 / span 2;
  }
  .upload-area {
    width: 100%;
    max-width: 100%;
  }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
  .dashboard-header-left {
    flex: 1;
    text-align: right;
    width: 100%;
}
  .topbar-inner {
    padding-block: 12px;
    position: relative;
  }
  .main-nav,
  .auth-actions {
    display: none;
  }
  .nav-toggle {
    display: flex;
    margin-left: auto;
    position: relative;
    z-index: 21;
    justify-content: center;
    align-items: center;
  }
  .topbar.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .topbar.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
    width: 0;
  }
  .topbar.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background-color: #ffffff;
    width: 100%;
  }
  .topbar.is-open {
    background-color: #ffffff;
  }
  .topbar.is-open .topbar-inner {
    background-color: #ffffff;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
  }
  .topbar.is-open .container {
    background-color: #ffffff;
  }
  .topbar.is-open .topbar-inner::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    min-height: 100vh;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1;
    animation: slideDown 0.3s ease-out;
  }
  .topbar.is-open .main-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    background-color: transparent;
    border-top: 1px solid #f1f1f3;
    padding: 20px 24px 0;
    gap: 0;
    z-index: 2;
  }
  .topbar.is-open .main-nav .nav-link {
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
  }
  .topbar.is-open .main-nav .nav-link.active {
    color: #039f9e;
    font-weight: 600;
  }
  .topbar.is-open .main-nav .nav-link.active::after {
    display: none;
  }
  .topbar.is-open .auth-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 272px);
    width: 100%;
    background-color: transparent;
    padding: 12px 24px 20px;
    gap: 12px;
    z-index: 2;
  }
  .topbar.is-open .auth-actions .btn-text {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    font-size: 16px;
    border: 1px solid #039f9e;
    border-radius: 999px;
    background-color: transparent;
    color: #039f9e;
    font-weight: 500;
  }
  .topbar.is-open .auth-actions .btn-primary {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    font-size: 16px;
    border-radius: 999px;
  }
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .container {
    padding: 0 16px;
  }
  .hero {
    padding: 60px 0 40px;
  }
  .hero-content h1 {
    font-size: 32px;
    line-height: 44px;
  }
  .hero-subtitle {
    font-size: 16px;
    line-height: 28px;
  }
  .hero-image {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-circle {
    width: 250px;
    height: 250px;
  }
  .hero:after {
    display: none;
  }
  .hero-content:before {
    max-width: 120px;
  }
  .hero-image img {
    max-width: 100%;
    height: auto;
  }
  .search-strip {
    padding: 24px 0;
  }
  .search-label {
    font-size: 18px;
    line-height: 28px;
  }
  .search-input-wrap {
    height: 48px;
    padding-inline: 8px;
  }
  .section-header h2 {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 16px;
  }
  .section-header.center p {
    font-size: 16px;
    line-height: 28px;
  }
  .about-grid {
    gap: 24px;
  }
  .about-text h2 {
    font-size: 28px;
    line-height: 40px;
  }
  .about-text p {
    font-size: 15px;
    line-height: 28px;
  }
  .about-content-text h3 {
    font-size: 28px;
    line-height: 40px;
  }
  .about-content-text p {
    font-size: 15px;
    line-height: 28px;
  }
  .about-stats {
    padding: 24px 0;
  }
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .stat-value {
    font-size: 28px;
  }
  .stat-label {
    font-size: 14px;
  }
  .hiw-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }
  .hiw-card {
    padding: 32px 20px;
  }
  .hiw-card h3 {
    font-size: 18px;
    line-height: 32px;
  }
  .hiw-card p {
    font-size: 14px;
    line-height: 24px;
  }
  .benefits-inner {
    gap: 24px;
  }
  .benefits-text h2 {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 24px;
  }
  .benefits-list li {
    font-size: 16px;
    line-height: 24px;
  }
  .benefits-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 24px;
  }
  .benefits-image img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
  }
  .about-photos img {
    max-width: 100%;
    height: auto;
    width: 100%;
  }
  .about-banner-overlay {
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
  }
  .about-banner-content h1 {
    font-size: 32px;
    line-height: 44px;
    margin-bottom: 16px;
  }
  .about-banner-subtitle {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 24px;
  }
  .preparing-section {
    padding: 40px 0 24px;
  }
  .preparing-section .heading-line {
    font-size: 28px;
    line-height: 40px;
  }
  .about-content-section {
    padding: 24px 0 40px;
  }
  .billing-toggle {
    margin-bottom: 32px;
  }
  .price-card {
    padding: 24px 16px;
  }
  .price-card h3 {
    font-size: 24px;
  }
  .price-amount {
    font-size: 40px;
  }
  .price-features {
    padding: 20px 24px;
  }
  .price-card-featured:after {
    height: auto;
    max-height: 400px;
  }
  .price-card-featured {
    transform: none;
  }
  .why-inner {
    gap: 24px;
  }
  .why-text h2 {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 10px;
  }
  .why-text h4 {
    font-size: 20px;
    line-height: 32px;
  }
  .why-text p {
    font-size: 15px;
    line-height: 28px;
  }
  .why-image {
    position: relative;
    right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cta {
    padding: 40px 16px;
    margin-top: 24px;
  }
  .cta-inner {
    padding: 32px 24px;
    text-align: center;
    overflow: visible;
    padding-bottom: 0;
  }
  .cta-text h2 {
    font-size: 28px;
    line-height: 40px;
  }
  .cta-text p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 24px;
  }
  .cta-image {
    position: relative;
    right: auto;
    top: auto;
    margin-top: 24px;
    justify-content: center;
  }
  .cta-inner::before {
    width: 200px;
    height: 200px;
    left: -10px;
    bottom: -10px;
  }
  .cta-image img {
    max-width: 100%;
    height: auto;
  }
  .footer {
    padding-top: 40px;
  }
  .footer-inner {
    padding-bottom: 40px;
    gap: 24px;
  }
  .footer-columns {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
  .footer-col h4 {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .footer-col a {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 0;
    text-align: center;
  }
  .footer-bottom span {
    font-size: 14px;
  }
  .footer-bottom-links {
    flex-direction: column;
    gap: 0px;
  }
  .footer-bottom-links a {
    font-size: 14px;
  }
  .footer-bottom-links a:first-child::after {
    display: none;
  }
  .login-section {
    padding: 40px 0;
  }
  .login-heading {
    font-size: 32px;
  }
  .login-subtitle {
    font-size: 14px;
  }
  .login-image {
    min-height: 300px;
  }
  .login-circle {
    width: 300px;
    height: 300px;
  }
  .create-account-section {
    padding: 40px 0 60px;
  }
  .create-account-header h1 {
    font-size: 28px;
  }
  .create-account-header p {
    font-size: 14px;
  }
  .progress-steps {
    margin-bottom: 40px;
    gap: 50px;
    padding: 14px 10px;
  }
  .progress-steps::before {
    max-width: 75%;
    height: 4px;
    top: 30px;
  }
  .step-circle {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }
  .step-item.active .step-circle {
    border: 4px solid #FFFFFF;
    box-shadow: 0 0 0 2.5px #039F9E;
  }
  .step-label {
    font-size: 11px;
    line-height: 16px;
  }
  .account-type-card {
    padding: 32px 20px 20px 20px;
  }
  .account-info-section .section-header h2,
  .contact-details-section .section-header h2 {
    font-size: 20px;
  }
  .privacy-description {
    margin-left: 0;
  }
  .payment-page-section {
    padding: 40px 0 60px;
  }
  .payment-page-section .create-account-header {
    margin-bottom: 32px;
  }
  .payment-content-wrapper {
    gap: 20px;
  }
  .checkout-panel,
  .order-summary-panel {
    padding: 24px 20px;
  }
  .panel-title {
    font-size: 20px;
  }
  .checkout-image {
    width: 35px;
    height: 35px;
  }
  .payment-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .payment-method-btn {
    padding: 18px 10px;
  }
  .pricing-page-section {
    padding: 40px 0 60px;
  }
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .pricing-page-section .create-account-header h1 {
    font-size: 28px;
  }
  .trust-item {
    font-size: 13px;
  }
  .pricing-page-section .billing-toggle {
    margin-bottom: 32px;
  }
  .search-results-section {
    padding: 40px 0 60px;
  }
  .search-results-section .section-header h2 {
    font-size: 28px;
    line-height: 42px;
  }
  .search-results-section .section-header p {
    font-size: 16px;
    line-height: 28px;
  }
  .item-card {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }
  .item-image {
    width: 100%;
    height: 200px;
  }
  .item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .item-title {
    font-size: 20px;
    line-height: 30px;
  }
  .item-meta {
    flex-direction: column;
    gap: 12px;
  }
  .dashboard-menu-toggle {
    display: flex;
  }
  .dashboard-sidebar {
    width: 280px;
    position: fixed;
    left: -280px;
    top: 0;
    height: 100vh;
    z-index: 100;
    transition: left 0.3s ease;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
  }
  .dashboard-wrapper.sidebar-open .dashboard-sidebar {
    left: 0;
  }
  .dashboard-main {
    margin-left: 0;
    width: 100%;
  }
  .dashboard-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 16px;
  }
  .dashboard-header-right {
    width: 100%;
    justify-content: space-between;
  }
  .user-dropdown {
    right: 0;
    min-width: 160px;
  }
  .dashboard-content {
    padding: 20px 16px;
  }
  .dashboard-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .stat-card {
    padding: 16px;
  }
  .stat-value {
    font-size: 24px;
    line-height: 36px;
  }
  .stat-icon {
    width: 48px;
    height: 48px;
  }
  .search-filter-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
  }
  .search-filter-controls {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }
  .filter-select,
  .search-input {
    width: 100%;
    max-width: 100%;
  }
  .qr-code-image {
    aspect-ratio: 1;
    width: 100%;
    height: auto;
  }
  .order-stickers-layout {
    grid-template-columns: 1fr;
  }
  .btn-order-now {
    grid-column: 1;
    justify-self: end;
  }
  .register-item-form-wrapper {
    max-width: 100%;
  }
  .register-item-form {
    padding: 24px 16px;
  }
  .register-form-title {
    font-size: 20px;
    line-height: 30px;
  }
  .register-form-subtitle {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
  }
  .register-form-grid {
    gap: 20px;
    display: flex;
    flex-direction: column;
  }
  /* Ensure Modal is in its own row */
  .register-form-grid .form-group:nth-child(4) {
    grid-column: 1;
  }
  /* Serial Number / Frame ID with scan button */
  .form-group-scan {
    grid-column: 1;
  }
  .scan-input-wrapper {
    flex-direction: row;
    gap: 12px;
    align-items: stretch;
  }
  .scan-input-wrapper .form-input {
    flex: 1;
    width: 100%;
    min-width: 0;
  }
  .btn-scan {
    flex-shrink: 0;
    white-space: nowrap;
    min-width: 100px;
    padding: 10px 16px;
  }
  /* Description field - full width */
  .form-group-full {
    grid-column: 1;
    width: 100%;
  }
  /* Ensure all inputs, selects, and textareas are 100% width at 768px */
  .register-item-form .form-input,
  .register-item-form select.form-input,
  .register-item-form .form-textarea {
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
  }
  .register-item-form .form-group {
    width: 100%;
  }
  .date-input-wrapper {
    width: 100%;
  }
  .date-input-wrapper .form-input {
    width: 100%;
  }
  .upload-area {
    width: 100%;
    max-width: 100%;
    padding: 24px 16px;
    min-height: 100px;
    flex-direction: column;
  }
  .upload-icon {
    width: 32px;
    height: 28px;
  }
  .upload-text {
    font-size: 13px;
  }
  .register-form-actions {
    flex-direction: column;
    width: 100%;
  }
  .btn-cancel,
  .register-item-form .btn-submit {
    width: 100%;
    padding: 12px 24px;
    font-size: 14px;
  }
  .item-actions {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 16px;
  }
  .item-reward {
    margin-top: 8px;
  }
  .dashboard-items-list .item-actions {
    flex-direction: row;
    margin-bottom: 20px;
}
}

/* Small Mobile - 640px and below */
@media (max-width: 640px) {
  .account-type-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .qr-codes-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .qr-code-image {
    aspect-ratio: inherit;
    width: 100%;
    height: auto;
  }
  .contact-section {
    padding: 40px 0;
  }
  .contact-header {
    margin-bottom: 32px;
  }
  .contact-header h1 {
    font-size: 24px;
    line-height: 36px;
  }
  .contact-header p {
    font-size: 14px;
    line-height: 24px;
  }
  .contact-info-panel {
    padding: 32px 20px;
  }
  .contact-info-panel h2 {
    font-size: 24px;
    line-height: 36px;
  }
  .contact-info-subtitle {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 32px;
  }
  .contact-details {
    gap: 20px;
  }
  .contact-detail-item {
    font-size: 14px;
    line-height: 21px;
  }
  .contact-icon {
    width: 20px;
    height: 20px;
  }
  .contact-wrapper {
    padding: 10px;
    gap: 16px;
  }
  .contact-form-panel {
    padding: 32px 20px;
    width: 100%;
    padding-left: 20px;
  }
  .contact-form .form-group {
    margin-bottom: 20px;
  }
  .form-actions {
    justify-content: center;
  }
  .form-actions .btn-primary {
    width: 100%;
    padding: 14px 24px;
  }
  .about-content-block.about-content-block-reverse {
    flex-direction: column-reverse;
    display: flex;
  }
  section.section.how-it-works {
    padding-top: 30px;
  }
  .about-content-block {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }
  .about-content-block-reverse {
    grid-template-columns: 1fr;
  }
  .form-grid-3col .form-row {
    grid-template-columns: 100%;
  }
  .benefits-list {
    flex-direction: column;
    display: flex;
  }
  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    width: 100%;
  }
  .price-features ul {
    gap: 16px;
  }
  .price-subtitle {
    max-width: 100%;
  }
  .section.benefits {
    padding: 47px 0 90px;
  }
  .search-input-wrap {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    height: auto;
    padding: 12px;
    align-items: center;
  }
  .search-icon {
    width: 20px;
    height: 20px;
    margin-left: 0;
    grid-column: 1;
    grid-row: 1;
    align-self: center;
  }
  .search-input-wrap input {
    font-size: 14px;
    padding: 12px 8px 12px 8px;
    grid-column: 2;
    grid-row: 1;
    border: none;
    outline: none;
  }
  .search-input-wrap input::placeholder {
    font-size: 14px;
  }
  .search-input-wrap button.btn-secondary {
    font-size: 14px;
    padding: 12px 24px;
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    border-radius: 8px;
  }
  .search-bar-form .search-input-wrap {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    height: auto;
    padding: 12px;
    align-items: center;
  }
  .search-bar-form .search-icon {
    width: 20px;
    height: 20px;
    margin-left: 0;
    grid-column: 1;
    grid-row: 1;
    align-self: center;
  }
  .search-bar-form .search-input-wrap input {
    font-size: 14px;
    padding: 12px 8px;
    grid-column: 2;
    grid-row: 1;
    border: none;
    outline: none;
  }
  .search-bar-form .search-input-wrap input::placeholder {
    font-size: 14px;
  }
  .search-bar-form .search-input-wrap button.btn-secondary {
    font-size: 14px;
    padding: 12px 24px;
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    border-radius: 8px;
  }
  .search-results-section .section-header h2 {
    font-size: 24px;
    line-height: 36px;
  }
  .item-card {
    padding: 16px;
  }
  .item-image {
    height: 180px;
  }
  .trust-indicators {
    align-items: flex-start;
  }
  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-form .form-group {
    margin-bottom: 16px;
  }
  .dashboard-stats {
    grid-template-columns: 1fr;
  }
  .stat-card {
    flex-direction: column;
    text-align: center;
  }
  .dashboard-page-title {
    font-size: 24px;
    line-height: 36px;
  }
  .btn-register-item {
    width: 100%;
    justify-content: center;
  }
  .item-card {
    flex-direction: column;
  }
  .item-image {
    width: 100%;
    height: 200px;
  }
  .item-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .btn-report-stolen,
  .btn-mark-recovered,
  .btn-contact-owner {
    width: 100%;
  }
  .qr-tabs {
    flex-direction: column;
  }
  .qr-tab {
    width: 100%;
  }
}

/* Very Small Mobile - 767px and below (merged with 768px) */
@media screen and (max-width: 767px) {
  .form-grid-3col .form-row {
    grid-template-columns: 100%;
  }
  .account-info-form {
    max-width: 100%;
    padding: 0 16px 0 16px;
  }
  .contact-details-form {
    max-width: 100%;
    padding: 0 16px 0 16px;
  }
  .form-grid-3col {
    margin-bottom: 0;
  }
  .account-info-section .section-header {
    padding: 0 16px;
  }
  .contact-details-section .section-header {
    padding: 0 16px;
  }
  .contact-details-form .form-row {
    grid-template-columns: 100%;
    gap: 0;
  }
  .contact-details-form .form-row:last-of-type {
    grid-template-columns: 100%;
  }
  .progress-steps {
    gap: 40px;
    padding: 12px 16px;
  }
  .progress-steps::before {
    max-width: 70%;
    height: 3px;
    top: 28px;
  }
  .step-circle {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
  .step-item.active .step-circle {
    border: 3px solid #FFFFFF;
    box-shadow: 0 0 0 2px #039F9E;
  }
  .step-label {
    font-size: 10px;
    line-height: 14px;
  }
}

/* Alert styles for flash messages */
.alert {
  padding: 14px 24px;
  border-radius: 6px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 18px;
  margin-top: 8px;
  font-weight: 500;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.04);
  display: block;
}
.alert-success {
  background: #e6f9f0;
  color: #1a7f4f;
  border: 1px solid #2ecc71;
}
.alert-danger {
  background: #ffeaea;
  color: #c0392b;
  border: 1px solid #e74c3c;
}

.ml-20 {
  margin-left: 20px;
}