/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --color-brand-blue: #82B2E8; 
  --color-brand-blue-dark: #446C96; 
  --color-brand-grey: #8E8A86; 
  --color-wood-light: #E6DFD4; 
  --color-glow: #F2EBE1; 
  
  --color-lux-silver: #BCC6CC; /* Muted, expensive gold accent */
  --color-pearl-white: #FCF9F5; /* Warm, boutique-spa off-white */
  
  --color-bg-main: #FBFBF9; 
  --color-bg-soft: #F3F1EC; 
  --color-text-dark: #3B3836; 
  --color-text-muted: #73706D; 
  
  --font-heading: 'Playfair Display', serif; /* Elevation to Boutique status */
  --font-accent: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-smooth: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-main);
  color: var(--color-text-muted);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-brand-blue-dark);
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--color-brand-blue-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

/* Global Nav */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.25rem 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(132, 194, 233, 0.15);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-brand-blue); /* Logo color */
  letter-spacing: -0.5px;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-dark);
}

.nav-link:hover {
  color: var(--color-brand-blue);
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lang-switch {
  display: flex;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-brand-grey);
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-brand-grey);
  font-family: var(--font-body);
  transition: var(--transition-smooth);
}

.lang-btn.active {
  color: var(--color-brand-blue-dark);
}

.btn-primary {
  background-color: var(--color-brand-blue-dark);
  color: var(--color-bg-main);
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(132, 194, 233, 0.15);
}

.btn-primary:hover {
  background-color: var(--color-brand-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(132, 194, 233, 0.25);
  text-decoration: none;
}

.btn-outline {
  background-color: transparent;
  color: var(--color-brand-blue-dark);
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid var(--color-brand-blue-dark);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-outline:hover {
  background-color: var(--color-brand-blue-dark);
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(68, 108, 150, 0.1);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 0; /* Fallback padding for extrememly small aspect ratios */
  background-color: var(--color-bg-soft);
  background-image: url('./assets/ambient_bg.jpg'); /* User's attached ambient clinic image */
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
  overflow: hidden;
}

/* Warm, light overlay to match the photo's mood and keep #446C96 text clear */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(253, 250, 246, 0.65);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s forwards;
  text-shadow: 0 2px 8px rgba(132, 194, 233, 0.1);
}

.hero p {
  font-size: 1.25rem;
  color: var(--color-text-dark);
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.2s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Core Identity Section */
.core-identity {
  padding: 6rem 0;
  background: var(--color-bg-main);
  position: relative;
}

.core-identity .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.identity-card {
  padding: 3rem 2.5rem;
  background: var(--color-bg-main);
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
  transition: var(--transition-smooth);
  border: 1px solid rgba(132, 194, 233, 0.15);
  position: relative;
  overflow: hidden;
}

.identity-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 5px;
  background: var(--color-brand-blue);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.identity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(132, 194, 233, 0.08);
  border-color: rgba(132, 194, 233, 0.4);
}

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

.identity-card h2 {
  font-size: 1.35rem;
  color: var(--color-brand-blue-dark);
  margin: 1.5rem 0 1rem;
}

/* Signature Services Section */
.services {
  padding: 8rem 0;
  background-color: var(--color-wood-light); /* Warm wooden tone for contrast */
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: 2.75rem;
  color: var(--color-brand-blue-dark);
}

.section-header p {
  font-size: 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* Specific for Services Page - Grid columns by screen size */
@media (min-width: 901px) {
  .services-page .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}
@media (max-width: 900px) {
  .services-page .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .services-page .services-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
}
@media (max-width: 500px) {
  .services-grid, .services-page .services-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }
}


.service-card {
  background: linear-gradient(135deg, var(--color-pearl-white) 0%, #ffffff 100%);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: var(--transition-smooth);
  border: 1px solid rgba(197, 160, 89, 0.05);
  position: relative;
  text-decoration: none !important; /* Ensure no underline from global a:hover */
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(68, 108, 150, 0.04);
  border-color: rgba(68, 108, 150, 0.2);
  text-decoration: none !important;
  color: inherit !important;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--color-brand-blue-dark);
  transition: var(--transition-smooth);
}

.service-card:hover::after {
  width: 100%;
}


.service-img {
  width: 100%;
  aspect-ratio: 16 / 9; /* Ensures a modern, horizontal cinematic look */
  object-fit: cover;
  background: rgba(132, 194, 233, 0.1);
}

.machine-shot {
  object-fit: cover;
  padding: 0;
  transform: scale(1);
}

.portrait-blend {
  object-fit: cover;
  padding: 0;
}

.service-content {
  padding: 2.5rem 2rem;
}

.service-content h3 {
  font-size: 1.5rem;
  color: var(--color-brand-blue-dark);
}

/* Certified Trust Section */
.trust {
  padding: 8rem 0;
  text-align: center;
  background: var(--color-bg-main);
}

.trust h2 {
  font-size: 2.5rem;
}

/* Carousel Styles */
.carousel-container {
  position: relative;
  max-width: 500px;
  margin: 3.5rem auto 0;
}

.carousel-track-container {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  border: 4px solid var(--color-wood-light);
  aspect-ratio: 4 / 3; /* Keeps standard photo proportion */
  background: var(--color-bg-soft);
}

.carousel-track {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: var(--color-bg-main);
  border: 1px solid var(--color-wood-light);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  color: var(--color-text-dark);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: var(--transition-smooth);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
}

.carousel-btn:hover {
  background: var(--color-brand-blue-dark);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev { left: -24px; }
.carousel-btn.next { right: -24px; }

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 2rem;
}

.carousel-indicator {
  border: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-wood-light);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.carousel-indicator.current-indicator {
  background: var(--color-brand-blue-dark);
  transform: scale(1.4);
}

/* Testimonials */
.testimonials {
  padding: 8rem 0;
  background-color: var(--color-wood-light);
}

.testimonials .section-header {
  margin-bottom: 3.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.testimonial-card {
  background: var(--color-bg-main);
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
  text-align: left;
}

.testimonial-card .stars {
  color: #D4AF37; /* Gold stars */
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--color-text-dark);
}

.testimonial-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-brand-grey);
  margin-bottom: 0;
}

