:root {
  --brown: #76500f;
  --brown2: #9b7331;
  --dark: #27231d;
  --muted: #65615a;
  --cream: #fff8ed;
  --cream2: #f6ecdc;
  --green: #476b24;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Poppins, sans-serif;
  color: var(--dark);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.3;
}
h1,
h2 {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
h1 {
  font-size: clamp(42px, 5vw, 78px);
}
h2 {
  font-size: clamp(32px, 4vw, 48px);
}
p {
  color: var(--muted);
}
.main-nav {
  background: rgba(255, 248, 237, 0.95);
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 35px rgba(118, 80, 15, 0.09);
  padding: 14px 0;
}
.navbar-brand {
  font-weight: 600;
  letter-spacing: 0.05em;
}
.navbar-brand span {
  color: var(--brown);
}
.nav-link {
  font-size: 14px;
  font-weight: 700;
  color: #3e392f;
}
.top-call {
  display: inline-block;
  background: #fff;
  border: 1px solid #ead8b9;
  color: var(--brown);
  font-weight: 600;
  text-decoration: none;
  padding: 12px 15px;
  border-radius: 10px;
}
.btn-primary-brown {
  background: linear-gradient(135deg, var(--brown), var(--brown2));
  color: #fff;
  border: 0;
  border-radius: 12px;
  font-weight: 600;
  padding: 13px 24px;
  box-shadow: 0 12px 24px rgba(118, 80, 15, 0.22);
}
.btn-primary-brown:hover {
  color: #fff;
  transform: translateY(-1px);
}
.btn-light-brown {
  background: #fff;
  color: var(--brown);
  border: 1px solid #ead8b9;
  border-radius: 12px;
  font-weight: 600;
  padding: 13px 22px;
}
.btn-light-brown:hover {
  border: 1px solid var(--muted);
}
.hero-new {
  min-height: 760px;
  padding: 130px 0 150px;
  position: relative;
  background: linear-gradient(115deg, #fff8ec 0%, #fff 45%, #eaf4df 100%);
  overflow: hidden;
}
.hero-new:before {
  content: "";
  position: absolute;
  right: -160px;
  top: -170px;
  width: 620px;
  height: 620px;
  background: rgba(118, 80, 15, 0.12);
  border-radius: 50%;
}
.hero-new:after {
  content: "";
  position: absolute;
  left: -130px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  background: rgba(71, 107, 36, 0.14);
  border-radius: 50%;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--brown);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}
.hero-copy {
  max-width: 720px;
  position: relative;
  z-index: 2;
}
.hero-copy p {
  font-size: 18px;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.quick-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 620px;
  margin-top: 30px;
}
.quick-points div {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  border: 1px solid #eee0c8;
  box-shadow: 0 12px 35px rgba(80, 56, 18, 0.08);
}
.quick-points strong {
  display: block;
  color: var(--brown);
  font-size: 30px;
  line-height: 1;
}
.quick-points span {
  font-size: 13px;
  font-weight: 700;
  color: #5b5144;
}
.doctor-frame {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 35px;
  padding: 10px;
  border: 1px solid #eadcc6;
  box-shadow: 0 30px 80px rgba(69, 48, 13, 0.18);
  /* transform: rotate(1deg); */
}
.doctor-frame img {
  width: 100%;
  display: block;
  border-radius: 25px;
}
.doctor-badge {
  position: absolute;
  left: 15px;
  bottom: 15px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 18px;
  padding: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.13);
}
.doctor-badge strong {
  display: block;
  color: var(--brown);
  font-size: 18px;
}
.doctor-badge span {
  font-size: 13px;
  font-weight: 700;
}
.booking-strip {
  margin-top: -86px;
  position: relative;
  z-index: 4;
}
.booking-card {
  background: #fff;
  border-radius: 28px;
  padding: 26px;
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr) auto;
  gap: 14px;
  align-items: end;
  box-shadow: 0 22px 70px rgba(75, 52, 16, 0.18);
  border: 1px solid #eadcc6;
}
.booking-title span {
  font-weight: 600;
  color: var(--brown);
  font-size: 13px;
  text-transform: uppercase;
}
.booking-title h3 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  margin: 2px 0 0;
}
.form-control,
.form-select {
  height: 52px;
  border-radius: 12px;
  border: 1px solid #e1d3bd;
}
.section {
  padding: 60px 0;
}
.about-new {
  background: #fff;
}
.about-card-main {
  background: var(--cream);
  border-radius: 34px;
  padding: 46px;
  border-left: 8px solid var(--brown);
}
.about-card-main h5 {
  font-weight: 600;
  color: #3b3326;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.benefit-grid div {
  min-height: 170px;
  background: #fff;
  border: 1px solid #eadcc6;
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 16px 45px rgba(76, 56, 22, 0.08);
}
.benefit-grid i {
  font-size: 42px;
  color: var(--brown);
}
.benefit-grid h6 {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
}
.treatments-new {
  background: linear-gradient(180deg, #fff, #fff8ed);
}
.section-head {
  max-width: 650px;
  margin: auto;
}
.treatment-card {
  height: 100%;
  background: #fff;
  border-radius: 30px;
  padding: 34px 26px;
  text-align: center;
  box-shadow: 0 18px 50px rgba(74, 53, 19, 0.09);
  border: 1px solid #eadcc6;
  transition: 0.25s;
}
.treatment-card:hover {
  transform: translateY(-8px);
}
.treatment-card i {
  width: 78px;
  height: 78px;
  display: inline-grid;
  place-items: center;
  border-radius: 24px;
  background: #fff5e5;
  color: var(--brown);
  font-size: 36px;
}
.treatment-card h5 {
  margin: 15px 0 2px;
  font-weight: 600;
}

.doctor-card {
  max-width: 880px;
  margin: auto;
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 15px 45px rgba(72, 48, 11, 0.16);
  border-left: 8px solid var(--brown);
}
.mini-doc {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 18px;
}
.stars {
  color: #d9a323;
  font-weight: 700;
}

.why-new {
  background: #f8f8f6;
}
.timeline-box {
  background: #fff;
  border-radius: 34px;
  padding: 20px;
  box-shadow: 0 22px 70px rgba(52, 39, 16, 0.11);
}
.step {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  padding: 24px;
  border-bottom: 1px solid #eee3d2;
}
.step:last-child {
  border-bottom: 0;
}
.step span {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brown), var(--brown2));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
}
.step h5 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 5px;
}
.step p {
  margin-bottom: 0;
  font-size: 14px;
}
.faq-new {
  background: #fff;
}
.faq-box {
  /* max-width: 960px; */
  margin: auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(59, 42, 16, 0.12);
}
.accordion-item {
  border: 0;
}
.accordion-button {
  background: #fff8ed;
  color: #3b3326;
  font-weight: 600;
  padding: 20px 24px;
  border-bottom: 1px solid #eadcc6;
  font-family: Poppins, sans-serif;
}
.accordion-button:not(.collapsed) {
  background: var(--brown);
  color: #fff;
}
.accordion-button:focus {
  box-shadow: none;
}
.reviews-new {
  background: linear-gradient(180deg, #fff, #faf7f1);
}
.review-card {
  height: 100%;
  background: #fff;
  border-radius: 26px;
  padding: 30px;
  border: 1px solid #eadcc6;
  box-shadow: 0 16px 45px rgba(62, 44, 14, 0.08);
}
.review-card h6 {
  font-weight: 600;
}
.stars {
  color: #d4a12d;
  font-weight: 900;
  letter-spacing: 2px;
}
.footer-new {
  padding: 55px 0;
  background: #4c350f;
  color: #fff;
  border-top: 8px solid var(--brown);
}
.footer-new p,
.footer-new h5 {
  color: #fff;
}
.footer-new h5 {
  font-weight: 900;
  color: #d6b16d;
}
@media (max-width: 991px) {
  .booking-card {
    grid-template-columns: 1fr 1fr;
  }
  .booking-title {
    grid-column: 1/-1;
  }
  .hero-new {
    padding-bottom: 120px;
  }
  .quick-points {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .hero-new {
    padding-top: 110px;
    min-height: auto;
  }
  .booking-card {
    grid-template-columns: 1fr;
  }
  .quick-points,
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 50px 0;
  }
  .doctor-badge {
    left: 20px;
    bottom: 20px;
  }
  .step {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    display: grid;
  }
  .hero-actions .btn {
    width: 100%;
  }
}

/* thank-you-page  */
.thank-you-page {
  min-height: 720px;
  padding: 150px 0 90px;
  background: linear-gradient(115deg, #fff8ec 0%, #fff 45%, #eaf4df 100%);
  position: relative;
  overflow: hidden;
}

.thank-you-page:before {
  content: "";
  position: absolute;
  right: -160px;
  top: -170px;
  width: 620px;
  height: 620px;
  background: rgba(118, 80, 15, 0.12);
  border-radius: 50%;
}

.thank-you-page:after {
  content: "";
  position: absolute;
  left: -130px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  background: rgba(71, 107, 36, 0.14);
  border-radius: 50%;
}

.thank-you-card {
  max-width: 900px;
  margin: auto;
  background: #fff;
  border-radius: 36px;
  padding: 55px 45px;
  border: 1px solid #eadcc6;
  box-shadow: 0 30px 80px rgba(69, 48, 13, 0.18);
  position: relative;
  z-index: 2;
}

.thank-icon {
  width: 95px;
  height: 95px;
  margin: 0 auto 25px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brown), var(--brown2));
  color: #fff;
  font-size: 52px;
  box-shadow: 0 15px 35px rgba(118, 80, 15, 0.25);
}

