/* =========================================
   CareLink Staffing LLC - Figma Design System
   ========================================= */

/* === Google Fonts === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* === CSS Variables === */
:root {
  /* Colors */
  --primary-blue: #2a3990;
  --primary-blue-dark: #1e2d6f;
  --salmon: #d4837a;
  --salmon-light: #e8a59e;
  --salmon-bg: #d4837a;
  --salmon-pale: #f5e0dd;
  --pink-section: #d4837a;

  --navy-text: #1a1a2e;
  --body-text: #666;
  --heading-text: #222;
  --light-text: #999;

  --white: #ffffff;
  --off-white: #f8f9fc;
  --light-bg: #f0f4fa;
  --border-light: #eee;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Spacing */
  --container-width: 1200px;
  --section-padding: 80px 0;

  /* Effects */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50px;
}

/* === Reset & Base === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--body-text);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--heading-text);
  line-height: 1.2;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* === Top Info Bar === */
.top-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 8px 0;
  font-size: 0.85rem;
  color: var(--body-text);
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-social {
  display: flex;
  gap: 8px;
}

.top-bar-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: var(--transition);
}

.top-bar-social a:hover {
  background: var(--salmon);
  transform: translateY(-2px);
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-info .icon {
  color: var(--salmon);
  font-size: 0.9rem;
}

/* === Main Navigation === */
.navbar {
  background: var(--white);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-logo img {
  height: 45px;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.nav-logo-text .care {
  color: var(--primary-blue);
}

.nav-logo-text .link-part {
  color: var(--salmon);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 18px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--heading-text);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-blue);
}

.nav-cta {
  background: var(--primary-blue) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  font-weight: 600 !important;
  border-radius: var(--radius-full) !important;
  margin-left: 10px;
}

.nav-cta:hover {
  background: var(--primary-blue-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(42, 57, 144, 0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--heading-text);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
}

.nav-overlay.active {
  display: block;
}

/* === Hero Section === */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-text);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(20, 20, 40, 0.7) 0%,
      rgba(20, 20, 40, 0.4) 50%,
      rgba(20, 20, 40, 0.2) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 650px;
  padding: 60px 0;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--salmon-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 30px;
  font-style: italic;
  max-width: 500px;
}

.hero .btn-primary {
  background: var(--primary-blue);
  color: var(--white);
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--primary-blue);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(42, 57, 144, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--primary-blue);
  color: var(--white);
}

/* === Features Bar === */
.features-bar {
  background: linear-gradient(135deg, var(--salmon) 0%, var(--salmon-light) 100%);
  padding: 40px 0;
  position: relative;
}

.features-bar::before,
.features-bar::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-image: repeating-linear-gradient(to right,
      var(--salmon-light),
      var(--salmon-light) 8px,
      transparent 8px,
      transparent 16px);
}

.features-bar::before {
  top: 0;
}

.features-bar::after {
  bottom: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.feature-item h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

/* === Section Common === */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section-light {
  background: var(--off-white);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--salmon);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--heading-text);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--body-text);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* === About Section === */
.about-section {
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text .section-tag {
  text-align: left;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--heading-text);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-text>p {
  color: var(--body-text);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-sub-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.about-sub-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-sub-feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--salmon-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--salmon);
  flex-shrink: 0;
}

.about-sub-feature h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--heading-text);
  line-height: 1.3;
}

.about-sub-feature p {
  font-size: 0.8rem;
  color: var(--body-text);
}

.about-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 30px;
  margin-bottom: 24px;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--body-text);
  padding: 4px 0;
}

.about-checklist li .check {
  color: var(--salmon);
  font-size: 1rem;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  min-height: 400px;
}

.about-image-wrap::after {
  content: '';
  position: absolute;
  top: -15px;
  right: -15px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border: 2px dashed var(--salmon);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.years-badge {
  position: absolute;
  bottom: 40px;
  left: -20px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--salmon);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  box-shadow: var(--shadow-lg);
}

