/* ==========================================================================
   CARE NEST - Modern, Mobile-First Home Healthcare & Nursing Design System
   Brand Colors: Medical Royal Blue (#0150AC), Health Green (#64B431),
                 Slate Charcoal (#0B1528), Coral Accent (#E11D48)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Brand Primary Colors (from logo) */
  --primary-blue: #0150AC;
  --primary-blue-hover: #003F8A;
  --primary-blue-light: #EBF3FD;
  --primary-blue-muted: #D3E5FA;

  --primary-green: #64B431;
  --primary-green-hover: #4F9424;
  --primary-green-light: #F0F9EB;
  --primary-green-muted: #D9F0CC;

  /* Accent Colors */
  --accent-coral: #E11D48;
  --accent-coral-hover: #BE123C;
  --accent-amber: #D97706;
  --accent-amber-light: #FEF3C7;
  --accent-purple: #7C3AED;
  --accent-purple-light: #F3E8FF;
  --accent-teal: #0D9488;
  --accent-teal-light: #CCFBF1;
  --accent-indigo: #4F46E5;
  --accent-indigo-light: #EEF2FF;
  --accent-rose: #F43F5E;
  --accent-rose-light: #FFE4E6;
  --accent-sky: #0284C7;
  --accent-sky-light: #E0F2FE;

  /* Dark Theme & Surface Colors */
  --dark-bg: #0A111F;
  --dark-surface: #111D32;
  --dark-card: #182743;
  --dark-border: #23375C;
  --dark-text-muted: #94A3B8;

  /* Neutrals & Body */
  --bg-page: #F8FAFC;
  --bg-white: #FFFFFF;
  --bg-subtle: #F1F5F9;
  --border-subtle: #E2E8F0;
  --border-focus: #93C5FD;

  --text-title: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --text-light: #F8FAFC;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 12px -2px rgba(1, 80, 172, 0.08), 0 2px 6px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 28px -6px rgba(1, 80, 172, 0.12), 0 6px 14px -3px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 20px 40px -8px rgba(1, 80, 172, 0.18), 0 10px 20px -4px rgba(0, 0, 0, 0.08);
  --shadow-glow-blue: 0 0 25px rgba(1, 80, 172, 0.25);
  --shadow-glow-green: 0 0 25px rgba(100, 180, 49, 0.3);

  /* Border Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  /* Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Transitions */
  --transition-fast: 180ms ease;
  --transition-normal: 280ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 450ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Header Height */
  --header-height: 98px;
}

/* ==========================================================================
   Base & Reset
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden !important;
  max-width: 100vw;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden !important;
  max-width: 100vw;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 76px;
  /* Space for bottom mobile action bar */
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

img,
svg,
picture,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (max-width: 480px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

section,
main,
header,
footer {
  max-width: 100vw;
}

@media (min-width: 768px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Typography Helpers */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-title);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: var(--primary-blue-light);
  color: var(--primary-blue);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(1, 80, 172, 0.15);
  margin-bottom: 0.75rem;
}

.section-tag.green {
  background: var(--primary-green-light);
  color: var(--primary-green-hover);
  border-color: rgba(100, 180, 49, 0.2);
}

.section-tag.dark {
  background: rgba(255, 255, 255, 0.08);
  color: #60A5FA;
  border-color: rgba(255, 255, 255, 0.15);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.section-header.left-aligned {
  text-align: left;
  margin-left: 0;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--text-title);
}

.section-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.55;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 1000;
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  padding: 0.9rem 0;
  transition: background-color var(--transition-normal), box-shadow var(--transition-normal), padding var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 0.55rem 0;
}

.site-header .container {
  max-width: 1440px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100%;
  gap: 1.25rem;
}

/* Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.brand-logo:hover {
  transform: translateY(-1px);
}

.brand-logo img {
  height: 64px;
  width: auto;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(1, 80, 172, 0.16));
  transition: height var(--transition-normal), transform var(--transition-fast);
}

@media (min-width: 768px) {
  .site-header {
    padding: 1.1rem 0;
  }

  .site-header.scrolled {
    padding: 0.6rem 0;
  }

  .brand-logo img {
    height: 74px;
  }
}

@media (min-width: 1200px) {
  .site-header {
    padding: 1.25rem 0;
  }

  .site-header.scrolled {
    padding: 0.65rem 0;
  }

  .brand-logo img {
    height: 80px;
  }
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  line-height: 1.05;
}

@media (min-width: 992px) {
  .brand-name {
    font-size: 1.55rem;
  }
}

.brand-name .care {
  color: var(--primary-blue);
}

.brand-name .nest {
  color: var(--primary-green);
}

.brand-tagline {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 3px;
}

@media (min-width: 992px) {
  .brand-tagline {
    font-size: 0.76rem;
  }
}

@media (max-width: 576px) {
  .site-header {
    padding: 0.65rem 0;
  }

  .site-header .container {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .header-inner {
    gap: 0.45rem;
  }

  .brand-logo {
    gap: 0.55rem;
  }

  .brand-logo img {
    height: 48px;
  }

  .brand-name {
    font-size: 1.22rem;
  }

  .brand-tagline {
    font-size: 0.62rem;
  }

  .header-actions {
    gap: 0.35rem;
  }

  .btn-header-call {
    padding: 0.45rem 0.75rem;
    font-size: 0.82rem;
    gap: 0.35rem;
  }

  .btn-header-call svg {
    width: 17px;
    height: 17px;
  }

  .btn-mobile-toggle {
    width: 40px;
    height: 40px;
  }

  .btn-mobile-toggle svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 375px) {
  .brand-tagline {
    display: none;
  }

  .brand-logo img {
    height: 42px;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .btn-header-call {
    padding: 0.4rem 0.6rem;
    font-size: 0.78rem;
  }
}

/* Desktop Nav - Generous Horizontal Spacing */
.desktop-nav {
  display: none;
}

@media (min-width: 992px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.05rem;
    flex-wrap: nowrap;
  }

  .nav-link {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--text-body);
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
  }

  .nav-link:hover {
    color: var(--primary-blue);
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width var(--transition-fast);
    border-radius: var(--radius-pill);
  }

  .nav-link:hover::after {
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .desktop-nav {
    gap: 1.35rem;
  }

  .nav-link {
    font-size: 0.91rem;
  }
}

@media (min-width: 1380px) {
  .desktop-nav {
    gap: 1.65rem;
  }

  .nav-link {
    font-size: 0.95rem;
  }
}

/* Header Action Buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}



/* Quick Call Header Button */
.btn-header-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-green-light);
  color: var(--primary-green-hover);
  border: 1px solid rgba(100, 180, 49, 0.3);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.btn-header-call:hover {
  background: var(--primary-green);
  color: var(--bg-white);
  border-color: var(--primary-green);
  box-shadow: 0 4px 14px rgba(100, 180, 49, 0.28);
}

.btn-header-call svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.2;
}

/* Header Primary CTA */
.btn-header-cta {
  display: none;
}

@media (min-width: 640px) {
  .btn-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-hover));
    color: var(--bg-white);
    padding: 0.6rem 1.35rem;
    border-radius: var(--radius-pill);
    font-size: 0.92rem;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(1, 80, 172, 0.25);
    transition: all var(--transition-fast);
  }

  .btn-header-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(1, 80, 172, 0.35);
  }
}

/* Mobile Hamburger Toggle */
.btn-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  color: var(--text-title);
  transition: background var(--transition-fast);
}

.btn-mobile-toggle:hover {
  background: #E2E8F0;
}

.btn-mobile-toggle svg {
  width: 26px;
  height: 26px;
}

