/* =============================================
   Dr. Prithivi Perum - Healthcare Website
   Main Stylesheet
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
  --color-white: #ffffff;
  --color-primary: #f27e01;
  --color-primary-dark: #c96500;
  --color-primary-light: #fff0e3;
  --color-primary-soft: #ffe8d4;
  --color-secondary: #0b4d8f;
  --color-secondary-light: #e8f2fb;
  --color-accent: #fa8201;
  --color-dark: #0f1f33;
  --color-dark-soft: #1a2e4a;
  --color-text: #3d4f63;
  --color-text-light: #6b7c93;
  --color-text-muted: #8a9bb0;
  --color-grey: #f6f8fb;
  --color-grey-dark: #e8edf3;
  --color-border: #e2e8f0;
  --color-success: #10b981;
  --btn-bg: #ffcc99;
  --btn-bg-hover: #ffb87a;
  --btn-border: #f5a855;
  --btn-text: #b85c0a;
  --btn-text-on: #704214;
  --btn-fill: #ffcc99;
  --btn-fill-hover: #ffb87a;
  --btn-shadow: 0 4px 16px rgba(245, 140, 50, 0.35);
  --btn-shadow-hover: 0 8px 24px rgba(245, 140, 50, 0.45);
  --gradient-brand: linear-gradient(135deg, #fff4eb 0%, #ffe8d4 45%, #ffd4b0 100%);
  --gradient-brand-hover: linear-gradient(135deg, #ffe8d4 0%, #ffc999 50%, #ffb87a 100%);
  --gradient-brand-soft: linear-gradient(135deg, #fff7f0 0%, #ffd4b0 60%, #e8f2fb 100%);
  --gradient-icon: linear-gradient(135deg, #ffc999 0%, #ffb87a 100%);
  --gradient-icon-alt: linear-gradient(135deg, #7eb3e8 0%, #a8d4f5 100%);
  --gradient-icon-vivid: linear-gradient(135deg, #f27e01 0%, #fa8201 55%, #ffb87a 100%);
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Inter', sans-serif;
  --shadow-xs: 0 1px 3px rgba(15, 31, 51, 0.04);
  --shadow-sm: 0 2px 12px rgba(15, 31, 51, 0.06);
  --shadow-md: 0 8px 30px rgba(15, 31, 51, 0.08);
  --shadow-lg: 0 16px 48px rgba(15, 31, 51, 0.12);
  --shadow-btn: 0 6px 20px rgba(255, 200, 153, 0.45);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 76px;
  --section-gap: 96px;
  --touch-target: 44px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font-secondary);
  color: var(--color-text);
  line-height: 1.7;
  background: var(--color-white);
  overflow-x: clip;
  width: 100%;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--color-dark);
  line-height: 1.3;
  font-weight: 600;
}

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

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

iframe,
video,
embed {
  max-width: 100%;
}

.responsive-embed {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.responsive-embed iframe,
.responsive-embed video {
  width: 100%;
  max-width: 100%;
  border: 0;
}

ul, ol {
  list-style: none;
}

p {
  margin-bottom: 1rem;
}

/* ---------- Page Loader ---------- */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--color-white);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--color-grey);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- Typography Utilities ---------- */
.section-padding {
  padding: 90px 0;
}

.section-padding-sm {
  padding: 60px 0;
}

.section-title {
  font-size: clamp(1.35rem, 1.05rem + 1.85vw, 2.25rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
  display: block;
}

.section-desc {
  color: var(--color-text-light);
  font-size: clamp(0.95rem, 0.88rem + 0.28vw, 1.05rem);
  max-width: min(600px, 100%);
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn-primary-custom,
.btn-white-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  min-height: var(--touch-target);
  background: var(--btn-fill);
  color: var(--btn-text-on);
  border: 1.5px solid var(--btn-border);
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--btn-shadow);
}

.btn-white-custom {
  padding: 14px 32px;
  font-weight: 700;
}

.btn-primary-custom:hover,
.btn-white-custom:hover {
  background: var(--btn-fill-hover);
  border-color: #f59e42;
  transform: translateY(-2px);
  box-shadow: var(--btn-shadow-hover);
  color: var(--btn-text-on);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  min-height: var(--touch-target);
  background: #ffe8cc;
  color: var(--btn-text-on);
  border: 1.5px solid var(--btn-border);
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(245, 140, 50, 0.18);
}

.btn-outline-custom:hover {
  background: var(--btn-fill);
  border-color: var(--btn-border);
  color: var(--btn-text-on);
  transform: translateY(-2px);
  box-shadow: var(--btn-shadow);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
  height: var(--header-height);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 12px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 1;
  min-width: 0;
}

.site-logo img,
.site-logo-img {
  width: auto;
  max-width: 140px;
  height: 48px;
  border-radius: 0;
  object-fit: contain;
}

.footer-about .site-logo img,
.footer-about .site-logo-img {
  max-width: 160px;
  height: 52px;
  background: #fff;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
}

.logo-text {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-dark);
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--color-primary);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-dark);
  position: relative;
  padding: 4px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-cta .btn-header-call {
  padding: 10px 18px;
  font-size: 0.82rem;
  white-space: nowrap;
}

.header-cta .btn-primary-custom {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* ---------- AEO Answer Blocks ---------- */
.aeo-answer {
  background: var(--color-primary-light);
  border-left: 4px solid var(--color-primary);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--color-dark-soft);
  line-height: 1.7;
}

.aeo-answer strong {
  color: var(--color-primary-dark);
}

.service-extra-content p {
  margin-bottom: 1rem;
  color: var(--color-text);
  line-height: 1.8;
}

.service-detail-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.service-detail-content .text-muted {
  font-size: 0.95rem;
}

.local-seo-section h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

/* ---------- Geo Locations Grid ---------- */
.geo-locations-block {
  margin-top: 2.5rem;
  padding: 2.5rem 2rem;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.geo-locations-header {
  margin-bottom: 2rem;
}

.geo-locations-title {
  font-family: var(--font-primary);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 700;
  color: var(--color-dark);
  margin: 0.75rem 0 0.5rem;
}

.geo-locations-desc {
  font-size: 0.95rem;
  color: var(--color-text-light);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

.geo-areas-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}

.geo-area-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 1.25rem 0.75rem;
  background: var(--color-grey);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.geo-area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--btn-bg), var(--color-primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.geo-area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-soft);
  background: var(--color-white);
}

.geo-area-card:hover::before {
  transform: scaleX(1);
}

.geo-area-card--primary {
  background: var(--color-primary-light);
  border-color: var(--color-primary-soft);
}

.geo-area-card--primary::before {
  transform: scaleX(1);
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.geo-area-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-icon);
  border-radius: 50%;
  color: var(--color-white);
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(232, 114, 10, 0.25);
  transition: var(--transition);
}

.geo-area-card:hover .geo-area-icon {
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(232, 114, 10, 0.35);
}

.geo-area-card--primary .geo-area-icon {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

.geo-area-name {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.3;
}

.geo-area-label {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.geo-area-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  background: var(--color-white);
  border: 1px solid var(--color-primary-soft);
  border-radius: var(--radius-full);
  padding: 3px 10px;
}

.legal-content p,
.legal-content li {
  color: var(--color-text);
  margin-bottom: 1rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-dark);
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

/* ---------- Mobile Nav ---------- */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--color-white);
  z-index: 1001;
  padding: 30px;
  transition: right 0.4s ease;
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-dark);
  cursor: pointer;
  margin-bottom: 30px;
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-family: var(--font-primary);
  font-weight: 500;
  color: var(--color-dark);
  border-bottom: 1px solid var(--color-grey);
}

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

.mobile-nav .btn-primary-custom {
  margin-top: 20px;
  width: 100%;
  justify-content: center;
}

