/* ============================================================
   Nova Nursing Services — Global Stylesheet
   Colors: Navy #0B2545 | Gold #a3823b | White #FFFFFF
   Font: Inter (Google Fonts)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800&display=swap');

/* ——— CSS Variables ——— */
:root {
  --navy: #0B2545;
  --navy-dark: #071A35;
  --navy-medium: #1a3a6b;
  --teal: #a3823b;
  --teal-dark: #8a6e32;
  --teal-light: #f7f0e3;
  --white: #FFFFFF;
  --gray-light: #f4f7fb;
  --gray-mid: #e2e8f0;
  --gray-text: #6b7a90;
  --text-dark: #1a2a45;
  --text-body: #3d4d63;

  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 40px;

  --shadow-sm: 0 2px 10px rgba(11, 37, 69, 0.07);
  --shadow-md: 0 8px 30px rgba(11, 37, 69, 0.12);
  --shadow-lg: 0 20px 60px rgba(11, 37, 69, 0.16);

  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

/* ——— Reset & Base ——— */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ——— Top Bar ——— */
.top-bar {
  background: var(--navy-dark);
  color: #fff;
  font-size: 0.85rem;
  padding: 10px 0;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-item svg {
  width: 16px;
  height: 16px;
  color: #fff;
}

.top-bar-item a,
.top-bar-item span {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.top-bar-item a:hover {
  color: var(--teal);
}

.pt-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pt-socials a {
  color: #fff;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pt-socials a:hover {
  opacity: 0.7;
}

.pt-socials svg {
  width: 16px;
  height: 16px;
}

/* ——— Navigation ——— */
nav.navbar {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(11, 37, 69, 0.10);
  transition: var(--transition);
}

nav.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(11, 37, 69, 0.18);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  color: white;
  width: 22px;
  height: 22px;
}

.logo-text .brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.logo-text .brand-sub {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transform: scaleX(0);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--teal);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--teal);
}

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(163, 130, 59, 0.35);
}

.btn-primary[style*="background-color: #a3823b"]:hover {
  /* Override for gold button */
  background: #8a6e32 !important;
  border-color: #8a6e32 !important;
  box-shadow: 0 6px 20px rgba(163, 130, 59, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline[style*="border-color: #a3823b"]:hover {
  /* Override for gold outline button */
  background: #a3823b !important;
  color: #fff !important;
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: white;
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--teal-light);
  border-color: var(--teal);
  color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(11, 37, 69, 0.15);
}

.btn-lg {
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-md);
}

.btn-sm {
  font-size: 0.82rem;
  padding: 8px 18px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Off-Canvas Mobile Nav */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 37, 69, 0.6);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  backdrop-filter: blur(4px);
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-offcanvas {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  overflow-y: auto;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
}

.mobile-menu-offcanvas.open {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-mid);
}

.mobile-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-dark);
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
}

