/* =========================================================
    * Template Name: Fisiocare
    * Version: 1.0.0
    * Author: O Alfaiate do Algoritmo
    * Author URI: https://oaa.pt
    * License: Single Use License
    * License URI: https://oaa.pt/licencas
    * Copyright (c) 2026 O Alfaiate do Algoritmo. Todos os direitos reservados.
    ========================================================= */

/* ---------- :root variables ---------- */
:root {
  --primary-color: #153c33;
  --secondary-color: #e6efed;
  --accent-color: #619e90;
  --text-color: #4a4a4a;
  --white-color: #ffffff;
  --dark-color: #0d2b24;
  --light-bg: #f8fffe;
  --border-radius-pill: 50px;
  --border-radius-card: 16px;
  --transition: all 0.3s ease;
  --shadow-sm: 0 4px 12px rgba(21, 60, 51, 0.06);
  --shadow-md: 0 8px 24px rgba(21, 60, 51, 0.1);
  --shadow-lg: 0 16px 40px rgba(21, 60, 51, 0.15);
  --font-body:
    "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-heading:
    "Archivo", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-color);
  background-color: var(--light-bg);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
}
h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}
h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-color);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

section {
  padding: 100px 0;
}

/* ---------- Utility classes ---------- */
.text-primary-custom {
  color: var(--primary-color) !important;
}
.text-accent-custom {
  color: var(--accent-color) !important;
}
.bg-primary-custom {
  background-color: var(--primary-color) !important;
}
.bg-accent-custom {
  background-color: var(--accent-color) !important;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--border-radius-pill);
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  background-color: var(--white-color);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-family: var(--font-body);
}

.section-title {
  margin-bottom: 18px;
}

.section-text {
  color: var(--text-color);
  margin-bottom: 24px;
}

.btn-primary-custom,
.btn-outline-custom,
.btn-light-custom,
.btn-primary-custom,
.btn-outline-custom,
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--border-radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
}

.btn-primary-custom {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
}

.btn-primary-custom:hover {
  background-color: var(--dark-color);
  border-color: var(--dark-color);
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-custom {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-custom:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
}

.btn-light-custom {
  background-color: var(--white-color);
  color: var(--primary-color);
  border-color: var(--white-color);
  padding: 14px 32px;
  font-size: 16px;
}

.btn-light-custom:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--white-color);
  border-color: rgba(255, 255, 255, 0.65);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--white-color);
  border-color: var(--white-color);
  transform: translateY(-2px);
}

.btn-primary-custom i,
.btn-outline-custom i,
.btn-light-custom i,
.btn-outline-white i {
  transition: transform 0.3s ease;
}

.btn-primary-custom:hover i,
.btn-outline-custom:hover i,
.btn-light-custom:hover i,
.btn-outline-white:hover i {
  transform: translateX(4px);
}

/* =========================================================
   [1] TOP BAR
   ========================================================= */
.top-bar {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 10px 0;
  font-size: 14px;
}

.top-bar-info li,
.top-bar-social li {
  margin-right: 22px;
}

.top-bar-info li {
  display: inline-flex;
  align-items: center;
}

.top-bar-info li:last-child,
.top-bar-social li:last-child {
  margin-right: 0;
}

.top-bar-info i {
  color: var(--accent-color);
  margin-right: 8px;
  line-height: 1;
}

.top-bar-social a {
  color: var(--white-color);
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.top-bar-social a:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
}

/* =========================================================
   [2] NAVBAR
   ========================================================= */
.main-navbar {
  transition: var(--transition);
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.main-navbar.navbar-scrolled {
  padding: 10px 0;
  box-shadow: 0 6px 24px rgba(21, 60, 51, 0.08);
  border-bottom-color: transparent;
}

.navbar-brand {
  font-family: var(--font-heading);
  text-decoration: none;
  padding: 0;
}

.brand-logo {
  height: 40px;
  width: auto;
  display: block;
}

.offcanvas-title .brand-logo {
  height: 36px;
}

.footer-brand .brand-logo {
  height: 44px;
}

.main-navbar .nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--text-color);
  padding: 8px 14px !important;
  transition: var(--transition);
  position: relative;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
  color: var(--primary-color);
}

.main-navbar .nav-link.active:not(.dropdown-toggle)::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.main-navbar .dropdown-menu {
  border: none;
  box-shadow: var(--shadow-md);
  border-radius: var(--border-radius-card);
  padding: 10px;
  margin-top: 6px !important;
}

.main-navbar .dropdown-item {
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
}

