/* =========================================
   Hero Section
========================================= */
.hero-section {
  background: #FAF9F6;
  padding: 80px 0 0 70px;
}

.hero-container {
  width: 100%;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.hero-left {
  text-align: left;
  padding: 20px 0;
}

.section-title.hero {
  text-align: left;
}

.hero-left p {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  line-height: 1.25;
  color: #354230c4;
  margin-bottom: 10px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 30px;
}

.hero-right {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Hero Tablet */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .hero-section {
    padding: 0 0 0 40px;
  }

  .hero-grid {
    gap: 35px;
  }

  .hero-left p {
    font-size: 16px;
  }
}

/* Hero Mobile */
@media only screen and (max-width: 767px) {
  .hero-section {
    padding: 30px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .hero-left,
  .section-title.hero {
    text-align: center;
  }

  .hero-buttons {
    margin-top: 35px;
    flex-wrap: wrap;
    justify-content: center;
  }
}



/* =========================================
   Services Section
========================================= */

.services-section {
  background: linear-gradient(90deg, #c7b28e 0%, #263c29 100%);
  padding: 60px 35px;
}

.services-box {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  border: 4px solid #fff;
  border-radius: 30px;
  padding: 44px 14px 42px;
  overflow: visible;
}

.services-label {
  position: absolute;
  top: -23px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 10px 34px;
  border-radius: 7px;
  font-size: 17px;
  line-height: 1;
  color: #263c29;
  font-family: "Playfair Display", serif;
  z-index: 20;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  white-space: nowrap;
}

.services-slider {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.service-card {
  width: 100%;
  min-height: 235px;
  background: #f7f5ef;
  border: 2px solid #203c2d;
  border-radius: 10px;
  padding: 8px 8px 13px;
  text-align: center;
  display: flex !important;
  flex-direction: column;
  box-sizing: border-box;
}

.service-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 5px;
  display: block;
}

.service-card h3 {
  flex: 1;
  min-height: 52px;
  margin: 12px 0 10px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 400;
  color: #2c3f2f;
  font-family: "Playfair Display", serif;
}

.service-card a {
  align-self: center;
  margin-top: auto;
  display: inline-block;
  background: #cbb17b;
  color: #1f1f1f;
  text-decoration: none;
  font-size: 14px;
  padding: 8px 13px;
  border-radius: 6px;
  font-family: "Playfair Display", serif;
}

/* =========================================
   Slider Responsive
========================================= */

@media only screen and (max-width: 1180px) {
  .services-section {
    padding: 65px 35px 60px;
  }

  .services-box {
    overflow: visible;
    padding: 46px 24px 34px;
  }

  .services-label {
    top: -21px;
    font-size: 16px;
    padding: 9px 30px;
    z-index: 30;
  }

  .services-slider {
    display: block !important;
    width: 100%;
    overflow: hidden;
  }

  .services-slider .slick-list {
    overflow: hidden;
    margin: 0 -10px;
  }

  .services-slider .slick-track {
    display: flex !important;
    align-items: stretch;
    gap:10px;
  }

  .services-slider .slick-slide {
    height: auto !important;
    padding: 10px 10px;
    box-sizing: border-box;
  }

  .services-slider .slick-slide > div {
    height: 100%;
    display: flex;
  }

  .services-slider .service-card {
    width: 100% !important;
    min-height: 255px;
    height: 100%;
  }

  .services-slider .service-card img {
    height: 145px;
  }
}

/* =========================================
   Mobile
========================================= */

@media only screen and (max-width: 767px) {
  .services-section {
    padding: 60px 24px 55px;
  }

  .services-box {
    border-radius: 22px;
    padding: 42px 18px 28px;
    overflow: visible;
  }

  .services-label {
    font-size: 14px;
    padding: 9px 26px;
    top: -19px;
    z-index: 30;
  }

  .services-slider {
    overflow: hidden;
  }

  .services-slider .slick-list {
    margin: 0 -9px;
  }

  .services-slider .slick-slide {
    padding: 15px 15px;
  }

  .services-slider .service-card {
    min-height: 275px;
    padding: 8px 8px 14px;
  }

  .services-slider .service-card img {
    height: 160px;
  }

  .services-slider .service-card h3 {
    min-height: 52px;
    font-size: 15px;
    line-height: 1.2;
  }

  .services-slider .service-card a {
    font-size: 12px;
    padding: 8px 14px;
  }
}

/* =========================================
   Small Mobile
========================================= */

@media only screen and (max-width: 480px) {
  .services-section {
    padding: 55px 18px 50px;
  }

  .services-box {
    padding: 40px 14px 24px;
    overflow: visible;
  }

  .services-label {
    top: -18px;
    font-size: 14px;
    padding: 8px 24px;
  }

  .services-slider {
    overflow: hidden;
  }

  .services-slider .slick-list {
    margin: 0 -8px;
  }

  .services-slider .slick-slide {
    padding: 10px 10px;
  }

  .services-slider .service-card {
    min-height: 260px;
  }

  .services-slider .service-card img {
    height: 145px;
  }

  .services-slider .service-card h3 {
    font-size: 14px;
  }
}



/* =========================================
   Clinical Process Section
========================================= */

.clinical-process-section {
  background: #FAF9F6;
  padding: 50px 70px;
}

.clinical-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.clinical-title {
  text-align: center;
  margin: 0 0 55px;
}

.process-row {
  display: grid;
  grid-template-columns: 1fr 120px 1fr 120px 1fr;
  align-items: start;
}

.process-item {
  text-align: center;
  color: #2c3f2f;
}

.process-icon {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(#FAF9F6, #FAF9F6) padding-box,
    linear-gradient(135deg, #cbbf9e 0%, #8b8a72 45%, #2c3f2f 100%) border-box;
  border: 4px solid transparent;
}

.process-icon img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  display: block;
}

.process-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: "Playfair Display", serif;
  font-size: 38px;
  color: #2c3f2f;
}

.process-number::before,
.process-number::after {
  content: "";
  width: 55px;
  height: 2px;
  background: #aaa081;
}

.process-item h3 {
  font-family: "Playfair Display", serif;
  font-size: 25px;
  font-weight: 400;
  margin: 5px 0 15px;
  color: #2c3f2f;
}

.process-item p {
  max-width: 210px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.25;
  color: #6d6d62;
}

.process-line {
  position: relative;
  height: 2px;
  background: linear-gradient(90deg, #cbbf9e 0%, #8b8a72 45%, #2c3f2f 100%);
  margin-top: 75px;
}

.process-line::before,
.process-line::after {
  content: "";
  position: absolute;
  top: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.process-line::before {
  left: 0;
  background: #cbbf9e;
}

.process-line::after {
  right: 0;
  background: #2c3f2f;
}

/* Philosophy Box */
.philosophy-box {
  margin-top: 55px;
  border: 3px solid #2c3f2f;
  border-radius: 8px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.philosophy-left {
  display: flex;
  align-items: center;
  gap: 25px;
}

.philosophy-left img {
  width: 70px;
  height: auto;
  object-fit: contain;
}

.philosophy-left h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 400;
  color: #2c3f2f;
  margin: 0 0 7px;
}

.philosophy-left p {
  font-size: 16px;
  color: #6d6d62;
  margin: 0;
  max-width: 560px;
  line-height: 1.4;
}

.philosophy-btn {
  background: #2c3f2f;
  color: #fff;
  text-decoration: none;
  padding: 18px 26px;
  border-radius: 7px;
  font-family: "Playfair Display", serif;
  font-size: 14px;
  white-space: nowrap;
  display: inline-block;
}

/* =========================================
   Mobile Responsive
========================================= */

@media only screen and (max-width: 767px) {
  .clinical-process-section {
    padding: 60px 30px;
  }

  .clinical-title {
    margin-bottom: 40px;
  }

  .process-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 45px;
    max-width: 420px;
    margin: 0 auto;
  }

  .process-line {
    display: none;
  }

  .process-icon {
    width: 130px;
    height: 130px;
  }

  .process-icon img {
    width: 48px;
    height: 48px;
  }

  .process-item p {
    max-width: 280px;
    font-size: 13px;
    line-height: 1.35;
  }

  .philosophy-box {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

  .philosophy-left {
    flex-direction: column;
    gap: 15px;
  }

  .philosophy-btn {
    width: 100%;
    text-align: center;
    white-space: normal;
  }
}

/* Small Mobile */
@media only screen and (max-width: 480px) {
  .clinical-process-section {
    padding: 50px 20px;
  }

  .process-row {
    gap: 38px;
  }

  .process-icon {
    width: 115px;
    height: 115px;
  }

  .process-icon img {
    width: 42px;
    height: 42px;
  }

  .process-number {
    font-size: 34px;
  }

  .process-number::before,
  .process-number::after {
    width: 42px;
  }

  .process-item h3 {
    font-size: 23px;
  }

  .philosophy-left img {
    width: 62px;
  }

  .philosophy-left h3 {
    font-size: 18px;
  }

  .philosophy-btn {
    padding: 16px 18px;
    font-size: 13px;
  }
}


/* =========================================
   Science Regulation Section
========================================= */

.science-regulation-section {
  background: #FAF9F6;
  padding: 70px 70px;
}

.science-regulation-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.science-regulation-left {
  text-align: left;
}

.science-regulation-title {
  text-align: left;
  margin: 0 0 35px;
  color: #2c3f2f;
}

.science-regulation-left p {
  max-width: 520px;
  font-family: "Playfair Display", serif;
  font-size: 16px;
  line-height: 1.15;
  color: #6d6d62;
  margin: 0 0 55px;
}

.verified-row {
  display: flex;
  align-items: center;
  gap: 55px;
  flex-wrap: wrap;
}

.verified-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #2c3f2f;
}

.verified-item img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.verified-item h3 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 400;
  margin: 0;
  color: #2c3f2f;
}

.verified-item span {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 25px;
  line-height: 1;
  color: #6d6d62;
  margin-top: 6px;
}

.science-regulation-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.science-badge-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  display: block;
}

/* Tablet */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .science-regulation-section {
    padding: 60px 40px;
  }

  .science-regulation-container {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .science-regulation-left p {
    font-size: 17px;
    margin-bottom: 35px;
  }

  .verified-row {
    gap: 30px;
  }

  .verified-item h3 {
    font-size: 34px;
  }

  .verified-item span {
    font-size: 21px;
  }

  .science-badge-image {
    max-width: 360px;
  }
}

/* Mobile */
@media only screen and (max-width: 767px) {
  .science-regulation-section {
    padding: 60px 30px;
  }

  .science-regulation-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .science-regulation-left,
  .science-regulation-title {
    text-align: center;
  }

  .science-regulation-left p {
    font-size: 16px;
    line-height: 1.25;
    margin: 0 auto 35px;
  }

  .verified-row {
    justify-content: center;
    gap: 28px;
  }

  .verified-item {
    justify-content: center;
  }

  .verified-item img {
    width: 48px;
    height: 48px;
  }

  .verified-item h3 {
    font-size: 32px;
  }

  .verified-item span {
    font-size: 20px;
  }

  .science-badge-image {
    max-width: 300px;
  }
}

/* =========================================
   FAQ Section
========================================= */

.faq-section {
  background: #FAF9F6;
  padding: 60px 70px 80px;
}

.faq-container {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  margin: 0 0 45px;
  color: #2c3f2f;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: center;
}

.faq-icon {
  width: 52px;
  height: 52px;
  border: 2px solid #2c3f2f;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.faq-icon img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  display: block;
}

.faq-icon::before {
  content: "";
  position: absolute;
  inset: -7px;
  border: 2px solid #2c3f2f;
  border-radius: 50%;
}

.faq-question {
  border: 2px solid #2c3f2f;
  border-radius: 40px;
  min-height: 47px;
  padding: 10px 28px;
  display: flex;
  align-items: center;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  line-height: 1.2;
  color: #2c3f2f;
}

/* Tablet */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .faq-section {
    padding: 60px 40px 75px;
  }

  .faq-container {
    max-width: 720px;
  }
}

/* Mobile */
@media only screen and (max-width: 767px) {
  .faq-section {
    padding: 55px 30px 65px;
  }

  .faq-title {
    margin-bottom: 35px;
  }

  .faq-list {
    gap: 18px;
  }

  .faq-item {
    grid-template-columns: 44px 1fr;
    gap: 10px;
  }

  .faq-icon {
    width: 40px;
    height: 40px;
  }

  .faq-icon img {
    width: 32px;
    height: 32px;
  }

  .faq-icon::before {
    inset: -5px;
  }

  
  .faq-question {
    min-height: 44px;
    padding: 9px 18px;
    font-size: 15px;
  }
}




/* =========================================
   Final CTA Section
========================================= */

.final-cta-section {
  background: #2c3f2f;
  padding: 80px 70px 80px;
}

.final-cta-container {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.final-cta-title {
  font-family: "Playfair Display", serif;
  font-size: 60px;
  line-height: 0.9;
  font-weight: 400;
  color: #fff;
  margin: 0 0 38px;
  letter-spacing: 1px;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.final-cta-btn {
  position: relative;
  min-width: 155px;
  height: 42px;
  padding: 0 22px 0 58px;
  background: #fff;
  color: #2c3f2f;
  text-decoration: none;
  border-radius: 8px;
  font-family: "Playfair Display", serif;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.final-cta-btn-wide {
  min-width: 280px;
}

.final-cta-icon {
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 4px solid #aaa081;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.final-cta-icon img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  display: block;
}

/* Tablet */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .final-cta-section {
    padding: 55px 40px 45px;
  }

  .final-cta-title {
    font-size: 64px;
  }
}

/* Mobile */
@media only screen and (max-width: 767px) {
  .final-cta-section {
    padding: 55px 24px 50px;
  }

  .final-cta-title {
    font-size: 44px;
    line-height: 0.95;
    margin-bottom: 42px;
    letter-spacing: 0;
  }

  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .final-cta-btn,
  .final-cta-btn-wide {
    width: calc(100% - 36px);
    max-width: 200px;
    min-width: unset;
    height: 48px;
    padding: 0 18px 0 54px;
    font-size: 13px;
    border-radius: 8px;
    justify-content: center;
    text-align: center;
  }

  .final-cta-icon {
    left: -18px;
    width: 50px;
    height: 50px;
    border-width: 4px;
  }

  .final-cta-icon img {
    width: 24px;
    height: 24px;
  }
}

/* Small Mobile */
@media only screen and (max-width: 480px) {
  .final-cta-title {
    font-size: 38px;
  }

  .final-cta-btn,
  .final-cta-btn-wide {
    width: calc(100% - 30px);
    max-width: 180px;
    font-size: 12px;
    padding-left: 50px;
  }

  .final-cta-icon {
    left: -16px;
    width: 46px;
    height: 46px;
  }

  .final-cta-icon img {
    width: 22px;
    height: 22px;
  }
}