@media (min-width: 992px) {
  .btn-mobile-toggle {
    display: none;
  }
}

/* Mobile Navigation Drawer */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  visibility: hidden;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--bg-white);
  z-index: 1200;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  transition: transform var(--transition-normal), visibility var(--transition-normal);
  overflow-y: auto;
}

.mobile-nav-drawer.active {
  transform: translateX(0);
  visibility: visible;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-drawer-header .brand-logo img {
  height: 46px;
}

.mobile-drawer-header .brand-name {
  font-size: 1.3rem;
}

.btn-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.mobile-drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-title);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.mobile-drawer-link:hover {
  background: var(--primary-blue-light);
  color: var(--primary-blue);
}

.mobile-drawer-contacts {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.drawer-phone-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--primary-green-light);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--primary-green-hover);
  font-weight: 700;
  font-size: 0.95rem;
}

.drawer-phone-item svg {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(180deg, #F0F7FF 0%, #FFFFFF 100%);
  padding: 2.5rem 0 3.5rem;
  overflow: hidden;
}

@media (min-width: 992px) {
  .hero-section {
    padding: 4.5rem 0 5rem;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 1fr;
    gap: 3.5rem;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-blue-light);
  color: var(--primary-blue);
  border: 1px solid rgba(1, 80, 172, 0.2);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-green);
  box-shadow: 0 0 0 0 rgba(100, 180, 49, 0.7);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(100, 180, 49, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(100, 180, 49, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(100, 180, 49, 0);
  }
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-title);
  margin-bottom: 1.25rem;
}

.hero-title .highlight-blue {
  color: var(--primary-blue);
}

.hero-title .highlight-green {
  color: var(--primary-green);
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 580px;
}

/* Hero CTA Buttons */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  width: 100%;
  margin-bottom: 2rem;
}

@media (max-width: 480px) {
  .hero-cta-group {
    flex-direction: column;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 700;
  transition: all var(--transition-normal);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue), #003F8A);
  color: var(--bg-white);
  box-shadow: 0 8px 20px rgba(1, 80, 172, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(1, 80, 172, 0.4);
  color: var(--bg-white);
}

.btn-secondary {
  background: var(--bg-white);
  color: var(--text-title);
  border: 1.5px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  transform: translateY(-2px);
}

.btn-call {
  background: linear-gradient(135deg, var(--primary-green), #4B9620);
  color: var(--bg-white);
  box-shadow: 0 8px 20px rgba(100, 180, 49, 0.3);
}

.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(100, 180, 49, 0.4);
  color: var(--bg-white);
}

.btn-coral {
  background: linear-gradient(135deg, var(--accent-coral), #BE123C);
  color: var(--bg-white);
  box-shadow: 0 8px 20px rgba(225, 29, 72, 0.3);
}

.btn-coral:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(225, 29, 72, 0.4);
  color: var(--bg-white);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.4);
  color: #FFFFFF;
}

/* Trust Indicators */
.hero-trust-indicators {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(226, 232, 240, 0.7);
  width: 100%;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-body);
}

.trust-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-green-light);
  color: var(--primary-green);
  font-size: 0.75rem;
  font-weight: 800;
}

/* Hero Media Wrapper */
.hero-media-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.hero-image-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--bg-white);
  background: #CBD5E1;
  aspect-ratio: 4/3;
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hero-image-container:hover img {
  transform: scale(1.02);
}

/* Floating Badges */
.hero-float-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.8);
  z-index: 2;
  animation: float-slow 4s ease-in-out infinite alternate;
}

.hero-float-badge.bottom-left {
  bottom: -15px;
  left: 10px;
}

@media (min-width: 640px) {
  .hero-float-badge.bottom-left {
    bottom: -20px;
    left: -20px;
  }
}

.hero-float-badge.top-right {
  top: 15px;
  right: 10px;
  animation-delay: 2s;
}

@media (min-width: 640px) {
  .hero-float-badge.top-right {
    right: -10px;
  }
}

@keyframes float-slow {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-8px);
  }
}

.float-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--primary-green-light);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-icon-box.blue {
  background: var(--primary-blue-light);
  color: var(--primary-blue);
}

.float-icon-box svg {
  width: 22px;
  height: 22px;
}

.float-text-bold {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-title);
  line-height: 1.2;
}

.float-text-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   Quick Services / Trust Strip
   ========================================================================== */
.trust-strip-section {
  padding: 0;
  position: relative;
  z-index: 10;
  margin-top: -1.5rem;
}

.trust-strip-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
  padding: 1.5rem 1rem;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .trust-strip-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 0.5rem 1rem;
  }
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.strip-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: var(--primary-blue-light);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.strip-item:hover .strip-icon {
  transform: scale(1.08) rotate(-3deg);
  background: var(--primary-green-light);
  color: var(--primary-green-hover);
}

.strip-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
}

.strip-text-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-title);
  line-height: 1.2;
}

.strip-text-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ==========================================================================
   Home Nursing Services (Card-based, alternating vibrant accents)
   ========================================================================== */
.services-section {
  padding: 5rem 0 5.5rem;
  background-color: var(--bg-page);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* Service Card Design */
.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.service-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #E2E8F0;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card-image img {
  transform: scale(1.06);
}

.service-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  z-index: 2;
}

.service-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.service-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-title);
  line-height: 1.3;
}

.service-icon-bubble {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon-bubble svg {
  width: 20px;
  height: 20px;
}

.service-card-desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: var(--text-muted);
  font-weight: 500;
}