.main-navbar .dropdown-item:hover,
.main-navbar .dropdown-item:focus,
.main-navbar .dropdown-item.active,
.main-navbar .dropdown-item:active {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.btn-cta {
  padding: 10px 20px;
  font-size: 14px;
}

.navbar-toggler {
  border: none;
  color: var(--primary-color);
  font-size: 22px;
  padding: 4px 10px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.offcanvas-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* =========================================================
   [3] HERO SECTION
   ========================================================= */
.hero-section {
  position: relative;
  background-color: var(--secondary-color);
  padding: 90px 0 110px;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
}

.hero-blob--1 {
  width: 320px;
  height: 320px;
  background-color: var(--accent-color);
  top: -80px;
  right: -60px;
}

.hero-blob--2 {
  width: 260px;
  height: 260px;
  background-color: var(--primary-color);
  bottom: -100px;
  left: -80px;
  opacity: 0.25;
}

.hero-title {
  color: var(--dark-color);
  margin-bottom: 20px;
}

.hero-text {
  color: var(--text-color);
  font-size: 17px;
  margin-bottom: 28px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.hero-divider {
  border-top: 1px solid rgba(21, 60, 51, 0.15);
  margin: 20px 0 25px;
  opacity: 1;
}

.hero-stats h4 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-bottom: 4px;
  font-weight: 800;
}

.hero-stats p {
  font-size: 13px;
  color: var(--text-color);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.hero-image-wrap {
  position: relative;
  text-align: center;
  padding: 20px;
}

.hero-image-circle {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-floating-card {
  position: absolute;
  bottom: 30px;
  right: 0;
  background-color: var(--white-color);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(21, 60, 51, 0.15);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}

.hero-floating-card__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.hero-floating-card strong {
  display: block;
  color: var(--primary-color);
  font-size: 15px;
  font-family: var(--font-heading);
}

.hero-floating-card span {
  display: block;
  color: var(--accent-color);
  font-size: 13px;
}

/* =========================================================
   [4] FEATURES BAR
   ========================================================= */
.features-bar {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 40px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.feature-item:last-child {
  border-right: none;
}

.feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background-color: var(--accent-color);
  color: var(--white-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.feature-item h5 {
  color: var(--white-color);
  margin-bottom: 4px;
  font-size: 17px;
  font-weight: 700;
}

.feature-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0;
}

@media (max-width: 767.98px) {
  .feature-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 18px;
    margin-bottom: 18px;
  }
  .feature-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

/* =========================================================
   [5] ABOUT SECTION
   ========================================================= */
.about-section {
  background-color: var(--white-color);
}

.about-image-wrap {
  position: relative;
  padding: 0 0 30px 30px;
}

.about-image {
  width: 100%;
  border-radius: var(--border-radius-card);
  box-shadow: var(--shadow-md);
}

.about-experience-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--white-color);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(21, 60, 51, 0.15);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
}

.about-experience-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.about-experience-badge strong {
  display: block;
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1;
}

.about-experience-badge > div span {
  display: block;
  color: var(--text-color);
  font-size: 13px;
}

.about-features {
  margin: 28px 0 10px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

.about-feature span {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-feature p {
  margin: 0;
  font-weight: 600;
  color: var(--primary-color);
}

.about-section hr {
  border-top: 1px solid rgba(21, 60, 51, 0.12);
  margin: 24px 0;
  opacity: 1;
}

.about-author__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.about-author strong {
  display: block;
  color: var(--primary-color);
  font-family: var(--font-heading);
}

.about-author span {
  display: block;
  color: var(--accent-color);
  font-size: 14px;
}

/* =========================================================
   [6] GALLERY STRIP
   ========================================================= */
.gallery-strip {
  padding: 60px 0;
  background-color: var(--white-color);
  overflow: hidden;
}

.gallery-track {
  display: flex;
  width: max-content;
  animation: gallery-scroll 40s linear infinite;
}

.gallery-strip:hover .gallery-track {
  animation-play-state: paused;
}

.gallery-item {
  flex-shrink: 0;
  width: 300px;
  height: 250px;
  margin-right: 20px;
  border-radius: var(--border-radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gallery-item--tall {
  width: 360px;
  height: 300px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

@keyframes gallery-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.3333%);
  }
}

/* =========================================================
   [7] SERVICES SECTION
   ========================================================= */
.services-section {
  background-color: var(--light-bg);
}

.service-card {
  height: 100%;
  background-color: var(--white-color);
  border-radius: var(--border-radius-card);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(21, 60, 51, 0.04);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color);
}

.service-card__icon {
  display: inline-flex;
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  transition: var(--transition);
}

.service-card:hover .service-card__icon {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.service-card h5 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-color);
  font-size: 15px;
  margin-bottom: 16px;
}

.service-card__link {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card__link:hover {
  color: var(--primary-color);
  gap: 10px;
}

/* =========================================================
   [8] CTA BANNER
   ========================================================= */
.cta-banner {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
}

.cta-banner__title {
  color: var(--white-color);
  margin-bottom: 18px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__text {
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 17px;
}

.cta-banner--light {
  background-color: var(--secondary-color);
  background-image: none;
  color: var(--primary-color);
}

.cta-banner--light .cta-banner__title {
  color: var(--primary-color);
}

.cta-banner--light .cta-banner__text {
  color: var(--text-color);
}

/* =========================================================
   [9] STATS SECTION
   ========================================================= */
.stats-section {
  background-color: var(--white-color);
}

.list-checks {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.list-checks li {
  padding: 8px 0;
  color: var(--text-color);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}

.list-checks i {
  color: var(--accent-color);
  font-size: 18px;
}

.stats-grid {
  margin: 0;
}

.stat-card {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-card);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.stat-card__number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 6px;
  line-height: 1;
}

.stat-card p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
}

.stat-card--alt {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.stat-card--alt .stat-card__number {
  color: var(--white-color);
}

.stat-card--alt p {
  color: rgba(255, 255, 255, 0.85);
}

.stat-card--deco {
  background-color: var(--accent-color);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
}

/* =========================================================
   [10] WHY US SECTION
   ========================================================= */
.why-us-section {
  background-color: var(--secondary-color);
}

.why-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius-card);
  padding: 30px 26px;
  height: 100%;
  transition: var(--transition);
  border: 1px solid transparent;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-color);
}

.why-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  transition: var(--transition);
}

.why-card:hover .why-card__icon {
  background-color: var(--accent-color);
}

.why-card h5 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.why-card p {
  color: var(--text-color);
  font-size: 15px;
  margin: 0;
}

/* =========================================================
   [11] ATTENTION SECTION
   ========================================================= */
.attention-section {
  background-color: var(--primary-color);
  color: var(--white-color);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.attention-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.attention-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    135deg,
    rgba(21, 60, 51, 0.88) 0%,
    rgba(13, 43, 36, 0.94) 100%
  );
}

@media (max-width: 991.98px) {
  .attention-section::before {
    background-attachment: scroll;
  }
}

.attention-section__head {
  max-width: 760px;
  margin: 0 auto 48px;
}

.attention-section .section-badge {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--primary-color);
}

.attention-section .section-title {
  color: var(--white-color);
}

.attention-section__lead {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.attention-grid {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--border-radius-card);
  overflow: hidden;
}

.attention-grid > .col {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.attention-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  text-decoration: none;
  transition: var(--transition);
  height: 100%;
}

.attention-item__icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--secondary-color);
  font-size: 18px;
  flex-shrink: 0;
  transition: var(--transition);
}

.attention-item__label {
  color: var(--white-color);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.2px;
}

.attention-item:hover {
  background-color: rgba(255, 255, 255, 0.04);
}

.attention-item:hover .attention-item__icon {
  background-color: var(--accent-color);
  color: var(--white-color);
  transform: scale(1.08);
}

@media (max-width: 575.98px) {
  .attention-item {
    padding: 18px 20px;
    gap: 14px;
  }

  .attention-item__label {
    font-size: 15px;
  }
}

/* =========================================================
   [12] TEAM SECTION
   ========================================================= */
.team-section {
  background-color: var(--light-bg);
}

.team-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-card__image {
  background-color: var(--secondary-color);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-card:hover .team-card__image img {
  transform: scale(1.05);
}

.team-card__body {
  padding: 22px 16px;
  text-align: center;
}

.team-card__body h5 {
  color: var(--primary-color);
  margin-bottom: 4px;
}

.team-card__body > span {
  display: block;
  color: var(--accent-color);
  font-size: 14px;
  margin-bottom: 14px;
}

.team-card__social {
  gap: 8px;
  margin: 0;
}

.team-card__social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: var(--transition);
}

.team-card__social a:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
}

/* =========================================================
   [13] TESTIMONIALS
   ========================================================= */
.testimonials-section {
  background-color: var(--secondary-color);
}

.testimonial-card {
  max-width: 760px;
  margin: 0 auto;
  background-color: var(--white-color);
  border-radius: var(--border-radius-card);
  padding: 50px 40px 40px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-quote {
  color: var(--accent-color);
  font-size: 36px;
  opacity: 0.4;
  margin-bottom: 14px;
}

.testimonial-card p {
  font-size: 18px;
  color: var(--text-color);
  font-style: italic;
  margin-bottom: 28px;
  line-height: 1.7;
}

.testimonial-author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  color: var(--primary-color);
  font-family: var(--font-heading);
}