/* Visit Us */
.visit-us {
  padding: 8rem 0;
  background: var(--color-bg-main);
}

.visit-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch; /* Stretch children to have equal height */
}

.map-placeholder {
  position: relative;
  background-color: var(--color-bg-soft);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(132, 194, 233, 0.15);
  height: 100%; /* Fill the grid area height */
}

.map-placeholder::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(var(--color-wood-light) 2px, transparent 2px);
  background-size: 30px 30px;
  opacity: 0.6;
}

.map-content {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.95);
  padding: 1.5rem 2rem; /* Significantly more compact padding */
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border: 1px solid rgba(132, 194, 233, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  aspect-ratio: 1 / 1; /* Force square shape */
}

.visit-info h2 {
  font-size: 2rem; /* Even smaller to fit square */
  margin-bottom: 1.25rem;
  color: var(--color-brand-blue-dark);
  line-height: 1.2;
}

.info-block {
  margin-bottom: 1.25rem; /* Even tighter margins */
}

.info-block h4 {
  font-size: 1.15rem;
  color: var(--color-brand-blue-dark);
  margin-bottom: 0.5rem;
}

.info-block p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-dark);
}

.social-links {
  display: flex;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.social-links a {
  color: var(--color-brand-blue-dark);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-bg-soft);
  border-radius: 50%;
  border: 1px solid rgba(132, 194, 233, 0.15);
}

.social-links a:hover {
  color: #fff;
  background: var(--color-brand-blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(68, 108, 150, 0.1);
}

/* Footer */
footer {
  background-color: var(--color-bg-soft);
  color: var(--color-brand-grey);
  padding: 4rem 0 2rem;
  text-align: center;
  border-top: 1px solid rgba(132, 194, 233, 0.15);
}

/* FAQ Accordion Styles */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(132, 194, 233, 0.1);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(132, 194, 233, 0.3);
  box-shadow: 0 10px 30px rgba(132, 194, 233, 0.05);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  outline: none;
}