/* ---------- Hero Section ---------- */
.hero-section {
  padding-top: calc(var(--header-height) + 48px);
  padding-bottom: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(232, 220, 245, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse 70% 55% at 95% 15%, rgba(210, 228, 248, 0.5) 0%, transparent 50%),
    linear-gradient(180deg, #fdfcfa 0%, #faf8f5 45%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before,
.hero-section::after {
  display: none;
}

.hero-section .container {
  padding-bottom: 40px;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.hero-shape-1 {
  width: 420px;
  height: 420px;
  background: rgba(196, 181, 230, 0.22);
  top: -8%;
  right: 5%;
}

.hero-shape-2 {
  width: 340px;
  height: 340px;
  background: rgba(180, 210, 245, 0.28);
  bottom: 18%;
  left: -6%;
}

.hero-shape-3 {
  width: 260px;
  height: 260px;
  background: rgba(232, 210, 170, 0.15);
  top: 42%;
  right: 28%;
}

/* Left column */
.hero-content {
  position: relative;
  max-width: min(580px, 100%);
}

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(30, 58, 95, 0.08);
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 600;
  color: #2a4568;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.06);
}

.hero-trust-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px 8px;
  background: linear-gradient(135deg, #fff9eb 0%, #fff4d6 100%);
  border-radius: var(--radius-full);
  color: #c9a227;
  font-size: 0.62rem;
}

.hero-content h1 {
  font-size: clamp(2.15rem, 4.8vw, 4.25rem);
  margin-bottom: 1.25rem;
  font-weight: 800;
  color: #1a2e4a;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero-highlight {
  color: #1e4a7a;
  position: relative;
}

.hero-desc {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: #4a5f78;
  margin-bottom: 1.75rem;
  max-width: min(520px, 100%);
  line-height: 1.8;
}

.hero-desc strong {
  color: #1a2e4a;
  font-weight: 600;
}

.hero-trust-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 0 0 2rem;
  padding: 0;
}

.hero-trust-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(30, 58, 95, 0.08);
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 600;
  color: #2a4568;
  line-height: 1.3;
  transition: var(--transition);
}

.hero-trust-points li i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #e8f4fc 0%, #dceaf8 100%);
  color: #1e4a7a;
  border-radius: 50%;
  font-size: 0.55rem;
  flex-shrink: 0;
}

.hero-trust-points li:hover {
  border-color: rgba(30, 74, 122, 0.18);
  box-shadow: 0 4px 16px rgba(30, 58, 95, 0.06);
  transform: translateY(-1px);
}

.hero-actions {
  padding-top: 0;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 1rem;
}

.hero-btn-primary {
  box-shadow: var(--btn-shadow);
  padding: 14px 28px;
  font-size: 0.95rem;
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--btn-shadow-hover);
}

.hero-btn-call:hover,
.hero-btn-whatsapp:hover {
  transform: translateY(-2px);
  background: var(--btn-fill);
  border-color: var(--btn-border);
  color: var(--btn-text-on);
  box-shadow: var(--btn-shadow);
}

.hero-btn-whatsapp:hover i {
  color: var(--btn-text-on);
}

.hero-cta-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 0.8rem;
  font-weight: 500;
  color: #6b7c93;
}

.hero-cta-note i {
  color: #c9a227;
  font-size: 0.85rem;
}

/* Right column - premium doctor card */
.hero-visual {
  position: relative;
  max-width: min(500px, 100%);
  margin: 0 auto;
  padding: 12px clamp(8px, 2vw, 20px) 20px;
  animation: heroVisualFloat 7s ease-in-out infinite;
}

@keyframes heroVisualFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-visual-glow {
  position: absolute;
  inset: -12% -8% -6%;
  background:
    radial-gradient(ellipse 70% 55% at 20% 30%, rgba(242, 126, 1, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 70%, rgba(30, 74, 122, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(196, 181, 230, 0.2) 0%, transparent 55%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
  animation: heroGlowPulse 5s ease-in-out infinite alternate;
}

@keyframes heroGlowPulse {
  0% { opacity: 0.75; transform: scale(0.98); }
  100% { opacity: 1; transform: scale(1.02); }
}

.hero-visual-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.hero-orb-1 {
  width: 72px;
  height: 72px;
  top: 6%;
  right: -4%;
  background: linear-gradient(135deg, rgba(255, 212, 176, 0.55) 0%, rgba(242, 126, 1, 0.25) 100%);
  border: 2px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 24px rgba(242, 126, 1, 0.2);
  animation: heroOrbDrift 6s ease-in-out infinite;
}

.hero-orb-2 {
  width: 48px;
  height: 48px;
  bottom: 28%;
  left: -6%;
  background: linear-gradient(135deg, rgba(210, 228, 248, 0.7) 0%, rgba(30, 74, 122, 0.2) 100%);
  border: 2px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 6px 20px rgba(30, 74, 122, 0.15);
  animation: heroOrbDrift 8s ease-in-out infinite reverse;
}

@keyframes heroOrbDrift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(4px, -8px); }
}

.hero-floating-badge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 700;
  color: #1a2e4a;
  box-shadow:
    0 10px 32px rgba(30, 58, 95, 0.12),
    0 0 0 1px rgba(30, 58, 95, 0.05);
  white-space: nowrap;
  animation: heroBadgeFloat 4.5s ease-in-out infinite;
}

.hero-floating-badge i {
  font-size: 0.85rem;
}

.hero-floating-badge-gold {
  top: 2%;
  left: -2%;
  animation-delay: 0s;
}

.hero-floating-badge-gold i {
  color: #c9a227;
}

.hero-floating-badge-verified {
  top: 14%;
  right: -4%;
  animation-delay: 1.2s;
}

.hero-floating-badge-verified i {
  color: #1e4a7a;
}

@keyframes heroBadgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.hero-visual-card {
  position: relative;
  z-index: 2;
  background: #ffffff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(30, 58, 95, 0.14),
    0 8px 24px rgba(242, 126, 1, 0.08),
    0 0 0 1px rgba(30, 58, 95, 0.06);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.45s ease;
}

.hero-visual-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(
    135deg,
    rgba(242, 126, 1, 0.45) 0%,
    rgba(30, 74, 122, 0.25) 40%,
    rgba(196, 181, 230, 0.35) 70%,
    rgba(242, 126, 1, 0.3) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 4;
}

.hero-visual-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    0 32px 72px rgba(30, 58, 95, 0.16),
    0 12px 32px rgba(242, 126, 1, 0.12),
    0 0 0 1px rgba(30, 58, 95, 0.08);
}

.hero-card-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-primary) 45%, #c9a227 75%, var(--color-secondary) 100%);
  background-size: 200% 100%;
  animation: heroAccentShift 6s ease-in-out infinite;
}

@keyframes heroAccentShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-photo {
  position: relative;
  overflow: hidden;
}

.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 35%,
    transparent 55%,
    rgba(15, 31, 51, 0.06) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-photo img {
  width: 100%;
  min-height: 650px;
  max-height: 730px;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-visual-card:hover .hero-photo img {
  transform: scale(1.04);
}

.hero-photo-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 56px 20px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 31, 51, 0.55) 45%, rgba(15, 31, 51, 0.88) 100%);
}

.hero-photo-info {
  min-width: 0;
}

.hero-photo-name {
  margin: 0 0 2px;
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
}

.hero-photo-role {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.35;
}

.hero-photo-rating {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a2e4a;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(201, 162, 39, 0.2);
  animation: heroRatingPulse 3s ease-in-out infinite;
}

@keyframes heroRatingPulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14); }
  50% { box-shadow: 0 8px 24px rgba(201, 162, 39, 0.22); }
}

.hero-photo-rating i {
  color: #c9a227;
  font-size: 0.8rem;
}

.hero-quick-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(30, 58, 95, 0.07);
}

.hero-quick-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: #ffffff;
  transition: background 0.25s ease;
}

.hero-quick-stat:hover {
  background: #f8fafc;
}

.hero-quick-stat-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 0.85rem;
}

.hero-quick-stat-icon-navy {
  background: linear-gradient(135deg, #e8f0fa 0%, #d4e4f5 100%);
  color: #1e4a7a;
}

.hero-quick-stat-icon-lavender {
  background: linear-gradient(135deg, #f3eefb 0%, #e8dff5 100%);
  color: #6b5b95;
}

.hero-quick-stat-icon-blue {
  background: linear-gradient(135deg, #e8f4fc 0%, #d0e8f8 100%);
  color: #1e4a7a;
}

.hero-quick-stat-icon-green {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  color: #059669;
}

.hero-quick-stat strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 700;
  color: #1a2e4a;
  line-height: 1.25;
}

.hero-quick-stat > div span {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  color: #6b7c93;
  line-height: 1.3;
}

.hero-quick-stat-live strong {
  color: #047857;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-quick-stat-live strong::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
  animation: heroLivePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes heroLivePulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25); opacity: 1; }
  50% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.1); opacity: 0.85; }
}

/* Bottom trust strip */
.hero-bottom-strip {
  margin-top: 16px;
  padding: 0 0 8px;
}