.testimonial-author span {
  display: block;
  color: var(--accent-color);
  font-size: 14px;
}

.custom-indicators {
  bottom: -40px;
  margin: 0;
}

.custom-indicators button {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background-color: rgba(21, 60, 51, 0.25) !important;
  border: none !important;
  margin: 0 6px !important;
  opacity: 1 !important;
  transition: var(--transition);
}

.custom-indicators button.active {
  background-color: var(--primary-color) !important;
  width: 28px !important;
  border-radius: 5px !important;
}

.testimonials-section .carousel {
  padding-bottom: 60px;
}

/* =========================================================
   [14] BLOG SECTION
   ========================================================= */
.blog-section {
  background-color: var(--white-color);
}

.blog-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition);
  border: 1px solid rgba(21, 60, 51, 0.04);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-card__image {
  display: block;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__body {
  padding: 22px 24px 26px;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--text-color);
}

.blog-card__meta i {
  margin-right: 6px;
  color: var(--accent-color);
}

.blog-card__category {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 4px 12px;
  border-radius: var(--border-radius-pill);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card h5 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.4;
}

.blog-card h5 a {
  color: var(--primary-color);
}

.blog-card h5 a:hover {
  color: var(--accent-color);
}

.blog-card p {
  color: var(--text-color);
  font-size: 15px;
  margin-bottom: 16px;
}

.blog-card__link {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-card__link:hover {
  color: var(--primary-color);
  gap: 10px;
}

/* =========================================================
   [15] INFO TICKER BAR
   ========================================================= */
.ticker-bar {
  background-color: var(--secondary-color);
  border-top: 1px solid var(--accent-color);
  border-bottom: 1px solid var(--accent-color);
  overflow: hidden;
  padding: 16px 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}

.ticker-bar:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-content {
  display: flex;
  align-items: center;
  gap: 38px;
  padding-right: 38px;
  white-space: nowrap;
}

.ticker-content span {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 15px;
}

.ticker-sep {
  color: var(--accent-color) !important;
  font-size: 18px !important;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.3333%);
  }
}

/* =========================================================
   [16] FOOTER
   ========================================================= */
.site-footer {
  background-color: var(--primary-color);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 30px;
}

.footer-brand {
  text-decoration: none;
  margin-bottom: 18px;
  padding: 0;
}

.footer-logo {
  height: 44px;
  width: auto;
  display: block;
}

.footer-text {
  font-size: 14px;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-social {
  gap: 10px;
  margin: 0;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--white-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
}

.footer-title {
  color: var(--white-color);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 18px;
  font-weight: 700;
}

.footer-list {
  margin: 0;
  padding: 0;
}

.footer-list li {
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-list a {
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
}

.footer-list a:hover {
  color: var(--white-color);
  padding-left: 4px;
}

.footer-contact i {
  color: var(--accent-color);
  margin-right: 10px;
  width: 16px;
  text-align: center;
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  opacity: 1;
  margin: 50px 0 20px;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-copyright a:hover {
  color: var(--white-color);
}

.footer-bottom-links {
  gap: 22px;
  margin: 0;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-bottom-links a:hover {
  color: var(--white-color);
}

/* =========================================================
   RESPONSIVE TWEAKS
   ========================================================= */
@media (max-width: 991.98px) {
  section {
    padding: 70px 0;
  }

  .hero-section {
    padding: 60px 0 80px;
  }

  .hero-floating-card {
    right: 10px;
    bottom: 10px;
    padding: 10px 16px;
  }

  .about-image-wrap {
    padding: 0;
  }

  .about-experience-badge {
    position: relative;
    margin: -40px auto 0;
  }

  .feature-item {
    padding: 10px 12px;
  }

  .footer-bottom-links {
    justify-content: flex-start !important;
    margin-top: 10px !important;
  }
}

@media (max-width: 575.98px) {
  section {
    padding: 56px 0;
  }

  .top-bar {
    font-size: 13px;
  }
  .top-bar-info li {
    margin-right: 14px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    text-align: center;
  }

  .testimonial-card {
    padding: 40px 22px 30px;
  }

  .stat-card {
    padding: 24px 16px;
  }
  .stat-card__number {
    font-size: 2rem;
  }
}

/* =========================================================
   PAGE BANNER (subpages)
   ========================================================= */
.page-banner {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--dark-color) 100%
  );
  color: var(--white-color);
  padding: 90px 0 80px;
  overflow: hidden;
  text-align: center;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 15% 30%,
      rgba(97, 158, 144, 0.3) 0,
      transparent 38%
    ),
    radial-gradient(
      circle at 85% 75%,
      rgba(230, 239, 237, 0.1) 0,
      transparent 38%
    ),
    radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size:
    100% 100%,
    100% 100%,
    24px 24px;
  pointer-events: none;
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.page-banner h1 {
  color: var(--white-color);
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
}

.page-banner .breadcrumb {
  display: inline-flex;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--border-radius-pill);
  padding: 8px 22px;
  margin: 0;
}

.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
}

.page-banner .breadcrumb-item a:hover {
  color: var(--white-color);
}

.page-banner .breadcrumb-item.active {
  color: var(--accent-color);
}

.page-banner .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.45);
  content: "\203A";
  padding: 0 8px 0 4px;
}

/* =========================================================
   BOOKING PAGE (appointment.html)
   ========================================================= */
.booking-section {
  background-color: var(--white-color);
}

.booking-form-card {
  background-color: var(--light-bg);
  border-radius: var(--border-radius-card);
  padding: 40px 40px 36px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--accent-color);
}

.booking-form-card h3 {
  color: var(--primary-color);
  margin-bottom: 6px;
}

.booking-form-card .booking-form-intro {
  color: var(--text-color);
  margin-bottom: 26px;
  font-size: 15px;
}

.booking-form-card h5 {
  color: var(--primary-color);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin: 26px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(21, 60, 51, 0.1);
}

.booking-form-card h5:first-of-type {
  margin-top: 0;
}

.booking-form-card .form-control,
.booking-form-card .form-select,
.booking-form-card textarea.form-control {
  border-radius: 10px;
  border: 1px solid rgba(21, 60, 51, 0.14);
  background-color: var(--white-color);
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text-color);
  transition: var(--transition);
}

.booking-form-card .form-control:not(textarea),
.booking-form-card .form-select {
  height: 50px;
}

.booking-form-card .form-control:focus,
.booking-form-card .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--white-color);
}

.booking-form-card label {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.booking-form-card .form-check-label {
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-color);
  font-weight: 400;
  font-size: 14px;
}

.booking-form-card .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.booking-form-card .form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(97, 158, 144, 0.2);
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

/* Booking sidebar */
.booking-sidebar {
  position: sticky;
  top: 110px;
}

.booking-info-card {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: var(--border-radius-card);
  padding: 32px 28px;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
}