.faq-question h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--color-brand-blue-dark);
}

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.4s ease;
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--color-brand-blue);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::before { width: 14px; height: 1.5px; } /* Horizontal line */
.faq-icon::after { width: 1.5px; height: 14px; transition: transform 0.4s ease; } /* Vertical line */

.faq-item:hover .faq-icon,
.faq-item.active .faq-icon {
  transform: rotate(135deg); /* Professional X shape */
}

.faq-item:hover .faq-icon::after,
.faq-item.active .faq-icon::after {
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0, 1, 0, 1);
  background-color: var(--color-bg-main);
}

.faq-item:hover .faq-answer,
.faq-item.active .faq-answer {
  max-height: 1000px;
  transition: all 0.5s cubic-bezier(1, 0, 1, 0);
}

.faq-answer-inner {
  padding: 1.5rem 2rem; /* Symmetrical padding for perfect vertical centering */
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.9;
  letter-spacing: 0.01em;
  max-width: 90%;
}

footer p {
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
@media (max-width: 900px) {
  .services-grid { gap: 1.5rem; }
  .visit-container { grid-template-columns: 1fr; gap: 2rem; width: 100%; box-sizing: border-box; }
  .map-placeholder { aspect-ratio: auto; width: 100%; height: 300px; min-height: auto; min-width: 0; }
  .map-content { aspect-ratio: auto; height: auto; padding: 2rem 1.25rem; min-width: 0; width: 100%; box-sizing: border-box; }
}
@media (max-width: 768px) {
  .hero {
    padding: 6rem 0 2rem; /* Buffer for mobile navbar */
  }
  .hero-content {
    padding: 2rem 1.25rem; /* Slim down internal padding */
    margin: 0 1rem; /* Prevent glass from touching screen edges */
    width: auto; /* Fit to screen naturally */
    border-radius: 16px;
  }
  .hero h1 { font-size: 2.25rem; }
  .navbar-nav { display: none; }
  .services-grid, .services-page .services-grid { grid-template-columns: 1fr !important; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .mobile-menu-toggle { display: inline-flex !important; }
  .nav-controls .btn-primary { display: none !important; }
}

/* Mobile Menu Styling */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-brand-blue-dark);
  cursor: pointer;
  padding: 0.5rem;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.mobile-menu-toggle:hover {
  transform: scale(1.1);
  color: var(--color-brand-blue);
}
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-content {
  position: absolute;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100%;
  background: #fff;
  padding: 5rem 2.5rem;
  box-shadow: -10px 0 35px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  transition: right 0.4s cubic-bezier(0.1, 0.9, 0.2, 1);
}
.mobile-menu-overlay.active .mobile-menu-content {
  right: 0;
}
.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--color-brand-blue-dark);
  cursor: pointer;
  transition: color 0.2s ease;
}
.mobile-menu-close:hover {
  color: var(--color-brand-blue);
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.mobile-menu-links a {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-brand-blue-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}
.mobile-menu-links a:hover {
  color: var(--color-brand-blue);
}

@media (max-width: 600px) {
  .services-grid, .services-page .services-grid { grid-template-columns: 1fr !important; }
}
/* ── Article Detail Page Styles ── */

.article-page {
  background-color: var(--color-bg-main);
  padding: 0;
}

.article-header {
  padding-top: 80px; /* navbar offset */
  background: var(--color-bg-soft);
  text-align: center;
  position: relative;
}

.article-hero-wrap {
  width: 100%;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  position: relative;
}

.article-hero-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(10%) brightness(1.02);
}

.article-header-content {
  max-width: 800px;
  margin: -4rem auto 0;
  background: #fff;
  padding: 4rem 3rem;
  border-radius: 32px;
  position: relative;
  z-index: 10;
  box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-brand-grey);
  margin-bottom: 1.5rem;
}

.article-header-content h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 0;
}

.article-body-container {
  max-width: 750px;
  margin: 6rem auto 8rem;
  padding: 0 2rem;
}

.article-text {
  font-size: 1.15rem;
  line-height: 2;
  color: var(--color-text-dark);
}