.years-badge .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.years-badge .label {
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.3;
  margin-top: 4px;
}

/* === Services Section === */
.services-section {
  background: var(--off-white);
  padding: 80px 0;
  overflow: hidden;
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.services-left,
.services-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card.active-card {
  border: 2px dashed var(--salmon);
}

.service-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--salmon-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--salmon);
}

.service-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--salmon);
  margin-bottom: 6px;
}

.service-card-content p {
  font-size: 0.85rem;
  color: var(--body-text);
  line-height: 1.6;
}

.services-center-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.services-center-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  min-height: 500px;
}

/* === Why Choose Us (Pink Section) === */
.why-section {
  background: linear-gradient(135deg, var(--salmon) 0%, var(--salmon-light) 100%);
  padding: 80px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-image-wrap {
  position: relative;
}

.why-image-main {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.3);
}

.why-image-wrap::after {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 420px;
  height: 420px;
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  z-index: 0;
}

.why-image-small {
  position: absolute;
  bottom: 0;
  right: 40px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.5);
  z-index: 2;
}

.why-text .section-tag {
  color: rgba(255, 255, 255, 0.85);
}

.why-text h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 16px;
}

.why-text>p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.why-checklist {
  margin-bottom: 24px;
}

.why-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.why-checklist li .check {
  color: var(--white);
  font-size: 1rem;
}

.why-separator {
  border: none;
  border-top: 2px dashed rgba(255, 255, 255, 0.3);
  margin: 24px 0;
}

.why-phone-block {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 24px;
}

.why-phone-block .phone-info p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2px;
}

.why-phone-block .phone-info h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--white);
}

.dedication-badge {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  border: 2px dashed var(--salmon-pale);
}

.dedication-badge .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--salmon);
}

.dedication-badge .label {
  font-size: 0.85rem;
  color: var(--heading-text);
  font-weight: 500;
}

.why-text .btn-primary {
  background: var(--primary-blue);
  color: var(--white);
}

/* === Stats Bar === */
.stats-section {
  padding: 60px 0;
  background: var(--off-white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--white);
  border: 2px dashed var(--salmon-pale);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-card .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--salmon);
  display: block;
  margin-bottom: 6px;
}

.stat-card .label {
  font-size: 0.9rem;
  color: var(--body-text);
  font-weight: 500;
}

/* === How It Works + Contact === */
.how-contact-section {
  padding: 80px 0;
  background: var(--off-white);
}

.how-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.how-it-works .section-tag {
  text-align: left;
}

.how-it-works h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--heading-text);
  margin-bottom: 16px;
}

.how-it-works>p {
  color: var(--body-text);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.steps-list {
  position: relative;
}

.steps-list::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  width: 2px;
  border-left: 2px dashed var(--salmon-pale);
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--salmon);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--heading-text);
  margin-bottom: 6px;
}

.step-content p {
  font-size: 0.85rem;
  color: var(--body-text);
  line-height: 1.6;
}

.how-center-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.how-center-image img {
  width: 100%;
  max-width: 350px;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.contact-form-wrap {
  position: relative;
}

.contact-form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--heading-text);
  margin-bottom: 6px;
}

.contact-form-wrap>p {
  font-size: 0.85rem;
  color: var(--body-text);
  margin-bottom: 20px;
}

.contact-form-card {
  background: var(--salmon);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 2px dashed var(--salmon-light);
}

.contact-form-card .form-group {
  margin-bottom: 14px;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--white);
  color: var(--heading-text);
  outline: none;
  transition: var(--transition);
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
  color: var(--light-text);
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  box-shadow: 0 0 0 3px rgba(42, 57, 144, 0.2);
}

.contact-form-card textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-form-card .btn-primary {
  background: var(--primary-blue);
  color: var(--white);
  width: auto;
  margin-top: 6px;
}

/* File Upload Custom Styles */
.file-upload-group {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
}