.booking-info-card::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: var(--accent-color);
  opacity: 0.18;
  top: -80px;
  right: -60px;
  pointer-events: none;
}

.booking-info-card > * {
  position: relative;
}

.booking-info-card h4 {
  color: var(--white-color);
  margin-bottom: 6px;
  font-size: 1.35rem;
}

.booking-info-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  margin-bottom: 20px;
}

.booking-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.booking-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-info-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.booking-info-list__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1;
}

.booking-info-list__icon i {
  line-height: 1;
  display: block;
}

.booking-info-list strong {
  display: block;
  color: var(--white-color);
  font-family: var(--font-heading);
  font-size: 15px;
  margin-bottom: 2px;
}

.booking-info-list div span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.booking-hours-card {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-card);
  padding: 28px;
}

.booking-hours-card h4 {
  color: var(--primary-color);
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.booking-hours-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.booking-hours-card li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(21, 60, 51, 0.15);
  color: var(--primary-color);
  font-weight: 500;
  font-size: 14px;
}

.booking-hours-card li:last-child {
  border-bottom: none;
}

.booking-hours-card li span:last-child {
  color: var(--accent-color);
  font-weight: 600;
}

/* =========================================================
   FAQ (accordion)
   ========================================================= */
.faq-section {
  background-color: var(--light-bg);
}

.faq-section .accordion-item {
  background-color: var(--white-color);
  border: 1px solid rgba(21, 60, 51, 0.08);
  border-radius: var(--border-radius-card) !important;
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-section .accordion-button {
  background-color: var(--white-color);
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  padding: 20px 24px;
  box-shadow: none !important;
}

.faq-section .accordion-button:not(.collapsed) {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.faq-section .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq-section .accordion-button::after {
  background-image: none;
  content: "\002B";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: auto;
  height: auto;
  transition: var(--transition);
  color: var(--accent-color);
  font-size: 16px;
}

.faq-section .accordion-button:not(.collapsed)::after {
  content: "\f068";
  transform: none;
}

.faq-section .accordion-body {
  padding: 6px 24px 22px;
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.7;
}

/* =========================================================
   SCROLL TO TOP BUTTON
   ========================================================= */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: var(--white-color);
  border: 2px solid var(--white-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: var(--transition);
  z-index: 1040;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  background-color: var(--white-color);
  color: var(--accent-color);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.scroll-top:focus-visible {
  outline: 3px solid var(--accent-color);
  outline-offset: 3px;
}

@media (max-width: 575.98px) {
  .scroll-top {
    bottom: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
  }
}

/* =========================================================
   ==============   VERSION 2 (index-2.html)   =============
   ========================================================= */

/* ---------- V2 — Hero ---------- */
.hero-v2 {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--dark-color) 100%
  );
  color: var(--white-color);
  padding: 90px 0 100px;
  overflow: hidden;
}

.hero-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(97, 158, 144, 0.25) 0,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(230, 239, 237, 0.12) 0,
      transparent 40%
    ),
    radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size:
    100% 100%,
    100% 100%,
    26px 26px;
  pointer-events: none;
}

.hero-v2 .container {
  position: relative;
  z-index: 2;
}

.hero-v2 .section-badge {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white-color);
}

.hero-v2-title {
  color: var(--white-color);
  margin-bottom: 22px;
}

.hero-v2-title span {
  color: var(--accent-color);
  position: relative;
}

.hero-v2-title span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background-color: var(--accent-color);
  opacity: 0.5;
  border-radius: 3px;
}

.hero-v2-text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  margin-bottom: 30px;
  max-width: 540px;
}

.hero-v2 .btn-primary-custom {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.hero-v2 .btn-primary-custom:hover {
  background-color: var(--white-color);
  border-color: var(--white-color);
  color: var(--primary-color);
}

.hero-v2 .btn-outline-custom {
  background-color: transparent;
  color: var(--white-color);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-v2 .btn-outline-custom:hover {
  background-color: var(--white-color);
  color: var(--primary-color);
  border-color: var(--white-color);
}

.hero-v2-badges {
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
}

.hero-v2-badges li {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-v2-badges i {
  color: var(--accent-color);
  font-size: 16px;
}

/* ---------- V2 — Hero appointment card (right side) ---------- */
.hero-appointment-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius-card);
  padding: 30px 30px 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  border-top: 4px solid var(--accent-color);
  max-width: 480px;
  margin-left: auto;
}

.hero-appointment-card__header {
  margin-bottom: 22px;
}

.hero-appointment-card__header h3 {
  color: var(--primary-color);
  margin-bottom: 4px;
  font-size: 1.5rem;
}

.hero-appointment-card__header p {
  color: var(--text-color);
  margin: 0;
  font-size: 14px;
}

.appointment-form .form-control,
.appointment-form .form-select {
  height: 48px;
  border-radius: 10px;
  border: 1px solid rgba(21, 60, 51, 0.14);
  background-color: var(--light-bg);
  padding: 0 14px;
  font-size: 15px;
  color: var(--text-color);
  transition: var(--transition);
}

.appointment-form .form-control:focus,
.appointment-form .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--white-color);
}

.appointment-form label {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  display: block;
}

.appointment-form .btn-primary-custom {
  height: 50px;
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

/* ---------- V2 — Service rows (alternating) ---------- */
.services-v2-section {
  background-color: var(--light-bg);
}

.service-row {
  background-color: var(--white-color);
  border-radius: var(--border-radius-card);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-row:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-row:last-child {
  margin-bottom: 0;
}

.service-row .row {
  align-items: stretch;
}

.service-row__image {
  overflow: hidden;
  height: 100%;
  min-height: 320px;
}

.service-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  transition: transform 0.5s ease;
}

.service-row:hover .service-row__image img {
  transform: scale(1.03);
}

.service-row__body {
  padding: 40px 50px;
}

.service-row__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--accent-color);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.6;
}

.service-row__body h3 {
  color: var(--primary-color);
  margin-bottom: 14px;
  font-size: 1.7rem;
}

.service-row__body p {
  color: var(--text-color);
  margin-bottom: 22px;
}

.service-row__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
}

.service-row__features li {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-row__features i {
  color: var(--accent-color);
}

@media (max-width: 767.98px) {
  .service-row__body {
    padding: 30px 24px;
  }
  .service-row__features {
    grid-template-columns: 1fr;
  }
}

/* ---------- V2 — Testimonials grid ---------- */
.testimonials-grid-section {
  background-color: var(--light-bg);
}

.testimonial-grid-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius-card);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition);
  border: 1px solid rgba(21, 60, 51, 0.04);
  position: relative;
}

.testimonial-grid-card::before {
  content: "\201C";
  position: absolute;
  top: 14px;
  right: 22px;
  font-size: 70px;
  color: var(--secondary-color);
  line-height: 1;
  font-family: "Archivo", serif;
}

.testimonial-grid-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-color);
}