.hero-bottom-strip-track {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(30, 58, 95, 0.07);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(30, 58, 95, 0.05);
}

.hero-bottom-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #ffffff;
  border: 1px solid rgba(30, 58, 95, 0.06);
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 600;
  color: #2a4568;
  white-space: nowrap;
  transition: var(--transition);
}

.hero-bottom-strip-item i {
  font-size: 0.82rem;
  color: #1e4a7a;
  opacity: 0.85;
}

.hero-bottom-strip-item:hover {
  border-color: rgba(201, 162, 39, 0.25);
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.06);
}

.hero-bottom-strip-item:nth-child(3) i {
  color: #c9a227;
}

.hero-bottom-strip-item:nth-child(5) i {
  color: #c9a227;
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual,
  .hero-visual-glow,
  .hero-orb,
  .hero-floating-badge,
  .hero-card-accent,
  .hero-photo-rating,
  .hero-quick-stat-live strong::before {
    animation: none;
  }

  .hero-photo img,
  .hero-trust-points li,
  .hero-btn-primary,
  .hero-btn-call,
  .hero-btn-whatsapp,
  .hero-visual-card {
    transition: none;
  }

  .hero-visual-card:hover {
    transform: none;
  }
}

/* Legacy hero classes - kept for other pages */
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 1.5rem;
  font-family: var(--font-primary);
}

.hero-image-wrapper {
  position: relative;
  padding: 8px 0 20px;
  overflow: clip;
}

.hero-image-wrapper::before {
  display: none;
}

.hero-image-wrapper img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-height: 550px;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: 28px;
  left: -16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.hero-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.hero-badge-top {
  top: 24px;
  right: -12px;
  bottom: auto;
  left: auto;
  animation: fadeSlideDown 1s ease 0.3s both;
}

.hero-badge i {
  font-size: 1.75rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-icon);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(242, 126, 1, 0.35);
}

.hero-badge-top i {
  background: linear-gradient(135deg, #f5c842 0%, #e8a317 100%);
  box-shadow: 0 4px 14px rgba(232, 163, 23, 0.35);
}

.hero-badge strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-dark);
}

.hero-badge span {
  font-size: 0.75rem;
  color: var(--color-text-light);
}

.hero-hours-pill {
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--color-secondary);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 600;
  font-family: var(--font-primary);
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(11, 77, 143, 0.35);
  white-space: nowrap;
  animation: fadeSlideDown 1s ease 0.6s both;
}

.hero-hours-pill i {
  font-size: 0.7rem;
  opacity: 0.9;
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  padding: 0 0 48px;
  background: transparent;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: var(--color-white);
  padding: 20px 24px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.trust-bar-item:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
}

.trust-bar-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--btn-bg), var(--color-accent));
  color: var(--btn-text-on);
  font-size: 1.1rem;
  box-shadow: var(--shadow-btn);
}

.trust-bar-item strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.3;
}

.trust-bar-item span {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

/* ---------- Page Banner ---------- */
.page-banner {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 60px;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-secondary-light) 100%);
  text-align: center;
  position: relative;
}

.page-banner h1 {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
}

.breadcrumb-nav a {
  color: var(--color-primary);
}

.breadcrumb-nav a:hover {
  text-decoration: underline;
}

.breadcrumb-nav span {
  color: var(--color-text-light);
}

/* ---------- About Preview ---------- */
.about-preview-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

#about-preview .position-relative {
  padding-bottom: 28px;
}

.about-preview-img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

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

.experience-badge strong {
  display: block;
  font-size: 2rem;
  font-family: var(--font-primary);
  color: var(--color-white);
}

.experience-badge span {
  font-size: 0.85rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 1.5rem 0;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.about-feature-item i {
  color: var(--color-primary);
  font-size: 1.1rem;
}

/* ---------- Why Choose Cards ---------- */
.why-card {
  background: var(--color-white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  height: 100%;
}

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

.why-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-secondary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.75rem;
  color: var(--color-primary);
  transition: var(--transition);
}

.why-card:hover .why-card-icon {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: var(--color-white);
}

.why-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* ---------- Service Cards ---------- */
.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.service-card-img {
  overflow: hidden;
  height: 200px;
}

.service-card-img a,
.blog-card-img a {
  display: block;
  height: 100%;
}

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

.service-card:hover .service-card-img img {
  transform: scale(1.08);
}

.service-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.service-card-body h4 a,
.blog-card-body h4 a {
  color: inherit;
  text-decoration: none;
}

.service-card:hover .service-card-body h4 a {
  color: var(--color-primary);
}

.service-card-body p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  flex: 1;
}

.service-card-body .read-more {
  color: var(--color-primary);
  font-weight: 500;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
}

.service-card-body .read-more:hover {
  gap: 10px;
}

/* ---------- Specialty Sections ---------- */
.specialty-section {
  position: relative;
  overflow: hidden;
}

.specialty-section.alt-bg {
  background: var(--color-grey);
}

.specialty-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.specialty-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.specialty-list {
  margin: 1.5rem 0;
}

.specialty-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
}

.specialty-list li i {
  color: var(--color-primary);
  margin-top: 4px;
}

/* ---------- Statistics Counter ---------- */
.stats-section {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary), var(--color-accent));
  padding: 70px 0;
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item i {
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
}

.stat-number {
  font-size: 2.75rem;
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--color-white);
  display: block;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 4px;
}

.stat-item-specialty .stat-main-icon {
  margin-bottom: 10px;
}

.stat-icon-cluster {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  min-height: 2.75rem;
}

.stat-mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.stat-mini-icon:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-3px);
}

.stat-item-specialty .stat-label {
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.45;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--color-white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  height: 100%;
}

.testimonial-stars {
  color: #fbbf24;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

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

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

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

.testimonial-author h5 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.swiper-pagination-bullet-active {
  background: var(--gradient-brand) !important;
  box-shadow: var(--shadow-btn);
}

/* ---------- FAQ Accordion ---------- */
.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-question i {
  color: var(--color-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--color-text-light);
}

/* ---------- Blog Cards ---------- */
.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.blog-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

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

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

.blog-card-date {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #1565b8 45%, var(--color-primary) 100%);
  color: var(--color-white);
  padding: 7px 15px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(11, 77, 143, 0.35), 0 2px 8px rgba(242, 126, 1, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-category {
  font-size: 0.75rem;
  color: var(--btn-text);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: inline-block;
  padding: 4px 10px;
  background: linear-gradient(135deg, rgba(242, 126, 1, 0.1), rgba(11, 77, 143, 0.06));
  border-radius: var(--radius-full);
  border: 1px solid rgba(242, 126, 1, 0.2);
}

.blog-card-body h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.blog-card:hover .blog-card-body h4,
.blog-card:hover .blog-card-body h4 a {
  color: var(--color-primary);
}

.blog-card-body p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  flex: 1;
}

.blog-card-body .read-more {
  color: var(--color-primary);
  font-weight: 500;
  font-size: 0.9rem;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 80px 52px;
  border-radius: calc(var(--radius-xl) + 4px);
  isolation: isolate;
  border: 2px solid transparent;
  background:
    radial-gradient(ellipse 85% 75% at 10% 85%, rgba(242, 126, 1, 0.28) 0%, transparent 52%),
    radial-gradient(ellipse 70% 60% at 90% 12%, rgba(126, 179, 232, 0.22) 0%, transparent 48%),
    radial-gradient(ellipse 50% 45% at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 58%),
    linear-gradient(
      135deg,
      #063a6e 0%,
      #0b4d8f 28%,
      #1565b8 55%,
      #1a6fc4 78%,
      #0e5a9e 100%
    );
  background-size: 140% 140%;
  animation: ctaBannerGradient 16s ease-in-out infinite alternate;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18),
    inset 0 2px 0 rgba(255, 255, 255, 0.28),
    inset 0 -28px 56px rgba(4, 42, 79, 0.35),
    0 32px 80px rgba(11, 77, 143, 0.35),
    0 0 48px rgba(21, 101, 184, 0.2);
}

.cta-banner-shine,
.cta-banner-mesh,
.cta-banner-spark {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.cta-banner-shine {
  inset: -40% -60%;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.14) 48%,
    rgba(255, 255, 255, 0.28) 50%,
    rgba(255, 255, 255, 0.14) 52%,
    transparent 62%
  );
  animation: ctaBannerShine 7s ease-in-out infinite;
}

.cta-banner-mesh {
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(rgba(255, 255, 255, 0.45) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 85%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 85%);
}

