/* =========================================
   DOCTENT THEME INSPIRED STYLE
   ========================================= */

:root {
  --primary: #01bdb2; /* Teal */
  --secondary: #142959; /* Navy */
  --tertiary: #f6f6f6;
  --body-text: #6d7a8c;
  --heading-text: #142959;
  --white: #ffffff;
  --black: #0a0a0a;
  --border: #e1e8ef;

  --font-heading: "Outfit", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--body-text);
  background-color: var(--white);
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--heading-text);
  font-weight: 600;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================
   TOPBAR
   ========================================= */
.topbar {
  background-color: var(--secondary);
  color: #fff;
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-info {
  display: flex;
  gap: 30px;
}
.topbar-info span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.topbar-info span i {
  color: var(--primary);
  font-size: 14px;
}
.topbar-social {
  display: flex;
  gap: 12px;
}
.topbar-social a {
  color: #fff;
  transition: 0.3s;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 13px;
}
.topbar-social a:hover {
  background: var(--primary);
  color: var(--secondary);
  transform: translateY(-2px);
}

/* =========================================
   HEADER
   ========================================= */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header.sticky {
  padding: 5px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  transition: padding 0.4s;
}
.site-header.sticky .header-inner {
  padding: 12px 0;
}

.logo a {
  text-decoration: none;
}

.main-nav ul {
  display: flex;
  gap: 35px;
}
.main-nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--secondary);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: 0.3s;
}
.main-nav a:hover {
  color: var(--primary);
}

.header-cta {
  background-color: var(--primary);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 20px rgba(1, 189, 178, 0.2);
  transition: 0.3s;
}
.header-cta:hover {
  background-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(20, 41, 89, 0.2);
}

/* hamburger */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

/* Mobile menu header (hidden on desktop) */
.mobile-menu-header {
  display: none;
}

/* Show on mobile screens */
@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .mobile-menu-header {
    display: block;
  }
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--secondary);
  transition: 0.3s;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  background-color: #f0f9f8;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}
.hero-subtitle {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 15px;
  font-size: 18px;
}
.hero h1 {
  font-size: 65px;
  margin-bottom: 25px;
  color: var(--secondary);
}
.hero p {
  font-size: 18px;
  margin-bottom: 35px;
  max-width: 500px;
}
.hero-btns {
  display: flex;
  gap: 20px;
}
.btn-primary {
  background-color: var(--primary);
  color: #fff;
  padding: 15px 35px;
  border-radius: 5px;
  font-weight: 600;
}
.btn-secondary {
  background-color: var(--secondary);
  color: #fff;
  padding: 15px 35px;
  border-radius: 5px;
  font-weight: 600;
}
.btn-primary:hover,
.btn-secondary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.hero-img {
  position: relative;
  z-index: 1;
}
.hero-img img {
  border-radius: 120px 0 120px 0;
  box-shadow: 30px 30px 0 var(--primary);
  width: 100%;
  max-width: 550px;
  height: auto;
  object-fit: cover;
}

/* =========================================
   APPOINTMENT STRIP
   ========================================= */
.appt-strip {
  background: var(--white);
  padding: 40px 0;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}
.appt-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: var(--white);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 40px;
}
.appt-box {
  border-right: 1px solid var(--border);
  padding: 0 20px;
}
.appt-box:last-child {
  border-right: none;
}
.appt-box h4 {
  margin-bottom: 10px;
  font-size: 20px;
}
.appt-box p {
  font-size: 14px;
  margin-bottom: 15px;
}
.btn-small {
  background: var(--primary);
  color: #fff;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
}

/* =========================================
   INFO BOXES (SPECIALITY)
   ========================================= */