.service-feature-item svg {
  width: 14px;
  height: 14px;
  color: var(--primary-green);
  flex-shrink: 0;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.btn-service-book {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 700;
  transition: all var(--transition-fast);
}

/* Card Accent Varieties */
/* 1. Amber/Warm Gold (Elderly) */
.service-card.theme-amber .service-badge {
  background: rgba(217, 119, 6, 0.9);
  color: #FFFFFF;
}

.service-card.theme-amber .service-icon-bubble {
  background: var(--accent-amber-light);
  color: var(--accent-amber);
}

.service-card.theme-amber:hover {
  border-color: rgba(217, 119, 6, 0.4);
}

.service-card.theme-amber .btn-service-book {
  background: var(--accent-amber-light);
  color: var(--accent-amber);
}

.service-card.theme-amber .btn-service-book:hover {
  background: var(--accent-amber);
  color: #FFFFFF;
}

/* 2. Royal Blue (Patient Care) */
.service-card.theme-blue .service-badge {
  background: rgba(1, 80, 172, 0.9);
  color: #FFFFFF;
}

.service-card.theme-blue .service-icon-bubble {
  background: var(--primary-blue-light);
  color: var(--primary-blue);
}

.service-card.theme-blue:hover {
  border-color: rgba(1, 80, 172, 0.4);
}

.service-card.theme-blue .btn-service-book {
  background: var(--primary-blue-light);
  color: var(--primary-blue);
}

.service-card.theme-blue .btn-service-book:hover {
  background: var(--primary-blue);
  color: #FFFFFF;
}

/* 3. Teal / Cyan (Post-Op) */
.service-card.theme-teal .service-badge {
  background: rgba(13, 148, 136, 0.9);
  color: #FFFFFF;
}

.service-card.theme-teal .service-icon-bubble {
  background: var(--accent-teal-light);
  color: var(--accent-teal);
}

.service-card.theme-teal:hover {
  border-color: rgba(13, 148, 136, 0.4);
}

.service-card.theme-teal .btn-service-book {
  background: var(--accent-teal-light);
  color: var(--accent-teal);
}

.service-card.theme-teal .btn-service-book:hover {
  background: var(--accent-teal);
  color: #FFFFFF;
}

/* 4. Green (Physiotherapy) */
.service-card.theme-green .service-badge {
  background: rgba(100, 180, 49, 0.95);
  color: #FFFFFF;
}

.service-card.theme-green .service-icon-bubble {
  background: var(--primary-green-light);
  color: var(--primary-green-hover);
}

.service-card.theme-green:hover {
  border-color: rgba(100, 180, 49, 0.4);
}

.service-card.theme-green .btn-service-book {
  background: var(--primary-green-light);
  color: var(--primary-green-hover);
}

.service-card.theme-green .btn-service-book:hover {
  background: var(--primary-green);
  color: #FFFFFF;
}

/* 5. Purple / Indigo (Medication) */
.service-card.theme-purple .service-badge {
  background: rgba(124, 58, 237, 0.9);
  color: #FFFFFF;
}

.service-card.theme-purple .service-icon-bubble {
  background: var(--accent-purple-light);
  color: var(--accent-purple);
}

.service-card.theme-purple:hover {
  border-color: rgba(124, 58, 237, 0.4);
}

.service-card.theme-purple .btn-service-book {
  background: var(--accent-purple-light);
  color: var(--accent-purple);
}

.service-card.theme-purple .btn-service-book:hover {
  background: var(--accent-purple);
  color: #FFFFFF;
}

/* 6. Rose / Coral (Wound Care) */
.service-card.theme-coral .service-badge {
  background: rgba(225, 29, 72, 0.9);
  color: #FFFFFF;
}

.service-card.theme-coral .service-icon-bubble {
  background: var(--accent-rose-light);
  color: var(--accent-coral);
}

.service-card.theme-coral:hover {
  border-color: rgba(225, 29, 72, 0.4);
}

.service-card.theme-coral .btn-service-book {
  background: var(--accent-rose-light);
  color: var(--accent-coral);
}

.service-card.theme-coral .btn-service-book:hover {
  background: var(--accent-coral);
  color: #FFFFFF;
}

/* 7. Deep Sky / Indigo (Bedridden) */
.service-card.theme-indigo .service-badge {
  background: rgba(79, 70, 229, 0.9);
  color: #FFFFFF;
}

.service-card.theme-indigo .service-icon-bubble {
  background: var(--accent-indigo-light);
  color: var(--accent-indigo);
}

.service-card.theme-indigo:hover {
  border-color: rgba(79, 70, 229, 0.4);
}

.service-card.theme-indigo .btn-service-book {
  background: var(--accent-indigo-light);
  color: var(--accent-indigo);
}

.service-card.theme-indigo .btn-service-book:hover {
  background: var(--accent-indigo);
  color: #FFFFFF;
}

/* 8. Emerald / Lavender (Palliative) */
.service-card.theme-lavender .service-badge {
  background: rgba(109, 40, 217, 0.9);
  color: #FFFFFF;
}

.service-card.theme-lavender .service-icon-bubble {
  background: #EDE9FE;
  color: #6D28D9;
}

.service-card.theme-lavender:hover {
  border-color: rgba(109, 40, 217, 0.4);
}

.service-card.theme-lavender .btn-service-book {
  background: #EDE9FE;
  color: #6D28D9;
}

.service-card.theme-lavender .btn-service-book:hover {
  background: #6D28D9;
  color: #FFFFFF;
}

/* ==========================================================================
   About Care Nest Section
   ========================================================================== */
.about-section {
  padding: 5.5rem 0;
  background: #FFFFFF;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 4rem;
  }
}

.about-media-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.about-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--bg-white);
  aspect-ratio: 4/3;
  background: #E2E8F0;
}

.about-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-quote-box {
  position: absolute;
  bottom: -15px;
  right: 5px;
  background: var(--dark-surface);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--dark-border);
  max-width: 260px;
  z-index: 2;
}

@media (min-width: 640px) {
  .about-quote-box {
    bottom: -20px;
    right: -15px;
    padding: 1.25rem 1.5rem;
    max-width: 320px;
  }
}

.about-quote-box p {
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.45;
  color: #E2E8F0;
}

.about-quote-author {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-lead {
  font-size: 1.125rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

@media (min-width: 640px) {
  .about-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-pillar-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-page);
  padding: 1.15rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.about-pillar-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary-blue-muted);
}

.pillar-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--primary-blue-light);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-icon.green {
  background: var(--primary-green-light);
  color: var(--primary-green-hover);
}

.pillar-icon svg {
  width: 22px;
  height: 22px;
}

.pillar-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-title);
  margin-bottom: 0.2rem;
}

.pillar-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ==========================================================================
   Why Choose Care Nest
   ========================================================================== */
.why-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg-page) 0%, #F1F5F9 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(1, 80, 172, 0.2);
}

.why-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-blue-light);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform var(--transition-fast);
}

.why-card:hover .why-icon-wrap {
  transform: scale(1.1) rotate(4deg);
  background: var(--primary-green-light);
  color: var(--primary-green-hover);
}

.why-icon-wrap svg {
  width: 26px;
  height: 26px;
}

.why-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-title);
  margin-bottom: 0.6rem;
}

.why-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   How It Works (3 Steps)
   ========================================================================== */
.how-section {
  padding: 5.5rem 0;
  background: var(--bg-white);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.step-card {
  background: var(--bg-page);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.75rem;
  border: 1px solid var(--border-subtle);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.step-card:hover {
  transform: translateY(-5px);
  background: var(--bg-white);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue-muted);
}

.step-number-badge {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(1, 80, 172, 0.15);
  margin-bottom: 1rem;
  transition: color var(--transition-fast);
}

.step-card:hover .step-number-badge {
  color: var(--primary-green);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-title);
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.55;
}

.how-cta-center {
  text-align: center;
}

/* ==========================================================================
   Care Options (Arrangements)
   ========================================================================== */
.options-section {
  padding: 5rem 0;
  background: var(--bg-page);
}

.options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .options-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .options-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.option-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all var(--transition-normal);
}

.option-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-green);
  box-shadow: var(--shadow-md);
}

.option-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-blue-light);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform var(--transition-fast);
}

.option-card:hover .option-icon-box {
  background: var(--primary-green-light);
  color: var(--primary-green-hover);
  transform: scale(1.1);
}

.option-icon-box svg {
  width: 24px;
  height: 24px;
}

.option-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-title);
  margin-bottom: 0.5rem;
}

.option-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Testimonials (Dark Luxury Theme)
   ========================================================================== */
.testimonials-section {
  padding: 5.5rem 0;
  background: var(--dark-bg);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(circle, rgba(1, 80, 172, 0.2) 0%, rgba(10, 17, 31, 0) 70%);
  pointer-events: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--dark-card);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  border: 1px solid var(--dark-border);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(96, 165, 250, 0.4);
}

.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #FBBF24;
  margin-bottom: 1.25rem;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-text {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #CBD5E1;
  font-style: italic;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.testimonial-author-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
}

.author-location {
  font-size: 0.78rem;
  color: var(--primary-green);
  font-weight: 500;
}

/* ==========================================================================
   Executive Leadership & Founders Section
   ========================================================================== */