.cta-banner-spark::before,
.cta-banner-spark::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.cta-banner-spark::before {
  top: 18%;
  left: 12%;
  width: 10px;
  height: 10px;
  background: #e8f4ff;
  box-shadow:
    0 0 20px 6px rgba(168, 212, 245, 0.5),
    120px 80px 0 0 rgba(255, 255, 255, 0.3),
    280px 40px 0 0 rgba(242, 126, 1, 0.25);
  animation: ctaBannerSpark 5s ease-in-out infinite alternate;
}

.cta-banner-spark::after {
  bottom: 22%;
  right: 14%;
  width: 8px;
  height: 8px;
  background: #e8f4ff;
  box-shadow:
    0 0 18px 5px rgba(180, 220, 255, 0.45),
    -100px -60px 0 0 rgba(255, 255, 255, 0.3);
  animation: ctaBannerSpark 6s ease-in-out infinite alternate-reverse;
}

@keyframes ctaBannerShine {
  0%, 100% {
    transform: translateX(-12%) rotate(0deg);
    opacity: 0.5;
  }
  50% {
    transform: translateX(12%) rotate(0deg);
    opacity: 1;
  }
}

@keyframes ctaBannerSpark {
  0% {
    opacity: 0.6;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1.15);
  }
}

@keyframes ctaBannerGradient {
  0% {
    background-position: 0% 35%;
  }
  100% {
    background-position: 100% 65%;
  }
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -28%;
  right: -6%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28) 0%, transparent 62%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: ctaBannerGlow 8s ease-in-out infinite alternate;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -48%;
  left: -10%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(242, 126, 1, 0.22) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: ctaBannerGlow 10s ease-in-out infinite alternate-reverse;
}

@keyframes ctaBannerGlow {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.cta-banner-eyebrow,
.cta-banner h2,
.cta-banner p,
.cta-banner .btn-white-custom,
.cta-banner .cta-banner-trust {
  position: relative;
  z-index: 2;
}

.cta-banner-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 18px;
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22) 0%, rgba(126, 179, 232, 0.18) 100%);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius-full);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta-banner-eyebrow i {
  color: #ffb87a;
  font-size: 0.85rem;
}

.cta-banner h2 {
  font-size: clamp(1.85rem, 2.2vw + 1rem, 2.65rem);
  margin-bottom: 1rem;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.025em;
  line-height: 1.2;
  background: linear-gradient(90deg, #ffffff 0%, #fff4e0 45%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 3px 20px rgba(0, 0, 0, 0.25));
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.97);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 0;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
}

.cta-banner .btn-white-custom {
  margin-top: 2rem;
  padding: 18px 42px;
  font-size: 1.05rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  color: #0b4d8f;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.35),
    0 0 28px rgba(255, 255, 255, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  animation: ctaBtnPulse 3s ease-in-out infinite;
}

@keyframes ctaBtnPulse {
  0%, 100% {
    box-shadow:
      0 14px 40px rgba(0, 0, 0, 0.22),
      0 0 0 0 rgba(255, 255, 255, 0.35),
      inset 0 2px 0 rgba(255, 255, 255, 0.8);
  }
  50% {
    box-shadow:
      0 14px 40px rgba(0, 0, 0, 0.22),
      0 0 0 12px rgba(255, 255, 255, 0),
      inset 0 2px 0 rgba(255, 255, 255, 0.8);
  }
}

.cta-banner .btn-white-custom:hover {
  animation: none;
  background: linear-gradient(135deg, #fff8ef 0%, #ffcc99 55%, #ffb87a 100%);
  color: #5c2e00;
  border-color: rgba(255, 255, 255, 0.85);
  transform: translateY(-5px) scale(1.04);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.28),
    0 0 40px rgba(242, 126, 1, 0.35);
}

.cta-banner-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  margin-top: 1.85rem;
  padding: 0;
  list-style: none;
}

.cta-banner-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22) 0%, rgba(126, 179, 232, 0.16) 100%);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius-full);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
  transition: transform 0.25s ease, background 0.25s ease;
}

.cta-banner-trust li:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.32) 0%, rgba(168, 212, 245, 0.24) 100%);
}

.cta-banner-trust li i {
  color: #ffb87a;
  font-size: 0.78rem;
  filter: drop-shadow(0 0 8px rgba(255, 184, 122, 0.5));
}

@media (prefers-reduced-motion: reduce) {
  .cta-banner {
    animation: none;
    background-size: 100% 100%;
  }

  .cta-banner::before,
  .cta-banner::after,
  .cta-banner-shine,
  .cta-banner-spark::before,
  .cta-banner-spark::after {
    animation: none;
  }

  .cta-banner .btn-white-custom {
    animation: none;
  }
}

/* ---------- Google Map ---------- */
.map-embed-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #e8eaed;
}

.map-embed-wrap iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

.map-place-card {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  width: min(340px, calc(100% - 32px));
  padding: 14px 16px;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2), 0 0 1px rgba(0, 0, 0, 0.12);
  font-family: Roboto, Arial, sans-serif;
}

.map-place-card h3 {
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0 0 4px;
  line-height: 1.3;
}

.map-place-card .map-place-sub {
  font-size: 0.78rem;
  color: #5f6368;
  margin-bottom: 6px;
}

.map-place-card .map-place-address {
  font-size: 0.82rem;
  color: #5f6368;
  line-height: 1.45;
  margin: 0 0 8px;
}

.map-place-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.82rem;
  margin-bottom: 10px;
}

.map-place-rating .map-rating-score {
  color: #1a1a1a;
  font-weight: 500;
}

.map-place-rating .map-rating-stars {
  color: #f4b400;
  letter-spacing: -1px;
}

.map-place-rating .map-rating-count {
  color: #1a73e8;
}

.map-place-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid #e8eaed;
}

.map-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #1a73e8;
  text-decoration: none;
}

.map-directions-btn:hover {
  text-decoration: underline;
  color: #174ea6;
}

.map-directions-btn i {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1a73e8;
  color: #fff;
  border-radius: 50%;
  font-size: 0.65rem;
}

.map-view-larger {
  font-size: 0.78rem;
  color: #1a73e8;
  text-decoration: none;
}

.map-view-larger:hover {
  text-decoration: underline;
}

/* Legacy: bare iframe in map-section (if any page omits map-embed-wrap) */
.map-section > .container > div:not(.map-embed-wrap) iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 70px;
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-title {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.footer-contact i {
  color: var(--color-white);
  background: var(--gradient-icon);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-top: 2px;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(242, 126, 1, 0.3);
}

.footer-map iframe {
  width: 100%;
  height: 150px;
  border: 0;
  border-radius: var(--radius-sm);
}

.local-seo-section p {
  color: var(--color-text-muted);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.local-seo-section p:last-child {
  margin-bottom: 0;
}

.local-seo-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gradient-brand);
  color: var(--btn-text-on);
  border-color: var(--btn-border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-btn);
}

.footer-social a.social-whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

.footer-social a.social-whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  color: #fff;
}

/* Follow Us on light sidebar (contact page, etc.) */
.blog-sidebar .footer-social a {
  color: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(15, 31, 51, 0.12);
}

.blog-sidebar .footer-social a:nth-child(1) {
  background: #1877f2;
}

.blog-sidebar .footer-social a:nth-child(2) {
  background: #e4405f;
}

.blog-sidebar .footer-social a:nth-child(3) {
  background: #ff0000;
}

.blog-sidebar .footer-social a:nth-child(4) {
  background: #4285f4;
}

.blog-sidebar .footer-social a.social-whatsapp,
.blog-sidebar .footer-social a:nth-child(5) {
  background: #25d366;
}

.blog-sidebar .footer-social a:hover {
  filter: brightness(1.08);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(15, 31, 51, 0.18);
  color: #fff;
}

.blog-sidebar .footer-social a.social-whatsapp:hover {
  background: #1ebe5d;
  filter: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  margin-top: 50px;
}

.footer-bottom p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.footer-developed {
  margin-top: 8px !important;
  font-size: 0.8rem !important;
  color: rgba(255, 255, 255, 0.55);
}

.footer-developed a {
  color: rgba(255, 204, 153, 0.9);
  font-weight: 600;
  text-decoration: none;
}

.footer-developed a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

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

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

/* ---------- Floating Actions ---------- */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column-reverse;
  gap: 14px;
  align-items: flex-end;
}

.floating-action-btn {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 2.5px solid #fff;
  isolation: isolate;
}