.testimonial-grid-card__rating {
  color: #f1b73a;
  margin-bottom: 12px;
  font-size: 14px;
}

.testimonial-grid-card p {
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-grid-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(21, 60, 51, 0.08);
}

.testimonial-grid-card__author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-grid-card__author strong {
  display: block;
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-size: 15px;
}

.testimonial-grid-card__author span {
  display: block;
  color: var(--accent-color);
  font-size: 13px;
}

/* ---------- V2 — Newsletter ---------- */
.newsletter-section {
  padding: 60px 0;
  background-color: var(--accent-color);
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background-color: var(--primary-color);
  opacity: 0.18;
  filter: blur(60px);
  top: -120px;
  right: -80px;
}

.newsletter-section .container {
  position: relative;
  z-index: 2;
}

.newsletter-title {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 1.8rem;
}

.newsletter-text {
  color: var(--primary-color);
  opacity: 0.75;
  margin: 0;
  font-size: 15px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  height: 52px;
  border-radius: var(--border-radius-pill);
  border: 1px solid rgba(21, 60, 51, 0.25);
  background-color: rgba(255, 255, 255, 0.45);
  color: var(--primary-color);
  padding: 0 22px;
  font-size: 15px;
  transition: var(--transition);
}

.newsletter-form input::placeholder {
  color: rgba(21, 60, 51, 0.5);
}

.newsletter-form input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.7);
  border-color: var(--primary-color);
}

.newsletter-form button {
  height: 52px;
  padding: 0 30px;
  border-radius: var(--border-radius-pill);
  border: none;
  background-color: var(--primary-color);
  color: var(--white-color);
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background-color: var(--dark-color);
  color: var(--white-color);
  transform: translateY(-2px);
}

/* ---------- V2 — Process steps ---------- */
.process-section {
  background-color: var(--secondary-color);
}

.process-step {
  background-color: var(--white-color);
  border-radius: var(--border-radius-card);
  padding: 32px 26px;
  text-align: center;
  height: 100%;
  position: relative;
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.process-step__number {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  border: 4px solid var(--secondary-color);
}

.process-step__icon {
  display: inline-flex;
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 20px 0 18px;
  transition: var(--transition);
}

.process-step:hover .process-step__icon {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.process-step h5 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.process-step p {
  color: var(--text-color);
  font-size: 15px;
  margin: 0;
}

/* ---------- V2 — Hero responsive ---------- */
@media (max-width: 991.98px) {
  .hero-v2 {
    padding: 70px 0 80px;
  }
  .hero-appointment-card {
    margin: 30px auto 0;
  }
}

@media (max-width: 575.98px) {
  .hero-v2 {
    padding: 50px 0 60px;
  }
  .hero-appointment-card {
    padding: 24px 22px;
  }
  .service-row__number {
    font-size: 2.2rem;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form button {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================
   CONTACT PAGE (contacto.html)
   ========================================================= */
.contact-info-section {
  background-color: var(--light-bg);
  padding: 90px 0;
}

.contact-info-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius-card);
  padding: 36px 28px 30px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--accent-color);
  transition: var(--transition);
  position: relative;
}

.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.contact-info-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  font-size: 26px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.contact-info-card:hover .contact-info-card__icon {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.contact-info-card h5 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.contact-info-card p {
  color: var(--text-color);
  font-size: 14.5px;
  margin-bottom: 16px;
  line-height: 1.65;
}

.contact-info-card p a {
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
}

.contact-info-card p a:hover {
  color: var(--primary-color);
}

.contact-info-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.contact-info-card__link i {
  font-size: 12px;
  transition: var(--transition);
}

.contact-info-card__link:hover {
  color: var(--accent-color);
}

.contact-info-card__link:hover i {
  transform: translateX(4px);
}

/* Contact form section */
.contact-form-section {
  background-color: var(--white-color);
  padding: 100px 0;
}

.contact-form-card .form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* Contact side / aside */
.contact-side {
  display: flex;
  flex-direction: column;
  gap: 22px;
  height: 100%;
}

.contact-side-card {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: var(--border-radius-card);
  padding: 40px 34px;
  position: relative;
  overflow: hidden;
  flex: 1;
}

.contact-side-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background-color: var(--accent-color);
  opacity: 0.16;
  top: -90px;
  right: -70px;
  pointer-events: none;
}

.contact-side-card > * {
  position: relative;
}

.contact-side-card .section-badge {
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--accent-color);
}

.contact-side-card h3 {
  color: var(--white-color);
  margin-bottom: 10px;
}

.contact-side-card p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 24px;
  font-size: 14.5px;
}

.contact-side-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-side-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-side-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-side-list__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
}

.contact-side-list strong {
  display: block;
  color: var(--white-color);
  font-family: var(--font-heading);
  font-size: 15px;
  margin-bottom: 2px;
}

.contact-side-list div span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