.founders-section {
  padding: 5.5rem 0 5rem;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 50%, #F8FAFC 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.founders-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.founders-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: rgba(1, 80, 172, 0.08);
  border: 1px solid rgba(1, 80, 172, 0.18);
  border-radius: var(--radius-pill);
  color: var(--primary-blue);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.founders-pill svg {
  width: 16px;
  height: 16px;
  color: var(--primary-green);
}

.founders-title {
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 900;
  color: #0F172A;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.founders-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.125rem);
  color: #64748B;
  line-height: 1.6;
  margin: 0 auto;
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  max-width: 1040px;
  margin: 0 auto;
}

@media (min-width: 860px) {
  .founders-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

.founder-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 30px -8px rgba(15, 23, 42, 0.06), 0 2px 6px -2px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.founder-card:hover {
  transform: translateY(-8px);
  border-color: rgba(1, 80, 172, 0.25);
  box-shadow: 0 25px 50px -12px rgba(1, 80, 172, 0.16), 0 0 0 1px rgba(1, 80, 172, 0.12);
}

/* Profile Card Decorative Top Banner */
.founder-card-banner {
  height: 110px;
  width: 100%;
  background: linear-gradient(135deg, rgba(1, 80, 172, 0.12) 0%, rgba(100, 180, 49, 0.15) 100%);
  border-bottom: 1px solid rgba(1, 80, 172, 0.08);
}

/* Circular Profile Avatar */
.founder-photo-wrapper.circle {
  width: 180px;
  height: 180px;
  margin: -60px auto 0;
  border-radius: 50%;
  border: 5px solid #FFFFFF;
  box-shadow: 0 12px 28px -6px rgba(1, 80, 172, 0.22), 0 0 0 2px rgba(1, 80, 172, 0.2);
  position: relative;
  z-index: 2;
  background: #FFFFFF;
  overflow: hidden;
}

.founder-photo-wrapper.circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.founder-card:hover .founder-photo-wrapper.circle img {
  transform: scale(1.08);
}

.founder-card:hover .founder-photo-wrapper.circle {
  border-color: #FFFFFF;
  box-shadow: 0 16px 36px -6px rgba(1, 80, 172, 0.32), 0 0 0 3px var(--primary-blue);
}

.founder-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: rgba(1, 80, 172, 0.08);
  color: var(--primary-blue);
  border: 1px solid rgba(1, 80, 172, 0.18);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin: 0 auto;
}

.founder-status-badge.verified {
  border-color: rgba(100, 180, 49, 0.3);
  background: rgba(100, 180, 49, 0.08);
  color: #15803D;
}

.founder-status-badge.verified svg {
  color: var(--primary-green);
}

.founder-content {
  padding: 1.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 1.15rem;
  text-align: center;
  align-items: center;
}

.founder-meta-row {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  align-items: center;
  text-align: center;
}

.founder-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0;
  letter-spacing: -0.01em;
}

.founder-role-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 auto;
}

.founder-role-tag.ceo {
  background: #EFF6FF;
  color: #0150AC;
  border: 1px solid #BFDBFE;
}

.founder-role-tag.director {
  background: #F0FDF4;
  color: #16A34A;
  border: 1px solid #BBF7D0;
}

.founder-bio {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
  flex-grow: 1;
  text-align: center;
}

.pims-subtext {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: #475569;
  background: rgba(1, 80, 172, 0.04);
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  border-left: 3px solid var(--primary-green);
  text-align: left;
  line-height: 1.5;
}

.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.founder-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.7rem;
  background: #F1F5F9;
  color: #334155;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.founder-footer-action {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  margin-top: auto;
  width: 100%;
}

.btn-founder-connect {
  flex-grow: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--primary-blue);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-founder-connect:hover {
  background: var(--primary-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(1, 80, 172, 0.25);
  color: #FFFFFF;
}

.btn-founder-connect svg {
  transition: transform var(--transition-fast);
}

.btn-founder-connect:hover svg {
  transform: translateX(3px);
}

.btn-founder-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: #25D366;
  color: #FFFFFF;
  flex-shrink: 0;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-founder-wa:hover {
  background: #1EBE5B;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
  color: #FFFFFF;
}

@media (max-width: 640px) {
  .founders-section {
    padding: 3.75rem 0 3.25rem;
  }

  .founders-header {
    margin-bottom: 2.25rem;
  }

  .founder-photo-wrapper.circle {
    width: 150px;
    height: 150px;
    margin: -50px auto 0;
  }

  .founder-content {
    padding: 1.25rem 1.25rem 1.25rem;
    gap: 0.9rem;
  }

  .founder-name {
    font-size: 1.35rem;
  }

  .founder-footer-action {
    flex-direction: row;
  }
}

/* ==========================================================================
   Full Width High-Impact CTA Section
   ========================================================================== */
.cta-banner-section {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, var(--accent-coral) 0%, #9F1239 100%);
  color: #FFFFFF;
  position: relative;
  text-align: center;
}

.cta-banner-content {
  max-width: 780px;
  margin: 0 auto;
}

.cta-headline {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.cta-subline {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.25rem;
  line-height: 1.5;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (max-width: 540px) {
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
  }
}

.btn-cta-white {
  background: #FFFFFF;
  color: var(--accent-coral);
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-cta-white:hover {
  background: #F8FAFC;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  color: var(--accent-coral-hover);
}

.btn-cta-outline {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  color: #FFFFFF;
}

/* ==========================================================================
   Contact Section & Interactive Request Form
   ========================================================================== */
.contact-section {
  padding: 5.5rem 0;
  background: var(--bg-page);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1.3fr;
    gap: 3.5rem;
  }
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  transition: all var(--transition-normal);
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-blue-muted);
}

.contact-icon-bubble {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-blue-light);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-bubble.green {
  background: var(--primary-green-light);
  color: var(--primary-green-hover);
}

.contact-icon-bubble.coral {
  background: var(--accent-rose-light);
  color: var(--accent-coral);
}

.contact-icon-bubble svg {
  width: 22px;
  height: 22px;
}

.contact-card-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.contact-card-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-title);
  line-height: 1.4;
}

.contact-dual-phones {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-phone-link {
  color: var(--primary-blue);
  font-weight: 800;
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.contact-phone-link:hover {
  color: var(--primary-green);
}

/* ==========================================================================
   PREMIUM CONTACT CARDS GRID (Modern UI Upgrade)
   ========================================================================== */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  max-width: 1240px;
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 620px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.contact-card-premium {
  background: #FFFFFF;
  border-radius: 20px;
  border: 1.5px solid #E2E8F0;
  padding: 1.65rem 1.45rem 1.35rem 1.45rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.06), 0 2px 6px -2px rgba(15, 23, 42, 0.04);
}

/* Subtle Top Color Accent Bar */
.contact-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0.9;
  transition: height 0.25s ease;
}

