@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none;
}

:root {
  --primary--black: #000;
}

body {
  box-sizing: border-box;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

main {
  overflow: hidden;
}

.section-padding-x {
  padding: 0px 120px;
}

/* Header Base */
header {
  background-color: #3a3a3a;
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 100;
}

.logo img {
  height: 40px;
}

/* Navigation */
nav.nav-links {
  display: flex;
  gap: 40px;
  flex: 1;
  justify-content: center;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

nav.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.3s ease;
}

nav.nav-links a:hover {
  color: #e94b9f;
}

/* Right Section */
.right-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Language Switcher */
.language-switcher {
  display: flex;
  gap: 8px;
  background-color: white;
  border-radius: 20px;
  padding: 8px 16px;
  transition: all 0.3s ease;
  justify-content: center;
  align-items: center;

}

.lang-btn {
  border: none;
  background: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.lang-btn.active {
  background-color: #e94b9f;
  color: white;
}

.lang-btn:not(.active) {
  color: #3a3a3a;
}

.divider {
  width: 1px;
  height: 16px;
  background-color: #e94b9f;
  transition: all 0.3s ease;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  border: none;
  background: none;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: white;
  display: block;
  transition: all 0.3s ease;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  header {
    padding: 12px 20px;
  }

  nav.nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    background-color: #3a3a3a;
    flex-direction: column;
    width: 100%;
    gap: 12px;
    padding: 20px;
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }

  nav.nav-links.show {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
  }

  nav.nav-links a {
    font-size: 14px;
    padding: 8px 0;
  }

  .hamburger {
    display: flex;
  }
}

.banner-section {
  background-image: url("../images/hero.png");
  gap: 40px;
  height: 850px;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-top: -80px;
}

.hero-info {
  max-width: 820px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 120px;
  padding-top: 100px;
  position: relative;
}

.hero-title {
  color: var(--Brand-text-text-pri, #2e2e2e);

  /* Heading/Bold/Website */
  font-family: Poppins;
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  /* 96px */
  letter-spacing: -0.8px;
}

.hero-title span {
  color: var(--Brand-Primary-pink-600, #a65a8a);

  /* Heading/Bold/Website */
  font-family: Poppins;
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.8px;
}

.hero-info img {
  position: absolute;
  top: 150px;
  right: -350px;
}

.hero_info_row1 {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.primary-text {
  color: var(--Brand-text-tesxt-muted, #6e6e6e);

  /* Body text/Regular/Website */
  font-family: Poppins;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 164%;
  /* 36.08px */
}

.btn-group {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
}

.bgButton {
  display: flex;
  height: 52px;
  padding: 10px 60px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 45px;
  background: var(--text-dark-bg, #8c4874);
  box-shadow: 0 7px 15.9px 0 rgba(166, 90, 138, 0.17);
  color: var(--Brand-pure-white, #fff);
  text-align: center;

  /* Button text/Medium/Website */
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 164%;
  /* 32.8px */
  text-transform: capitalize;
  border: none;
  outline: none;
}

.transparentButton {
  display: flex;
  height: 52px;
  padding: 10px 60px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 45px;
  border: 1px solid var(--Brand-Primary-Pink-300, #ffddeb);
  background: var(--Brand-pure-white, #fff);
  box-shadow: 0 7px 15.9px 0 rgba(166, 90, 138, 0.17);
  color: var(--Brand-Primary-pink-600, #a65a8a);
  text-align: center;

  /* Button text/Medium/Website */
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 164%;
  /* 32.8px */
  text-transform: capitalize;
  border: none;
  outline: none;
}

.hero-grid-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.text-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.textTitle {
  color: var(--Brand-text-text-pri, #2e2e2e);

  /* Body/text/medium/website */
  font-family: Poppins;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 132%;
  /* 47.52px */
  text-transform: capitalize;
}

.textPera {
  color: var(--Brand-text-tesxt-muted, #6e6e6e);

  /* Body text/Regular/Website */
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 164%;
  /* 32.8px */
}

.section-header {
  margin-bottom: 60px;
  text-align: center;
}

.section-title {
  color: var(--big-text-color);
  font-size: 48px;
  font-weight: 600;
  line-height: 132%;
  letter-spacing: -0.96px;
  text-transform: capitalize;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-color);
  font-size: 20px;
  font-weight: 400;
  line-height: 164%;
  max-width: 600px;
  margin: 0 auto;
}

.why-choose-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: stretch;
}

.images-flex {
  display: flex;
  gap: 16px;
  height: 100%;
}

.image-flex2 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.images-flex img,
.image-flex2 img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.image-flex2 img {
  flex: 1;
}

.images-flex>img {
  flex: 1;
}

.features-grid1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-content: start;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 12px;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  flex-shrink: 0;
}

.feature-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--big-text-color);
}

.feature-description {
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.6;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .section-padding-x {
    padding: 60px 30px;
  }

  .why-choose-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .section-title {
    font-size: 40px;
  }

  .section-subtitle {
    font-size: 18px;
  }

  .features-grid1 {
    gap: 30px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .section-padding-x {
    padding: 40px 20px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .why-choose-container {
    gap: 40px;
  }

  .images-flex {
    flex-direction: column;
  }

  .image-flex2 {
    flex-direction: column;
  }

  .features-grid1 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .feature-title {
    font-size: 18px;
  }

  .feature-description {
    font-size: 14px;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  .image-flex2 {
    flex-direction: column;
  }

  .feature-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .feature-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .feature-content {
    flex: 1;
  }
}

.section-padding-y {
  margin: 100px 0px;
}

.dotContainer {
  display: flex;

  padding: 80px 120px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  background: rgba(166, 90, 138, 0.06);
}

.TitleGroup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  justify-content: center;
  text-align: center;
}

.steps-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  position: relative;
  margin-top: 50px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 260px;
  position: relative;
}

.step-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #a65a8a;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(166, 124, 159, 0.3);
}

.divider-container {
  display: flex;
  gap: 8px;

  margin-top: -100px;
}

.line {
  width: 2px;
  background: #a65a8a;
  border-radius: 2px;

  opacity: 0.9;
}

.line-1 {
  height: 200px;
  margin-top: 30px;
}

.line-2 {
  height: 280px;
}

.line-3 {
  height: 200px;
  margin-top: 30px;
}

.step-title {
  color: var(--big-text-color, #272727);
  text-align: center;

  /* Sub Heading/Semi-Bold/Website */
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 132%;
  /* 23.76px */
  letter-spacing: -0.36px;
}

.step-description {
  color: var(--text-color, rgba(39, 39, 39, 0.8));
  text-align: center;

  /* Body text/Regular/Website */
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 164%;
  /* 22.96px */
  text-transform: capitalize;
}

.parentContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.column {
  display: flex;
  flex-direction: column;
}

.column h2 {
  font-size: 2rem;
  color: #2d2d2d;
  margin-bottom: 40px;
  font-weight: 700;
}

.feature {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
  align-items: flex-start;
}

.feature:last-child {
  margin-bottom: 0;
}

.icon-circle {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a67c9f 0%, #8b5a8a 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
}

.feature-content h3 {
  color: var(--text-color, rgba(39, 39, 39, 0.8));

  /* Sub Heading/Semi-Bold/Website */
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 132%;
  /* 26.4px */
  letter-spacing: -0.4px;
}

.feature-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

.divider::before {
  top: 10%;
}

.divider::after {
  bottom: 10%;
}

.cta-button {
  background: #a65a8a;
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
  align-self: flex-start;
  box-shadow: 0 4px 12px rgba(166, 124, 159, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(166, 124, 159, 0.4);
}

@media (max-width: 968px) {
  .container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .divider {
    display: none;
  }
}

@media (max-width: 640px) {
  .column h2 {
    font-size: 1.6rem;
  }

  .section-padding-y {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.testimonial-section {
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 60px;
}

.swiper {
  width: 100%;
  padding: 20px 60px 60px;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
  align-items: flex-start;
}

.swiper-slide {
  width: auto;
  flex-shrink: 0;
}

.testimonial-card {
  background: white;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  margin: 0 auto;
}

.card-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid transparent;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(135deg, #a855f7, #ec4899) border-box;
}

.testimonial-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  margin-top: 30px;
}

.star-rating {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}

.star {
  color: #fbbf24;
  font-size: 18px;
}

.customer-name {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 12px;
}

.customer-review {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 16px;
  color: #a855f7;
  font-weight: bold;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.5;
}

.swiper-pagination {
  position: relative;
  margin-top: 30px;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #d1d5db;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #a855f7;
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }

  .testimonial-card {
    width: 240px;
    height: 240px;
  }

  .card-inner {
    width: 210px;
    height: 210px;
  }

  .swiper {
    padding: 20px 40px 60px;
  }
}

.faq-section {
  background: rgba(166, 90, 138, 0.06);
  padding: 40px 120px;
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;

  margin: 60px 0px;
}

.faq-left {
  padding-right: 20px;
}

.faq-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.faq-subtitle {
  font-size: 13px;
  color: #666;
  margin-bottom: 30px;
}

.accordion-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
}

.accordion-question {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  flex: 1;
}

.accordion-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 16px;
  transition: all 0.3s ease;
}

.accordion-icon.plus {
  background: #e8d5f0;
  color: #8b5a9e;
  font-size: 20px;
  font-weight: 300;
}

.accordion-icon.minus {
  background: #8b5a9e;
  color: white;
  font-size: 20px;
  font-weight: 300;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content-inner {
  padding: 0 24px 20px 24px;
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

.accordion-item.active .accordion-content {
  max-height: 200px;
}

.faq-right {
  position: relative;
}

.faq-image {
  width: 100%;
  height: 600px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 968px) {
  .faq-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-left {
    padding-right: 0;
  }

  .faq-title {
    font-size: 28px;
  }
}

@media (max-width: 640px) {
  .accordion-header {
    padding: 16px 20px;
  }

  .accordion-question {
    font-size: 14px;
  }

  .accordion-icon {
    width: 28px;
    height: 28px;
    font-size: 18px;
  }
}

.cta-section {
  background: rgba(166, 90, 138, 0.06);
  text-align: center;
  padding-top: 50px;
  padding-bottom: 50px;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
}

.cta-title {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 14px;
  color: #4a4a4a;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 40px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #a65a8a;
  color: white;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 36px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
}

.download-btn:active {
  transform: translateY(0);
}

.download-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-icon svg {
  width: 100%;
  height: 100%;
  fill: white;
}

@media (max-width: 768px) {
  .cta-title {
    font-size: 32px;
  }

  .cta-description {
    font-size: 13px;
    padding: 0 20px;
  }

  .download-btn {
    font-size: 15px;
    padding: 14px 30px;
  }
}

@media (max-width: 480px) {
  .cta-title {
    font-size: 26px;
  }

  .download-btn {
    font-size: 14px;
    padding: 12px 24px;
  }
}

.footer-section {
  background: #2d2d2d;
  color: #ffffff;
  padding: 60px 5% 30px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid #404040;
  margin-bottom: 30px;
}

.footer-brand {
  max-width: 280px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #a855f7, #8b5a9e);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.brand-description {
  font-size: 13px;
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: #3d3d3d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.social-link:hover {
  background: #a855f7;
  transform: translateY(-2px);
}

.footer-column h3 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
}

.copyright {
  font-size: 13px;
  color: #888;
}

@media (max-width: 968px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-section {
    padding: 40px 5% 20px;
  }
}

.main-auth-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;

  .signup-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 580px;
    width: 100%;
  }

  .form-header {
    text-align: center;
    margin-bottom: 32px;
  }

  .logo-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #a855f7, #8b5a9e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
  }

  .form-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
  }

  .form-subtitle {
    font-size: 14px;
    color: #666;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 8px;
  }

  .form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    outline: none;
  }

  .form-input:focus {
    border-color: #a855f7;
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
  }

  .form-input::placeholder {
    color: #999;
  }

  .checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
  }

  .checkbox-input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #a855f7;
  }

  .checkbox-label {
    font-size: 13px;
    color: #4a4a4a;
  }

  .checkbox-label a {
    color: #a65a8a;
    text-decoration: none;
  }

  .checkbox-label a:hover {
    text-decoration: underline;
  }

  .submit-btn {
    width: 100%;
    padding: 14px;
    background: #a65a8a;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
  }

  .submit-btn:active {
    transform: translateY(0);
  }

  .login-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #4a4a4a;
  }

  .login-link a {
    color: #a65a8a;
    text-decoration: none;
    font-weight: 500;
  }

  .login-link a:hover {
    text-decoration: underline;
  }

  @media (max-width: 640px) {
    .signup-container {
      padding: 30px 24px;
    }

    .form-row {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .form-title {
      font-size: 24px;
    }

    .logo-icon {
      width: 56px;
      height: 56px;
      font-size: 24px;
    }
  }
}

.login-container {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 40px;
  max-width: 500px;
  width: 100%;
}

.form-header {
  text-align: center;
  margin-bottom: 32px;
}

.logo-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #a855f7, #8b5a9e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 28px;
}