.floating-action-btn::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.65;
  filter: blur(10px);
  transition: opacity 0.25s ease;
}

.floating-action-btn::after {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--color-dark);
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.floating-action-btn:hover {
  transform: scale(1.06);
}

.floating-action-btn:hover::before {
  opacity: 0.9;
}

.floating-action-btn:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* Book - peach circle, brown icon (top) */
.floating-actions .floating-book {
  background: #f8c9a6;
  color: #7a4218;
  font-size: 1.2rem;
  box-shadow: 0 4px 20px rgba(248, 180, 130, 0.45);
}

.floating-actions .floating-book::before {
  background: rgba(248, 180, 130, 0.75);
}

.floating-actions .floating-book:hover {
  color: #5c3010;
  box-shadow: 0 6px 24px rgba(248, 180, 130, 0.55);
}

/* WhatsApp - green circle, white icon (middle) */
.floating-actions .floating-whatsapp {
  position: static;
  background: #2ecc71;
  color: #fff;
  font-size: 1.65rem;
  box-shadow: 0 4px 20px rgba(46, 204, 113, 0.45);
}

.floating-actions .floating-whatsapp::before {
  background: rgba(46, 204, 113, 0.7);
}

.floating-actions .floating-whatsapp:hover {
  color: #fff;
  box-shadow: 0 6px 24px rgba(46, 204, 113, 0.55);
}

/* Call - sky blue circle, navy icon (bottom) */
.floating-actions .floating-call {
  background: #b8e4f8;
  color: #1a5a8f;
  font-size: 1.2rem;
  box-shadow: 0 4px 20px rgba(100, 180, 230, 0.45);
}

.floating-actions .floating-call::before {
  background: rgba(120, 195, 235, 0.75);
}

.floating-actions .floating-call:hover {
  color: #0d4570;
  box-shadow: 0 6px 24px rgba(100, 180, 230, 0.55);
}

/* Legacy standalone floats (other pages until migrated) */
.floating-whatsapp:not(.floating-action-btn) {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.floating-whatsapp:not(.floating-action-btn):hover {
  transform: scale(1.1);
  color: var(--color-white);
}

.floating-call:not(.floating-action-btn) {
  position: fixed;
  bottom: 170px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--gradient-icon-alt);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  z-index: 999;
  box-shadow: 0 6px 20px rgba(11, 77, 143, 0.4);
  transition: var(--transition);
}

.floating-call:not(.floating-action-btn):hover {
  background: linear-gradient(135deg, #094078 0%, #0b4d8f 50%, #1a7fd4 100%);
  transform: scale(1.1);
  color: var(--color-white);
}

.sticky-appointment {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: block;
}

.sticky-appointment .btn-primary-custom {
  padding: 12px 24px;
  font-size: 0.85rem;
  box-shadow: var(--btn-shadow-hover);
  white-space: nowrap;
}

.scroll-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
}

/* ---------- About Page ---------- */
.profile-card {
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(255, 204, 153, 0.2) 0%, transparent 55%),
    linear-gradient(165deg, #ffffff 0%, #fff9f3 42%, #f2f7fc 100%);
  border-radius: var(--radius-xl);
  padding: 0 0 32px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    var(--shadow-lg);
  text-align: center;
  border: 1px solid rgba(255, 204, 153, 0.35);
  position: sticky;
  top: calc(var(--header-height) + 24px);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  max-width: 100%;
}

.profile-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(15, 31, 51, 0.14);
}

.profile-card-accent {
  height: 5px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-primary), var(--color-accent));
}

.profile-photo-ring {
  position: relative;
  width: 196px;
  margin: 28px auto 22px;
  padding: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 50%, var(--color-secondary) 100%);
  box-shadow: 0 12px 32px rgba(232, 114, 10, 0.22);
}

.profile-photo-wrap {
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--color-white);
  background: var(--color-white);
}

.profile-photo-wrap img,
.profile-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.profile-card:hover .profile-photo-wrap img {
  transform: scale(1.04);
}

.profile-exp-badge {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--btn-fill);
  border: 2px solid var(--color-white);
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--btn-text-on);
  white-space: nowrap;
  box-shadow: var(--btn-shadow);
}

.profile-exp-badge i {
  font-size: 0.68rem;
  color: var(--color-secondary);
}

.profile-card-body {
  padding: 24px 28px 0;
}

.profile-card h2 {
  font-size: 1.45rem;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}

.profile-role {
  font-family: var(--font-primary);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 16px;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 22px;
}

.profile-tag {
  display: inline-block;
  padding: 7px 14px 7px 26px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-secondary);
  background: linear-gradient(135deg, #ffffff 0%, #fff4e8 100%);
  border: 1.5px solid #ffcc99;
  border-radius: var(--radius-full);
  line-height: 1.3;
  transition: var(--transition);
  box-shadow: 0 3px 10px rgba(245, 140, 50, 0.12);
  position: relative;
}

.profile-tag::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.profile-tag:hover {
  background: linear-gradient(135deg, #ffcc99 0%, #ffb87a 100%);
  border-color: #f5a855;
  color: var(--btn-text-on);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(245, 140, 50, 0.28);
}

.profile-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  text-align: left;
}

.profile-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  margin-bottom: 6px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  transition: var(--transition);
}

.profile-contact-list li:hover {
  background: rgba(255, 204, 153, 0.22);
}

.profile-contact-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--color-secondary) 0%, #1a6bb5 55%, #2d8fd4 100%);
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.8rem;
  box-shadow: 0 4px 14px rgba(11, 77, 143, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.profile-contact-list li:hover .profile-contact-icon {
  transform: scale(1.08);
  background: linear-gradient(145deg, var(--color-primary) 0%, #e86f00 45%, var(--color-secondary) 100%);
  box-shadow: 0 6px 20px rgba(242, 126, 1, 0.35);
}

.profile-contact-list a {
  color: var(--color-text);
  font-weight: 500;
}

.profile-contact-list a:hover {
  color: var(--color-primary);
}

.profile-location {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  margin-bottom: 20px;
  text-align: left;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--color-dark-soft);
  background: linear-gradient(135deg, #eef5fc 0%, #f8fbff 100%);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-primary);
}

.profile-location i {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-primary);
  font-size: 0.95rem;
}

.profile-book-btn {
  margin-top: 4px;
  font-size: 0.95rem;
  padding: 14px 24px;
  box-shadow: var(--btn-shadow);
  transition: var(--transition);
}

.profile-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--btn-shadow-hover);
}

.qualification-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}

.qualification-item:last-child {
  border-bottom: none;
}

.qualification-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #1a6bb5 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(11, 77, 143, 0.28);
}

.experience-timeline {
  position: relative;
  margin-top: 8px;
  padding: 28px 24px 12px 50px;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(11, 77, 143, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 75% 55% at 0% 100%, rgba(255, 204, 153, 0.28) 0%, transparent 52%),
    linear-gradient(160deg, #f8fbff 0%, #fffcf8 100%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(11, 77, 143, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 14px 40px rgba(11, 77, 143, 0.08);
}

.experience-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 36px;
  bottom: 28px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--color-primary) 0%, #ffcc99 45%, var(--color-secondary) 100%);
  opacity: 0.55;
}