/* Emergency call-out card */
.contact-emergency-card {
  background-color: var(--accent-color);
  color: var(--primary-color);
  border-radius: var(--border-radius-card);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-emergency-card__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background-color: var(--primary-color);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.contact-emergency-card small {
  display: block;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
  opacity: 0.85;
}

.contact-emergency-card a {
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
}

.contact-emergency-card a:hover {
  color: var(--dark-color);
}

/* Map */
.contact-map-section {
  background-color: var(--white-color);
  padding-bottom: 0;
}

.contact-map-wrap {
  width: 100%;
  line-height: 0;
}

.contact-map-wrap iframe {
  display: block;
  width: 100%;
  filter: grayscale(0.15) contrast(1.02);
}

/* Contact responsive */
@media (max-width: 991.98px) {
  .contact-info-section {
    padding: 70px 0;
  }
  .contact-form-section {
    padding: 70px 0;
  }
  .contact-side {
    margin-top: 10px;
  }
}

@media (max-width: 575.98px) {
  .contact-info-section {
    padding: 56px 0;
  }
  .contact-form-section {
    padding: 56px 0;
  }
  .contact-info-card {
    padding: 30px 24px 26px;
  }
  .contact-side-card {
    padding: 32px 24px;
  }
  .contact-emergency-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================================================
   [22] SERVICES PAGE
   ========================================================= */
.services-page-grid {
  background-color: var(--light-bg);
}

.services-page-intro {
  max-width: 720px;
  margin: 14px auto 0;
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.7;
}

/* Inline CTA strip */
.services-cta {
  padding: 80px 0;
  background-color: var(--secondary-color);
}

.services-cta__inner {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
  color: var(--white-color);
  border-radius: var(--border-radius-card);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  box-shadow: var(--shadow-md);
}

.services-cta__icon {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 18px;
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--white-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.services-cta__body {
  flex: 1;
}

.services-cta__body h3 {
  color: var(--white-color);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.services-cta__body p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.services-cta .btn-light-custom {
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .services-cta {
    padding: 64px 0;
  }
  .services-cta__inner {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
    gap: 20px;
  }
}

@media (max-width: 575.98px) {
  .services-cta {
    padding: 48px 0;
  }
  .services-cta__inner {
    padding: 32px 22px;
  }
  .services-cta__body h3 {
    font-size: 1.35rem;
  }
}

/* =========================================================
   [23] TEAM PAGE (extends [12] team component)
   ========================================================= */
.team-intro {
  max-width: 720px;
  margin: 14px auto 0;
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.7;
}

.team-card__body h5 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.team-card__body h5 a:hover {
  color: var(--accent-color);
}

/* =========================================================
   [24] THERAPIST DETAIL PAGE
   ========================================================= */
.therapist-profile {
  background-color: var(--light-bg);
}

.therapist-profile__photo {
  border-radius: var(--border-radius-card);
  overflow: hidden;
  background-color: var(--secondary-color);
  box-shadow: var(--shadow-md);
}

.therapist-profile__photo img {
  width: 100%;
  height: auto;
  display: block;
}

.therapist-profile__name {
  margin-top: 12px;
}

.therapist-profile__lead {
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.therapist-meta {
  margin: 0 0 24px;
  border-top: 1px solid rgba(21, 60, 51, 0.1);
}

.therapist-meta li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(21, 60, 51, 0.1);
  flex-wrap: wrap;
}

.therapist-meta__label {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.therapist-meta__label i {
  color: var(--accent-color);
}

.therapist-meta__value {
  color: var(--text-color);
  font-size: 15px;
  text-align: right;
}

.therapist-meta__value a {
  color: var(--text-color);
  text-decoration: none;
}

.therapist-meta__value a:hover {
  color: var(--accent-color);
}

.therapist-socials {
  gap: 10px;
  margin: 0 0 28px;
}

.therapist-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
}

.therapist-socials a:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
}

.therapist-profile__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Bio block */
.therapist-bio {
  background-color: var(--white-color);
}

.therapist-bio .section-title {
  margin-bottom: 22px;
}

.therapist-bio p {
  color: var(--text-color);
  line-height: 1.8;
  font-size: 15px;
  max-width: 920px;
}

.therapist-bio p + p {
  margin-top: 16px;
}

/* Awards */
.therapist-awards {
  background-color: var(--secondary-color);
}

.awards-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 0;
}

.awards-list li {
  background-color: var(--white-color);
  border-radius: var(--border-radius-card);
  padding: 26px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(21, 60, 51, 0.04);
}

.awards-list li:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-color);
}

.award-badge__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 14px;
  transition: var(--transition);
}

.awards-list li:hover .award-badge__icon {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.awards-list strong {
  display: block;
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 4px;
}

.awards-list span:not(.award-badge__icon) {
  color: var(--text-color);
  font-size: 13px;
}

/* Skills */
.therapist-skills {
  background-color: var(--white-color);
}

.skill-list {
  margin: 0;
}

.skill-item + .skill-item {
  margin-top: 22px;
}

.skill-item__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.skill-item__label {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 15px;
}

.skill-item__value {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 14px;
}

.skill-item__bar {
  width: 100%;
  height: 8px;
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-pill);
  overflow: hidden;
}

.skill-item__bar > span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
  border-radius: var(--border-radius-pill);
  transition: width 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 991.98px) {
  .therapist-profile__photo {
    max-width: 480px;
    margin: 0 auto;
  }
  .awards-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .therapist-meta li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .therapist-meta__value {
    text-align: left;
  }
  .therapist-profile__actions .btn {
    width: 100%;
  }
}

/* =========================================================
   [25] BLOG PAGE (extends [14] blog component)
   ========================================================= */
.blog-pagination {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}

.blog-pagination .pagination {
  gap: 8px;
  margin: 0;
}

.blog-pagination .page-item .page-link,
.blog-pagination .page-item > span.page-link {
  width: 44px;
  height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(21, 60, 51, 0.12);
  background-color: var(--white-color);
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  box-shadow: none;
}

.blog-pagination .page-item .page-link:hover {
  background-color: var(--secondary-color);
  border-color: var(--accent-color);
  color: var(--primary-color);
}

.blog-pagination .page-item.active .page-link {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color);
}

.blog-pagination .page-item.disabled .page-link {
  opacity: 0.45;
  pointer-events: none;
  background-color: var(--white-color);
}

.blog-pagination .page-item .page-link:focus {
  box-shadow: 0 0 0 3px rgba(97, 158, 144, 0.25);
}

@media (max-width: 575.98px) {
  .blog-pagination {
    margin-top: 40px;
  }
  .blog-pagination .page-item .page-link {
    width: 40px;
    height: 40px;
  }
}

/* =========================================================
   [26] BLOG SINGLE / ARTICLE
   ========================================================= */
.article-section {
  background-color: var(--white-color);
}

.article {
  max-width: 860px;
  margin: 0 auto;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 28px;
  font-size: 14px;
  color: var(--text-color);
}

.article-meta i {
  color: var(--accent-color);
  margin-right: 8px;
}

.article-meta a {
  color: var(--primary-color);
  font-weight: 600;
}

.article-meta a:hover {
  color: var(--accent-color);
}

.article-featured {
  border-radius: var(--border-radius-card);
  overflow: hidden;
  margin-bottom: 36px;
  box-shadow: var(--shadow-md);
}

.article-featured img {
  width: 100%;
  height: auto;
  display: block;
}

.article-body {
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.85;
}

.article-lead {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-color);
  line-height: 1.7;
  margin-bottom: 22px;
}

.article-body p {
  margin: 0 0 20px;
}

.article-body h2 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-size: 1.6rem;
  margin: 36px 0 14px;
  line-height: 1.3;
}

.article-body h3 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-size: 1.25rem;
  margin: 28px 0 12px;
  line-height: 1.3;
}

.article-list {
  margin: 0 0 22px;
  padding-left: 0;
  list-style: none;
}

.article-list li {
  position: relative;
  padding: 4px 0 4px 30px;
}

.article-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--accent-color);
  position: absolute;
  left: 0;
  top: 6px;
  font-size: 13px;
}

.article-quote {
  position: relative;
  margin: 32px 0;
  padding: 32px 36px;
  background-color: var(--secondary-color);
  border-left: 4px solid var(--accent-color);
  border-radius: var(--border-radius-card);
}

.article-quote > i {
  color: var(--accent-color);
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
  opacity: 0.7;
}

.article-quote p {
  color: var(--primary-color);
  font-size: 18px;
  font-style: italic;
  line-height: 1.7;
  margin: 0 0 12px;
}

.article-quote cite {
  color: var(--text-color);
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
}

