/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* ============================================
   GLOBAL STYLES & RESET
   ============================================ */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Mulish', sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  font-family: 'Mulish', sans-serif;
  overflow-x: hidden;
}

/* All headings use Playfair Display */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  display: block;
  padding: 0 15px;
}

@media (max-width: 768px) {
  .container {
    width: 95%;
    padding: 0 10px;
  }
}


/* ============================================
   HEADER SECTION
   ============================================ */

.top-header {
  background: #ffffff;
  padding: 12px 0;
  position: relative;
  z-index: 1000;
}

/* Keep header layout using flex inside header only */
.top-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Logo */
.logo img {
  height: 50px;
}

/* Mobile Menu Toggle - hidden by default */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #003A30;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

/* Contact Info */
.contact-info {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* Contact Item */
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #003A30;
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 500;
}

.contact-item span {
  white-space: nowrap;
}

/* Icon Circle */
.icon {
  width: 36px;
  height: 36px;
  background: #003A30;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Button */
.appointment-btn {
  background: #C7E738;
  color: #003A30;
  padding: 10px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  line-height: 1;
  white-space: nowrap;
  font-size: clamp(13px, 1.5vw, 15px);
}

.appointment-btn:hover {
  background: #8db82f;
}

/* Responsive Header */
@media (max-width: 992px) {
  .contact-item span {
    display: none;
  }

  .contact-info {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .contact-info {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 80px 20px 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 999;
  }

  .contact-info.active {
    right: 0;
  }

  .contact-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
    justify-content: flex-start;
  }

  .contact-item span {
    display: block;
    font-size: 14px;
  }

  .appointment-btn {
    margin-top: 20px;
    text-align: center;
    display: block;
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 40px;
  }

  .contact-info {
    width: 260px;
    padding: 70px 15px 15px;
  }
}


/* ============================================
   HERO / BANNER SECTION
   ============================================ */
.hero-section {
  background: linear-gradient(90deg, #022e2b, #1f4d3c);
  padding: clamp(40px, 8vw, 80px) 0 clamp(30px, 6vw, 50px) 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT CONTENT */
.hero-left {
  flex: 1;
  min-width: 0;
}

.hero-left h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero-left p {
  color: #e0e0e0;
  margin-bottom: 28px;
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.5;
}

/* CALL BUTTON */
.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  padding: 14px 22px;
  border-radius: 10px;
  color: white;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: clamp(13px, 1.5vw, 15px);
}

.call-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.call-icon {
  background: #C7E738;
  color: #003A30;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* CENTER IMAGE */
.hero-center {
  position: absolute;
  width: 50%;
  height: 100%;
  justify-content: center;
  align-items: center;
  left: 65%;
  transform: translateX(-65%);
}

.family-img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* REVIEW BADGE */
.review-badge {
  background: linear-gradient(179.97deg, #001F1A 7.2%, #314E3E 99.98%);
  color: white;
  border-radius: 50%;
  width: 160px;
  height: 160px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 5px solid rgb(255, 255, 255);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
}

.review-badge img {
  width: 80px;
}

.review-badge .stars {
  color: #FBBC05;
  font-size: 20px;
  margin-bottom: 5px;
}

.google-stars i,
.review-badge .stars i,
.testimonial-stars i {
  color: #FFC107;
  font-size: 14px;
}

.review-text {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

/* FORM */
.hero-form {
  flex: 1;
  background: white;
  padding: 25px;
  border-radius: 20px;
  color: #022e2b;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 350px;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-form h3 {
  margin-bottom: 25px;
  text-align: center;
  font-family: 'Mulish', sans-serif;
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 700;
  color: #003A30;
}

.hero-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.form-group {
  position: relative;
  width: 100%;
}

.form-group label {
  font-weight: 500;
  color: #003A30;
  font-size: 14px;
  display: block;
  position: absolute;
  top: -8px;
  background: white;
  padding: 0 5px;
  left: 14px;
  z-index: 1;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  font-family: 'Mulish', sans-serif;
  transition: border-color 0.3s ease;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #C7E738;
}

.submit-btn {
  background: #C7E738;
  border: none;
  padding: 10px 34px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  color: #003A30;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #003A30;
  color: #C7E738;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.submit-btn i {
  margin-right: 8px;
}

.submit-btn .btn-loader {
  display: none;
  align-items: center;
  gap: 6px;
}

.submit-btn.loading .btn-text {
  display: none;
}

.submit-btn.loading .btn-loader {
  display: flex;
}

.loader-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #003A30;
  animation: dotPulse 1.4s infinite ease-in-out;
}

.loader-dot:nth-child(1) {
  animation-delay: -0.32s;
}

.loader-dot:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes dotPulse {
  0%, 80%, 100% {
    transform: scale(0.6);
    opacity: 0.4;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

.form-message {
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  display: none;
  animation: slideIn 0.3s ease;
  margin-bottom: 20px;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-message.show {
  display: block;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.required {
  color: #dc3545;
  margin-left: 3px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
  opacity: 1;
}

.form-group input::-ms-input-placeholder,
.form-group textarea::-ms-input-placeholder {
  color: #999;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .hero-center {
    width: 45%;
    left: 60%;
    transform: translateX(-60%);
  }
}

@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .hero-center {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 350px;
    left: 0;
    transform: none;
    order: 2;
  }

  .hero-left {
    order: 1;
    z-index: 2;
  }

  .hero-form {
    order: 3;
    max-width: 100%;
    z-index: 2;
  }

  .review-badge {
    width: 130px;
    height: 130px;
    bottom: 20px;
  }

  .review-badge img {
    width: 60px;
  }

  .review-badge .stars {
    font-size: 16px;
  }

  .review-text {
    font-size: 10px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 30px 0;
  }

  .hero-container {
    gap: 25px;
  }

  .hero-center {
    min-height: 300px;
  }

  .call-btn {
    padding: 12px 18px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero-left h1 {
    font-size: 24px;
  }

  .hero-center {
    min-height: 250px;
  }

  .review-badge {
    width: 110px;
    height: 110px;
    border-width: 3px;
  }

  .review-badge img {
    width: 50px;
  }

  .review-text {
    font-size: 9px;
  }

  .call-btn {
    flex-wrap: wrap;
    justify-content: center;
  }
}


/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  background: #EDEDED;
  padding: clamp(25px, 4vw, 35px) 0;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* EACH ITEM */
.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  min-width: 200px;
  justify-content: center;
}

/* ICON */
.stat-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* TEXT */
.stat-text h2 {
  font-size: clamp(32px, 5vw, 42px);
  color: #003A30;
  margin-bottom: 5px;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}

.stat-text p {
  font-size: clamp(13px, 1.8vw, 16px);
  font-weight: 700;
  letter-spacing: 1px;
  color: #003A30;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .stats-container {
    gap: 25px;
  }

  .stat-item {
    min-width: calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
    gap: 20px;
  }

  .stat-item {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .stat-icon img {
    width: 40px;
    height: 40px;
  }

  .stat-item {
    gap: 12px;
  }
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
  background: #fff;
  padding: clamp(40px, 8vw, 60px) 0;
  text-align: center;
}

/* TITLE */
.section-title {
  font-size: clamp(28px, 5vw, 42px);
  color: #003A30;
  margin-bottom: clamp(25px, 5vw, 40px);
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1.3;
}

/* CARD */
.video-card {
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
  color: white;
}

/* PLAY BUTTON */
.play-btn {
  width: 60px;
  height: 60px;
  border: 3px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.video-card:hover .play-btn {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.overlay p {
  margin: 0;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 700;
  margin-bottom: 10px;
}

/* OWL CAROUSEL DOTS */
.video-carousel .owl-dots {
  margin-top: 30px;
}

.video-carousel .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc !important;
  margin: 0 5px;
  display: inline-block;
  transition: all 0.3s ease;
}

.video-carousel .owl-dot.active {
  background: #003A30 !important;
  width: 14px;
  height: 14px;
}

.video-carousel .owl-dot:hover {
  background: #C7E738 !important;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .video-card {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .video-card {
    height: 280px;
  }

  .play-btn {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .video-card {
    height: 220px;
  }

  .play-btn {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  background: #EDEDED;
  padding: clamp(40px, 8vw, 70px) 0;
}

/* HEADER */
.services-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(30px, 6vw, 50px);
  gap: 20px;
  flex-wrap: wrap;
}

.services-header h2 {
  font-size: clamp(28px, 5vw, 42px);
  color: #003A30;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  text-align: left;
}

/* TABS */
.services-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 28px;
  border-radius: 30px;
  border: none;
  background: white;
  color: #003A30;
  font-weight: 700;
  cursor: pointer;
  font-size: clamp(13px, 1.5vw, 15px);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tab-btn.active {
  background: #C7E738;
  color: #003A30;
}

.tab-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* CARD */
.service-card {
  background: white;
  padding: clamp(24px, 4vw, 32px) clamp(20px, 3vw, 26px);
  border-radius: 16px;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* ICON */
.icon-circle {
  width: clamp(70px, 10vw, 80px);
  height: clamp(70px, 10vw, 80px);
  background: #C7E738;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-circle img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.icon-circle i {
  font-size: 36px;
  color: #003A30;
}

/* TEXT */
.service-card h3 {
  margin-bottom: 12px;
  color: #003A30;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(20px, 3vw, 25px);
  line-height: 1.3;
}

.service-card p {
  font-size: clamp(15px, 2vw, 18px);
  color: #003A30;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .services-tabs {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .tab-btn {
    flex: 1;
    min-width: 120px;
  }
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-section {
  background: #fff;
}

.why-container {
  display: flex;
  align-items: center;
  gap: clamp(30px, 6vw, 50px);
}

/* LEFT SIDE */
.why-left {
  flex: 1;
  min-width: 0;
}

.why-badge {
  display: inline-block;
  background: #C7E738;
  color: #003A30;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: clamp(12px, 1.5vw, 14px);
  font-weight: 700;
  margin-bottom: 20px;
}

.why-left h2 {
  font-size: clamp(28px, 5vw, 42px);
  color: #0b3d2e;
  margin-bottom: 20px;
  line-height: 1.3;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}

.why-left p {
  color: #003A30;
  line-height: 1.7;
  font-size: clamp(14px, 1.8vw, 16px);
}

/* RIGHT IMAGE GRID */
.why-right {
  flex: 1.2;
  max-height: 560px;
  overflow: hidden;
  position: relative;
  min-width: 0;
}

.why-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  z-index: 2;
  pointer-events: none;
}

.why-right::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  z-index: 2;
  pointer-events: none;
}

.why-images-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  animation: scrollUp 20s linear infinite;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

.why-images-wrapper:hover {
  animation-play-state: paused;
}

.why-right img {
  width: 100%;
  border-radius: 12px;
  height: 250px;
  object-fit: cover;
  transition: 0.3s;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-container {
    flex-direction: column;
  }

  .why-right {
    width: 100%;
    max-height: 400px;
  }

  .why-images-wrapper {
    grid-template-columns: repeat(3, 1fr);
    animation: none;
  }

  .why-right img {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .why-right {
    max-height: none;
  }

  .why-images-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .why-right img {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .why-images-wrapper {
    gap: 10px;
  }

  .why-right img {
    height: 120px;
    border-radius: 8px;
  }
}

/* ============================================
   CLIENT TRANSFORMATIONS SECTION
   ============================================ */
.transform-section {
  background: #EDEDED;
  padding: clamp(40px, 8vw, 70px) 0;
  text-align: center;
}

/* CARD */
.transform-card {
  padding: clamp(20px, 4vw, 28px);
  border-radius: 16px;
  margin: 0 auto;
  border: 1px solid #B9D9D3;
  background: linear-gradient(126.48deg, #F5FFFD 58.92%, #ADDDD4 97.88%);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* LOGO */
.card-logo img {
  width: 100%;
  object-fit: contain;
  height: 50px;
  margin-bottom: 18px;
}

/* BEFORE AFTER WRAPPER */
.compare-wrapper {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.compare-box {
  position: relative;
  flex: 1;
}

.compare-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  background: #ddd;
}

/* TAG */
.tag {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 10px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.before {
  background: #003A30;
  color: white;
}

.after {
  background: #C7E738;
  color: #003A30;
}

/* TITLE */
.card-title {
  color: #003A30;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(16px, 2vw, 18px);
}

/* OWL CAROUSEL NAV */
.transform-carousel .owl-nav {
  margin-top: 25px;
}

.transform-carousel .owl-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  background: white !important;
  color: #0b3d2e !important;
  border: 1px solid #ccc !important;
  font-size: 18px !important;
  transition: 0.3s;
  margin: 0 5px;
}

.transform-carousel .owl-nav button:hover {
  background: #C7E738 !important;
  color: white !important;
}

/* OWL CAROUSEL DOTS */
.transform-carousel .owl-dots {
  margin-top: 20px;
}

.transform-carousel .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc !important;
  margin: 0 5px;
  display: inline-block;
  transition: all 0.3s ease;
}

.transform-carousel .owl-dot.active {
  background: #003A30 !important;
  width: 14px;
  height: 14px;
}

.transform-carousel .owl-dot:hover {
  background: #C7E738 !important;
}

/* ============================================
   TECHNOLOGY SECTION
   ============================================ */
.technology-section {
  padding: clamp(40px, 8vw, 70px) 0;
  text-align: center;
}

/* CARD */
.tech-card {
  padding: clamp(20px, 3vw, 26px) clamp(18px, 2.5vw, 22px);
  border-radius: 14px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #CFCFCF;
  background: linear-gradient(313.58deg, #EDEDED 0%, #FFFFFF 66.19%);
  min-height: clamp(380px, 50vw, 450px);
  padding-bottom: 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

/* TITLE */
.tech-card h3 {
  font-size: clamp(22px, 3.5vw, 30px);
  color: #003A30;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1.05;
}

/* TAG */
.tech-tag {
  background: #C7E738;
  color: #003A30;
  padding: 6px 14px;
  border-radius: 999px;
  align-self: flex-start;
  font-size: clamp(12px, 1.5vw, 14px);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* IMAGE */
.tech-card img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  display: block;
  margin: 12px auto 0 auto;
}

/* OWL NAV */
.tech-carousel .owl-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.tech-carousel .owl-nav button {
  width: 56px;
  height: 56px;
  border-radius: 50% !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  background: white !important;
  color: #003A30 !important;
  font-size: 20px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
}

.tech-carousel .owl-nav button.owl-next {
  background: #C7E738 !important;
  color: #003A30 !important;
  border: none !important;
}

.tech-carousel .owl-dots {
  margin-top: 18px;
}

.tech-carousel .owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd !important;
  margin: 0 6px;
}

.tech-carousel .owl-dot.active {
  background: #003A30 !important;
}

/* ============================================
   EXPERTS SECTION
   ============================================ */
.experts-section {
  background: linear-gradient(124.61deg, #001F1A -1.94%, #314E3E 104.28%);
  padding: clamp(50px, 10vw, 80px) 0;
  overflow: hidden;
}

.experts-section .container {
  width: 100%;
  margin: unset;
  margin-left: auto;
  padding: 0;
  padding-left: 15px;
}

/* LIGHT TITLE */
.section-title.light {
  color: white;
  text-align: center;
  margin-bottom: clamp(30px, 5vw, 40px);
}

/* CAROUSEL CONTAINER */
.experts-carousel {
  width: 100%;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  cursor: grab;
  padding: 10px 20px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
}

.experts-carousel::-webkit-scrollbar {
  display: none;
}

.experts-carousel {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.experts-carousel.active {
  cursor: grabbing;
  scroll-snap-type: none;
}

/* CARD */
.expert-card {
  background: white;
  border-radius: 20px;
  padding: clamp(18px, 3vw, 20px);
  display: flex;
  flex-direction: row;
  gap: clamp(25px, 4vw, 35px);
  align-items: flex-start;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  width: calc(100% - 40px);
  max-width: 850px;
  scroll-snap-align: start;
  user-select: none;
}

/* IMAGE */
.expert-img {
  background: #E8E8E8;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.expert-img img {
  width: clamp(220px, 30vw, 280px);
  height: clamp(280px, 40vw, 350px);
  object-fit: cover;
  display: block;
}

/* CONTENT */
.expert-content {
  flex: 1;
  min-width: 0;
}

.expert-content h3 {
  font-size: clamp(24px, 4vw, 35px);
  color: #003A30;
  margin-bottom: 6px;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  display: block;
}

.expert-degree {
  font-size: clamp(12px, 1.5vw, 14px);
  font-weight: 700;
  background: white;
  border-top: 2px solid #003A30;
  border-bottom: 2px solid #003A30;
  padding: 8px 0;
  margin-bottom: 18px;
  color: #003A30;
  font-weight: 600;
  display: block;
  letter-spacing: 0.5px;
}

.expert-desc {
  color: #003A30;
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: clamp(13px, 1.8vw, 15px);
}

/* LIST */
.expert-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.expert-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 32px;
  color: #003A30;
  font-size: clamp(12px, 1.5vw, 14px);
  line-height: 1.5;
}

.expert-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: #C7E738;
  color: #003A30;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

/* RESPONSIVE */
@media(max-width: 992px) {
  .expert-img img {
    width: 240px;
    height: 300px;
  }
}

@media(max-width: 768px) {
  .expert-card {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
    width: calc(100% - 20px);
  }

  .expert-img {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .expert-img img {
    width: 100%;
    height: auto;
  }

  .expert-content {
    text-align: left;
  }

  .experts-carousel {
    padding: 10px;
  }
}

@media(max-width: 480px) {
  .expert-content h3 {
    font-size: 22px;
  }

  .expert-img {
    max-width: 220px;
  }
}

/* ============================================
   AWARDS SECTION
   ============================================ */
.awards-section {
  background: #fff;
  padding: clamp(50px, 10vw, 80px) 0;
}

/* TITLE */
.awards-section .section-title {
  text-align: center;
  font-size: clamp(28px, 5vw, 42px);
  color: #003A30;
  margin-bottom: clamp(30px, 5vw, 40px);
}

/* GRID LAYOUT */
.awards-grid {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

/* CARD */
.award-card {
  background: white;
  border-radius: 10px;
  padding: 10px;
  transition: 0.3s;
}

/* IMAGE */
.award-card img {
  width: auto;
  height: clamp(150px, 20vw, 200px);
  object-fit: cover;
}

/* HOVER EFFECT */
.award-card:hover {
  transform: translateY(-5px);
}

/* RESPONSIVE */
@media (max-width: 992px) {

  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 600px) {

  .awards-grid {
    grid-template-columns: 1fr;
  }

}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonial-section {
  padding: clamp(50px, 10vw, 80px) 0;
  background: #fff;
}

.testimonial-wrapper {
  display: flex;
  gap: 50px;
  align-items: center;
}

/* Prevent flex children from overflowing their container */
.testimonial-left,
.testimonial-right {
  min-width: 0;
}

/* Ensure carousel content is clipped and centered inside the right column */
.testimonial-right .owl-carousel {
  width: 100%;
}

.testimonial-right .owl-stage-outer {
  overflow: hidden;
}

/* Slightly larger avatars to match design, allow them to shrink on small screens */
.testimonial-avatars img {
  width: 56px;
  height: 56px;
  flex-shrink: 1;
}

/* Make testimonial card take available width of right column */
.testimonial-card {
  max-width: 100% !important;
  max-width: none;
  background: white;
  padding: 40px 0;
}

/* LEFT */
.testimonial-left {
  flex: 1;
}

.testimonial-left h2 {
  font-size: clamp(32px, 6vw, 48px);
  color: #003A30;
  margin-bottom: 30px;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1.2;
}

/* GOOGLE */
.google-rating {
  margin-bottom: 30px;
}

.google-with-stars {
  display: flex;
  align-items: center;
  gap: 5px;
}

.google-logo {
  width: 60px;
  height: auto;
}

.google-rating>div {
  color: #FFC107;
}

.google-rating i {
  font-size: 12px;
}

.google-rating p {
  margin-top: 5px;
  font-size: clamp(13px, 1.5vw, 14px);
  color: #003A30;
  font-weight: 600;
}

/* NAV BUTTONS */
.testimonial-nav {
  margin-top: 30px;
  display: flex;
  gap: 10px;
}

.testimonial-nav button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}

.testimonial-nav button:hover {
  transform: scale(1.05);
}

.prev-btn {
  background: #E8E8E8;
  color: #003A30;
}

.next-btn {
  background: #A6CE39;
  color: white;
}

/* RIGHT */
.testimonial-right {
  flex: 1;
  border-left: 1px solid #ddd;
  padding-left: 40px;
}

/* AVATARS */
.testimonial-avatars {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.testimonial-avatars img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.3s ease;
  cursor: pointer;
}

.testimonial-avatars img.active {
  filter: grayscale(0%);
  opacity: 1;
  border: 3px solid #A6CE39;
  box-shadow: 0 2px 8px rgba(166, 206, 57, 0.3);
}

/* STARS */
.testimonial-stars {
  font-size: 24px;
  margin-bottom: 20px;
  color: #FFC107;
}

/* TEXT */
.testimonial-text {
  margin: 20px 0;
  color: #003A30;
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.8;
  font-style: italic;
  font-family: 'Mulish', sans-serif;
}

.testimonial-name {
  color: #003A30;
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: clamp(12px, 1.5vw, 14px);
  letter-spacing: 1px;
  margin-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .testimonial-wrapper {
    gap: 35px;
  }

  .testimonial-right {
    padding-left: 30px;
  }
}

@media (max-width: 768px) {
  .testimonial-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .testimonial-right {
    border-left: none;
    border-top: 1px solid #ddd;
    padding-left: 0;
    padding-top: 30px;
  }

  .testimonial-avatars {
    justify-content: center;
    flex-wrap: wrap;
  }

  .testimonial-nav {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .testimonial-avatars img {
    width: 50px;
    height: 50px;
  }

  .testimonial-nav button {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
}

/* ============================================
   TRUSTED PATIENTS SECTION
   ============================================ */
.patients-section {
  padding: clamp(50px, 10vw, 80px) 0;
  background: #EDEDED;
  text-align: center;
}

.section-subtitle {
  max-width: 600px;
  margin: auto;
  margin-bottom: clamp(30px, 5vw, 40px);
  color: #555;
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.6;
}

/* GRID */
.patients-grid {

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;

}

/* CARD */
.patient-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.patient-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.patient-card img {
  width: 100%;
  height: clamp(200px, 30vw, 250px);
  object-fit: cover;
  display: block;
}

/* OVERLAY */
.patient-overlay {

  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  color: white;

  background: linear-gradient(transparent,
      rgba(0, 0, 0, 0.7));

}

.patient-overlay h4 {

  margin: 0;
  font-size: 16px;
  font-family: 'Playfair Display', serif;
  font-weight: 400;

}

.patient-overlay p {

  margin: 0;
  font-size: 14px;

}

/* RESPONSIVE */

@media(max-width:1200px) {

  .patients-grid {
    grid-template-columns: repeat(4, 1fr);
  }

}

@media(max-width:992px) {

  .patients-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media(max-width:768px) {

  .patients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media(max-width:480px) {

  .patients-grid {
    grid-template-columns: 1fr;
  }

}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: clamp(50px, 10vw, 80px) 0;
  background: #fff;
}

/* WRAPPER */
.faq-wrapper {

  max-width: 800px;
  margin: auto;

}

/* ITEM */
.faq-item {

  background: #f9f9f9;
  border-radius: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  overflow: hidden;

}

/* QUESTION */
.faq-question {
  padding: clamp(14px, 2vw, 18px) clamp(16px, 2.5vw, 20px);
  font-size: clamp(15px, 2vw, 18px);
  color: #0b3d2e;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ICON */
.faq-icon {

  font-size: 20px;
  color: #0b3d2e;

}

/* ANSWER */
.faq-answer {
  padding: 0 clamp(16px, 2.5vw, 20px);
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
  color: #555;
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.6;
}

/* ACTIVE */
.faq-item.active {

  border: 2px solid #0b3d2e;
  background: white;

}

.faq-item.active .faq-answer {

  padding: 15px 20px;
  max-height: 200px;

}

.faq-item.active .faq-icon {

  background: #a6ce39;
  color: #0b3d2e;
  border-radius: 50%;
  width: 30px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

}

/* ============================================
   CONTACT / MAP SECTION
   ============================================ */
/* Owl Carousel general fixes to prevent overflow */
.owl-carousel {
  width: 100%;
}

.owl-stage-outer {
  overflow: hidden;
}

.owl-item {
  display: flex;
  justify-content: center;
}

.owl-item .video-card,
.owl-item .transform-card,
.owl-item .testimonial-card,
.owl-item .tech-card {
  width: 100%;
  max-width: 480px;
}

.contact-section {
  padding: clamp(50px, 10vw, 80px) 0;
  background: #fff;
}

.contact-wrapper {
  display: flex;
  gap: clamp(30px, 5vw, 40px);
  align-items: stretch;
}

/* LEFT CARD */
.contact-card {
  flex: 1;
  background: linear-gradient(179.97deg, #001F1A 7.2%, #314E3E 99.98%);
  padding: clamp(30px, 5vw, 40px);
  border-radius: 20px;
  color: white;
}

/* ITEM */
.contact-detail {
  display: flex;
  gap: 15px;
  margin: 20px 0;
  align-items: center;
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.6;
}

/* ICON */
.contact-icon {
  background: #a6ce39;
  color: #022e2b;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* LINE */
.contact-card hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* MAP */
.map-container {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  min-height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

/* RESPONSIVE */
@media(max-width:992px) {

  .contact-wrapper {
    flex-direction: column;
  }

  .map-container {
    min-height: 350px;
  }

}

/* ============================================
   FOOTER SECTION
   ============================================ */
.footer {
  background: linear-gradient(179.97deg, #001F1A 7.2%, #001F1A 99.98%);
  padding: clamp(30px, 5vw, 40px) 0 clamp(15px, 3vw, 20px);
  color: white;
}

/* TOP */
.footer-top {

  display: flex;
  justify-content: space-between;
  align-items: center;

}

/* LOGO */
.footer-logo img {

  height: 50px;

}

/* BUTTON */
.footer-btn {
  background: #a6ce39;
  color: #022e2b;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  font-size: clamp(13px, 1.5vw, 15px);
  white-space: nowrap;
}

.footer-btn:hover {

  background: #92b82f;

}

/* LINE */
.footer-line {

  margin: 25px 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);

}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  font-size: clamp(12px, 1.5vw, 14px);
  opacity: 0.9;
}

/* RESPONSIVE */
@media(max-width:768px) {

  .footer-top {

    flex-direction: column;
    gap: 20px;

  }

}

/* ============================================
   END OF STYLESHEET
   ============================================ */