.form-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 14px;
  color: #666;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus {
  border-color: #a855f7;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.form-input::placeholder {
  color: #999;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #a855f7, #8b5a9e);
  color: white;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 24px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

.signup-link {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #4a4a4a;
}

.signup-link a {
  color: #a65a8a;
  text-decoration: none;
  font-weight: 500;
}

.signup-link a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .login-container {
    padding: 30px 24px;
  }

  .form-title {
    font-size: 24px;
  }

  .logo-icon {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
}

.booking-container {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 40px;
  max-width: 500px;
  width: 100%;
}

.form-header {
  text-align: center;
  margin-bottom: 32px;
}

.logo-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #a855f7, #8b5a9e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 28px;
}

.form-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 13px;
  color: #666;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus {
  border-color: #a855f7;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.form-input::placeholder {
  color: #999;
}

.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  outline: none;
  resize: vertical;
  min-height: 80px;
  font-family: inherit;
}

.form-textarea:focus {
  border-color: #a855f7;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.form-textarea::placeholder {
  color: #999;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #a855f7, #8b5a9e);
  color: white;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 24px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

@media (max-width: 640px) {
  .booking-container {
    padding: 30px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-title {
    font-size: 24px;
  }

  .logo-icon {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
}

.form-container {
  background: #fff;
  max-width: 520px;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  width: 100%;
}

.form-header {
  text-align: center;
  margin-bottom: 25px;
}

.form-header .icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #d7b3e9;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px;
}

.form-header .icon-wrapper svg {
  width: 20px;
  height: 20px;
  color: white;
}

.form-header h2 {
  font-size: 20px;
  color: #222;
  font-weight: 600;
  margin-bottom: 4px;
}

.form-header p {
  color: #777;
  font-size: 13px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.input-group {
  display: flex;
  flex-direction: column;
}

label {
  font-size: 13px;
  color: #444;
  margin-bottom: 5px;
  font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.2s ease;
}

input:focus {
  border-color: #a65a8a;
  outline: none;
}

.row {
  display: flex;
  gap: 12px;
}

.row .input-group {
  flex: 1;
}

.upload-box {
  border: 1.5px dashed #ccc;
  border-radius: 8px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-align: center;
  font-size: 13px;
  color: #888;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.upload-box:hover {
  border-color: #a35efc;
  background-color: #faf5ff;
}

.upload-box svg {
  margin-bottom: 6px;
  color: #a65a8a;
}

button {
  /* margin-top: 10px; */
  padding: 12px;
  border: none;
  border-radius: 6px;
  background-color: #a65a8a;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

@media (max-width: 480px) {
  .form-container {
    width: 90%;
    padding: 25px 20px;
  }

  .row {
    flex-direction: column;
    gap: 0;
  }
}