.contact-card-premium.card-phone::before { background: linear-gradient(90deg, #0150AC, #38BDF8); }
.contact-card-premium.card-whatsapp::before { background: linear-gradient(90deg, #16A34A, #4ADE80); }
.contact-card-premium.card-email::before { background: linear-gradient(90deg, #4F46E5, #818CF8); }
.contact-card-premium.card-location::before { background: linear-gradient(90deg, #E11D48, #FB7185); }

.contact-card-premium:hover::before {
  height: 6px;
}

.contact-card-premium:hover {
  transform: translateY(-8px);
}

.contact-card-premium.card-phone:hover {
  border-color: rgba(1, 80, 172, 0.35);
  box-shadow: 0 22px 35px -8px rgba(1, 80, 172, 0.18), 0 4px 12px -2px rgba(1, 80, 172, 0.08);
}

.contact-card-premium.card-whatsapp:hover {
  border-color: rgba(22, 163, 74, 0.35);
  box-shadow: 0 22px 35px -8px rgba(22, 163, 74, 0.18), 0 4px 12px -2px rgba(22, 163, 74, 0.08);
}

.contact-card-premium.card-email:hover {
  border-color: rgba(79, 70, 229, 0.35);
  box-shadow: 0 22px 35px -8px rgba(79, 70, 229, 0.18), 0 4px 12px -2px rgba(79, 70, 229, 0.08);
}

.contact-card-premium.card-location:hover {
  border-color: rgba(225, 29, 72, 0.35);
  box-shadow: 0 22px 35px -8px rgba(225, 29, 72, 0.18), 0 4px 12px -2px rgba(225, 29, 72, 0.08);
}

/* Card Top Row */
.card-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.contact-icon-bubble-new {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
  transition: transform 0.25s ease;
}

.contact-card-premium:hover .contact-icon-bubble-new {
  transform: scale(1.08) rotate(-3deg);
}

.contact-icon-bubble-new.blue {
  background: linear-gradient(135deg, #0150AC 0%, #0284C7 100%);
}
.contact-icon-bubble-new.green {
  background: linear-gradient(135deg, #16A34A 0%, #22C55E 100%);
}
.contact-icon-bubble-new.indigo {
  background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
}
.contact-icon-bubble-new.rose {
  background: linear-gradient(135deg, #E11D48 0%, #F43F5E 100%);
}

.contact-icon-bubble-new svg {
  width: 23px;
  height: 23px;
}

/* Status Pills */
.card-status-pill {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.card-status-pill.blue {
  background: rgba(1, 80, 172, 0.08);
  color: #0150AC;
  border: 1px solid rgba(1, 80, 172, 0.16);
}

.card-status-pill.green {
  background: rgba(22, 163, 74, 0.08);
  color: #16A34A;
  border: 1px solid rgba(22, 163, 74, 0.16);
}

.card-status-pill.indigo {
  background: rgba(79, 70, 229, 0.08);
  color: #4F46E5;
  border: 1px solid rgba(79, 70, 229, 0.16);
}

.card-status-pill.rose {
  background: rgba(225, 29, 72, 0.08);
  color: #E11D48;
  border: 1px solid rgba(225, 29, 72, 0.16);
}

/* Pulsing Indicators */
.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}

.pulse-dot.blue {
  background: #0150AC;
  box-shadow: 0 0 0 0 rgba(1, 80, 172, 0.6);
  animation: pulse-ring-blue 2s infinite;
}

.pulse-dot.green {
  background: #16A34A;
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.6);
  animation: pulse-ring-green 2s infinite;
}

@keyframes pulse-ring-blue {
  0% { box-shadow: 0 0 0 0 rgba(1, 80, 172, 0.6); }
  70% { box-shadow: 0 0 0 7px rgba(1, 80, 172, 0); }
  100% { box-shadow: 0 0 0 0 rgba(1, 80, 172, 0); }
}

@keyframes pulse-ring-green {
  0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.6); }
  70% { box-shadow: 0 0 0 7px rgba(22, 163, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

/* Card Body Content */
.card-body-content {
  flex: 1;
}

.card-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94A3B8;
  margin-bottom: 0.2rem;
  display: block;
}

.card-headline {
  font-size: 1.12rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 0.85rem 0;
  letter-spacing: -0.01em;
}

/* Phone & WhatsApp Links Inside Card */
.contact-card-premium .contact-dual-phones {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-card-premium .contact-phone-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 0.55rem 0.8rem;
  border-radius: 12px;
  text-decoration: none;
  color: #0F172A;
  font-weight: 800;
  font-size: 0.98rem;
  transition: all 0.2s ease;
}

.contact-card-premium .contact-phone-link:hover {
  background: #FFFFFF;
  border-color: #CBD5E1;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
  transform: translateX(3px);
  color: #0150AC;
}

.contact-card-premium.card-whatsapp .contact-phone-link:hover {
  color: #16A34A;
}

.phone-chip {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}

.phone-chip.blue {
  background: rgba(1, 80, 172, 0.1);
  color: #0150AC;
}

.phone-chip.green {
  background: rgba(22, 163, 74, 0.1);
  color: #16A34A;
}

.phone-chip.gray {
  background: #E2E8F0;
  color: #475569;
}

/* Email Box */
.contact-email-box {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-email-link {
  display: block;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 0.65rem 0.8rem;
  border-radius: 12px;
  text-decoration: none;
  color: #4F46E5;
  font-weight: 800;
  font-size: 0.98rem;
  word-break: break-all;
  transition: all 0.2s ease;
}

.contact-email-link:hover {
  background: #FFFFFF;
  border-color: #818CF8;
  box-shadow: 0 3px 10px rgba(79, 70, 229, 0.1);
  transform: translateX(3px);
}

/* Area Box */
.contact-area-box {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 0.65rem 0.8rem;
  border-radius: 12px;
}

.area-title {
  font-weight: 800;
  font-size: 0.98rem;
  color: #0F172A;
}

.card-subtext {
  font-size: 0.76rem;
  color: #64748B;
  margin-top: 0.2rem;
  line-height: 1.35;
}

/* Card Action Bar Strip */
.card-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  margin-top: 1.15rem;
  border-top: 1px dashed #E2E8F0;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s ease;
}

.card-action-bar.blue { color: #0150AC; }
.card-action-bar.green { color: #16A34A; }
.card-action-bar.indigo { color: #4F46E5; }
.card-action-bar.rose { color: #E11D48; }

.contact-card-premium:hover .card-action-bar svg {
  transform: translateX(5px);
}

.card-action-bar svg {
  transition: transform 0.2s ease;
}

/* Contact Form Card */
.contact-form-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
}

@media (min-width: 640px) {
  .contact-form-card {
    padding: 2.75rem 2.5rem;
  }
}

.form-header {
  margin-bottom: 1.75rem;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-title);
  margin-bottom: 0.5rem;
}

.form-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.care-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-title);
}

.form-label .required {
  color: var(--accent-coral);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-subtle);
  background: var(--bg-page);
  color: var(--text-title);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  background: #FFFFFF;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(1, 80, 172, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit-btn {
  width: 100%;
  padding: 1rem;
  border-radius: var(--radius-pill);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-hover));
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(1, 80, 172, 0.3);
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(1, 80, 172, 0.4);
}

.form-success-alert {
  display: none;
  background: var(--primary-green-light);
  border: 1px solid var(--primary-green);
  color: var(--primary-green-hover);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-success-alert.show {
  display: block;
}

/* ==========================================================================
   Location & Service Area Map Section
   ========================================================================== */
.location-section {
  padding: 5rem 0;
  background: #FFFFFF;
}

.location-wrapper {
  background: var(--bg-page);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 992px) {
  .location-wrapper {
    grid-template-columns: 1fr 1.2fr;
  }
}

.location-details {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-title);
  margin-bottom: 0.75rem;
}

.location-text {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.coverage-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.coverage-badge {
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-title);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.coverage-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-green);
}

.map-container {
  min-height: 380px;
  width: 100%;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(1.1) contrast(1.05);
}

/* ==========================================================================
   Dark Footer Style
   ========================================================================== */
.site-footer {
  background: var(--dark-bg);
  color: #FFFFFF;
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--dark-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
    gap: 3rem;
  }
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-logo img {
  height: 48px;
  width: auto;
}

.footer-tagline {
  font-size: 0.95rem;
  color: #94A3B8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.footer-col-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--primary-green);
  border-radius: var(--radius-pill);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-link {
  color: #94A3B8;
  font-size: 0.92rem;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-link:hover {
  color: #FFFFFF;
  transform: translateX(4px);
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #94A3B8;
  font-size: 0.92rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary-green);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-phones {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-contact-phones a {
  color: #FFFFFF;
  font-weight: 700;
}

.footer-contact-phones a:hover {
  color: var(--primary-green);
}

/* Social Media Icons */
.footer-social-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-icon-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--dark-card);
  color: #CBD5E1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--dark-border);
  transition: all var(--transition-fast);
}

.social-icon-link:hover {
  background: var(--primary-blue);
  color: #FFFFFF;
  border-color: var(--primary-blue);
  transform: translateY(-3px);
}

.social-icon-link svg {
  width: 18px;
  height: 18px;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom-bar {
    flex-direction: row;
    text-align: left;
  }
}

.copyright-text {
  font-size: 0.88rem;
  color: #94A3B8;
  line-height: 1.5;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.88rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer-legal-links a {
  color: #94A3B8;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.footer-legal-links a:hover {
  color: #64B431;
}

/* Full-Width Luxury Newsletter Card in Footer */
.footer-newsletter-box {
  background: linear-gradient(135deg, rgba(1, 80, 172, 0.22) 0%, rgba(100, 180, 49, 0.16) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 2.25rem 2.5rem;
  margin-bottom: 3.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.footer-newsletter-info {
  max-width: 520px;
}

.newsletter-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(100, 180, 49, 0.2);
  color: #86EFAC;
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}

.footer-newsletter-title {
  color: #FFFFFF;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  line-height: 1.25;
}

.footer-newsletter-desc {
  color: #CBD5E1;
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

.footer-newsletter-form {
  display: flex;
  gap: 0.6rem;
  width: 100%;
  max-width: 440px;
  flex-wrap: nowrap;
}

.footer-newsletter-input {
  flex: 1;
  min-width: 220px;
  padding: 0.85rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 17, 31, 0.6);
  color: #FFFFFF;
  outline: none;
  font-size: 0.92rem;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.footer-newsletter-input:focus {
  border-color: var(--primary-green);
  background: rgba(10, 17, 31, 0.85);
}

.footer-newsletter-btn {
  padding: 0.85rem 1.6rem;
  border-radius: 9999px;
  font-weight: 800;
  font-size: 0.9rem;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  background: #64B431;
  color: #FFFFFF;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(100, 180, 49, 0.4);
}

.footer-newsletter-btn:hover {
  background: #4F9424;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(100, 180, 49, 0.5);
}

@media (max-width: 768px) {
  .footer-newsletter-box {
    padding: 1.5rem;
    flex-direction: column;
    align-items: stretch;
  }
  .footer-newsletter-form {
    flex-direction: column;
    max-width: 100%;
  }
  .footer-newsletter-btn {
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   Sticky Bottom Mobile Action Bar
   ========================================================================== */
.mobile-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  padding: 0.6rem 0.75rem;
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.08);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 992px) {
  .mobile-action-bar {
    display: none;
  }
}

.mobile-bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 0.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
  transition: transform var(--transition-fast);
}

.mobile-bar-btn:active {
  transform: scale(0.96);
}

.mobile-bar-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.2;
}

.bar-btn-call {
  background: var(--primary-green);
  color: #FFFFFF;
}

.bar-btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
}

.bar-btn-book,
.bar-btn-call-req {
  background: linear-gradient(135deg, var(--primary-green) 0%, #2E7D32 100%);
  color: #FFFFFF;
}

.bar-btn-call-req:active {
  background: #1B5E20;
}

/* ==========================================================================
   Modals (Quick Call Chooser & Booking Drawer)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  max-width: 520px;
  width: 100%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  transform: translateY(20px) scale(0.96);
  transition: transform var(--transition-normal);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
}

.modal-overlay.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.modal-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-title);
}

.modal-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: background var(--transition-fast);
}

.modal-close-btn:hover {
  background: #E2E8F0;
  color: var(--text-title);
}

.modal-body {
  padding: 1.5rem 1.75rem;
  overflow-y: auto;
}

/* Call Modal Specifics */
.call-modal-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.phone-choice-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-page);
  border: 1.5px solid var(--border-subtle);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.phone-choice-card:hover {
  border-color: var(--primary-green);
  background: var(--primary-green-light);
  transform: translateY(-2px);
}

.phone-choice-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-icon-round {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary-green);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-number-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-title);
  line-height: 1.2;
}

.phone-number-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.btn-dial-tap {
  background: var(--primary-green);
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
}

@media (max-width: 576px) {
  .modal-overlay {
    padding: 0.65rem;
  }

  .modal-card {
    max-width: 100%;
    width: 100%;
    border-radius: var(--radius-lg);
    max-height: 94vh;
  }

  .modal-header {
    padding: 1rem 1.15rem;
  }

  .modal-title {
    font-size: 1.15rem;
  }

  .modal-body {
    padding: 1rem 1.15rem;
    -webkit-overflow-scrolling: touch;
  }

  .phone-choice-card {
    padding: 0.85rem 1rem;
    gap: 0.75rem;
  }

  .phone-choice-info {
    gap: 0.75rem;
  }

  .phone-icon-round {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
  }

  .phone-icon-round svg {
    width: 18px;
    height: 18px;
  }

  .phone-number-text {
    font-size: 1.05rem;
  }

  .phone-number-desc {
    font-size: 0.75rem;
  }

  .btn-dial-tap {
    padding: 0.4rem 0.75rem;
    font-size: 0.78rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
}

@media (max-width: 400px) {
  .phone-choice-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .btn-dial-tap {
    width: 100%;
    text-align: center;
    margin-top: 0.25rem;
  }
}

/* ==========================================================================
   Animations & Micro-interactions
   ========================================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Internal Page Hero & Breadcrumb
   ========================================================================== */
.page-hero {
  background: linear-gradient(135deg, #0A111F 0%, #111D32 60%, #0150AC 150%);
  color: #FFFFFF;
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 992px) {
  .page-hero {
    padding: 4.5rem 0 4rem;
  }
}

.page-hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #94A3B8;
  margin-bottom: 1rem;
}

.page-breadcrumb a {
  color: #CBD5E1;
  transition: color var(--transition-fast);
}

.page-breadcrumb a:hover {
  color: var(--primary-green);
}

.page-breadcrumb span.current {
  color: var(--primary-green);
  font-weight: 600;
}

.page-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.page-hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #CBD5E1;
  line-height: 1.6;
}

.nav-link.active {
  color: var(--primary-blue);
  font-weight: 700;
}

.nav-link.active::after {
  width: 100%;
}

.mobile-drawer-link.active {
  background: var(--primary-blue-light);
  color: var(--primary-blue);
}

/* ==========================================================================
   Comparison Table (Why Care Nest)
   ========================================================================== */
.comparison-table-wrapper {
  width: 100%;
  overflow-x: auto;
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
  margin-top: 2.5rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 620px;
}

.comparison-table th,
.comparison-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.comparison-table th {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-title);
  background: var(--bg-page);
}

.comparison-table th.highlight-col {
  background: var(--primary-blue-light);
  color: var(--primary-blue);
  border-top-left-radius: var(--radius-sm);
  border-top-right-radius: var(--radius-sm);
}

.comparison-table td.highlight-col {
  background: rgba(235, 243, 253, 0.4);
  font-weight: 600;
  color: var(--primary-blue);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--primary-blue-muted);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-title);
  text-align: left;
  background: none;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--primary-blue);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ==========================================================================
   Care Option Full Cards
   ========================================================================== */
.option-detail-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
}

.option-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-green);
}