.article-text h2 {
  font-size: 1.85rem;
  margin: 3.5rem 0 1.5rem;
  color: var(--color-brand-blue-dark);
}

.article-text p {
  margin-bottom: 2rem;
}

/* Honest Summary Box */
.honest-summary-box {
  background: var(--color-bg-soft);
  border-left: 5px solid var(--color-brand-blue);
  padding: 2.5rem 3rem;
  border-radius: 0 24px 24px 0;
  margin: 5rem 0;
  position: relative;
}

.honest-summary-box h3 {
  font-size: 1.25rem;
  color: var(--color-brand-blue-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.honest-summary-box h3::before {
  content: '✓';
  font-weight: 800;
  color: var(--color-brand-blue);
}

/* Author Bio */
.author-bio {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 4rem 3rem;
  background: var(--color-bg-main);
  border: 1px solid rgba(132, 194, 233, 0.2);
  border-radius: 32px;
  margin-top: 8rem;
}

.author-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.author-info h4 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 0.95rem;
  color: var(--color-brand-grey);
}

.article-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.nav-article-link {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 45%;
}

.nav-article-link.next { text-align: right; }

.nav-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-brand-blue);
}

.nav-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-brand-blue-dark);
}

@media (max-width: 768px) {
  .article-header-content h1 { font-size: 2.25rem; }
  .article-header-content { padding: 3rem 1.5rem; width: 90%; }
  .author-bio { flex-direction: column; text-align: center; padding: 2.5rem 1.5rem; }
}

/* ── Service Hub & Detail Page Additions ── */

/* Breadcrumb */
.breadcrumb {
  padding: 8rem 0 1rem;
  background: var(--color-bg-main);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.breadcrumb a {
  color: var(--color-brand-blue-dark);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.breadcrumb a:hover {
  color: var(--color-brand-blue);
}

.breadcrumb span.separator {
  margin: 0 0.5rem;
  opacity: 0.5;
}

/* Service Category Blocks (Main Page) */
.service-category-section {
  padding: 6rem 0;
  border-bottom: 1px solid rgba(132, 194, 233, 0.1);
}

.service-category-section:nth-child(even) {
  background-color: var(--color-bg-soft);
}

.category-header {
  margin-bottom: 3rem;
  text-align: center;
}

.category-header h2 {
  font-size: 2.25rem;
  color: var(--color-brand-blue-dark);
}

.category-header p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

.subcategory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.sub-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  border: 1px solid rgba(132, 194, 233, 0.1);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.sub-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(132, 194, 233, 0.12);
  border-color: rgba(132, 194, 233, 0.3);
}

.sub-card-img-wrap {
  height: 200px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.sub-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.sub-card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.sub-card-content h3 {
  font-size: 1.35rem;
  color: var(--color-brand-blue-dark);
  margin-bottom: 0.5rem;
}

.sub-card-content p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex-grow: 1;
}

.sub-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 1rem;
}

.sub-card-price {
  font-weight: 700;
  color: var(--color-brand-blue-dark);
  font-size: 1.05rem;
}

.sub-card-action {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-brand-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.sub-card-action::after {
  content: '→';
  transition: transform 0.3s ease;
}

.sub-card:hover .sub-card-action::after {
  transform: translateX(4px);
}

/* Service Detail Page - Honest Price Table */
.price-table-container {
  margin: 4rem 0;
  background: #fff;
  border-radius: 24px; /* Slightly rounder */
  overflow-x: auto; /* Ensure mobile scrolling */
  box-shadow: 0 10px 50px rgba(132, 194, 233, 0.08); /* Branded, softer shadow */
  border: 1px solid rgba(132, 194, 233, 0.15);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px; /* Prevent extreme squeezing */
}

.price-table th {
  background: linear-gradient(135deg, var(--color-brand-blue-dark) 0%, #2d5480 100%);
  color: #fff;
  text-align: center; /* Center for numeric alignment */
  padding: 1.6rem 2rem;
  font-size: 0.95rem;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}

.price-table th:first-child {
  text-align: left; /* Area/Program stays left */
}

.price-table td {
  padding: 1.4rem 2rem;
  border-bottom: 1px solid rgba(132, 194, 233, 0.08);
  color: var(--color-text-dark);
  font-size: 1.05rem;
  transition: background-color 0.2s ease;
  text-align: center; /* Match header */
}

.price-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--color-brand-blue-dark);
}

