

/* Global sizing and margin reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

/* ===== Hero Section ===== */
        .top-section {
    width: 100%;
    margin: 0;
    display: flex;
    background-color: #FBF2EE;
    align-items: center;
    padding: 0;
    min-height: 100vh;
    position: relative;
}

.left-container {
    flex: 0 0 35%;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f9f5f0;
    z-index: 2;
}

.decorative-shape {
    position: absolute;
    top: 80px;
    left: 50px;
    width: 120px;
    height: 80px;
    background-color: #f4d4d4;
    border-radius: 50%;
    opacity: 0.6;
}

.heading {
    font-size: 2.9rem;
    font-weight: 600;
    color: #502628;
    line-height: 1.2;
    margin-bottom: 20px;
    margin-top: 30px;
}

.subheading {
    font-size: 1rem;
    color: #502628;
    line-height: 1.6;
    margin-bottom: 35px;
    font-weight: 400;
}

.button-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn {
    width: 65%;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary {
    background-color: #974B00;
    color: white;
    border-top-right-radius: 20px;
}

.btn-primary:hover {
    background-color: #6d4630;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #974B00;
    color: white;
    border-top-right-radius: 20px;
}

.btn-whatsapp:hover {
    background-color: #6d4630;
    transform: translateY(-2px);
}

.right-container {
    flex: 0 0 65%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.image-wrapper {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom-left-radius: 70px;
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .top-section {
        flex-direction: column;
        min-height: auto;
    }

    .left-container {
        flex: 1;
        width: 90%;
        padding: 50px 40px;
        order: 2;
    }

    .right-container {
        flex: 1;
        width: 100%;
        order: 1;
    }

    .image-wrapper {
        height: 50vh;
        min-height: 400px;
    }

    .image-wrapper img {
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 50px;
    }

    .heading {
        font-size: 2.5rem;
    }

    .btn {
        width: 70%;
    }

    .decorative-shape {
        width: 100px;
        height: 70px;
        top: 50px;
        left: 40px;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .top-section {
        flex-direction: column;
    }

    .left-container {
        padding: 40px 25px;
    }

    .heading {
        font-size: 2rem;
        margin-top: 20px;
    }

    .subheading {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .button-container {
        gap: 12px;
        max-width: 100%;
    }

    .btn {
        width: 65%;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .image-wrapper {
        height: 45vh;
        min-height: 350px;
    }

    .image-wrapper img {
        border-bottom-left-radius: 40px;
        border-bottom-right-radius: 40px;
    }

    .decorative-shape {
        width: 80px;
        height: 60px;
        top: 30px;
        left: 25px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .left-container {
        padding: 30px 20px;
    }

    .heading {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .subheading {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .button-container {
        gap: 10px;
    }

    .btn {
        width: 70%;
        padding: 11px 18px;
        font-size: 0.85rem;
        gap: 8px;
    }

    .btn svg {
        width: 16px;
        height: 16px;
    }

    .image-wrapper {
        height: 40vh;
        min-height: 300px;
    }

    .image-wrapper img {
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
    }

    .decorative-shape {
        width: 70px;
        height: 50px;
        top: 20px;
        left: 20px;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .heading {
        font-size: 1.5rem;
    }

    .subheading {
        font-size: 0.85rem;
        margin-bottom: 18px;
    }

    .button-container {
        gap: 8px;
    }

    .btn {
        width: 75%;
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .left-container {
        padding: 25px 15px;
    }
}
/* ===== About Section ===== */
.complete-section {
    background-color: #FFF7EC;
    margin: 0 auto;
    padding: 60px 80px;
    display: grid;
    grid-template-columns: 0.45fr 0.55fr;
    gap: 80px;
    align-items: center;
}

/* ===== LEFT SIDE - SHOWCASE GRID ===== */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.large-image-card {
    grid-row: auto;
    height: 360px;
}

.large-image-card img,
.mortar-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mortar-card {
    margin-top: 50%;
    width: 72%;
    height: 112px;
    margin-left: 29%;
}

.stats-card {
    padding: 0;
    height: 250px;
    display: block;
}

.stats-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #2c1810;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.trend-icon {
    font-size: 1.8rem;
}

.stats-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #e0e0e0, transparent);
    margin-bottom: 20px;
}

.avatar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.avatar {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f9f5f0;
}

.ratings-card {
    padding: 0;
    margin-top: -36%;
    height: 335px;
    display: block;
}

.ratings-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ratings-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c1810;
}

.emoji-row {
    display: flex;
    gap: 10px;
    font-size: 2.2rem;
}

.emoji {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.emoji:hover {
    transform: scale(1.2);
}

/* ===== RIGHT SIDE - ABOUT CONTENT ===== */
.about-content {
    padding: 20px;
}

.section-label-about {
    font-size: 0.9rem;
    font-weight: 600;
    color: #8b5a3c;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c1810;
    letter-spacing: 2px;
    margin-bottom: 15px;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.6;
}

.main-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    margin-bottom: 35px;
    padding:0;
}

.features-list li {
    font-size: 0.95rem;
    color: #555;
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
    line-height: 1.6;
}

.features-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8b5a3c;
    font-size: 1.5rem;
    line-height: 1;
}

.explore-btn {
    position: relative;
    display: inline-block;
    background-color: #008000;
    color: white;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    padding: 22px 50px 22px 35px;
    border: none;
    cursor: pointer;
    border-radius: 12px 0 0 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    line-height: 1;
}

.explore-btn::after {
    content: '';
    position: absolute;
    right: -24px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 33px solid transparent;
    border-bottom: 33px solid transparent;
    border-left: 25px solid #008000;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    background-color: #006600;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.explore-btn:hover::after {
    border-left-color: #006600;
}

.explore-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* ===== TABLET RESPONSIVE ===== */
@media (max-width: 1024px) {
    .complete-section {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 50px 40px;
    }

    .showcase-grid {
        max-width: 600px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 3rem;
    }

    .explore-btn {
        padding: 20px 45px 20px 30px;
        font-size: 16px;
    }

    .explore-btn::after {
        right: -22px;
        border-top: 30px solid transparent;
        border-bottom: 30px solid transparent;
        border-left: 23px solid #008000;
    }

    .explore-btn:hover::after {
        border-left-color: #006600;
    }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .complete-section {
        padding: 40px 25px;
        gap: 40px;
    }

    .showcase-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 100%;
    }

    .large-image-card {
        height: 200px;
        grid-column: 1;
        grid-row: 1;
    }

    .stats-card {
        height: 140px;
        grid-column: 2;
        grid-row: 1;
    }

    .mortar-card {
       height: 94px;
        width: 79%;
        margin-left: 19%;
        margin-top: 11%;
    }

    .ratings-card {
        height: 190px;
        margin-top: -25%;
        grid-column: 2;
        grid-row: 2;
    }

    .about-content {
        padding: 10px;
    }

    .section-label-about {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .main-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .features-list {
        margin-bottom: 30px;
    }

    .features-list li {
        font-size: 0.9rem;
        margin-bottom: 10px;
        padding-left: 22px;
    }

    .explore-btn {
        padding: 16px 35px 16px 25px;
        font-size: 14px;
        letter-spacing: 1.5px;
    }

    .explore-btn::after {
        right: -18px;
        border-top: 24px solid transparent;
        border-bottom: 24px solid transparent;
        border-left: 19px solid #008000;
    }

    .explore-btn:hover::after {
        border-left-color: #006600;
    }

    .stats-number {
        font-size: 2.5rem;
    }

    .emoji-row {
        font-size: 1.8rem;
    }
}

/* ===== SMALL MOBILE RESPONSIVE ===== */
@media (max-width: 480px) {
    .complete-section {
        padding: 30px 20px;
        gap: 35px;
    }

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

    .large-image-card {
      width: 200px;
        height: 160px;
    }

    .stats-card {
        height: 110px;
    }

    .mortar-card {
       height: 94px;
        width: 79%;
        margin-left: 19%;
        margin-top: 11%;
    }

    .ratings-card {
        height: 150px;
        margin-top: -30%;
    }

    .about-content {
        padding: 5px;
    }

    .section-label-about {
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }

    .main-description {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .features-list {
        margin-bottom: 25px;
    }

    .features-list li {
        font-size: 0.85rem;
        margin-bottom: 8px;
        padding-left: 20px;
    }

    .features-list li::before {
        font-size: 1.3rem;
    }

    .explore-btn {
        padding: 14px 30px 14px 20px;
        font-size: 13px;
        letter-spacing: 1px;
        border-radius: 10px 0 0 10px;
    }

    .explore-btn::after {
        right: -16px;
        border-top: 21px solid transparent;
        border-bottom: 21px solid transparent;
        border-left: 17px solid #008000;
    }

    .explore-btn:hover::after {
        border-left-color: #006600;
    }

    .avatar-grid {
        gap: 6px;
    }

    .stats-number {
        font-size: 2rem;
    }

    .emoji-row {
        font-size: 1.5rem;
    }
}

/* ===== EXTRA SMALL MOBILE ===== */
@media (max-width: 360px) {
    .complete-section {
        padding: 25px 15px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .main-description {
        font-size: 0.85rem;
    }

    .features-list li {
        font-size: 0.8rem;
    }

    .explore-btn {
        padding: 12px 25px 12px 18px;
        font-size: 12px;
    }

    .explore-btn::after {
        right: -14px;
        border-top: 30px solid transparent;
        border-bottom: 18px solid transparent;
        border-left: 15px solid #008000;
    }

    .explore-btn:hover::after {
        border-left-color: #006600;
    }
}
/* ===== Specializations Section ===== */
.specializations-section {
  background: linear-gradient(135deg, #d85a3a 0%, #c94d2e 100%);
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 18%;
  padding: 120px 0;
  align-items: center;
  position: relative;
}

.text-section {
  flex: 0 0 auto;
  margin-top: -12%;
  max-width: 400px;
}

.section-label {
  color: #fff;
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.s-heading {
  color: #fff;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.cta-button {
  background: #fff;
  color: #333;
  padding: 16px 32px;
  border: none;
  margin-top: 20%;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cards-container {
  display: flex;
  gap: 30px;
  flex: 1;
}

/* Slider viewport/track setup */
.cards-viewport {
  overflow: hidden;
  width: 100%;
}

.cards-track {
  display: flex;
  gap: 30px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.specializations-section .service-card {
  flex: 0 0 auto;
}

/* Collapsed/expanded behavior (desktop only) */
@media (min-width: 769px) {
  .cards-container.collapsed .service-card:nth-child(n+3) {
    display: none;
  }
  .cards-container.expanded {
    flex-wrap: wrap;
  }
  .cards-container.expanded .service-card {
    flex: 1 1 320px;
  }
}

.service-card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: transparent;
}

.service-card:hover {
  transform: translateY(-8px);
}

.card-image {
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.card-image img {
  width: 98.4%;
  height: 100%;
  border-top-left-radius: 32%;
  object-fit: cover;
  display: block;
}

.card-content {
  opacity: 0.99;
  padding: 22px;
  display: flex;
  border-radius: 0 140px 12px 12px;
  margin-top: -100px;
  background-color: #F9E8D6;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(80, 38, 40, 0.08);
  flex-direction: column;
  width: 100%;
  align-self: flex-start;
  flex: 1;
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  color: #502628;
  margin-bottom: 0px;
  line-height: 1.3;
  min-height: 56px;
  display: block;
}

.card-title p {
  color: #502628;
}

.card-content p {
  color: #4F3A36;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  flex: 1;
}

.service-list li {
  color: #666;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 10px;
  position: relative;
  padding-left: 0;
}

.view-services-btn {
  margin-top: 18px;
  border: none;
  border-top-right-radius: 30px;
  background: #F9E8D6;
  color: #502628;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.view-services-btn:hover {
  background: #FFE5C3;
  transform: translateY(-2px);
}

.cards-swiper {
  position: relative;
  overflow: visible;
}

.swiper-wrapper {
  display: flex;
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  color: #d85a3a;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-next {
  right: 0px;
  
}

.nav-prev {
  left: 0px;
  
}

.nav-arrow:hover {
  background: #f5f5f5;
  transform: translateY(-50%) scale(1.1);
}

/* ===== Tablet Responsive (1024px and below) ===== */
@media (max-width: 1024px) {
  .specializations-section {
    padding: 80px 0px;
  }

  .content-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 50px;
    padding: 80px 30px;
  }

  .text-section {
    max-width: 100%;
    text-align: center;
    margin-top: 0;
  }

  .s-heading {
    font-size: 42px;
  }

  .cta-button {
    width: 100%;
    max-width: 400px;
    margin: 30px auto 0;
  }

  .cards-container {
    gap: 20px;
  }

  .nav-next {
    right: 0px;
    top:44%;
  }

  .nav-prev {
    left: 0px;
    top:44%
  }
}

/* ===== Mobile Responsive (768px and below) ===== */
@media (max-width: 768px) {
  .specializations-section {
    padding: 60px 0px;
    min-height: auto;
  }

  .content-wrapper {
    gap: 40px;
    padding: 10px 0px;
  }

  .text-section {
    padding: 0 15px;
  }

  .section-label {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .s-heading {
    font-size: 32px;
    margin-left:-12px!important;
    margin-bottom: 30px;
  }

  .cta-button {
    padding: 14px 28px;
    font-size: 15px;
    margin-top: 20px;
  }

  /* Swiper container for mobile */
  .cards-swiper {
    overflow: hidden;
    position: relative;
    padding: 0;
    margin: 0;
    width: 100%;
  }

  .swiper-wrapper {
    display: flex;
  }

  /* Single card view on mobile */
  .service-card {
    width: 100%;
    border-radius: 20px;
    margin: 0;
  }

  .swiper-slide {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 15px;
  }

  .card-image {
    height: 380px;
    border-top-left-radius: 50px;
    overflow: hidden;
    width: 100%;
  }

  .card-image img {
    width: 100%;
    height: 100%;
    border-top-left-radius: 50px;
    object-fit: cover;
    display: block;
  }

  .card-content {
    padding: 20px;
    margin-top: -90px;
    border-radius: 0 100px 12px 12px;
    width: 100%;
    align-self: flex-start;
    margin-left: 0px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    background-color: #F9E8D6;
  }

  .card-title {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.3;
    min-height: 5px;
  }

  .card-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
  }

  .view-services-btn {
    padding: 10px 20px;
    font-size: 14px;
    margin-top: 15px;
    border-top-right-radius: 25px;
  }

  /* Navigation arrows for mobile */
  .nav-arrow {
    width: 44px;
    height: 44px;
    font-size: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    z-index: 100;
    background: #fff;
  }

  .nav-next {
    right: 0px;
    top:44%;
  }

  .nav-prev {
    left: 0px;
    top:44%;
  }
}

/* ===== Small Mobile (480px and below) ===== */
@media (max-width: 480px) {
  .specializations-section {
    padding: 40px 0px;
  }

  .content-wrapper {
    padding: 10px 0px;
  }

  .text-section {
    padding: 0 15px;
  }

  .main-heading {
    font-size: 26px;
  }

  .cta-button {
    padding: 12px 24px;
    font-size: 14px;
  }

  .swiper-slide {
    padding: 0 15px;
  }

  .service-card {
    width: 100%;
    border-radius: 18px;
  }

  .card-image {
    height: 300px;
    border-top-left-radius: 40px;
  }

  .card-image img {
    border-top-left-radius: 40px;
  }

  .card-content {
    padding: 18px;
    margin-top: -80px;
    border-radius: 0 80px 10px 10px;
    width: 100%;
    margin-left: 0px;
  }

  .card-title {
    font-size: 16px;
    line-height: 1.3;
    min-height: 5px;
   
  }

  .card-content p {
    font-size: 13px;
    line-height: 1.5;
  }

  .view-services-btn {
    padding: 10px 18px;
    font-size: 13px;
  }

  /* Compact navigation arrows */
  .nav-arrow {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .nav-next {
    right: 0px;
    top:44%;
  }

  .nav-prev {
    left: 0px;
    top:44%;
  }
}

/* ===== Extra Small Mobile (360px and below) ===== */
@media (max-width: 360px) {
  .specializations-section {
    padding: 40px 0px;
  }

  .content-wrapper {
   padding: 10px 0px;
  }

  .text-section {
    padding: 0 15px;
  }

  .s-heading {
    font-size: 22px;
  }

  .card-image {
    height: 260px;
  }

  .card-content {
    padding: 16px;
    margin-top: -70px;
    width: 100%;
  }

  .card-title {
    font-size: 15px;
    min-height: 5px;
  }

  .nav-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .nav-next {
    right: 0px;
  }

  .nav-prev {
    left: 0px;
    top:44%;
  }
}
/* ===== Testimonials Section ===== */
.ts-section {
  background-color: #FFF7EC;
  padding: 40px 8%;
}

.ts-header {
  text-align: center;
  margin-bottom: 40px;
}

.ts-eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #EB641A;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}

.ts-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  color: #442a1f;
  font-weight: 700;
  line-height: 1.2;
}

.ts-main {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 40px;
  align-items: center;
  position: relative;
  padding-bottom: 56px;
}

/* Left column inline layout */
.ts-left--inline {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

.ts-left--inline .ts-left-thumb {
  position: static;
  width: 180px;
  height: 300px;
  object-fit: cover;
  display: block;
  left: auto;
  bottom: auto;
  border-radius: 8px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

.ts-left--inline .ts-hero {
  margin: 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.ts-left--inline .ts-hero img {
  width: 100%;
  height: 608px;
  object-fit: cover;
  display: block;
}

.ts-right {
  padding: 10px;
}

.ts-rank {
  font-weight: 700;
  color: #2c1810;
  font-size: 22px;
  margin: 0 0 6px;
}

.ts-name {
  font-size: 28px;
  color: #2c1810;
  margin: 0 0 16px;
  font-weight: 700;
  line-height: 1.3;
}

.ts-quote {
  color: #444;
  line-height: 1.7;
  margin-bottom: 18px;
  font-size: 16px;
}

.ts-rating-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.ts-stars {
  color: #f7b500;
  font-size: 22px;
  letter-spacing: 2px;
}

.ts-rating-text {
  color: #333;
  font-weight: 500;
  font-size: 15px;
}

.ts-meta {
  color: #2c1810;
  font-weight: 600;
  margin-top: 8px;
  font-size: 16px;
}

.ts-right-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 100px;
}

.ts-right-thumbs img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
  border-radius: 8px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

/* ===== Tablet Responsive (992px and below) ===== */
@media (max-width: 992px) {
  .ts-section {
    padding: 40px 5%;
  }

  .ts-title {
    font-size: 48px;
  }

  .ts-main {
    grid-template-columns: 50% 50%;
    gap: 30px;
  }

  .ts-left--inline .ts-left-thumb {
    width: 140px;
    height: 240px;
  }

  .ts-left--inline .ts-hero img {
    height: 480px;
  }

  .ts-right-thumbs {
    margin-top: 60px;
    gap: 15px;
  }

  .ts-right-thumbs img {
    height: 240px;
  }
}

/* ===== Mobile Responsive (768px and below) ===== */
@media (max-width: 768px) {
  .ts-section {
    padding: 20px 5%;
    overflow-x: hidden;
  }

  .ts-header {
    margin-bottom: 30px;
  }

  .ts-eyebrow {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .ts-title {
    font-size: 36px;
  }

  /* Mobile: show single hero + review, no horizontal scroll */
  .ts-main {
    display: block;
    gap: 0;
    align-items: initial;
    overflow: hidden;
    padding-bottom: 0;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    position: relative;
  }

  /* Align controls left/right at vertical center */
  .ts-controls {
    justify-content: space-between;
    gap: 0;
    padding: 0 16px;
  }

  /* Custom scrollbar */
  .ts-main::-webkit-scrollbar {
    height: 6px;
  }

  .ts-main::-webkit-scrollbar-track {
    background: rgba(235, 100, 26, 0.1);
    border-radius: 10px;
  }

  .ts-main::-webkit-scrollbar-thumb {
    background: rgba(235, 100, 26, 0.4);
    border-radius: 10px;
  }

  .ts-main::-webkit-scrollbar-thumb:hover {
    background: rgba(235, 100, 26, 0.6);
  }

  /* Mobile: stack hero, hide left thumb */
  .ts-left--inline {
    flex: none;
    min-width: 100%;
    gap: 0;
    scroll-snap-align: unset;
  }

  .ts-left--inline .ts-left-thumb {
    display: none;
  }

  .ts-left--inline .ts-hero {
    max-width: 100%;
  }

  .ts-left--inline .ts-hero img {
    height: auto;
    object-fit: contain;
  }

  /* Mobile: review full width under hero */
  .ts-right {
    flex: none;
    min-width: 100%;
    padding: 12px 0 0 0;
    scroll-snap-align: unset;
  }

  .ts-rank {
    font-size: 20px;
  }

  .ts-name {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .ts-quote {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .ts-stars {
    font-size: 20px;
  }

  .ts-rating-text {
    font-size: 14px;
  }

  .ts-meta {
    font-size: 15px;
  }

  .ts-right-thumbs {
    display: none;
  }

  .ts-right-thumbs img {
    height: 180px;
  }
}

/* ===== Small Mobile (560px and below) ===== */
@media (max-width: 560px) {
  .ts-section {
    padding: 20px 5%;
  }

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

  .ts-main {
    gap: 20px;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }

  /* Mobile: stack hero only */
  .ts-left--inline {
    min-width: 100%;
    gap: 0;
  }

  .ts-left--inline .ts-left-thumb {
    width: 100px;
    height: 170px;
  }

  .ts-left--inline .ts-hero {
    max-width: 100%;
  }

  .ts-left--inline .ts-hero img {
    height: auto;
    object-fit: contain;
  }

  .ts-right {
    min-width: 100%;
    padding: 12px 0 0 0;
  }

  .ts-rank {
    font-size: 18px;
  }

  .ts-name {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .ts-quote {
    font-size: 14px;
    line-height: 1.5;
  }

  .ts-stars {
    font-size: 18px;
  }

  .ts-rating-text {
    font-size: 13px;
  }

  .ts-meta {
    font-size: 14px;
  }

  .ts-right-thumbs {
    gap: 10px;
    margin-top: 40px;
  }

  .ts-right-thumbs img {
    height: 140px;
  }
}

/* ===== Extra Small Mobile (400px and below) ===== */
@media (max-width: 400px) {
  .ts-title {
    font-size: 24px;
  }

  .ts-left--inline {
    min-width: 280px;
  }

  .ts-left--inline .ts-left-thumb {
    width: 85px;
    height: 145px;
  }

  .ts-left--inline .ts-hero {
    max-width: 322px;
  }

  .ts-left--inline .ts-hero img {
    height: auto;
    object-fit: contain;
  }

  .ts-right {
    min-width: 260px;
  }

  .ts-name {
    font-size: 18px;
  }

  .ts-right-thumbs {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 30px;
  }

  .ts-right-thumbs img {
    height: 120px;
  }
}

/* Testimonials swap animations */
.ts-thumb { cursor: default; transition: transform 0.25s ease, opacity 0.25s ease; }
.ts-thumb:hover { transform: scale(1.03); }
.ts-swap-out { animation: tsFadeOut 240ms ease forwards; }
.ts-swap-in { animation: tsFadeIn 240ms ease forwards; }
.ts-thumb-out { animation: tsFadeOut 220ms ease forwards; }
.ts-thumb-in { animation: tsFadeIn 220ms ease forwards; }
@keyframes tsFadeOut { from { opacity: 1; transform: scale(1); } to { opacity: 0; transform: scale(0.98); } }
@keyframes tsFadeIn { from { opacity: 0; transform: scale(1.02); } to { opacity: 1; transform: scale(1); } }

/* Testimonials controls */
.ts-controls { position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%); display: flex; justify-content: space-between; align-items: center; padding: 0 16px; z-index: 5; pointer-events: none; }
.ts-btn { background: #C64A2C; color: #fff; border: none; padding: 8px 12px; border-radius: 8px; cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,0,.15); font-size: 22px; line-height: 1; min-width: 44px; min-height: 44px;margin-left:-8%; pointer-events: auto; }
.ts-btn:hover { transform: translateY(-1px); background: #B54327; }
.ts-next{
  margin-right:-10%;
}
@media (max-width: 768px) {
  .ts-btn {
    margin-left: 0;
  }
  .ts-next {
    margin-right: 0;
  }
}


/* ===== Real Stories Section ===== */
.rs-section {
  background-color: #FFF7EC;
  padding: 0px 8%;
}
.rs-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 48% 52%;
  gap: 40px;
  align-items: center;
}
.rs-image {
  display: flex;
  justify-content: center;
}
.rs-image img {
  width: clamp(280px, 42vw, 520px);
  height: auto;
  border-radius: 50%;
  display: block;
}
.rs-content {
  max-width: 720px;
}
.rs-eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #EB641A;
  font-weight: 600;
  margin-bottom: 8px;
}
.rs-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  color: #442a1f;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}
.rs-desc {
  color: #333;
  line-height: 1.7;
  max-width: 650px;
}
@media (max-width: 1024px) {
  .rs-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .rs-title {
    font-size: 42px;
  }
  .rs-image img {
    width: clamp(240px, 70vw, 420px);
  }
}
@media (max-width: 560px) {
  .rs-title {
    font-size: 32px;
  }
  .rs-desc {
    font-size: 0.95rem;
  }
}

/* ===== Doctor Showcase Section ===== */
.doctor-showcase {
  background-color: #FFF7EC;
  padding: 50px 5%;
}
.ds-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 32px;
  align-items: center;
}

/* Left column: single large image */
.ds-hero {
  width: 100%;
  height: 556px;
  object-fit: cover;
  display: block;
  border-top-left-radius: 70px;
  
}

/* Right column */
.ds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
}
.ds-thumb {
  width: 100%;
  height:411px;
  object-fit: cover;
  display: block;
  ;
}
.ds-grid .ds-thumb:last-child {
  border-bottom-right-radius: 36px;
}

.ds-meta {
  margin-top: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ds-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  margin:0px;
  font-weight: bold;
  color: #442a1f;
}
.ds-exp {
  color: #6a5d52;
  font-weight: 500;
  font-size: 18px;
  margin-top: 6px;
}
.ds-meta .explore-btn {
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1024px) {
  .ds-container {
    grid-template-columns: 1fr;
  }
  .ds-hero {
    height: 360px;
  }
  .ds-meta {
    
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .doctor-showcase{
    padding: 20px 5%;
  }
  /* Images: match mobile look in your screenshot */
  .ds-hero {
    height: 320px;
    border-radius: 16px;
    object-fit: cover;
  }
  .ds-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
   .ds-meta {
    margin-top: 10px;
  }
  .ds-thumb {
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
  }
  /* Keep text sizes unchanged */
  .ds-name {
         font-size: 20px;
        display: inline-block;
        white-space: nowrap;
        vertical-align: middle;
  }
}

/* ===== Spa Video Section ===== */
.spa-section {
  background: #FFF6EE;
  padding: 25px 5%;
}
.spa-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.spa-video {
  width: 100%;
  aspect-ratio: 21/10;
  border-radius: 18px;
  display: block;
  object-fit: cover;
  background: #000;
}
.spa-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: none;
  width: 72px;
  height: 72px;
  padding: 0;
  cursor: pointer;
  transition: opacity .18s ease, transform .18s ease;
}
.spa-btn svg {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
}
.spa-container.is-playing .spa-btn {
  opacity: 0;
  pointer-events: none;
}
.spa-container.is-paused .spa-btn {
  opacity: 1;
  pointer-events: auto;
}
.spa-btn:hover {
  transform: translate(-50%, -50%) scale(1.04);
}
@media (max-width: 640px) {
  .spa-section {
    padding:20px 4%;
  }
 .spa-video {
    aspect-ratio: auto; 
    height: auto; 
  }
  .spa-btn {
    width: 64px;
    height: 64px;
  }
  .spa-btn svg {
    width: 56px;
    height: 56px;
  }
}

/* ===== Consultation Form Section ===== */
.consult-section {
  background: #FFF6EE;
  padding: 60px 5%;
}
.consult-container {
  max-width: 1400px;
  margin: 0 auto;
}
.consult-grid {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 95px;
  align-items: center;
}
.consult-form {
 
}
.consult-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 45px;
  font-weight: 700;
  color: #2c1810;
  line-height: 1.2;
  margin: 0 0 22px;
}
.consult-form label {
  display: block;
  color: #2c1810;
  font-weight: 600;
  margin-bottom: 8px;
}
.consult-form .form-field {
  margin-bottom: 18px;
}
.consult-form input,
.consult-form textarea {
  width: 100%;
  border: 1.5px solid #E8DFD6;
  border-radius: 10px;
  background: #fff;
  padding: 14px 16px;
  font-size: 16px;
  color: #333;
  outline: none;
}
.consult-form input.is-invalid,
.consult-form textarea.is-invalid {
  border-color: #e27c6b;
  background: #fff2ef;
}
.form-field .field-error {
  display: block;
  margin-top: 6px;
  color: #c0392b;
  font-size: 13px;
  min-height: 16px;
}
.consult-form input::placeholder,
.consult-form textarea::placeholder {
  color: #9b8f86;
}
.consult-form textarea {
  min-height: 130px;
  resize: vertical;
}
.consult-form .form-actions {
  margin-top: 24px;
}
.consult-image {
  border-radius: 28px;
  overflow: hidden;
}
.consult-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 1024px) {
  .consult-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .consult-image {
    order: 2;
  }
  .consult-form {
    padding-right: 0;
  }
}
@media (max-width: 640px){
  .consult-section{
    padding: 20px 5%;
  }
  /* Full-width image on mobile, only section padding remains */
  .consult-image{
    margin: 0;
    width: 100%;
  }
  .consult-image img{
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }
}
/* ===== Why Us Section ===== */
.wy-section {
  background: #FFF6EE;
  padding: 25px 5%;
}
.wy-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 33% 60%;
  gap: 36px;
  align-items: start;
}
.wy-hero {
  margin-top: 35px;
  width: 100%;
  height: 530px;
  object-fit: cover;
  display: block;
  border-top-right-radius: 160px;
}

.wy-eyebrow {
  color: #EB641A;
  letter-spacing: 4px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 4px 0 10px;
}
.wy-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  line-height: 1.1;
  color: #3b2120;
  margin: 0 0 28px;
}

.wy-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px 80px;
}
.wy-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  align-items: center;
}

/* Number badge: leaf-like shape with soft overlay */
.wy-badge {
  position: relative;
  width: 130px;
  height: 72px;
  overflow: hidden;
}
.wy-badge::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 25px;
  width: 65px;
  height: 44px;
  background: var(--badge, #B7E6EE);
  border-radius: 12px 24px 16px 32px;
}
/* .wy-badge::after { content: ""; position: absolute; left: 58px; top: -10px; width: 78px; height: 78px; background: var(--shade, #DCEEFF); border-radius: 50%; } */
.wy-num {
  position: absolute;
  left: 40px;
  top: 0;
  font-weight: 800;
  font-size: 56px;
  color: #2b2b2b;
  line-height: 72px;
  letter-spacing: -1px;
}

.wy-copy p {
  margin: 0;
  color: #4b4b4b;
  font-size: 18px;
  line-height: 1.5;
}

/* Badge theme colors */
.wy-badge--teal {
  --badge: #B7E6EE;
  --shade: #DDF4F8;
}
.wy-badge--pink {
  --badge: #F6C1D6;
  --shade: #FFE0EC;
}
.wy-badge--orange {
  --badge: #F8C996;
  --shade: #FFE6C0;
}
.wy-badge--green {
  --badge: #C9EFD1;
  --shade: #E9F8ED;
}
.wy-badge--blue {
  --badge: #ACD4FF;
  --shade: #D7E7FF;
}
.wy-badge--red {
  --badge: #FFCCCC;
  --shade: #FFE2E2;
}

/* Responsive */
@media (max-width: 1100px) {
  .wy-container {
    grid-template-columns: 1fr;
  }
  .wy-hero {
    height: 460px;
    border-top-right-radius: 120px;
  }
  .wy-features {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .wy-item {
    grid-template-columns: 110px 1fr;
  }
  .wy-title {
    font-size: 48px;
  }
}
@media (max-width: 640px) {
  .wy-section {
    padding: 20px 5%;
  }
  .wy-hero {
    margin-top:0px;
    height: 340px;
    border-top-right-radius: 90px;
  }
  .wy-item {
    grid-template-columns: 100px 1fr;
  }
  .wy-badge {
    height: 64px;
  }
  .wy-badge::before {
    width: 52px;
    height: 52px;
    top: 6px;
    left: 10px;
    border-radius: 16px;
  }
  .wy-num {
    font-size: 44px;
    line-height: 64px;
    left: 32px;
  }
}

/* Mobile: show Why Us features in a 2-column grid with tighter gaps */
@media (max-width: 768px) {
  .wy-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* ===== Real Stories CSS moved below Testimonials ===== */


/* ===== FAQ Section ===== */
.faq-section {
  background: #FFF6EE;
  padding: 60px 5%;
}
.faq-container {
  max-width: 1400px;
  margin: 0 auto;
}
.faq-eyebrow {
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #EB641A;
  font-weight: 700;
  text-align: center;
  margin: 0 0 8px;
}
.faq-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 700;
  color: #442a1f;
  text-align: center;
  margin: 0 0 28px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.faq-item.is-open {
  background: #e9e9e9;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #2c2c2c;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
}
.faq-caret {
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 9px solid #8f8f8f;
  transition: transform 0.2s ease;
}
.faq-item.is-open .faq-caret {
  transform: rotate(180deg);
}
.faq-a {
  padding: 0 26px 22px;
  color: #666;
  line-height: 1.7;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.28s ease, opacity 0.2s ease;
}
.faq-item.is-open .faq-a {
  max-height: 240px;
  opacity: 1;
}
.faq-actions {
  text-align: center;
  margin-top: 22px;
}
.load-more-btn {
  display: inline-block;
  margin: 0 auto;
  padding: 16px 40px 16px 28px;
  letter-spacing: 1px;
}
.faq-item.is-hidden {
  display: none;
}
@media (max-width: 640px) {
  .faq-section{
    padding:20px 5%;
  }
  .faq-title {
    font-size: 36px;
  }
  .faq-q {
    padding: 18px 20px;
    font-size: 16px;
  }
  .heal-btn::after {
 
  right: -14px !important;
}
}

/* ===== Ready to Heal Section ===== */
.heal-section {
  background: #FFF6EE;
  padding: 60px 5%;
}
.heal-card {
  max-width: 1400px;
  margin: 0 auto;
  background: #F8D8D3;
  border-radius: 120px;
  padding: 48px 56px;
}
.heal-grid {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 36px;
  align-items: center;
}
.heal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: #2c1810;
  line-height: 1.1;
  margin: 0 0 14px;
}
.heal-desc {
  color: #6b5a50;
  max-width: 460px;
  margin: 0 0 22px;
}
.heal-btn {
  background-color: #C64A2C;
  margin-top: 6px;
}
.heal-btn::after {
  border-left-color: #C64A2C;
  border-top-width: 24px;
  border-bottom-width: 24px;
  right: -24px;
}
.explore-btn--sm {
  font-size: 16px;
  padding: 14px 32px 14px 22px;
}
.heal-form {
  padding: 30px 60px;
}
.heal-form .form-field {
  margin-bottom: 16px;
}
.heal-form label {
  display: block;
  color: #2c1810;
  font-weight: 600;
  margin-bottom: 8px;
}
.heal-form input,
.heal-form textarea {
  width: 100%;
  border: 1.5px solid #C3B0A7;
  border-radius: 12px;
  background: #F8D8D3;
  padding: 14px 16px;
  font-size: 16px;
  color: #3a2f2a;
  outline: none;
}
.heal-form input.is-invalid,
.heal-form textarea.is-invalid {
  border-color: #a33f2a;
  background: #f3cbc6;
}
.heal-form input::placeholder,
.heal-form textarea::placeholder {
  color: #B8ACA7;
}
.heal-form textarea {
  min-height: 110px;
  resize: vertical;
}
@media (max-width: 1024px) {
  .heal-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .heal-card {
    border-radius: 72px;
    padding: 36px 32px;
  }
}

@media (max-width: 640px) {
  .heal-section{
    padding:20px 5%;
  }
  .heal-form{
    padding:0px;  }
  .faq-title {
    font-size: 36px;
  }
  .faq-q {
    padding: 18px 20px;
    font-size: 16px;
  }
}

/* ===== Global Mobile Heading Overrides ===== */
@media (max-width: 768px) {
 
  .section-title,
  .wy-title,
  .faq-title,
  .heal-title,
  .consult-title,
  .ts-title,
  .rs-title {
    font-size: 36px;
    line-height: 1.2;
  }
}
@media (max-width: 560px) {
  
  .section-title,
  .wy-title,
  .faq-title,
  .heal-title,
  .consult-title,
  .ts-title,
  .rs-title {
    font-size: 36px;
    line-height: 1.2;
  }
}

/* ===== Global Mobile Button Overrides ===== */
@media (max-width: 768px) {
  .btn,
  .explore-btn,
  .view-services-btn,
  .cta-button {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 560px) {
  .btn,
  .explore-btn,
  .view-services-btn,
  .cta-button {
    font-size: 13px;
  }
  .explore-btn {
    letter-spacing: 0.8px;
  }
}
/* Consultation Modal styles */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 900;
}
.modal-overlay.open { opacity: 1; visibility: visible; }

.consult-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.98);
  width: min(420px, 92vw);
  max-height: none;
  overflow: visible;
  background: #FAF9F6; /* soft light */
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
  padding: 18px 18px 22px;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.25s ease, opacity 0.25s ease;
  z-index: 901;
}
.consult-modal.open { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }

.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.modal-header h3 { margin: 0; font-size: 24px; font-weight: 600; }
.modal-close { background: transparent; border: 0; font-size: 26px; line-height: 1; cursor: pointer; color: #333; }
.modal-body { margin-top: 8px; }

.modal-form .form-field { margin-bottom: 16px; }
.modal-form .form-actions .explore-btn { width: 100%; }
.modal-form .form-actions .modal-btn { width: 100%; }

.modal-open { overflow: hidden; }

/* Error state for modal inputs */
.modal-form input.is-invalid,
.modal-form textarea.is-invalid {
  border-color: #d93025;
  box-shadow: 0 0 0 2px rgba(217, 48, 37, 0.15);
}

/* Simple modal button */
.modal-btn {
  display: inline-block;
  padding: 12px 16px;
  background: #0a8f2e;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  transition: filter 0.15s ease;
}
.modal-btn:hover { filter: brightness(0.95); }
.modal-btn:active { filter: brightness(0.9); }

/* ===== Mobile fixes: Doctor showcase & Why Us ===== */
@media (max-width: 640px) {
  /* Stack the doctor CTA button onto the next line */
  .ds-meta { flex-direction: column; align-items: flex-start; gap: 8px; }
  .ds-meta .explore-btn { display: block; margin-top: 8px; }
  .ds-name { font-size: 22px; }
  .ds-exp { font-size: 16px; }

  /* Prevent horizontal scroll and tighten Why Us layout */
  html, body { overflow-x: hidden; }
  .wy-container { grid-template-columns: 1fr; }
  .wy-right { overflow: hidden; }
  /* Reorder features to 01→06 in a single column */
  .wy-features { display: flex; flex-direction: column; gap: 14px; }
  .wy-item:nth-child(1) { order: 1; } /* 01 */
  .wy-item:nth-child(3) { order: 2; } /* 02 */
  .wy-item:nth-child(5) { order: 3; } /* 03 */
  .wy-item:nth-child(2) { order: 4; } /* 04 */
  .wy-item:nth-child(4) { order: 5; } /* 05 */
  .wy-item:nth-child(6) { order: 6; } /* 06 */
  /* Tighter item layout */
  .wy-item { display: grid; grid-template-columns: 64px 1fr; align-items: center; }
  .wy-badge { height: 52px; }
  .wy-badge::before { width: 42px; height: 42px; top: 5px; left: 8px; border-radius: 12px; }
  .wy-num { font-size: 32px; line-height: 52px; left: 24px; }
  .wy-copy p { font-size: 14px; line-height: 1.5; }
}

@media (max-width: 480px) {
  /* Extra small phones: shrink badges, numbers, and title */
  .wy-title { font-size: 28px; line-height: 1.2; }
  .wy-item { grid-template-columns: 80px 1fr; }
  .wy-badge { height: 56px; }
  .wy-badge::before { width: 44px; height: 44px; top: 6px; left: 10px; border-radius: 14px; }
  .wy-num { font-size: 34px; line-height: 56px; left: 26px; }
  .wy-hero { height: auto; border-top-right-radius: 80px; }
}