.option-detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.option-badge-tag {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  background: var(--primary-green-light);
  color: var(--primary-green-hover);
}

/* ==========================================================================
   Booking Form Success Alert Box - Direct Match to Screenshot Design
   ========================================================================== */
.form-success-alert {
  display: none;
  background: #F0FDF4;
  border: 1.5px solid #22C55E;
  border-radius: 18px;
  padding: 1.5rem 1.75rem;
  margin-top: 1.25rem;
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.12);
  text-align: left;
  animation: fadeIn 0.4s ease-out;
}

.form-success-alert.show {
  display: block;
}

.form-success-alert .success-heading {
  color: #15803D;
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.3;
}

.form-success-alert .success-message {
  color: #166534;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.form-success-alert .btn-whatsapp-direct {
  background: #22C55E;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem;
  border-radius: 9999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}

.form-success-alert .btn-whatsapp-direct:hover {
  background: #16A34A;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(34, 197, 94, 0.5);
  color: #FFFFFF;
}

/* Maintenance Mode Full Screen Mask (100% Zero-Flash Guard) */
html.care-nest-maintenance-active,
html.care-nest-maintenance-active body {
  overflow: hidden !important;
  width: 100vw !important;
  height: 100vh !important;
  max-width: 100vw !important;
  max-height: 100vh !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #030712 !important;
  touch-action: none !important;
}