.price-table td.session-cell {
  text-align: center;
  color: var(--color-text-dark);
  font-weight: normal;
}

.price-table tr:nth-child(even) {
  background-color: rgba(132, 194, 233, 0.02);
}

.price-table tr:hover td {
  background-color: rgba(132, 194, 233, 0.05);
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table tr.group-divider td {
  border-top: 2px solid rgba(132, 194, 233, 0.2);
}

.price-table td.price-value {
  font-weight: 700;
  color: var(--color-brand-blue-dark);
  text-align: center; /* Perfectly aligned under headers */
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* Floating Contact Button - Refined Icon-to-Text Reveal */
.floating-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--color-brand-blue-dark);
  color: #fff;
  width: 60px; /* Start as circle */
  height: 60px;
  padding: 0;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(68, 108, 150, 0.3);
  z-index: 2000;
  transition: width 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              padding 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              transform 0.4s ease,
              background 0.3s ease;
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;
}

.floating-contact:hover {
  width: 240px; /* Expand width */
  padding: 0 1.5rem;
  transform: translateY(-5px);
  color: #fff;
  background: var(--color-brand-blue);
}

.floating-contact svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.floating-contact:hover svg {
  transform: rotate(-10deg);
}

.floating-contact span {
  opacity: 0;
  margin-left: 0;
  max-width: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, margin-left 0.4s ease, max-width 0.4s ease;
}

.floating-contact:hover span {
  opacity: 1;
  margin-left: 0.75rem;
  max-width: 200px;
}

@media (max-width: 768px) {
  .floating-contact {
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
  }
  .floating-contact:hover {
    width: 56px; /* Keep circular on mobile/touch */
    padding: 0;
  }
  .floating-contact:hover span {
    display: none;
  }
}

/* User Centric Sections */
.user-centric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin: 4rem 0;
}

.user-centric-card {
  background: var(--color-bg-soft);
  padding: 3rem;
  border-radius: 20px;
}

.user-centric-card h3 {
  color: var(--color-brand-blue-dark);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.user-centric-card ul {
  list-style: none;
  padding: 0;
}

.user-centric-card ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: var(--color-text-dark);
  line-height: 1.6;
}

.user-centric-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-brand-blue);
  font-weight: 800;
}

@media (max-width: 900px) {
  .user-centric-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
  }
}

/* Service Detail Hero */
.service-hero {
  padding: 4rem 0 2rem;
  text-align: center;
  background: var(--color-bg-main);
}

.service-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.service-hero p.slogan {
  font-size: 1.25rem;
  color: var(--color-brand-grey);
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .service-hero h1 {
    font-size: 2.5rem;
  }
}

/* Doctor's Note */
.doctor-note {
  background: var(--color-wood-light);
  border-radius: 24px;
  padding: 4rem;
  display: flex;
  gap: 3rem;
  align-items: center;
  margin: 6rem 0;
}

.doctor-note-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.doctor-note-content h4 {
  font-size: 1.25rem;
  color: var(--color-brand-blue-dark);
  margin-bottom: 0.5rem;
}

.doctor-note-content p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-text-dark);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .doctor-note {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
    gap: 2rem;
  }
}

/* Post-Treatment Information (Quiet Luxury Style) */
.post-care-section {
  background-color: #F3F1EC;
  padding: 8rem 0;
}

.post-care-card {
  background: white;
  padding: 4rem;
  border-radius: 32px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.03);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

.care-instructions h3 {
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
  color: var(--color-brand-blue-dark);
}

.care-list {
  list-style: none;
  padding: 0;
}

.care-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--color-text-dark);
}

.care-item-arrow {
  color: #84C2E9;
  flex-shrink: 0;
  font-weight: bold;
}