.timeline-item {
  position: relative;
  padding: 0;
  padding-bottom: 0;
  margin-bottom: 16px;
  border-left: none;
  background: linear-gradient(135deg, #ffffff 0%, #fff9f4 100%);
  border: 1.5px solid rgba(255, 204, 153, 0.55);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  box-shadow: 0 4px 16px rgba(11, 77, 143, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 24px;
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 2px rgba(242, 126, 1, 0.35);
  z-index: 1;
}

.timeline-item:hover {
  transform: translateX(4px);
  border-color: #ffcc99;
  box-shadow: 0 10px 28px rgba(245, 140, 50, 0.18);
}

.timeline-item:nth-child(even) {
  background: linear-gradient(135deg, #ffffff 0%, #f2f8fd 100%);
  border-color: rgba(11, 77, 143, 0.14);
}

.timeline-item:nth-child(even)::before {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  box-shadow: 0 0 0 2px rgba(11, 77, 143, 0.22);
}

.timeline-item h5 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--color-secondary);
  letter-spacing: -0.02em;
}

.timeline-item span {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--btn-text-on);
  font-weight: 600;
  padding: 5px 12px;
  background: linear-gradient(135deg, #fff0e0 0%, #ffe4c4 100%);
  border: 1px solid #ffcc99;
  border-radius: var(--radius-full);
  line-height: 1.4;
}

.timeline-item p {
  font-size: 0.88rem;
  color: var(--color-text);
  margin-top: 12px;
  margin-bottom: 0;
  line-height: 1.65;
}

/* ---------- Recognition (Awards & Publications) ---------- */
.recognition-section {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255, 204, 153, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, #fafbfd 0%, #ffffff 100%);
}

.recognition-panel {
  height: 100%;
  padding: 28px;
  background:
    radial-gradient(ellipse 85% 65% at 0% 0%, rgba(255, 204, 153, 0.3) 0%, transparent 58%),
    radial-gradient(ellipse 75% 55% at 100% 100%, rgba(11, 77, 143, 0.08) 0%, transparent 52%),
    linear-gradient(160deg, #fffcf8 0%, #f6faff 100%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 204, 153, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 14px 40px rgba(11, 77, 143, 0.08);
}

.recognition-panel--publications {
  background:
    radial-gradient(ellipse 85% 65% at 100% 0%, rgba(11, 77, 143, 0.1) 0%, transparent 58%),
    radial-gradient(ellipse 75% 55% at 0% 100%, rgba(255, 204, 153, 0.28) 0%, transparent 52%),
    linear-gradient(160deg, #f6faff 0%, #fffcf8 100%);
  border-color: rgba(11, 77, 143, 0.14);
}

.recognition-panel-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 1.15rem;
  color: var(--color-secondary);
}

.recognition-panel-title--spaced {
  margin-top: 28px;
}

.recognition-panel-title-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--color-secondary) 0%, #1a6bb5 100%);
  color: #ffffff;
  font-size: 0.9rem;
  box-shadow: 0 4px 14px rgba(11, 77, 143, 0.28);
}

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

.recognition-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text);
  background: linear-gradient(135deg, #ffffff 0%, #fff9f4 100%);
  border: 1.5px solid rgba(255, 204, 153, 0.5);
  border-radius: var(--radius-md);
  box-shadow: 0 3px 12px rgba(11, 77, 143, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.recognition-list li:last-child {
  margin-bottom: 0;
}

.recognition-list li:hover {
  transform: translateX(4px);
  border-color: #ffcc99;
  box-shadow: 0 8px 22px rgba(245, 140, 50, 0.16);
}

.recognition-list li:nth-child(even) {
  background: linear-gradient(135deg, #ffffff 0%, #f2f8fd 100%);
  border-color: rgba(11, 77, 143, 0.12);
}

.recognition-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--color-primary) 0%, #e86f00 50%, var(--color-secondary) 100%);
  color: #ffffff;
  font-size: 0.82rem;
  box-shadow: 0 4px 12px rgba(242, 126, 1, 0.28);
  margin-top: 2px;
}

.recognition-list--publications li {
  padding: 16px 18px;
}

.recognition-list--publications strong {
  display: block;
  color: var(--color-secondary);
  font-size: 0.92rem;
  margin-bottom: 6px;
  line-height: 1.45;
}

.recognition-list--publications li span:last-child {
  color: var(--color-text-light);
  font-size: 0.84rem;
}

/* ---------- Philosophy of Care ---------- */
.philosophy-section {
  background:
    radial-gradient(ellipse 80% 55% at 0% 50%, rgba(255, 204, 153, 0.18) 0%, transparent 58%),
    radial-gradient(ellipse 70% 50% at 100% 30%, rgba(11, 77, 143, 0.08) 0%, transparent 55%),
    linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.philosophy-content {
  height: 100%;
  padding: 32px;
  background:
    radial-gradient(ellipse 90% 70% at 0% 0%, rgba(11, 77, 143, 0.08) 0%, transparent 55%),
    linear-gradient(160deg, #ffffff 0%, #f8fbff 100%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(11, 77, 143, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 14px 40px rgba(11, 77, 143, 0.07);
}

.philosophy-content p {
  color: var(--color-text);
  line-height: 1.75;
}

.philosophy-content p + p {
  margin-top: 1rem;
}

.philosophy-cards-panel {
  height: 100%;
  padding: 24px;
  background:
    radial-gradient(ellipse 85% 65% at 100% 0%, rgba(255, 204, 153, 0.32) 0%, transparent 58%),
    linear-gradient(160deg, #fffcf8 0%, #f6faff 100%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 204, 153, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 14px 40px rgba(11, 77, 143, 0.08);
}

.philosophy-section .philosophy-card {
  padding: 28px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #fff9f4 100%);
  border: 1.5px solid rgba(255, 204, 153, 0.55);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 16px rgba(11, 77, 143, 0.06);
}

.philosophy-cards-panel .col-6:nth-child(even) .philosophy-card {
  background: linear-gradient(135deg, #ffffff 0%, #f2f8fd 100%);
  border-color: rgba(11, 77, 143, 0.14);
}

.philosophy-section .philosophy-card:hover {
  transform: translateY(-6px);
  border-color: #ffcc99;
  box-shadow: 0 12px 28px rgba(245, 140, 50, 0.2);
}

.philosophy-section .philosophy-card .why-card-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  font-size: 1.5rem;
  background: linear-gradient(145deg, var(--color-secondary) 0%, #1a6bb5 100%);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(11, 77, 143, 0.28);
}

.philosophy-section .philosophy-card:hover .why-card-icon {
  background: linear-gradient(145deg, var(--color-primary) 0%, #e86f00 45%, var(--color-secondary) 100%);
  box-shadow: 0 8px 22px rgba(242, 126, 1, 0.32);
  transform: scale(1.06);
}

.philosophy-section .philosophy-card h4 {
  font-size: 1.05rem;
  color: var(--color-secondary);
  margin-bottom: 8px;
}

.philosophy-section .philosophy-card p {
  font-size: 0.84rem;
  color: var(--color-text);
  line-height: 1.5;
}

/* ---------- Hospital Association ---------- */
.hospital-association-section {
  background:
    radial-gradient(ellipse 75% 55% at 100% 40%, rgba(11, 77, 143, 0.1) 0%, transparent 58%),
    radial-gradient(ellipse 80% 50% at 0% 60%, rgba(255, 204, 153, 0.2) 0%, transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.hospital-association-content {
  height: 100%;
  padding: 32px;
  background:
    radial-gradient(ellipse 90% 70% at 0% 0%, rgba(255, 204, 153, 0.22) 0%, transparent 55%),
    linear-gradient(160deg, #fffcf8 0%, #f8fbff 100%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 204, 153, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 14px 40px rgba(11, 77, 143, 0.08);
}

.hospital-association-content p {
  line-height: 1.75;
  color: var(--color-text);
}

.hospital-association-content strong {
  color: var(--color-secondary);
}

.hospital-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 22px;
}

.hospital-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--btn-text-on);
  background: linear-gradient(135deg, #fff0e0 0%, #ffe4c4 100%);
  border: 1px solid #ffcc99;
  border-radius: var(--radius-full);
  box-shadow: 0 3px 10px rgba(245, 140, 50, 0.14);
}

.hospital-badge i {
  color: var(--color-primary);
  font-size: 0.85rem;
}

.hospital-badge--medicover {
  color: var(--color-secondary);
  background: linear-gradient(135deg, #eef5fc 0%, #e3effa 100%);
  border-color: rgba(11, 77, 143, 0.2);
}

.hospital-badge--medicover i {
  color: var(--color-secondary);
}

.hospital-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hospital-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--color-text);
  background: linear-gradient(135deg, #ffffff 0%, #fff9f4 100%);
  border: 1.5px solid rgba(255, 204, 153, 0.5);
  border-radius: var(--radius-md);
  box-shadow: 0 3px 12px rgba(11, 77, 143, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.hospital-features-list li:last-child {
  margin-bottom: 0;
}

.hospital-features-list li:hover {
  transform: translateX(4px);
  border-color: #ffcc99;
  box-shadow: 0 8px 22px rgba(245, 140, 50, 0.16);
}

.hospital-features-list li:nth-child(even) {
  background: linear-gradient(135deg, #ffffff 0%, #f2f8fd 100%);
  border-color: rgba(11, 77, 143, 0.12);
}

.hospital-feature-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--color-primary) 0%, #e86f00 50%, var(--color-secondary) 100%);
  color: #ffffff;
  font-size: 0.72rem;
  box-shadow: 0 4px 12px rgba(242, 126, 1, 0.28);
  margin-top: 1px;
}

.hospital-association-visual {
  position: relative;
  height: 100%;
  min-height: 380px;
  padding: 24px;
  background:
    radial-gradient(ellipse 85% 65% at 100% 0%, rgba(11, 77, 143, 0.12) 0%, transparent 58%),
    linear-gradient(160deg, #f6faff 0%, #fffcf8 100%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(11, 77, 143, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 14px 40px rgba(11, 77, 143, 0.08);
}

.hospital-visual-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 10px;
  background: linear-gradient(145deg, rgba(242, 126, 1, 0.16), rgba(11, 77, 143, 0.1));
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.hospital-visual-frame::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 18px;
  width: 56px;
  height: 56px;
  border-top: 4px solid var(--color-primary);
  border-left: 4px solid var(--color-primary);
  border-radius: 14px 0 0 0;
  z-index: 2;
  pointer-events: none;
}

.hospital-visual-frame::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: calc(var(--radius-lg) - 4px);
  pointer-events: none;
  z-index: 2;
}

.hospital-visual-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 6px);
  transition: transform 0.5s ease;
}

.hospital-association-visual:hover .hospital-visual-frame img {
  transform: scale(1.03);
}

.hospital-visual-float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-secondary);
  background: rgba(255, 255, 255, 0.95);
  border: 1.5px solid rgba(255, 204, 153, 0.65);
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px rgba(11, 77, 143, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hospital-visual-float i {
  color: var(--color-primary);
}

.hospital-visual-float--care {
  top: 36px;
  right: 12px;
}

.hospital-visual-float--surgery {
  bottom: 36px;
  left: 12px;
}

.expertise-tags-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 28px;
  background:
    radial-gradient(ellipse 85% 65% at 0% 0%, rgba(255, 204, 153, 0.35) 0%, transparent 58%),
    radial-gradient(ellipse 75% 55% at 100% 100%, rgba(11, 77, 143, 0.1) 0%, transparent 52%),
    linear-gradient(160deg, #fffcf8 0%, #f6faff 100%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 204, 153, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 14px 40px rgba(11, 77, 143, 0.08);
}

.expertise-tag {
  display: inline-block;
  position: relative;
  padding: 10px 20px 10px 38px;
  background: linear-gradient(135deg, #ffffff 0%, #fff6ec 100%);
  color: var(--color-secondary);
  border: 1.5px solid rgba(255, 204, 153, 0.85);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
  box-shadow: 0 3px 12px rgba(245, 140, 50, 0.14);
}

.expertise-tag::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  box-shadow: 0 0 0 3px rgba(242, 126, 1, 0.18);
}

.expertise-tag:nth-child(even) {
  background: linear-gradient(135deg, #ffffff 0%, #eef5fc 100%);
  border-color: rgba(11, 77, 143, 0.18);
}

.expertise-tag:nth-child(even)::before {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  box-shadow: 0 0 0 3px rgba(11, 77, 143, 0.14);
}

.expertise-tag:hover {
  background: linear-gradient(135deg, #ffcc99 0%, #ffb87a 100%);
  border-color: #f5a855;
  color: var(--btn-text-on);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 22px rgba(245, 140, 50, 0.32);
}

.expertise-tag:hover::before {
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(112, 66, 20, 0.2);
}

/* ---------- Service Details ---------- */
.service-detail-hero {
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 60px;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-secondary-light));
}

.service-detail-content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-primary-light);
}

.service-detail-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 1rem;
}

.service-detail-content ul li {
  padding: 4px 0;
  font-size: 0.95rem;
  color: var(--color-text);
}

.benefit-card {
  background: var(--color-white);
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  height: 100%;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.benefit-card i {
  font-size: 1.5rem;
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: var(--gradient-icon-vivid);
  border-radius: 50%;
  margin-bottom: 14px;
  box-shadow: 0 6px 18px rgba(242, 126, 1, 0.32);
}

.benefit-card h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0;
}

/* ---------- Blog Page ---------- */
.blog-featured {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  background: var(--color-white);
}

.blog-featured-img {
  flex: 0 0 50%;
  max-height: 400px;
  overflow: hidden;
}

.blog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-sidebar {
  background: var(--color-grey);
  padding: 30px;
  border-radius: var(--radius-lg);
}

.blog-search {
  position: relative;
  margin-bottom: 30px;
}

.blog-search input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border: 1px solid var(--color-border);
  border-radius: 50px;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.blog-search input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

.blog-search i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-light);
}