.section {
  padding: 100px 0;
}
.section-title-wrap {
  text-align: center;
  margin-bottom: 60px;
}
.section-subtitle {
  display: inline-block;
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  padding: 8px 25px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(1, 189, 178, 0.1);
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.section-title {
  font-size: 50px;
  color: var(--secondary);
  font-weight: 700;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.info-card {
  background: var(--white);
  padding: 45px 35px;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #f1f4f7;
  transition: 0.4s;
  position: relative;
  border-bottom: 4px solid transparent;
}
.info-card:hover {
  transform: translateY(-10px);
  border-bottom-color: var(--primary);
}
.info-icon {
  margin-bottom: 25px;
}
.info-icon span,
.info-icon i {
  font-size: 50px;
  color: var(--primary);
  display: inline-block;
}
.info-card h5 {
  font-size: 24px;
  margin-bottom: 18px;
  color: var(--secondary);
}
.info-card p {
  font-size: 15px;
  color: #6d7a8c;
  line-height: 1.7;
}

/* =========================================
   ABOUT (DOCTENT STYLE)
   ========================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-container {
  position: relative;
}
.about-img-container img {
  border-radius: 10px;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  box-shadow: 0 0 0 10px rgba(1, 189, 178, 0.2);
}

.about-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
}
.about-content p {
  margin-bottom: 20px;
}
.about-list {
  margin-bottom: 30px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--secondary);
}
.about-list li i {
  color: var(--primary);
}

.about-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
.contact-phone-icon {
  width: 60px;
  height: 60px;
  background: var(--tertiary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
}
.contact-phone-info span {
  display: block;
  font-size: 14px;
}
.contact-phone-info strong {
  font-size: 22px;
  color: var(--secondary);
}

/* =========================================
   SERVICES FEATURE SECTION
   ========================================= */
.services-feature-section {
  background: var(--secondary);
}

.feature-grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 450px;
}

.feature-card {
  position: relative;
  padding: 60px 40px;
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  cursor: pointer;
}

.feature-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 41, 89, 0.85); /* Navy base */
  z-index: 1;
  transition: background 0.4s ease;
}

.feature-card:nth-child(4) .feature-overlay,
.feature-card:nth-child(2) .feature-overlay {
  background: rgba(1, 189, 178, 0.85); /* 4th card is teal as per ref */
}

.feature-card:hover .feature-overlay {
  background: rgba(1, 189, 178, 0.95); /* All turn bright teal on hover */
}

.feature-content {
  position: relative;
  z-index: 2;
}

.feature-icon {
  font-size: 45px;
  margin-bottom: 25px;
  color: var(--primary);
}

.feature-card:hover .feature-icon,
.feature-card:nth-child(4) .feature-icon,
.feature-card:nth-child(2) .feature-icon {
  color: white;
}

.feature-content h3 {
  font-size: 26px;
  margin-bottom: 25px;
  color: white;
  font-weight: 600;
}

.feature-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.feature-content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.feature-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.feature-card:hover ul li::before,
.feature-card:nth-child(4) ul li::before,
.feature-card:nth-child(2) ul li::before {
  color: white;
}

.read-more {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  text-transform: uppercase;
}

.read-more::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
}

.feature-card:hover .read-more::after,
.feature-card:nth-child(4) .read-more::after,
.feature-card:nth-child(2) .read-more::after {
  background: white;
}

/* RESPONSIVE FOR SERVICES FEATURE */
@media (max-width: 1200px) {
  .services-feature-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-feature-section {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background-color: var(--secondary);
  color: #fff;
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-col h4 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}
.footer-col p {
  font-size: 15px;
  opacity: 0.8;
  margin-bottom: 20px;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  opacity: 0.8;
}
.footer-links a:hover {
  opacity: 1;
  color: var(--primary);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 14px;
  opacity: 0.7;
}

/* =========================================
   CLINICAL SERVICES (FEATURE GRID)
   ========================================= */
.services-feature-section {
  background: var(--secondary);
}
.feature-grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.feature-card {
  background-size: cover;
  background-position: center;
  height: 460px;
  position: relative;
  overflow: hidden;
}
.feature-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 41, 89, 0.85);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.5s;
  z-index: 1;
}
.feature-card:hover .feature-overlay {
  background: rgba(1, 189, 178, 0.9);
}
.feature-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.feature-icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--primary);
  transition: 0.3s;
}
.feature-card:hover .feature-icon {
  color: #fff;
  transform: translateY(-5px);
}
.feature-content h3 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: 700;
}
.feature-content ul {
  margin-bottom: 30px;
  padding: 0;
}
.feature-content li {
  margin-bottom: 15px;
  list-style: none;
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.4;
}
.feature-content li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}
.feature-content .read-more {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  color: #fff;
  display: inline-block;
  text-decoration: none;
  position: relative;
  padding-bottom: 8px;
}
.feature-content .read-more::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  transition: 0.3s;
}
.feature-card:hover .read-more::after {
  background: #fff;
}

/* =========================================
   ACCORDION (WHY CHOOSE)
   ========================================= */
.why-choose-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}
.accordion-item {
  border: 1px solid var(--border);
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}
.accordion-header {
  padding: 20px;
  background: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--secondary);
}
.accordion-header i {
  color: var(--primary);
}
.accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
  background: #f9f9f9;
}
.accordion-item.active .accordion-content {
  padding: 20px;
  max-height: 200px;
}

