/*
Theme Name: Soul Physio Pro
Theme URI: https://soulphysio.local
Author: Soul Physio Design Studio
Description: 1:1 pixel-level reproduction of the reference physiotherapy UI template.
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: soul-physio-pro
*/

:root {
  --primary-dark: #072320;
  --secondary-dark: #0c2d29;
  --card-dark: #123733;
  --card-teal: #148083;
  --card-teal-gradient: linear-gradient(180deg, #189cb6 0%, #106b72 100%);
  --accent-cyan: #1eb8d2;
  --accent-cyan-light: #44d4ec;
  --accent-blue: #233b80;
  --bg-sage: #eef5f3;
  --bg-sage-card: #e4eeeb;
  --text-dark: #122220;
  --text-muted: #6f8a85;
  --text-light: #cfe3df;
  --white: #ffffff;
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-pill: 50px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
  background-color: var(--bg-sage);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* TOP MINI BAR */
.top-bar {
  background: #051a17;
  padding: 8px 0;
  font-size: 12px;
  color: var(--text-light);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-socials span { margin-left: 14px; cursor: pointer; }

/* HEADER & NAVIGATION */
.site-header {
  background: var(--primary-dark);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.brand-group {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-group img {
  height: 44px;
  width: auto;
  border-radius: 50%;
  background: #fff;
  padding: 2px;
}
.brand-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}
.brand-title span { color: var(--accent-cyan); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}
.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent-cyan); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-search {
  position: relative;
}
.header-search input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  color: #fff;
  font-size: 13px;
  outline: none;
  width: 170px;
}
.header-btn {
  background: var(--accent-cyan);
  color: #fff;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
}

/* HERO SECTION (Teal background, left text + badge tags, right image) */
.hero-section {
  background: radial-gradient(circle at 75% 20%, #17544e 0%, var(--primary-dark) 65%);
  padding: 80px 0 100px 0;
  color: #fff;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}
.hero-badge-tag {
  color: var(--accent-cyan);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: inline-block;
}
.hero-title {
  font-size: 52px;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 24px;
}
.hero-title span {
  color: var(--accent-cyan);
}
.hero-pills {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}
.pill-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  width: fit-content;
}
.pill-item .check {
  color: var(--accent-cyan);
  font-weight: 800;
}
.hero-img-box {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 480px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  border: 2px solid rgba(255,255,255,0.1);
}
.hero-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SECTION 2: ABOUT / CLINIC OVERVIEW (Light Sage BG with 3-image collage & Dr Profile) */
.about-section {
  background: #ffffff;
  padding: 100px 0;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin-top: -30px;
  position: relative;
  z-index: 10;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.about-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-collage img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-collage .big-img {
  grid-column: span 2;
  height: 250px;
}
.about-sub {
  color: var(--card-teal);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.about-heading {
  font-size: 38px;
  line-height: 1.25;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 20px;
}
.about-desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
}
.doctor-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid #e2ece9;
}
.doctor-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}
.doctor-info h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-dark);
}
.doctor-info span {
  font-size: 13px;
  color: var(--text-muted);
}

/* SECTION 3: DARK CARD CAROUSEL / GRID (4 Rounded Cards) */
.dark-services-section {
  background: var(--primary-dark);
  padding: 100px 0;
  color: #fff;
}
.section-center-head {
  text-align: center;
  margin-bottom: 50px;
}
.section-center-head .sub {
  color: var(--accent-cyan);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.section-center-head .title {
  font-size: 38px;
  font-weight: 800;
}
.dark-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.dark-service-card {
  background: var(--card-dark);
  border-radius: 26px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}
.dark-service-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-cyan);
}
.dark-card-thumb {
  height: 240px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 18px;
}
.dark-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dark-card-footer {
  text-align: center;
  padding: 6px 4px 12px;
}
.dark-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.dark-card-tag {
  font-size: 12px;
  color: var(--accent-cyan);
}

/* SECTION 4: EMPOWERING TREATMENT (Accordion list + Hero Image) */
.accordion-treatment-section {
  background: var(--bg-sage);
  padding: 100px 0;
}
.treatment-lead-img {
  width: 100%;
  height: 340px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}
.treatment-lead-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.accordion-items-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.accordion-row {
  background: #ffffff;
  padding: 24px 30px;
  border-radius: var(--radius-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.04);
}
.accordion-row h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-dark);
}
.accordion-row p {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 500px;
}
.accordion-row .icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--card-teal);
}