.category-list li {
  margin-bottom: 8px;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: var(--transition);
}

.category-list a:hover,
.category-list a.active {
  background: linear-gradient(135deg, rgba(242, 126, 1, 0.12), rgba(11, 77, 143, 0.08));
  color: var(--btn-text);
  border: 1px solid rgba(242, 126, 1, 0.2);
}

.blog-sidebar-title {
  color: var(--color-secondary);
  font-weight: 600;
}

.recent-posts-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.recent-posts-list li + li {
  border-top: 1px dashed var(--color-border);
  margin-top: 14px;
  padding-top: 14px;
}

.recent-post-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--color-text);
  text-decoration: none;
  transition: var(--transition);
}

.recent-post-item:hover {
  color: var(--color-secondary);
}

.recent-post-item:hover .recent-post-title {
  color: var(--color-secondary);
}

.recent-post-thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--color-border);
}

.recent-post-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.recent-post-title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--color-heading);
}

.recent-post-date {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.pagination-custom {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 40px;
}

.pagination-custom a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.pagination-custom a:hover,
.pagination-custom a.active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

/* ---------- Blog Details ---------- */
.blog-detail-header {
  padding-top: calc(var(--header-height) + 32px);
  padding-bottom: 0;
  background: linear-gradient(180deg, #fdfcfa 0%, #ffffff 48%, #f6f8fb 100%);
  position: relative;
  overflow: hidden;
}

.blog-detail-header::before,
.blog-detail-header::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.blog-detail-header::before {
  width: 360px;
  height: 360px;
  top: -120px;
  right: -100px;
  background: radial-gradient(circle, rgba(242, 126, 1, 0.11) 0%, transparent 68%);
}

.blog-detail-header::after {
  width: 280px;
  height: 280px;
  bottom: 20%;
  left: -100px;
  background: radial-gradient(circle, rgba(11, 77, 143, 0.09) 0%, transparent 70%);
}

.blog-detail-header > .container {
  position: relative;
  z-index: 1;
}

.blog-hero-banner {
  position: relative;
  margin-bottom: 2rem;
  padding: clamp(24px, 4vw, 36px) clamp(20px, 4vw, 32px);
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 247, 240, 0.96) 50%, rgba(232, 242, 251, 0.94) 100%);
  border: 1px solid rgba(242, 126, 1, 0.14);
  box-shadow:
    0 20px 50px rgba(30, 58, 95, 0.07),
    0 4px 16px rgba(242, 126, 1, 0.06);
}

.blog-hero-banner-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0b4d8f 0%, #f27e01 45%, #ffb87a 75%, #0b4d8f 100%);
  background-size: 200% 100%;
  animation: blogHeroAccent 8s ease-in-out infinite;
}

@keyframes blogHeroAccent {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.blog-hero-banner-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  top: -110px;
  right: -50px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 126, 1, 0.13) 0%, transparent 68%);
  pointer-events: none;
}

.blog-hero-banner-glow::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  bottom: -160px;
  left: -300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 77, 143, 0.1) 0%, transparent 70%);
}

.blog-hero-banner-inner {
  position: relative;
  z-index: 1;
}

.blog-detail-header .breadcrumb-nav {
  justify-content: flex-start;
  margin-bottom: 1.15rem;
  padding: 8px 16px;
  width: fit-content;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  flex-wrap: wrap;
}

.blog-detail-header .blog-card-category,
.blog-hero-category {
  margin-bottom: 1rem;
  padding: 7px 16px;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), var(--color-primary-light));
  border: 1px solid rgba(242, 126, 1, 0.28);
  box-shadow: 0 4px 12px rgba(242, 126, 1, 0.1);
}

.blog-detail-header h1 {
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
  line-height: 1.22;
  color: var(--color-dark);
  margin-bottom: 1.35rem;
  max-width: 920px;
  letter-spacing: -0.02em;
}

.blog-detail-header .blog-detail-meta {
  gap: 10px;
  margin: 0;
  padding: 0;
}

.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 1rem 0 2rem;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.blog-detail-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-detail-header .blog-detail-meta span {
  padding: 8px 16px 8px 10px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xs);
  font-weight: 500;
  color: var(--color-text);
  transition: var(--transition);
}