/* =========================================
   APPOINTMENT FORM SECTION
   ========================================= */
.appt-form-section {
  background: var(--primary);
  padding: 80px 0;
  color: #fff;
  position: relative;
}
.form-container {
  background: var(--white);
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  color: var(--body-text);
}
.form-header {
  text-align: center;
  margin-bottom: 30px;
}
.form-header h3 {
  font-size: 30px;
  margin-bottom: 10px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group.full {
  grid-column: span 2;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--secondary);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border);
  border-radius: 5px;
  font-family: inherit;
}
.btn-submit {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 15px 40px;
  border-radius: 5px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
}
.btn-submit:hover {
  background: var(--secondary);
}

/* =========================================
   WORKING PROCESS (DOCTENT STYLE)
   ========================================= */
/* WORKING PROCESS (DOCTENT STYLE) */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 60px;
}
.process-item {
  text-align: center;
  position: relative;
  z-index: 2;
}
.process-item:nth-child(even) {
  margin-top: 90px;
}
.process-img-wrap {
  width: 190px;
  height: 190px;
  margin: 0 auto 25px;
  position: relative;
  transition: transform 0.3s ease;
}
.process-img-wrap:hover {
  transform: translateY(-10px);
}
.process-img-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.process-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.process-item h5 {
  font-size: 22px;
  color: var(--secondary);
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.process-item p {
  font-size: 14px;
  color: #6d7a8c;
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}

/* Connecting curves (desktop only) */
@media (min-width: 1101px) {
  .process-item::after {
    content: "";
    position: absolute;
    top: 95px;
    left: 50%;
    width: 100%;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M10 10 Q 50 10, 90 90' stroke='%2301bdb2' stroke-width='3' stroke-dasharray='6,6' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: 1;
  }
  .process-item:last-child::after {
    display: none;
  }

  .process-item:nth-child(even)::after {
    top: -10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M10 90 Q 50 90, 90 10' stroke='%2301bdb2' stroke-width='3' stroke-dasharray='6,6' fill='none'/%3E%3C/svg%3E");
  }
}

/* MOBILE FIXES FOR PROCESS */
@media (max-width: 1100px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .process-item:nth-child(even) {
    margin-top: 0;
  }
  .process-item::after {
    display: none !important;
  }
}
@media (max-width: 600px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

.process-img-wrap {
    width: 190px;
    height: 190px;
    margin: 0 auto 25px;
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,.1);
}

.process-icon {
    font-size: 70px;
    color: var(--primary);
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials {
  background:
    linear-gradient(rgba(20, 41, 89, 0.9), rgba(20, 41, 89, 0.9)),
    url("images/2.webp") no-repeat center/cover;
  padding: 100px 0;
  position: relative;
}
.testi-content {
  background: var(--white);
  padding: 50px;
  border-radius: 10px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.testi-stars {
  color: #ffb400;
  margin-bottom: 20px;
}
.testi-text {
  font-style: italic;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
}
.testi-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.testi-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.testi-author-info h6 {
  font-size: 18px;
  margin-bottom: 2px;
}
.testi-author-info span {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
}

/* =========================================
   BLOG SECTION
   ========================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.blog-img {
  position: relative;
}
.blog-date {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--primary);
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  text-align: center;
  line-height: 1.2;
  font-weight: 700;
}
.blog-date span {
  display: block;
  font-size: 20px;
}
.blog-info {
  padding: 30px;
}
.blog-meta {
  font-size: 13px;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 600;
}
.blog-info h4 {
  font-size: 22px;
  margin-bottom: 15px;
  line-height: 1.4;
}
.blog-link {
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  font-size: 13px;
}

/* PROGRESS BAR */
.progress-container {
  width: 100%;
  background: #e0e0e0;
  height: 6px;
  border-radius: 10px;
  margin-top: 10px;
}

.progress-bar {
  height: 100%;
  background: var(--primary);
  border-radius: 10px;
  transition: width 1s ease-in-out;
}

/* SECTION SUBTITLE BADGE */
.section-subtitle.badge {
  display: inline-block;
  padding: 8px 18px;
  background: #e6f8f7;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.5px;
  border-radius: 4px;
  margin-bottom: 25px;
}

/* ABOUT SECTION REFINEMENT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.about-img-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.about-img-container img {
  width: 100%;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 0 0 10px rgba(1, 189, 178, 0.2);
  transition: 0.3s;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--secondary);
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--secondary);
  font-size: 16px;
}

.about-list i {
  color: var(--primary);
  font-size: 20px;
}

/* CONVERSION CTA SECTION */
.cta-banner {
  background: var(--secondary);
  padding: 100px 0;
  text-align: center;
  color: white;
}

.cta-banner h2 {
  color: white;
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-banner p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* HERO BUTTONS ADJUSTMENT */
.hero-btns {
  display: flex;
  gap: 15px;
  margin-top: 35px;
}

.hero-btns .btn-primary {
  background: var(--primary);
  color: white;
  border-radius: 4px;
}

.hero-btns .btn-secondary {
  background: var(--secondary);
  color: white;
  border-radius: 4px;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  .hero h1 {
    font-size: 50px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  .hero-grid,
  .about-grid,
  .why-choose-wrap,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero {
    text-align: center;
    padding: 60px 0;
  }
  .hero h1 {
    font-size: 45px;
  }
  .hero p {
    margin: 0 auto 30px;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-img {
    order: -1;
  }
  .hero-img img {
    box-shadow: 10px 10px 0 var(--primary);
  }

  .feature-grid-container {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
    gap: 0;
  }
  .feature-card {
    height: 450px;
    margin-bottom: 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 40px;
  }

  .appt-strip {
    margin-top: 0;
    padding: 20px 0;
  }
  .appt-strip-inner {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .appt-box {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
  }
  .appt-box:last-child {
    border-bottom: none;
  }

  .info-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Testimonial Mobile Fix */
  .testimonial-wrapper {
    width: 600% !important;
  }
  .testi-slide {
    width: 16.666% !important;
  }

  /* Topbar Mobile Fix */
  .topbar {
    padding: 8px 0;
  }
  .topbar .container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .topbar-info {
    flex-direction: column;
    gap: 5px;
    align-items: center;
  }
  .topbar-info span {
    font-size: 11px;
  }
  .topbar-right {
    display: none;
  } /* Hide socials on very small topbars to save space */

  /* Mobile Header Fix */
  .site-header {
    z-index: 9999;
  }

  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 41, 89, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }
  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .hamburger {
    display: flex;
    z-index: 40; /* Above nav */
    width: 35px;
    height: 35px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 6px;
    cursor: pointer;
  }
  .hamburger span {
    width: 100%;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px;
    transition: 0.3s;
  }
  .hamburger span:nth-child(2) {
    width: 70%;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    width: 100%;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 30; /* Above header logo */
    padding: 30px;
    box-shadow: -15px 0 45px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .main-nav.active {
    transform: translateX(0);
  }

  .mobile-menu-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f4f7;
    padding-top: 10px;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .main-nav li {
    border-bottom: 1px solid #f1f4f7;
    width: 100%;
  }
  .main-nav a {
    font-size: 17px;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--secondary);
    font-weight: 600;
  }
  .main-nav a::after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary);
  }
  .main-nav a:hover {
    color: var(--primary);
    padding-left: 10px;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .main-nav {
    flex: 1;
  }

  .main-nav ul {
    margin: 0 auto;
  }

  .header-cta {
    display: none;
  }
  .logo {
    position: relative;
    z-index: 20; /* Below nav when open */
  }
  .logo h2 {
    font-size: 18px !important;
  }
  .logo span {
    font-size: 9px !important;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
  .section-title {
    font-size: 32px;
  }
  .info-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }
  .feature-card {
    height: auto;
    min-height: 480px;
    margin-bottom: 20px;
    border-radius: 12px;
  }
  .feature-content,
  .feature-overlay {
    padding: 0px;
  }
  .feature-content h3 {
    font-size: 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full {
    grid-column: span 1;
  }
  .form-container {
    padding: 30px 20px;
  }

  .testi-content {
    padding: 30px 20px;
  }

  .footer-grid {
    text-align: center;
  }
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* =========================================
   STICKY CONTACT BUTTONS
   ========================================= */
.sticky-contact {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: none; /* Hidden by default (Desktop) */
  justify-content: space-between;
  z-index: 999;
}

.sticky-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  color: white !important;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  transition: 0.3s;
  animation: pulse 2s infinite;
}

.call-btn {
  background: var(--secondary);
}
.whatsapp-btn {
  background: #25d366;
}

.sticky-btn i {
  font-size: 16px;
  margin-right: 5px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

@media (max-width: 768px) {
  .sticky-contact {
    display: flex;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 36px;
  }
  .hero-btns {
    flex-direction: column;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  .section {
    padding: 60px 0;
  }
}