.thank-text {
  max-width: 620px;
  margin: auto;
  font-size: 18px;
}

.thank-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.thank-points div {
  background: var(--cream);
  border: 1px solid #eadcc6;
  border-radius: 22px;
  padding: 24px 18px;
}

.thank-points i {
  font-size: 34px;
  color: var(--brown);
  margin-bottom: 10px;
}

.thank-points strong {
  display: block;
  font-weight: 700;
  color: var(--dark);
}

.thank-points span {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.thank-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 35px;
}

@media (max-width: 767px) {
  .thank-you-page {
    padding: 120px 0 60px;
  }

  .thank-you-card {
    padding: 40px 22px;
    border-radius: 26px;
  }

  .thank-points {
    grid-template-columns: 1fr;
  }

  .thank-actions {
    display: grid;
  }

  .thank-actions .btn {
    width: 100%;
  }
}

.offer-box {
  margin-top: 35px;

  background: #fff8ed;

  border: 1px solid #eadcc6;

  border-radius: 18px;

  padding: 30px;
}

.offer-tag {
  display: inline-block;

  background: #76500f;

  color: #fff;

  padding: 8px 15px;

  border-radius: 30px;

  font-size: 13px;

  font-weight: 600;

  margin-bottom: 18px;
}

.offer-box h3 {
  font-weight: 700;

  margin-bottom: 12px;
}

.offer-box p {
  font-size: 18px;

  margin-bottom: 25px;
}

.btn-offer {
  display: block;

  width: 100%;

  background: #76500f;

  color: #fff;

  text-align: center;

  padding: 16px;

  font-size: 22px;

  font-weight: 700;

  border-radius: 8px;

  text-decoration: none;

  transition: 0.3s;
}

.btn-offer:hover {
  background: #5d3f0d;

  color: #fff;
}

.old-price {
  text-decoration: line-through;

  opacity: 0.8;

  font-size: 18px;

  margin-left: 5px;
}

.new-price {
  margin-left: 5px;

  color: #ffd34e;
}

.bottom-info {
  display: flex;

  justify-content: space-between;

  margin-top: 35px;

  border-top: 1px solid #eee;

  padding-top: 25px;
}

.bottom-info div {
  display: flex;

  align-items: center;

  gap: 10px;

  color: #76500f;

  font-weight: 600;
}

.bottom-info i {
  font-size: 22px;
}

@media (max-width: 768px) {
  .offer-box {
    padding: 22px;
  }

  .btn-offer {
    font-size: 18px;
  }
}