/* SECTION 5: WHY CHOOSE US & PERCENTAGE PROGRESS */
.stats-section {
  background: #ffffff;
  padding: 90px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.stats-img-box {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 420px;
}
.stats-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.progress-block {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}
.progress-track {
  width: 100%;
  height: 10px;
  background: #e2ece9;
  border-radius: 10px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--card-teal);
  border-radius: 10px;
}

/* SECTION 6: 4-STAGE CIRCULAR RECOVERY INFOGRAPHIC */
.recovery-stage-section {
  background: var(--bg-sage);
  padding: 110px 0;
  text-align: center;
}
.recovery-dial-container {
  margin: 60px auto 0;
  max-width: 750px;
  position: relative;
}
.recovery-central-hub {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  margin: 0 auto;
  border: 10px solid #ffffff;
  box-shadow: 0 0 0 12px rgba(24, 156, 182, 0.15);
  overflow: hidden;
}
.recovery-central-hub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dial-node {
  position: absolute;
  background: #ffffff;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-dark);
  border: 1px solid rgba(0,0,0,0.04);
}
.node-top-left { top: 10%; left: 0; }
.node-top-right { top: 10%; right: 0; }
.node-bottom-left { bottom: 10%; left: 0; }
.node-bottom-right { bottom: 10%; right: 0; }

/* SECTION 7: TESTIMONIAL BANNER */
.testimonial-section {
  background: var(--primary-dark);
  padding: 90px 0;
  color: #fff;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}
.testimonial-quote {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 24px;
  color: var(--text-light);
}
.client-info h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-cyan);
}
.client-info span {
  font-size: 14px;
  color: var(--text-muted);
}

/* SECTION 8: 3 PRICING CARDS (TEAL CENTER) */
.pricing-section {
  padding: 100px 0;
  background: var(--bg-sage);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.price-pill-card {
  background: var(--card-dark);
  border-radius: var(--radius-xl);
  padding: 40px 28px;
  color: #fff;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.06);
}
.price-pill-card.featured {
  background: var(--card-teal-gradient);
  transform: scale(1.04);
  box-shadow: 0 25px 50px rgba(24, 156, 182, 0.3);
}
.price-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent-cyan);
  margin-bottom: 12px;
}
.price-pill-card.featured .price-tag {
  color: #ffffff;
}
.price-pill-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 18px;
}
.price-value {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 24px;
}
.price-value span {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.8;
}
.price-features {
  list-style: none;
  margin-bottom: 35px;
  flex-grow: 1;
}
.price-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
}
.price-btn {
  background: rgba(255,255,255,0.15);
  color: #fff;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 700;
  transition: background 0.2s;
}
.price-pill-card.featured .price-btn {
  background: #ffffff;
  color: var(--primary-dark);
}

/* SECTION 9: APPOINTMENT FORM */
.booking-section {
  background: #ffffff;
  padding: 100px 0;
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.booking-form-wrap {
  background: var(--bg-sage);
  padding: 40px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0,0,0,0.05);
}
.booking-form-wrap input,
.booking-form-wrap select,
.booking-form-wrap textarea {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 16px;
  background: #ffffff;
  border: 1px solid #dce8e4;
  border-radius: var(--radius-md);
  color: var(--text-dark);
  font-size: 14px;
  outline: none;
}
.booking-form-wrap button {
  width: 100%;
  background: var(--card-teal);
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}

/* SECTION 10: 4-PHOTO FOOTER CAROUSEL */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0 24px;
  margin-bottom: -50px;
  position: relative;
  z-index: 10;
}
.photo-strip img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* FOOTER */
.site-footer {
  background: #041412;
  color: var(--text-muted);
  padding: 90px 0 40px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-col h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 10px;
}
.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
}
.footer-col a:hover { color: var(--accent-cyan); }
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
}


/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-grid, .about-grid, .stats-grid, .testimonial-grid, .booking-grid { grid-template-columns: 1fr; }
  .dark-cards-grid, .pricing-grid, .photo-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .header-search { display: none; }
  .node-top-left, .node-top-right, .node-bottom-left, .node-bottom-right { position: static; margin-bottom: 10px; display: inline-block; }
}
@media (max-width: 600px) {
  .dark-cards-grid, .pricing-grid, .photo-strip, .footer-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 34px; }
  .about-heading, .section-center-head .title { font-size: 28px; }
}