.symptoms-box {
  background: #F3F1EC;
  padding: 3.5rem 3rem;
  border-radius: 24px;
}

.symptoms-box h3 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  color: var(--color-brand-blue-dark);
}

.symptoms-box p {
  line-height: 2;
  font-size: 1.05rem;
  color: var(--color-text-dark);
}

@media (max-width: 992px) {
  .post-care-card {
    grid-template-columns: 1fr;
    padding: 3rem 2rem;
    gap: 3.5rem;
  }
  
  .post-care-section {
    padding: 4rem 0;
  }
}

/* AEO FAQ Styles */
.aeo-faq {
  margin: 6rem auto;
}

.aeo-faq h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid rgba(132, 194, 233, 0.2);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.faq-item-border {
  border-bottom: 1px solid rgba(132, 194, 233, 0.2);
}

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

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-brand-blue-dark);
  background: #fff;
  transition: var(--transition-smooth);
}

.faq-question:hover {
  background: var(--color-bg-soft);
}

.faq-question-icon {
  font-weight: 400;
  color: var(--color-brand-blue);
  transition: transform 0.3s ease;
}

.faq-item-border.active .faq-question-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  color: var(--color-text-dark);
  line-height: 1.7;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item-border.active .faq-answer {
  padding: 1rem 2rem 1.5rem;
  max-height: 500px; /* arbitrary high number */
}

/* ── Standardized Service Detail Structure ── */

.service-section {
  padding: 6rem 0;
}

.service-section.alt-bg {
  background-color: var(--color-bg-soft);
}

.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title h2 {
  font-size: 2.25rem;
  color: var(--color-brand-blue-dark);
  margin-bottom: 1rem;
}

.section-title .aeo-tip {
  font-size: 1rem;
  color: var(--color-brand-grey);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

/* Insight Section */
.insight-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.insight-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-text-dark);
  margin-bottom: 2.5rem;
}

.insight-text p {
  margin-bottom: 1.5rem;
}

.insight-text p:last-child {
  margin-bottom: 0;
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.benefit-card {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  border: 1px solid rgba(132, 194, 233, 0.1);
  transition: var(--transition-smooth);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(132, 194, 233, 0.1);
  border-color: rgba(132, 194, 233, 0.3);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-soft);
  border-radius: 50%;
  color: var(--color-brand-blue);
}

.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-brand-blue-dark);
}

.benefit-card p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Process Section */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.process-steps.steps-5 {
  grid-template-columns: repeat(5, 1fr);
}


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

.step-number {
  width: 40px;
  height: 40px;
  background: var(--color-brand-blue-dark);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
}

.process-step h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* Connect the dots for process */
.process-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(132, 194, 233, 0.2);
  z-index: 1;
}

@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .process-steps, .process-steps.steps-5 { grid-template-columns: 1fr; gap: 3rem; }
  .process-steps::before, .process-steps.steps-5::before { display: none; }
}

/* Post-Treatment Care Section */
.post-care-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  background: #fff;
  padding: 3.5rem;
  border-radius: 32px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.03);
  border: 1px solid rgba(132, 194, 233, 0.1);
  margin-top: 2rem;
}

.care-instructions h3, .symptoms-info h3 {
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.care-list {
  list-style: none;
  padding: 0;
}

.care-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: var(--color-text-dark);
}

.care-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-brand-blue);
  font-weight: 700;
}

.symptoms-info {
  background: var(--color-bg-soft);
  padding: 2.5rem;
  border-radius: 20px;
  height: fit-content;
}

.symptoms-info p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}

@media (max-width: 900px) {
  .post-care-layout {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.5rem;
    gap: 3rem;
  }
}

/* ── Brand Comparison Section ── */
.brand-comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.brand-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(132, 194, 233, 0.15);
  box-shadow: 0 15px 40px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(132, 194, 233, 0.15);
  border-color: rgba(132, 194, 233, 0.4);
}

.brand-card.featured {
  border-color: var(--color-brand-blue);
  border-width: 2px;
}

.brand-card-header {
  padding: 2.5rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--color-brand-blue-dark) 0%, #2d5480 100%);
  color: #fff;
  position: relative;
}