/* Tags */
.article-tags {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(21, 60, 51, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.article-tags__label {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
  margin-right: 6px;
}

.article-tags__label i {
  color: var(--accent-color);
  margin-right: 6px;
}

.article-tag {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 6px 14px;
  border-radius: var(--border-radius-pill);
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
}

.article-tag:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

/* Share */
.article-share {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-share__label {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
  margin-right: 6px;
}

.article-share a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
}

.article-share a:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
}

@media (max-width: 575.98px) {
  .article-body {
    font-size: 15px;
  }
  .article-body h2 {
    font-size: 1.4rem;
  }
  .article-body h3 {
    font-size: 1.15rem;
  }
  .article-quote {
    padding: 24px 22px;
  }
  .article-quote p {
    font-size: 16px;
  }
  .article-meta {
    gap: 6px 16px;
    font-size: 13px;
  }
}

/* =========================================================
   [27] ABOUT PAGE
   ========================================================= */

/* ----- Stats strip ----- */
.about-stats {
  background-color: var(--secondary-color);
  padding-top: 60px;
  padding-bottom: 60px;
}

.about-stats__item .stat-card__number {
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.about-stats__item p {
  color: var(--primary-color);
  font-weight: 600;
  margin: 0;
  font-size: 15px;
}

/* ----- Mission / Vision / Values ----- */
.values-section {
  background-color: var(--light-bg);
}

.value-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius-card);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  text-align: center;
  border: 1px solid rgba(21, 60, 51, 0.06);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color);
}

.value-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  font-size: 28px;
  transition: var(--transition);
}

.value-card:hover .value-card__icon {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: rotate(-8deg);
}

.value-card h5 {
  color: var(--primary-color);
  margin-bottom: 14px;
}

.value-card p {
  color: var(--text-color);
  margin: 0;
  line-height: 1.7;
}

/* ----- Journey / Timeline ----- */
.journey-section {
  background-color: var(--white-color);
}

.journey-timeline {
  position: relative;
}

.journey-step {
  position: relative;
  padding: 0 18px;
  text-align: center;
}

.journey-step__year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white-color);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 18px rgba(21, 60, 51, 0.18);
}

.journey-step h6 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 700;
}

.journey-step p {
  color: var(--text-color);
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
}

@media (min-width: 992px) {
  .journey-timeline::before {
    content: "";
    position: absolute;
    top: 42px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: repeating-linear-gradient(
      to right,
      var(--accent-color) 0 8px,
      transparent 8px 16px
    );
    z-index: 0;
  }
}

@media (max-width: 575.98px) {
  .about-stats__item .stat-card__number {
    font-size: 2.4rem;
  }
  .value-card {
    padding: 28px 22px;
  }
  .value-card__icon {
    width: 64px;
    height: 64px;
    font-size: 24px;
  }
  .journey-step__year {
    width: 72px;
    height: 72px;
    font-size: 16px;
  }
}

/* =========================================================
   [28] SERVICE DETAIL PAGE
   ========================================================= */

/* Intro / overview block */
.service-detail-intro {
  background-color: var(--light-bg);
}

.service-detail__image {
  border-radius: var(--border-radius-card);
  overflow: hidden;
  background-color: var(--secondary-color);
  box-shadow: var(--shadow-md);
}

.service-detail__image img {
  width: 100%;
  height: auto;
  display: block;
}

.service-detail__lead {
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 28px;
}

/* Meta info list */
.service-meta {
  margin: 0 0 28px;
  border-top: 1px solid rgba(21, 60, 51, 0.1);
}

.service-meta li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(21, 60, 51, 0.1);
  flex-wrap: wrap;
}

.service-meta__label {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.service-meta__label i {
  color: var(--accent-color);
}

.service-meta__value {
  color: var(--text-color);
  font-size: 15px;
  text-align: right;
}

.service-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Benefits */
.service-benefits-section {
  background-color: var(--white-color);
}

.service-benefit-card {
  background-color: var(--light-bg);
  border: 1px solid rgba(21, 60, 51, 0.06);
  border-radius: var(--border-radius-card);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.service-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-color);
}

.service-benefit-card__icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
  transition: var(--transition);
}

.service-benefit-card:hover .service-benefit-card__icon {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.service-benefit-card h5 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.service-benefit-card p {
  font-size: 14px;
  color: var(--text-color);
  margin: 0;
  line-height: 1.6;
}

/* How it works / process */
.service-process-section {
  background-color: var(--secondary-color);
}

.service-process-steps {
  position: relative;
}

@media (min-width: 992px) {
  .service-process-steps::before {
    content: "";
    position: absolute;
    top: 60px; /* 24px (g-4 col margin-top) + 36px (half of 72px circle) */
    left: 12%;
    right: 12%;
    height: 2px;
    background: repeating-linear-gradient(
      to right,
      var(--accent-color) 0 8px,
      transparent 8px 16px
    );
    z-index: 0;
  }
}

.service-process-step {
  text-align: center;
  position: relative;
}

.service-process-step__number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white-color);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(21, 60, 51, 0.18);
  position: relative;
  z-index: 1;
}

.service-process-step h5 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.service-process-step p {
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
  max-width: 200px;
  margin-inline: auto;
}

/* FAQ */
.service-faq-section {
  background-color: var(--white-color);
}

.service-faq-section .accordion-item {
  border: 1px solid rgba(21, 60, 51, 0.1) !important;
  border-radius: var(--border-radius-card) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.service-faq-section .accordion-button {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary-color);
  background-color: var(--light-bg);
  font-size: 15px;
  border-radius: 0 !important;
}

.service-faq-section .accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: var(--white-color);
  box-shadow: none;
}

.service-faq-section .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.service-faq-section .accordion-button:focus {
  box-shadow: none;
}

.service-faq-section .accordion-body {
  font-size: 15px;
  color: var(--text-color);
  line-height: 1.7;
  background-color: var(--white-color);
}

/* Related services strip */
.related-services-section {
  background-color: var(--light-bg);
  padding: 80px 0;
}

@media (max-width: 991.98px) {
  .service-process-steps::before {
    display: none;
  }
  .service-process-step p {
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  .service-benefit-card {
    padding: 28px 20px;
  }
  .service-benefit-card__icon {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }
  .service-process-step__number {
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
  }
}

/* =========================================================
   [29] LEGAL PAGES (Política de Privacidade / T&C / RGPD)
   ========================================================= */

.legal-section {
  background-color: var(--white-color);
  padding: 72px 0 80px;
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
}

.legal-content__intro {
  font-size: 1.05rem;
  color: var(--text-color);
  line-height: 1.75;
  border-left: 4px solid var(--accent-color);
  padding-left: 20px;
  margin-bottom: 48px;
}

.legal-content__block {
  margin-bottom: 40px;
}

.legal-content__block h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(21, 60, 51, 0.1);
}

.legal-content__block p {
  color: var(--text-color);
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-content__block ul {
  padding-left: 20px;
  color: var(--text-color);
  line-height: 1.75;
}

.legal-content__block ul li {
  margin-bottom: 6px;
}

.legal-content__block a {
  color: var(--accent-color);
  text-decoration: none;
}

.legal-content__block a:hover {
  text-decoration: underline;
}

.legal-content__updated {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 36px;
}

.legal-toc {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-card);
  padding: 28px 32px;
  margin-bottom: 48px;
}