.file-upload-label {
  cursor: pointer;
  color: var(--salmon);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.file-upload-label:hover {
  filter: brightness(0.9);
}

.file-name-display {
  font-size: 0.8rem;
  color: var(--light-text);
}

/* === Testimonials === */
.testimonials-section {
  padding: 80px 0;
  background: var(--off-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.testimonial-card {
  background: var(--white);
  border: 2px dashed var(--salmon-pale);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.quote-icon {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--salmon);
  line-height: 1;
  margin-bottom: 12px;
}

.testimonial-card p {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-style: italic;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 10px;
  border: 2px dashed var(--salmon-pale);
  padding: 3px;
}

.testimonial-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--salmon);
  margin-bottom: 2px;
}

.testimonial-card .designation {
  font-size: 0.8rem;
  color: var(--light-text);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.testimonial-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--salmon-pale);
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dots .dot.active {
  background: var(--salmon);
}

/* === Video Section === */
.video-section {
  position: relative;
  margin: 0;
  border: 2px dashed var(--salmon);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.video-section img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  color: var(--salmon);
}

.play-btn:hover {
  background: var(--white);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: var(--shadow-lg);
}

/* === FAQ Section === */
.faq-section {
  padding: 80px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.faq-image-wrap {
  position: relative;
}

.faq-image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  min-height: 400px;
}

.faq-image-wrap::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 2px dashed var(--salmon);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.faq-content .section-tag {
  text-align: left;
}

.faq-content h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--heading-text);
  margin-bottom: 12px;
}

.faq-content>p {
  color: var(--body-text);
  font-size: 0.9rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--salmon);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--heading-text);
  background: var(--white);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary-blue);
}

.faq-question .faq-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--salmon-pale);
  color: var(--salmon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  background: var(--salmon);
  color: var(--white);
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 16px;
  max-height: 200px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--body-text);
  line-height: 1.7;
}

/* === Blog Section === */
.blog-section {
  padding: 80px 0;
  background: var(--off-white);
}

.blog-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
}

.blog-featured {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.blog-featured img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.blog-featured-date {
  position: absolute;
  bottom: -15px;
  right: 20px;
  background: var(--primary-blue);
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600;
  font-size: 0.8rem;
  line-height: 1.3;
}

.blog-featured-content {
  padding: 24px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--light-text);
  margin-bottom: 10px;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-featured-content h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--heading-text);
  margin-bottom: 10px;
}

.blog-featured-content p {
  font-size: 0.9rem;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 14px;
}

.blog-read-more {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--salmon);
}

.blog-read-more:hover {
  color: var(--primary-blue);
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-side-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.blog-side-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.blog-side-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 120px;
}

.blog-side-content {
  padding: 16px 16px 16px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-side-content h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--heading-text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.blog-side-content p {
  font-size: 0.8rem;
  color: var(--body-text);
  line-height: 1.5;
  margin-bottom: 8px;
}

.blog-side-content .blog-read-more {
  font-size: 0.8rem;
}

/* === Footer === */
.footer {
  background: var(--white);
  padding: 60px 0 0;
  border-top: 1px solid var(--border-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--body-text);
  line-height: 1.7;
  margin-top: 16px;
}

.footer-brand .nav-logo-text {
  font-size: 1.4rem;
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--heading-text);
  margin-bottom: 16px;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  font-size: 0.9rem;
  color: var(--body-text);
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--salmon);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--body-text);
}

.footer-contact-item .icon {
  color: var(--salmon);
  font-size: 1rem;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 2px dashed var(--salmon-pale);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--body-text);
  font-style: italic;
  font-family: var(--font-heading);
}

.footer-bottom-social {
  display: flex;
  gap: 8px;
}

.footer-bottom-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: var(--transition);
}

.footer-bottom-social a:hover {
  background: var(--salmon);
  transform: translateY(-2px);
}

/* === Cookie Banner === */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  max-width: 600px;
  width: 90%;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.cookie-banner p {
  font-size: 0.8rem;
  color: var(--body-text);
}

/* === Chat Widget === */
.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
}

.chat-widget-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: var(--white);
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-widget-btn:hover {
  background: var(--salmon);
  transform: translateY(-3px) scale(1.05);
}