.blog-detail-header .blog-detail-meta span:hover {
  border-color: rgba(242, 126, 1, 0.35);
  box-shadow: var(--shadow-sm);
}

.blog-detail-header .blog-detail-meta i {
  width: 32px;
  height: 32px;
  font-size: 0.75rem;
  background: var(--gradient-icon-vivid);
  flex-shrink: 0;
}

.blog-detail-meta i {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-icon);
  color: var(--color-white);
  border-radius: 50%;
  font-size: 0.7rem;
  box-shadow: 0 2px 8px rgba(242, 126, 1, 0.28);
}

.blog-detail-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 2.5rem;
  max-height: 500px;
  box-shadow: 0 20px 50px rgba(15, 31, 51, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.blog-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-toc {
  background: var(--color-grey);
  padding: 24px 30px;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  border-left: 4px solid var(--color-primary);
}

.blog-toc h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.blog-toc ol {
  list-style: decimal;
  padding-left: 20px;
}

.blog-toc ol li {
  padding: 4px 0;
  font-size: 0.9rem;
}

.blog-toc ol li a {
  color: var(--color-text);
}

.blog-toc ol li a:hover {
  color: var(--color-primary);
}

.blog-article p {
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.blog-article h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}

.blog-article h3 {
  font-size: 1.25rem;
  margin: 1.5rem 0 0.75rem;
}

.blog-blockquote {
  margin: 2rem 0;
  padding: 1.5rem 1.75rem;
  border-left: 4px solid var(--btn-bg);
  background: var(--color-primary-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.blog-blockquote p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-dark-soft);
  margin-bottom: 0.75rem;
}

.blog-blockquote cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.blog-links-box {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--color-grey);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.blog-links-box h3 {
  font-size: 1.1rem;
  margin: 0 0 0.75rem;
}

.blog-links-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-links-box li {
  margin-bottom: 0.5rem;
}

.blog-links-box a {
  color: var(--btn-text);
  font-weight: 500;
}

.blog-links-box a:hover {
  color: var(--btn-bg-hover);
}

.blog-disclaimer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.blog-disclaimer h6 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.blog-disclaimer p {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.social-share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 2rem 0;
  padding: 20px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.social-share a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-share a:hover {
  transform: translateY(-3px);
}

.social-share .facebook { background: #1877f2; }
.social-share .twitter { background: #1da1f2; }
.social-share .linkedin { background: #0a66c2; }
.social-share .whatsapp { background: #25d366; }

/* ---------- Contact Page ---------- */
.contact-main-section {
  background:
    radial-gradient(ellipse 90% 70% at 0% 0%, rgba(255, 204, 153, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse 80% 55% at 100% 15%, rgba(11, 77, 143, 0.07) 0%, transparent 52%),
    linear-gradient(180deg, #fffcf8 0%, #f6faff 55%, #ffffff 100%);
}

.contact-map-section {
  background:
    radial-gradient(ellipse 75% 55% at 50% 0%, rgba(255, 204, 153, 0.2) 0%, transparent 58%),
    radial-gradient(ellipse 60% 45% at 100% 100%, rgba(11, 77, 143, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #f3f6fa 0%, #fff9f4 100%);
  position: relative;
}

.contact-map-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(242, 126, 1, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(11, 77, 143, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.contact-map-section > .container {
  position: relative;
  z-index: 1;
}

.contact-info-card {
  background: linear-gradient(145deg, #ffffff 0%, #fff6ec 100%);
  padding: 30px 24px;
  border-radius: var(--radius-xl);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 32px rgba(11, 77, 143, 0.07);
  border: 1px solid rgba(255, 204, 153, 0.55);
  text-align: center;
  height: 100%;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 204, 153, 0.85);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 16px 40px rgba(11, 77, 143, 0.12);
}

.contact-info-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  font-size: 1.35rem;
  color: var(--color-white);
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a6bb5 0%, #0b4d8f 100%);
  box-shadow: 0 8px 20px rgba(11, 77, 143, 0.25);
}

.contact-info-card h5 {
  margin-bottom: 8px;
  color: var(--color-secondary);
}

.contact-info-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

.contact-info-card a {
  color: var(--color-secondary);
  font-weight: 600;
}

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

.contact-form {
  background: linear-gradient(160deg, #ffffff 0%, #fff9f3 100%);
  padding: 40px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 204, 153, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 14px 40px rgba(11, 77, 143, 0.08);
}

.contact-sidebar-panel {
  background: linear-gradient(160deg, #fffcf8 0%, #f3f8ff 100%);
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 204, 153, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 28px rgba(11, 77, 143, 0.06);
}

.contact-sidebar-panel h4 {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-secondary);
}

.contact-form .form-label {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-dark);
}

.contact-form .form-control,
.contact-form .form-select {
  width: 100%;
  max-width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255, 204, 153, 0.45);
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

.working-hours li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 204, 153, 0.35);
  font-size: 0.9rem;
}

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

/* ---------- 404 Page ---------- */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #f0fdfa, #eff6ff);
}

.error-page h1 {
  font-size: 8rem;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 1rem;
}

.error-page h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.error-page p {
  color: var(--color-text-light);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Utility ---------- */
.bg-grey {
  background: var(--color-grey);
  position: relative;
}

.bg-grey::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(232, 114, 10, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(11, 77, 143, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.bg-grey > .container {
  position: relative;
  z-index: 1;
}
.bg-white { background: var(--color-white); }

/* ---------- Gallery ---------- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.gallery-filter-btn {
  padding: 10px 22px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  border-radius: 50px;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

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

.gallery-item-trigger {
  display: block;
  border: none;
  padding: 0;
  background: none;
  width: 100%;
  cursor: pointer;
  position: relative;
}

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(201, 101, 0, 0.85) 0%, transparent 55%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: var(--color-white);
  opacity: 0.9;
}

.gallery-item-title {
  color: var(--color-white);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  margin: 0;
}

.gallery-item-desc {
  display: none;
}

.gallery-item-meta {
  padding: 16px 18px 18px;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
}

.gallery-item-meta span {
  font-size: 0.7rem;
  color: var(--btn-text);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, rgba(242, 126, 1, 0.12), rgba(11, 77, 143, 0.06));
  border-radius: var(--radius-full);
}

.gallery-item-meta h4 {
  font-size: 1rem;
  margin: 10px 0 6px;
  font-weight: 700;
  line-height: 1.35;
}

.gallery-item-meta .gallery-item-desc {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.55;
  margin: 0;
}

.gallery-item--video .gallery-reel-wrap {
  position: relative;
  width: 100%;
  min-height: 420px;
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item--video .gallery-reel-wrap .instagram-media {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  margin: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

.gallery-item--video .gallery-reel-iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.gallery-reel-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}

.gallery-reel-link:hover {
  color: var(--color-secondary);
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.gallery-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.92);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 92%;
  text-align: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 70vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}

.lightbox-caption {
  color: var(--color-white);
  margin-top: 16px;
  font-size: 1rem;
}

.lightbox-caption strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.lightbox-caption span {
  font-size: 0.9rem;
  opacity: 0.85;
}

.lightbox-counter {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-top: 8px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--color-white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gradient-brand);
  box-shadow: var(--shadow-btn);
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* Home gallery preview */
.gallery-preview {
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-grey) 100%);
}

.gallery-preview .gallery-item-img {
  height: 240px;
}

.gallery-preview-slider {
  position: relative;
}

.gallery-preview-swiper {
  overflow: hidden;
  padding-bottom: 44px;
}

.gallery-preview-swiper .swiper-slide {
  height: auto;
}

.gallery-preview-swiper .gallery-item {
  height: 100%;
}

.gallery-preview-pagination {
  bottom: 0 !important;
}

/* ---------- Google Reviews (Elfsight) ---------- */
.reviews-section {
  background-color: var(--color-white);
}

.reviews-widget-wrap {
  min-height: 120px;
}

/* ---------- Local SEO ---------- */
.local-seo-section p {
  color: var(--color-text-muted);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.local-seo-section p:last-child {
  margin-bottom: 0;
}

.local-seo-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.local-seo-section h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.geo-areas-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px 20px;
  margin: 1rem 0;
}

.geo-areas-list li {
  font-size: 0.9rem;
  color: var(--color-text);
}

.geo-areas-list li i {
  color: var(--color-primary);
  margin-right: 8px;
  width: 16px;
}