html.care-nest-maintenance-active body > *:not(#careNestMaintenanceOverlay),
body.care-nest-maintenance-active > *:not(#careNestMaintenanceOverlay) {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ==========================================================================
   CAREERS & RECRUITMENT PORTAL STYLES
   ========================================================================== */

/* Careers Hero */
.careers-hero {
  background: linear-gradient(135deg, #0A111F 0%, #111D32 60%, #0150AC 150%);
  color: #FFFFFF;
  padding: 4.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.careers-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(100, 180, 49, 0.18) 0%, rgba(1, 80, 172, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.careers-hero-inner {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.careers-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(100, 180, 49, 0.15);
  color: #64B431;
  border: 1px solid rgba(100, 180, 49, 0.35);
  padding: 0.4rem 1.1rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

.careers-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.careers-hero-title .highlight {
  background: linear-gradient(135deg, #38BDF8 0%, #64B431 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.careers-hero-desc {
  font-size: 1.1rem;
  color: #CBD5E1;
  line-height: 1.65;
  margin-bottom: 2rem;
}

/* Perks Strip */
.careers-perks-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.career-perk-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.25rem 1rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.career-perk-card:hover {
  transform: translateY(-3px);
  border-color: rgba(100, 180, 49, 0.4);
}

.career-perk-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.12);
  color: #38BDF8;
  margin: 0 auto 0.75rem;
}

.career-perk-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.career-perk-desc {
  font-size: 0.8rem;
  color: #94A3B8;
  line-height: 1.4;
}

/* Careers Filter Section */
.careers-filter-section {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.75rem 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  position: sticky;
  top: var(--header-height);
  z-index: 40;
}

.careers-filter-container {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1fr auto;
  gap: 0.85rem;
  align-items: center;
}

@media (max-width: 992px) {
  .careers-filter-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .careers-filter-container {
    grid-template-columns: 1fr;
  }
}

.career-search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.career-search-box svg {
  position: absolute;
  left: 1rem;
  color: var(--text-muted);
  pointer-events: none;
}

.career-search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  border: 1.5px solid var(--border-subtle);
  border-radius: 12px;
  font-size: 0.92rem;
  font-family: inherit;
  transition: all 0.2s ease;
  background: var(--bg-page);
}

.career-search-input:focus {
  outline: none;
  border-color: var(--primary-blue);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(1, 80, 172, 0.1);
}

.career-filter-select {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border-subtle);
  border-radius: 12px;
  font-size: 0.9rem;
  font-family: inherit;
  background: var(--bg-page);
  color: var(--text-title);
  cursor: pointer;
  transition: all 0.2s ease;
}

.career-filter-select:focus {
  outline: none;
  border-color: var(--primary-blue);
  background: #FFFFFF;
}

.btn-career-reset {
  background: var(--bg-page);
  border: 1.5px solid var(--border-subtle);
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-career-reset:hover {
  background: #E2E8F0;
  color: var(--text-title);
}

/* Openings Section Header */
.careers-listings-section {
  padding: 3.5rem 0 5rem;
  background: var(--bg-page);
}

.careers-listings-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.careers-listings-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--text-title);
}

.careers-listings-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 0.25rem;
}

.careers-count-badge {
  background: var(--primary-blue-light);
  color: var(--primary-blue);
  border: 1px solid var(--primary-blue-muted);
  padding: 0.45rem 1.1rem;
  border-radius: 9999px;
  font-weight: 800;
  font-size: 0.88rem;
}

/* Job Cards Grid */
.careers-jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 1.75rem;
}

@media (max-width: 480px) {
  .careers-jobs-grid {
    grid-template-columns: 1fr;
  }
}

.job-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  position: relative;
}

.job-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-blue);
  box-shadow: 0 16px 36px rgba(1, 80, 172, 0.12);
}

.job-card-header {
  margin-bottom: 1.25rem;
}

.job-dept-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}

.job-dept-badge {
  background: var(--primary-blue-light);
  color: var(--primary-blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
}

.job-type-badge {
  background: var(--primary-green-light);
  color: var(--primary-green-hover);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid var(--primary-green-muted);
}

.job-title {
  font-family: var(--font-heading);
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--text-title);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.job-meta-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.job-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.86rem;
  color: var(--text-muted);
  font-weight: 600;
}

.job-meta-item svg {
  color: var(--primary-blue);
  flex-shrink: 0;
}

.job-meta-item.salary-highlight {
  color: #047857;
  background: #ECFDF5;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  font-weight: 700;
  width: fit-content;
}

.job-card-body {
  flex: 1;
}

.job-description {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.job-qual-box {
  background: #F8FAFC;
  border-left: 3px solid var(--primary-blue);
  padding: 0.75rem 0.85rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 1rem;
}

.job-qual-title {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-blue);
  margin-bottom: 0.2rem;
  letter-spacing: 0.04em;
}

.job-qual-text {
  font-size: 0.85rem;
  color: var(--text-title);
  font-weight: 600;
  line-height: 1.4;
}

.job-responsibilities-preview {
  margin-bottom: 1rem;
}

.job-sub-heading {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

.job-resp-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.job-resp-list li {
  font-size: 0.84rem;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  line-height: 1.4;
}

.job-resp-list li svg {
  margin-top: 3px;
  flex-shrink: 0;
}

.job-skills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.job-skill-badge {
  background: #F1F5F9;
  color: #475569;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  border: 1px solid #E2E8F0;
}

.job-card-footer {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.job-deadline-info {
  display: flex;
  flex-direction: column;
}

.deadline-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
}

.deadline-val {
  font-size: 0.85rem;
  font-weight: 800;
  color: #0F172A;
}

.btn-job-apply {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #00377A 100%);
  color: #FFFFFF;
  border: none;
  padding: 0.7rem 1.4rem;
  border-radius: 9999px;
  font-weight: 800;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(1, 80, 172, 0.25);
}

.btn-job-apply:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(1, 80, 172, 0.4);
  background: linear-gradient(135deg, #003F8A 0%, #002B60 100%);
}

/* ==========================================================================
   CAREER APPLICATION MODAL (Multi-Step & Review)
   ========================================================================== */
.career-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 17, 31, 0.82);
  backdrop-filter: blur(8px);
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  overflow-y: auto;
}

.career-modal-overlay.open {
  display: flex;
}