.brand-card.featured .brand-card-header {
  background: linear-gradient(135deg, #2d5480 0%, var(--color-brand-blue) 100%);
}

.brand-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 0.4rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255,255,255,0.2);
}

.brand-card-header h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.brand-card-header .brand-tagline {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.95);
  background: rgba(0,0,0,0.15);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 0.5rem;
}

.featured-ribbon {
  position: absolute;
  top: 1rem;
  right: -0.5rem;
  background: #D4AF37;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem 0.3rem 0.75rem;
  border-radius: 4px 0 0 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.brand-card-body {
  padding: 2rem;
  flex-grow: 1;
}

.brand-highlight {
  background: var(--color-bg-soft);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--color-text-dark);
  line-height: 1.6;
  border-left: 3px solid var(--color-brand-blue);
}

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

.brand-specs li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(132, 194, 233, 0.1);
  font-size: 0.92rem;
}

.brand-specs li:last-child {
  border-bottom: none;
}

.spec-label {
  color: var(--color-brand-grey);
  font-weight: 500;
}

.spec-value {
  color: var(--color-brand-blue-dark);
  font-weight: 700;
  text-align: right;
  max-width: 60%;
}

.brand-card-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(132, 194, 233, 0.1);
  text-align: center;
}

.brand-price-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-brand-grey);
  margin-bottom: 0.4rem;
}

.brand-price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-brand-blue-dark);
  font-family: var(--font-heading);
  line-height: 1;
}

.brand-price-unit {
  font-size: 0.85rem;
  color: var(--color-brand-grey);
  margin-top: 0.2rem;
}

@media (max-width: 1000px) {
  .brand-comparison-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  .brand-comparison-grid {
    max-width: 100%;
  }
  .brand-card-header h3 { font-size: 1.3rem; }
}



/* ── Before-After (Real Results) Section ── */
.ba-section {
  padding: 8rem 0;
  background-color: var(--color-bg-main);
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.ba-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  border: 1px solid rgba(132, 194, 233, 0.1);
}

.ba-img-container {
  position: relative;
  width: 100%;
}

.ba-img-container img {
  width: 100%;
  height: auto;
  display: block;
}

.ba-labels {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  pointer-events: none;
}

.ba-label {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-brand-blue-dark);
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid rgba(132, 194, 233, 0.2);
}

.ba-content {
  padding: 2rem;
  text-align: center;
}

.ba-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--color-brand-blue-dark);
}

.ba-content p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .ba-grid {
    grid-template-columns: 1fr;
  }
}


/* Aesthetic Upgrades */
.reveal-up { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal-up.active { opacity: 1; transform: translateY(0); }

.section-header p { font-family: var(--font-accent); letter-spacing: 0.05em; font-weight: 500; text-transform: uppercase; font-size: 0.85rem; color: var(--color-brand-blue-dark); margin-bottom: 0.5rem; opacity: 0.9; }

.service-card .service-content h3 { font-family: var(--font-heading); font-weight: 600; color: var(--color-brand-blue-dark); margin-bottom: 0.75rem; }


.section-header-left { text-align: left; max-width: 100%; margin: 0 0 3.5rem 0; padding-left: 1.5rem; border-left: 4px solid var(--color-brand-blue-dark); }
.section-header-left h2 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.section-header-left p { text-transform: none; font-family: var(--font-body); letter-spacing: normal; color: var(--color-text-muted); font-size: 1.1rem; }

/* CTA and Footer refinement */
.text-center { text-align: center; }

.cta-section {
  padding: 8rem 0;
  background-color: var(--color-bg-main);
  text-align: center;
}

.cta-section h2 {
  font-size: 2.75rem;
  color: var(--color-brand-blue-dark);
  margin-bottom: 2rem;
}

.cta-section p {
  font-size: 1.25rem;
  color: var(--color-text-dark);
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.copyright {
  padding-top: 2rem;
  border-top: 1px solid rgba(132, 194, 233, 0.15);
  font-size: 0.95rem;
  color: var(--color-brand-grey);
}