.mobile-close:hover {
  color: var(--teal);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-list .nav-link {
  font-size: 1.15rem;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid transparent;
  width: 100%;
  display: block;
}

.mobile-nav-list .nav-link::after {
  display: none;
}

.mobile-menu-ctas {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ——— Container ——— */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ——— Section Common ——— */
section {
  padding: 90px 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-tag svg {
  width: 14px;
  height: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.section-title span {
  color: var(--teal);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-text);
  max-width: 620px;
  line-height: 1.75;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-subtitle {
  margin: 16px auto 0;
}

/* ——— HERO ——— */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero .container {
  width: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
      rgba(7, 26, 53, 0.92) 0%,
      rgba(11, 37, 69, 0.82) 50%,
      rgba(11, 37, 69, 0.55) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(163, 130, 59, 0.18);
  border: 1px solid rgba(163, 130, 59, 0.4);
  color: var(--teal);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  animation: blinkTag 5s ease-in-out infinite;
}

@keyframes blinkTag {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.hero-tag span {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  display: block;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.7;
  }
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero h1 em,
.hero h1 .hero-subtitle {
  font-style: normal;
  color: var(--teal);
  display: block;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 600;
  margin-top: 10px;
  letter-spacing: 0.5px;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin-bottom: 42px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}

.hero-stat .num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1.5px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(163, 130, 59, 0.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    opacity: 1;
    transform: scaleY(1) translateY(0);
  }

  100% {
    opacity: 0;
    transform: scaleY(0.3) translateY(20px);
  }
}

/* ——— About Preview ——— */
.about-preview {
  background: var(--gray-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-badge-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.about-badge-text strong {
  font-size: 1.4rem;
  color: var(--navy);
  font-weight: 800;
  display: block;
  line-height: 1;
}

.about-badge-text span {
  font-size: 0.78rem;
  color: var(--gray-text);
}

.about-content .section-title {
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 20px;
  color: var(--text-body);
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
}

.highlight-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal-light);
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-dot svg {
  width: 11px;
  height: 11px;
  color: var(--teal-dark);
}

/* ——— Services ——— */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-medium));
  opacity: 0;
  transition: var(--transition);
  border-radius: var(--radius-md);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover .service-icon {
  background: rgba(163, 130, 59, 0.2);
}

.service-card:hover .service-icon svg {
  color: var(--teal);
}

.service-card:hover h3 {
  color: var(--white);
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.72);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--teal-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--teal-dark);
  transition: var(--transition);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.7;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

/* ——— Why Choose ——— */
.why-choose {
  background: linear-gradient(145deg, #f0f7ff 0%, #e8f4f4 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: var(--transition);
  border: 1px solid transparent;
}

.why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-light);
}

.why-item-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-item-icon svg {
  width: 22px;
  height: 22px;
  color: white;
}

.why-item-text h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.why-item-text p {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.65;
}

/* ——— Staff Types ——— */
.staff-types {
  background: var(--navy);
}

.staff-types .section-title {
  color: var(--white);
}

.staff-types .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.staff-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.staff-card:hover {
  background: rgba(163, 130, 59, 0.12);
  border-color: rgba(163, 130, 59, 0.35);
  transform: translateY(-4px);
}

.staff-initials {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: white;
  margin-bottom: 18px;
}

.staff-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.staff-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ——— For Facilities / Two-col CTA ——— */
.dual-cta {
  background: var(--white);
}

.dual-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.cta-panel {
  border-radius: var(--radius-lg);
  padding: 56px 44px;
  position: relative;
  overflow: hidden;
}

.cta-panel-facilities {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-medium) 100%);
}

.cta-panel-careers {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
}

.cta-panel-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.cta-panel-icon svg {
  width: 30px;
  height: 30px;
  color: white;
}

.cta-panel h3 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.25;
}

.cta-panel ul {
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-panel ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.cta-panel ul li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

.cta-panel-deco {
  position: absolute;
  right: -30px;
  top: -30px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.cta-panel-deco::after {
  content: '';
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

/* ——— Testimonials ——— */
.testimonials {
  background: var(--gray-light);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
}

.star {
  color: #f59e0b;
  font-size: 1.2rem;
}

.testimonial-text {
  font-size: 1.2rem;
  color: var(--text-dark);
  line-height: 1.75;
  font-style: italic;
  font-weight: 400;
}

.testimonial-text::before {
  content: '\201C';
  color: var(--teal);
  font-size: 3rem;
  line-height: 0;
  vertical-align: -0.5em;
  margin-right: 4px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--gray-mid);
  padding-top: 24px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.author-info strong {
  font-weight: 700;
  color: var(--text-dark);
  display: block;
}

.author-info span {
  font-size: 0.85rem;
  color: var(--gray-text);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--navy);
  color: white;
}

.slider-btn svg {
  width: 18px;
  height: 18px;
}

.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-mid);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.slider-dot.active {
  background: var(--teal);
  width: 24px;
  border-radius: 4px;
}

/* ——— Final CTA ——— */
.final-cta {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-medium) 100%);
  padding: 110px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.deco-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(163, 130, 59, 0.06);
}

.final-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.final-cta h2 span {
  color: var(--teal);
}

.final-cta p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
  margin: 0 auto 42px;
}

.final-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ——— Page Hero (Inner Pages) ——— */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-medium) 100%);
  padding: 110px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-top: 12px;
  margin-bottom: 18px;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--teal);
}

.breadcrumb span:not(:last-child)::after {
  content: '/';
  margin-left: 8px;
}

/* ——— Values ——— */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 28px;
  text-align: center;
  border: 1px solid var(--gray-mid);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-light);
}

.value-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.value-icon svg {
  width: 30px;
  height: 30px;
  color: white;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.65;
}

/* ——— Compliance / Trust Banner ——— */
.trust-banner {
  background: var(--navy);
  padding: 60px 0;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.trust-item {
  text-align: center;
  color: white;
  padding: 20px;
}

.trust-item svg {
  width: 40px;
  height: 40px;
  color: var(--teal);
  margin: 0 auto 14px;
  display: block;
}

.trust-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.trust-item p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ——— Careers Page ——— */
.job-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.job-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.job-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--teal-light);
  transform: translateY(-3px);
}