.career-modal-content {
  background: #FFFFFF;
  border-radius: 24px;
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  display: flex;
  flex-direction: column;
  animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
  0% { transform: scale(0.95); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.career-modal-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FAFBFD;
  border-radius: 24px 24px 0 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.career-modal-header-info {
  display: flex;
  flex-direction: column;
}

.career-modal-badge {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-blue);
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.career-modal-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-title);
  margin: 0;
}

.career-modal-close {
  background: #F1F5F9;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.career-modal-close:hover {
  background: #E2E8F0;
  color: var(--text-title);
}

.career-modal-body {
  padding: 2rem;
  flex: 1;
}

/* Steps Indicator */
.career-steps-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px dashed var(--border-subtle);
}

.step-indicator-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
}

.step-indicator-item.active {
  color: var(--primary-blue);
}

.step-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #E2E8F0;
  color: #64748B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
}

.step-indicator-item.active .step-circle {
  background: var(--primary-blue);
  color: #FFFFFF;
}

/* CV Dropzone */
.cv-dropzone {
  border: 2px dashed #CBD5E1;
  border-radius: 16px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  background: #F8FAFC;
  cursor: pointer;
  transition: all 0.25s ease;
}

.cv-dropzone:hover,
.cv-dropzone.drag-active {
  border-color: var(--primary-blue);
  background: #F0F7FF;
}

.cv-dropzone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(1, 80, 172, 0.08);
  color: var(--primary-blue);
  margin: 0 auto 0.65rem;
}

.cv-dropzone-title {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-title);
  margin-bottom: 0.25rem;
}

.cv-dropzone-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.cv-selected-badge {
  margin-top: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-blue);
}

/* Review Dossier Card */
.review-dossier-card {
  background: #F8FAFC;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
}

.review-row-item {
  display: flex;
  flex-direction: column;
}

.review-row-item.full-width {
  grid-column: 1 / -1;
}

.review-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.review-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-title);
  word-break: break-word;
}

.review-skill-pill {
  display: inline-block;
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  margin: 2px;
  color: #334155;
}

/* Success Step */
.career-success-box {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.career-success-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #DCFCE7;
  color: #16A34A;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.2rem;
  border: 3px solid #86EFAC;
}

.career-success-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--text-title);
  margin-bottom: 0.75rem;
}

.career-app-id-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-blue-light);
  color: var(--primary-blue);
  border: 1px solid var(--primary-blue-muted);
  padding: 0.55rem 1.4rem;
  border-radius: 9999px;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.04em;
  margin: 1rem 0 1.5rem;
}

.career-success-desc {
  color: var(--text-body);
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto 2rem;
}

.spinner-loading {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #FFFFFF;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   CAREER APPLICATION FORM RESPONSIVE MOBILE STYLES
   ========================================================================== */
.career-form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin-bottom: 1.1rem;
}

.career-form-grid-3 {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.1rem;
  margin-bottom: 1.1rem;
}

.career-form-group {
  margin-bottom: 1.1rem;
}

.career-form-label {
  font-weight: 700;
  font-size: 0.88rem;
  display: block;
  margin-bottom: 0.4rem;
  color: #1E293B;
}

.career-form-input,
.career-form-select,
.career-form-textarea {
  width: 100%;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 0.95rem;
  color: #0F172A;
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  transition: all 0.2s ease;
}

.career-form-input:focus,
.career-form-select:focus,
.career-form-textarea:focus {
  outline: none;
  border-color: #0150AC;
  box-shadow: 0 0 0 3px rgba(1, 80, 172, 0.15);
  background: #FFFFFF;
}

.career-form-input::placeholder,
.career-form-textarea::placeholder {
  color: #94A3B8;
  font-size: 0.9rem;
}

.career-form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.career-form-textarea {
  min-height: 85px;
  resize: vertical;
}

/* Skills Checkboxes Grid */
.career-skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.65rem;
  background: #F8FAFC;
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid #E2E8F0;
}

.career-skill-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: #334155;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.career-skill-item:hover {
  border-color: #0150AC;
  background: #F0F7FF;
}

.career-skill-item input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: #0150AC;
  cursor: pointer;
}

/* Stepper Divider */
.step-divider-line {
  flex: 1;
  max-width: 45px;
  height: 2px;
  background: #CBD5E1;
  margin: 0 0.5rem;
}

/* Modal Actions */
.career-modal-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid #E2E8F0;
  padding-top: 1.25rem;
  margin-top: 0.5rem;
}

.career-modal-actions.review-actions {
  justify-content: space-between;
}

.btn-modal-proceed {
  padding: 0.75rem 1.8rem;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.95rem;
}

/* ==========================================================================
   MOBILE BREAKPOINTS (< 768px and < 640px and < 400px)
   ========================================================================== */
@media (max-width: 768px) {
  .career-form-grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .career-modal-overlay {
    padding: 0.5rem;
    align-items: flex-end;
  }

  .career-modal-content {
    border-radius: 20px 20px 0 0;
    max-height: 94vh;
    width: 100%;
    margin-bottom: 0;
  }

  .career-modal-header {
    padding: 1rem 1.25rem;
    border-radius: 20px 20px 0 0;
  }

  .career-modal-title {
    font-size: 1.15rem;
  }

  .career-modal-badge {
    font-size: 0.68rem;
  }

  .career-modal-close {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .career-modal-body {
    padding: 1.2rem 1.1rem 1.5rem;
  }

  .career-steps-bar {
    gap: 0.35rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.85rem;
    justify-content: space-between;
  }

  .step-indicator-item {
    font-size: 0.78rem;
    gap: 0.35rem;
  }

  .step-circle {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
  }

  .step-divider-line {
    max-width: 24px;
    margin: 0 0.15rem;
  }

  .career-form-grid-2,
  .career-form-grid-3 {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
  }

  .career-form-group {
    margin-bottom: 0.85rem;
  }

  .career-form-label {
    font-size: 0.84rem;
    margin-bottom: 0.3rem;
  }

  .career-form-input,
  .career-form-select,
  .career-form-textarea {
    font-size: 16px; /* Prevents auto-zoom on iPhone / Safari */
    min-height: 48px;
    padding: 0.7rem 0.85rem;
    border-radius: 10px;
  }

  .career-skills-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 12px;
  }

  .career-skill-item {
    padding: 0.65rem 0.75rem;
    font-size: 0.88rem;
    min-height: 44px;
  }

  .cv-dropzone {
    padding: 1.25rem 1rem;
    border-radius: 12px;
  }

  .cv-dropzone-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 0.4rem;
  }

  .cv-dropzone-title {
    font-size: 0.88rem;
  }

  .cv-dropzone-hint {
    font-size: 0.75rem;
  }

  .career-modal-actions,
  .career-modal-actions.review-actions {
    flex-direction: column-reverse;
    gap: 0.65rem;
    padding-top: 1rem;
  }

  .career-modal-actions button,
  .career-modal-actions a,
  .btn-modal-proceed {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    text-align: center;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
  }

  .review-dossier-card {
    padding: 1rem;
    border-radius: 12px;
  }

  .review-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .review-val {
    font-size: 0.9rem;
    word-break: break-word;
  }
}

@media (max-width: 400px) {
  .step-indicator-item span:not(.step-circle) {
    display: none; /* Show only step numbers 1, 2, 3 on small phones */
  }

  .career-steps-bar {
    justify-content: center;
    gap: 1rem;
  }

  .step-divider-line {
    max-width: 40px;
  }
}

/* Hide PWA Install Banner per user request */
#careNestPwaBanner {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