/* === Form Success === */
.form-success {
  display: none;
  padding: 12px;
  background: #d4edda;
  color: #155724;
  border-radius: var(--radius-sm);
  margin-top: 10px;
  font-size: 0.9rem;
  text-align: center;
}

.form-success.show {
  display: block;
}

/* === Animations === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.from-left {
  transform: translateX(-30px);
}

.animate-on-scroll.from-right {
  transform: translateX(30px);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.stagger-children>* {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children>*.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Counter Animation === */
.counter {
  display: inline-block;
}

/* =========================================
   About Us Page
   ========================================= */
.page-hero {
  background: var(--primary-blue);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?q=80&w=1920') center/cover;
  opacity: 0.15;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

.page-hero .breadcrumb {
  margin-top: 16px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
}

.page-hero .breadcrumb a:hover {
  color: var(--white);
}

/* Page content sections */
.page-section {
  padding: 60px 0;
}

.page-section-light {
  background: var(--off-white);
}

/* Content grid for pages */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.content-grid.reverse {
  direction: rtl;
}

.content-grid.reverse>* {
  direction: ltr;
}

.content-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.content-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--heading-text);
  margin-bottom: 16px;
}

.content-text p {
  color: var(--body-text);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* =========================================
   Contact Us Page
   ========================================= */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-form-page {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form-page h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--heading-text);
  margin-bottom: 8px;
}

.contact-form-page>p {
  color: var(--body-text);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--heading-text);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--heading-text);
  outline: none;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(42, 57, 144, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--salmon);
}

.contact-info-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--heading-text);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 0.9rem;
  color: var(--body-text);
}

.contact-info-card a:hover {
  color: var(--salmon);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--body-text);
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
}

.hours-table .closed {
  color: var(--salmon);
}

/* =========================================
   Apply Now / Find Shift Pages
   ========================================= */
.apply-form-section {
  padding: 60px 0;
}

.apply-form-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.apply-form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--heading-text);
  margin-bottom: 8px;
}

.apply-form-card>p {
  color: var(--body-text);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

/* Shift cards */
.shifts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.shift-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.shift-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--salmon);
}

.shift-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--heading-text);
  margin-bottom: 8px;
}

.shift-card .shift-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.shift-card .shift-details span {
  font-size: 0.85rem;
  color: var(--body-text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.shift-card .btn {
  width: 100%;
  justify-content: center;
  padding: 10px;
  font-size: 0.85rem;
}

/* FAQ on page */
.page-faq {
  margin-top: 30px;
}

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .about-grid {
    gap: 40px;
  }

  .services-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .services-center-image {
    order: -1;
  }

  .services-center-image img {
    min-height: 300px;
  }

  .why-grid {
    gap: 40px;
  }

  .why-image-main {
    width: 300px;
    height: 300px;
  }

  .why-image-wrap::after {
    width: 340px;
    height: 340px;
  }

  .how-contact-grid {
    grid-template-columns: 1fr;
  }

  .how-center-image {
    order: -1;
  }

  .blog-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 50px 0;
  }

  .top-bar {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 30px 30px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-slow);
    z-index: 999;
    gap: 4px;
    align-items: stretch;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
  }

  .nav-cta {
    margin-left: 0 !important;
    text-align: center;
    margin-top: 8px;
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-content {
    padding: 40px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image-wrap::after {
    display: none;
  }

  .years-badge {
    left: auto;
    right: 20px;
    bottom: 20px;
    width: 120px;
    height: 120px;
  }

  .years-badge .number {
    font-size: 2rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .why-image-wrap {
    display: flex;
    justify-content: center;
  }

  .why-image-wrap::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .why-checklist {
    text-align: left;
  }

  .why-phone-block {
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-image-wrap {
    order: -1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .about-text h2,
  .faq-content h2,
  .how-it-works h2,
  .why-text h2 {
    font-size: 1.8rem;
  }

  .stat-card .number {
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
}