.job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.job-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.job-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

.job-badge-casual {
  background: #e0f7f7;
  color: var(--teal-dark);
}

.job-badge-perm {
  background: #e8edff;
  color: #3a56d4;
}

.job-badge-contract {
  background: #fff4e0;
  color: #b07a00;
}

.job-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--gray-text);
}

.job-meta-item svg {
  width: 14px;
  height: 14px;
  color: var(--teal);
}

.job-card p {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.65;
  flex: 1;
}

.job-card .btn {
  align-self: flex-start;
}

/* Application Form */
.apply-form {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 52px;
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--gray-light);
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: white;
  box-shadow: 0 0 0 3px rgba(163, 130, 59, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.file-upload-area {
  border: 2px dashed var(--gray-mid);
  border-radius: var(--radius-md);
  padding: 36px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--gray-light);
}

.file-upload-area:hover {
  border-color: var(--teal);
  background: var(--teal-light);
}

.file-upload-area svg {
  width: 40px;
  height: 40px;
  color: var(--gray-text);
  margin: 0 auto 12px;
  display: block;
}

.file-upload-area p {
  font-size: 0.9rem;
  color: var(--gray-text);
}

.file-upload-area span {
  color: var(--teal);
  font-weight: 600;
  cursor: pointer;
}

.file-upload-area input[type=file] {
  display: none;
}

.form-submit {
  margin-top: 8px;
}

/* ——— Benefits ——— */
.benefits-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
}

.tab-btn {
  flex: 1;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--gray-mid);
  background: white;
  color: var(--gray-text);
  transition: var(--transition);
  text-align: center;
}

.tab-btn.active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

.tab-btn:hover:not(.active) {
  border-color: var(--teal);
  color: var(--teal);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.benefit-item {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: var(--transition);
}

.benefit-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--teal-light);
  transform: translateY(-3px);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
  color: white;
}

.benefit-text h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.benefit-text p {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.65;
}

/* ——— Contact Page ——— */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: var(--transition);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--teal-light);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
  color: white;
}

.contact-info-text strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  display: block;
  margin-bottom: 4px;
}

.contact-info-text a,
.contact-info-text span {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.65;
}

.contact-info-text a {
  color: var(--teal);
}

.contact-info-text a:hover {
  text-decoration: underline;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 28px;
}

/* ——— Footer ——— */
footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.75);
}

.footer-top {
  padding: 80px 0 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand .logo-text .brand-name {
  color: white;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 280px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.footer-social {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-social:hover {
  background: var(--teal);
  color: white;
  transform: translateY(-2px);
}

.footer-social svg {
  width: 17px;
  height: 17px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a::before {
  content: '›';
  color: var(--teal);
  font-size: 1.1rem;
}

.footer-col ul li a:hover {
  color: var(--teal);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item a:hover {
  color: var(--teal);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 22px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--teal);
}

.footer-compliance {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  padding: 16px 0 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ——— Scroll Animation ——— */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

[data-reveal="left"] {
  transform: translateX(-30px);
}

[data-reveal="right"] {
  transform: translateX(30px);
}

[data-reveal="scale"] {
  transform: scale(0.92);
}

[data-reveal].revealed {
  transform: none;
}

/* ——— Utility ——— */
.text-center {
  text-align: center;
}

.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.bg-light {
  background: var(--gray-light);
}

.bg-navy {
  background: var(--navy);
}

/* ——— Responsive ——— */
@media (max-width: 1024px) {

  .services-grid,
  .why-grid,
  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .tab-panel.active {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 64px 0;
  }

  .top-bar .container {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .top-bar-left {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    justify-content: center;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu,
  .nav-ctas {
    display: none;
  }

  .hero {
    min-height: 85vh;
  }

  .hero-stats {
    gap: 24px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-img-wrap img {
    height: 320px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .staff-grid {
    grid-template-columns: 1fr 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-items {
    grid-template-columns: 1fr 1fr;
  }

  .dual-cta-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    padding: 40px 28px;
  }

  .testimonial-card {
    padding: 36px 28px;
  }

  .testimonial-text {
    font-size: 1.05rem;
  }

  .job-cards {
    grid-template-columns: 1fr;
  }

  .apply-form {
    padding: 32px 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: 1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 32px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .benefits-tabs {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .staff-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .trust-items {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: 2.2rem;
  }
}