.legal-toc h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 14px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.legal-toc ol {
  margin: 0;
  padding-left: 20px;
  color: var(--text-color);
  line-height: 1.8;
}

.legal-toc ol li a {
  color: var(--accent-color);
  text-decoration: none;
  font-size: 0.95rem;
}

.legal-toc ol li a:hover {
  text-decoration: underline;
}

@media (max-width: 575.98px) {
  .legal-section {
    padding: 48px 0 56px;
  }
  .legal-toc {
    padding: 22px 20px;
  }
}

/* =========================================================
   [30] HOME V3 — CENTRED HERO + FEATURE STRIP + GRID TESTIMONIALS
   ========================================================= */

/* --- Hero V3 --- */
.hero-v3 {
  padding: 130px 0 100px;
  text-align: center;
  color: var(--white-color);
  position: relative;
  overflow: hidden;
}

.hero-v3__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero-v3__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,43,36,0.82) 0%, rgba(21,60,51,0.72) 60%, rgba(27,80,68,0.78) 100%);
  z-index: 1;
}

.hero-v3 .container {
  position: relative;
  z-index: 2;
}

.hero-v3__badge {
  display: inline-block;
  background-color: rgba(97, 158, 144, 0.25);
  color: #a8d5cb;
  border: 1px solid rgba(97, 158, 144, 0.4);
  border-radius: var(--border-radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 18px;
  margin-bottom: 24px;
}

.hero-v3__title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white-color);
  line-height: 1.15;
  margin-bottom: 22px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.hero-v3__title span {
  color: var(--accent-color);
}

.hero-v3__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-v3__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-v3__stats {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 40px;
  max-width: 640px;
  margin: 0 auto;
}

.hero-v3__stat {
  flex: 1 1 160px;
  padding: 0 28px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-v3__stat:last-child {
  border-right: none;
}

.hero-v3__stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white-color);
  line-height: 1.1;
}

.hero-v3__stat span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
  display: block;
}

@media (max-width: 575.98px) {
  .hero-v3 {
    padding: 90px 0 70px;
  }
  .hero-v3__stat {
    padding: 12px 16px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    flex: 1 1 100%;
  }
  .hero-v3__stat:last-child {
    border-bottom: none;
  }
  .hero-v3__stats {
    flex-direction: column;
  }
}

/* --- Feature Strip --- */
.feature-strip {
  background-color: var(--white-color);
  padding: 64px 0;
}

.feature-strip-card {
  background-color: var(--light-bg);
  border: 1px solid rgba(21, 60, 51, 0.06);
  border-radius: var(--border-radius-card);
  padding: 36px 28px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
}

.feature-strip-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-color);
}

.feature-strip-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.feature-strip-card:hover .feature-strip-card__icon {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.feature-strip-card h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.feature-strip-card p {
  color: var(--text-color);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.65;
}

/* --- About V3 --- */
.about-v3-section {
  background-color: var(--secondary-color);
  padding: 80px 0;
}

.about-v3__image-wrap {
  position: relative;
}

.about-v3__image-wrap img {
  border-radius: var(--border-radius-card);
  width: 100%;
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-lg);
}

.about-v3__exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: var(--border-radius-card);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-v3__exp-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.about-v3__exp-badge span {
  font-size: 0.8rem;
  opacity: 0.8;
  line-height: 1.3;
  display: block;
  margin-top: 4px;
}

.about-v3__features {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
}

.about-v3__feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.about-v3__feature-item i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--white-color);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: var(--shadow-sm);
}

.about-v3__feature-item div strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-color);
  font-size: 0.95rem;
}

.about-v3__feature-item div span {
  color: var(--text-color);
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 991.98px) {
  .about-v3__exp-badge {
    right: 16px;
    bottom: 16px;
  }
  .about-v3__image-wrap {
    margin-bottom: 48px;
  }
}

@media (max-width: 575.98px) {
  .about-v3__exp-badge {
    right: 12px;
    bottom: 12px;
    padding: 14px 16px;
  }
  .about-v3__exp-badge strong {
    font-size: 1.8rem;
  }
}

/* --- Services V3 (3-column grid reuses .service-card) --- */
.services-v3-section {
  background-color: var(--white-color);
  padding: 80px 0;
}

/* --- Stats V3 --- */
.stats-v3-section {
  background-color: var(--primary-color);
  padding: 72px 0;
}

.stats-v3-section .stat-card {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--border-radius-card);
  padding: 36px 28px;
  text-align: center;
}

.stats-v3-section .stat-card__number {
  color: var(--white-color);
}

.stats-v3-section .stat-card p {
  color: rgba(255, 255, 255, 0.7);
}

.stats-v3-section .stat-card__icon {
  color: var(--accent-color);
}

/* --- Body Areas V3 (reuses .attention-item — overrides para fundo claro) --- */
.body-areas-v3-section {
  background-color: var(--light-bg);
  padding: 80px 0;
}

.body-areas-v3-section .attention-grid {
  border-color: rgba(21, 60, 51, 0.1);
}

.body-areas-v3-section .attention-grid > .col {
  border-color: rgba(21, 60, 51, 0.1);
}

.body-areas-v3-section .attention-item__icon {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.body-areas-v3-section .attention-item__label {
  color: var(--primary-color);
}

.body-areas-v3-section .attention-item:hover {
  background-color: var(--secondary-color);
}

.body-areas-v3-section .attention-item:hover .attention-item__icon {
  background-color: var(--primary-color);
  color: var(--white-color);
}

/* --- Team V3 (reuses .team-section styles) --- */
.team-v3-section {
  background-color: var(--white-color);
  padding: 80px 0;
}

/* --- Testimonials Grid --- */
.testimonials-grid-section {
  background-color: var(--secondary-color);
  padding: 80px 0;
}

.testimonial-grid-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius-card);
  padding: 32px 28px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.testimonial-grid-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-grid-card__stars {
  color: #f4a70a;
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-grid-card__text {
  color: var(--text-color);
  font-style: italic;
  line-height: 1.7;
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 24px;
}

.testimonial-grid-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(21, 60, 51, 0.08);
  padding-top: 18px;
}

.testimonial-grid-card__author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-grid-card__author strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-color);
  font-size: 0.9rem;
}

.testimonial-grid-card__author span {
  display: block;
  color: var(--accent-color);
  font-size: 0.8rem;
}

/* --- Blog V3 (reuses .blog-card) --- */
.blog-v3-section {
  background-color: var(--light-bg);
  padding: 80px 0;
}

@media (max-width: 575.98px) {
  .feature-strip {
    padding: 48px 0;
  }
  .about-v3-section,
  .services-v3-section,
  .stats-v3-section,
  .body-areas-v3-section,
  .team-v3-section,
  .testimonials-grid-section,
  .blog-v3-section {
    padding: 56px 0;
  }
}
