/* CSS Variables for easy color customization */
:root {
  /* Primary Colors */
  --primary-color: #4f46e5;
  --primary-light: #6366f1;
  --primary-dark: #3730a3;

  /* Nurse Colors */
  --nurse-color: #3d202d;
  --nurse-light: #663f50;
  --nurse-dark: #2e101d;

  /* Child Colors */
  --child-color: #d7204c;
  --child-light: #f57b98;
  --child-dark: #910a29;

  /* Clean Colors */
  --clean-color: #383536;
  --clean-light: #221e1f;
  --clean-dark: #000000;

  /* Background Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-dark: #1e293b;

  /* Text Colors */
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  /* Accent Colors */
  --accent-blue: #3b82f6;
  --accent-green: #10b981;
  --accent-orange: #f59e0b;
  --accent-purple: #8b5cf6;

  /* Status Colors */
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: #3b82f6;

  /* Gradients */
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  --gradient-bg: linear-gradient(
    135deg,
    var(--bg-primary) 0%,
    var(--bg-secondary) 100%
  );

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--gradient-bg);
  color: var(--text-primary);
  line-height: 1.6;
}

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

.divider {
  height: 100px;
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-image {
  height: 60px;
}

.logo-text {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  position: relative;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Reduce gap between the two buttons specifically - Desktop only */
@media (min-width: 769px) {
  .nav-links #nav-apply + button {
    margin-left: -1.25rem;
  }
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  transform: scale(1.1);
}

.mobile-menu-btn:active {
  transform: scale(0.95);
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.curve-bottom svg {
  display: block;
  z-index: 100;
  width: 100%;
  height: 15%;
  transform: scaleY(-1); /* flips vertically */
  fill: white;
}

/* Buttons */
.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-white);
  box-shadow: var(--shadow-md);
}

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

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* Hero Section */

.hero {
  padding-top: 85px;
  background: var(--bg-secondary);
  overflow: hidden;
}

.hero-content {
  text-align: center;
}

.hero-cards {
  display: flex;
  gap: 0;
  margin-bottom: 3rem;
  width: 100vw;
  height: 70vh;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  overflow: hidden;
}

.hero-card {
  position: relative;
  flex: 1;
  min-height: 600px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: flex-grow 0.3s ease;
}

.hero-card:hover {
  flex-grow: 2;
}

.hero-card-image {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Default fallback */
/* .hero-card {
  --card-primary: rgba(79, 70, 229, 0.3);
  --card-primary-mid: rgba(79, 70, 229, 0.6);
  --card-primary-strong: rgba(79, 70, 229, 0.8);
} */

.hero-card {
  --card-primary: rgba(248, 250, 252, 0.3);
  --card-primary-mid: rgba(248, 250, 252, 0.6);
  --card-primary-strong: rgba(248, 250, 252, 1);
}

/* Nurse card colors */
/* .hero-card.nurse {
  --card-primary: rgba(61, 32, 45, 0.3);
  --card-primary-mid: rgba(61, 32, 45, 0.6);
  --card-primary-strong: rgba(61, 32, 45, 0.8);
} */

/* Childcare card colors */
/* .hero-card.childcare {
  --card-primary: rgba(215, 32, 76, 0.3);
  --card-primary-mid: rgba(215, 32, 76, 0.6);
  --card-primary-strong: rgba(215, 32, 76, 0.8);
} */

/* Clean card colors */
/* .hero-card.clean {
  --card-primary: rgba(34, 30, 31, 0.3);
  --card-primary-mid: rgba(34, 30, 31, 0.6);
  --card-primary-strong: rgba(34, 30, 31, 0.8);
} */

.hero-card-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 30%,
    var(--card-primary) 50%,
    var(--card-primary-mid) 70%,
    var(--card-primary-strong) 100%
  );
  pointer-events: none;
}

.hero-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  background: linear-gradient(
    transparent,
    var(--card-primary) 20%,
    var(--card-primary-mid) 50%,
    var(--card-primary-strong) 80%,
    var(--card-primary-strong) 100%
  );
  padding: 2rem 1.5rem 1.5rem;
  text-align: left;
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.hero-card-aussie {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: -0.5rem;
  color: var(--text-primary);
  text-align: center;
}

.hero-card-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--primary-color);
  text-align: center;
}

.hero-card-subtitle {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  text-align: center;
}

.hero-cta {
  margin-top: 3rem;
  position: relative;
  z-index: 10;
}

.hero-text {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  color: var(--text-primary);
}

/* Plans Section */
.plans {
  padding: 80px 0;
  background: var(--bg-primary);
}

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

.plans-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.plans-subtitle {
  color: var(--text-secondary);
  font-weight: 600;
}

.plan-toggle {
  display: flex;
  justify-content: center;
  background: var(--bg-tertiary);
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 3rem;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.toggle-btn {
  flex: 1;
  padding: 12px 24px;
  border: none;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-btn.active {
  background: var(--primary-color);
  color: var(--text-white);
}

.plan-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.plan-card {
  background: var(--bg-primary);
  color: var(--text-primary);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--bg-tertiary);
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.plan-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.plan-subtitle {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.plan-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
}

.checkmark {
  color: var(--success);
  font-weight: bold;
}

.plan-price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.price {
  color: var(--primary-color);
}

.plan-addon {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.sports-banner {
  background: var(--gradient-primary);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
}

.sports-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.sports-logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.sports-logo {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  color: var(--text-white);
}

.sports-disclaimer {
  font-size: 0.9rem;
  opacity: 0.9;
  color: var(--text-white);
}

/* Categories Section */
.categories {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.categories-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-primary);
}

.category-carousel {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  background-color: var(--primary-color);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.category-carousel::-webkit-scrollbar {
  display: none;
}

.category-item {
  flex: 0 0 150px;
  text-align: center;
  position: relative;
  height: 400px;
  overflow: hidden;
}

.category-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.category-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 40%,
    rgba(79, 70, 229, 0.3) 60%,
    rgba(79, 70, 229, 0.6) 80%,
    rgba(79, 70, 229, 1) 100%
  );
  pointer-events: none;
}

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

.category-item p {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: center;
  z-index: 2;
  width: 100%;
  padding: 0 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  color: var(--text-white);
}

.category-logo {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  z-index: 2;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* New Content Section */
.new-content {
  padding: 80px 0;
  background: var(--bg-primary);
}

.new-content h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: var(--text-primary);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.content-item {
  text-align: center;
}

.content-item img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.content-item:hover img {
  transform: scale(1.05);
}

.content-item p {
  font-weight: 600;
  color: var(--text-primary);
}

/* Sports Section */
.sports-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.sports-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.sports-large {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.sports-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  color: var(--text-primary);
}

.sports-logos-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.sports-images {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.sports-athlete {
  width: 200px;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.sports-athlete:hover {
  transform: scale(1.05);
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
  min-height: 600px;
  height: fit-content;
}

.services-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("assets/images/nursing_staff.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.childcare-services .services-background {
  background-image: url("assets/images/childcare_staff.png");
}
.cleaning-services .services-background {
  background-image: url("assets/images/cleaning_staff.png");
}

.services-overlay-right {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 0.8) 60%,
    rgba(255, 255, 255, 0.4) 70%,
    rgba(255, 255, 255, 0.1) 80%,
    transparent 100%
  );
  z-index: 2;
}

.services-overlay-left {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 0.8) 60%,
    rgba(255, 255, 255, 0.4) 70%,
    rgba(255, 255, 255, 0.1) 80%,
    transparent 100%
  );
  z-index: 2;
}

.services-overlay-bottom {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 25%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%
  );
  z-index: 2;
}

.services-section .container {
  position: relative;
  z-index: 3;
}

.services-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 4rem;
}

.services-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.services-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.services-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--text-primary);
  max-width: 600px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Cleaning and Childcare Services - Text on right */
.cleaning-services .services-content,
.childcare-services .services-content {
  grid-template-columns: 1fr;
}

.cleaning-services .services-text,
.childcare-services .services-text {
  text-align: right;
}

.cleaning-services .services-text h2,
.cleaning-services .services-text p,
.cleaning-services .services-text button,
.childcare-services .services-text h2,
.childcare-services .services-text p,
.childcare-services .services-text button {
  margin-left: auto;
  margin-right: 0;
}

.services-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--bg-tertiary);
  backdrop-filter: blur(10px);
}

.services-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

/* Watch Section */

.watch-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.watch-carousel::-webkit-scrollbar {
  display: none;
}

.watch-item {
  flex: 0 0 250px;
  width: 250px;
  height: 200px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.watch-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}

.watch-item:hover img {
  transform: scale(1.05);
}

.watch-item p {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* About Section */
.about-section {
  padding: 80px 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.about-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("assets/images/desk.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 0.8) 60%,
    rgba(255, 255, 255, 0.4) 70%,
    rgba(255, 255, 255, 0.1) 80%,
    transparent 100%
  );
  z-index: 2;
}

.about-section .container {
  position: relative;
  z-index: 3;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--text-primary);
  max-width: 600px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--bg-tertiary);
  backdrop-filter: blur(10px);
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-radius: 12px;
  border: 1px solid var(--bg-tertiary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--text-secondary);
  font-weight: 500;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.testimonials-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--bg-tertiary);
  transition: transform 0.3s ease;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.testimonial-author h4 {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.testimonial-author p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
  background: var(--bg-primary);
}

/* Top Section - White Background */
.contact-top {
  background: var(--bg-primary);
  padding: 80px 0 60px;
}

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

.contact-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.contact-header .highlight {
  color: var(--primary-color);
  font-weight: 700;
}

.operating-hours {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.contact-block {
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--bg-tertiary);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-block:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  justify-self: center;
  align-self: center;
}

.contact-block h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.contact-block p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.contact-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Bottom Section */
.contact-bottom {
  background: var(--gradient-primary);
  padding: 60px 0 80px;
}

.contact-bottom .container {
  max-width: 800px;
}

.contact-form {
  background: transparent;
  padding: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  color: var(--text-white);
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-primary);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--text-white);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form select {
  cursor: pointer;
}

.btn-contact {
  background: var(--text-white);
  color: var(--primary-color);
  border: 2px solid var(--text-white);
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  float: right;
  margin-top: 1rem;
}

.btn-contact:hover {
  background: transparent;
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.staff-request-form {
  display: grid;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.quick-contact-form .form-group label,
.staff-request-form .form-group label {
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--bg-tertiary);
  border-radius: 8px;
  font-size: 1rem;
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--text-primary);
}

.faq-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--bg-tertiary);
  transition: transform 0.3s ease;
}

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

.faq-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
}

.faq-item p {
  color: var(--text-secondary);
  line-height: 1.6;
  padding-top: 1rem;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--text-white);
}

.footer-section p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary-light);
}

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

.social-links a {
  color: var(--text-white);
}

.social-link {
  color: var(--text-light);
  text-decoration: none;
  padding: 8px 12px;
  border: 1px solid var(--text-light);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: var(--primary-light);
  border-color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid var(--text-light);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-light);
}

/* Contact Page Styles */
.contact-hero {
  /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
  background-image: url("assets/images/contact.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 350px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 55px;
}

/* .contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
} */

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
}

.contact-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

.contact-info-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-details h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.contact-details > p {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-text h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.contact-text p {
  color: #6c757d;
  margin-bottom: 0.25rem;
  line-height: 1.5;
}

.quick-contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quick-contact-form h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

/* Staff Request Section */
.staff-request-section {
  padding: 80px 0;
  background: white;
}

.staff-request-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.staff-request-text h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.staff-request-text > p {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.request-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
}

.benefit-item i {
  color: #28a745;
  font-size: 1.25rem;
}

.benefit-item span {
  color: #495057;
  font-weight: 500;
}

.staff-request-form {
  background: #f8f9fa;
  padding: 2.5rem;
  border-radius: 16px;
  border: 2px solid #e9ecef;
}

.staff-request-form h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.staff-request-form-element {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Active Navigation State */
.nav-link.active {
  color: #667eea;
  font-weight: 600;
}

/* Services Page Styles */
.services-hero {
  background: var(--gradient-primary);
  color: var(--text-white);
  padding: 160px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge i {
  color: #fbbf24;
  font-size: 0.9rem;
}

.hero-badge span {
  font-weight: 600;
  font-size: 0.85rem;
}

.services-hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  line-height: 1.2;
}

.services-hero-content p {
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.5;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.hero-stat {
  text-align: center;
}

.hero-stat h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  color: #fbbf24;
}

.hero-stat p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.floating-shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(180deg);
  }
}

/* Services Overview Section */
.services-overview {
  padding: 60px 0;
  background: var(--bg-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.5;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  background: var(--bg-primary);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s ease;
  border: 1px solid var(--bg-tertiary);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

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

.childcare-card .card-icon {
  background: linear-gradient(135deg, var(--child-color), var(--child-light));
}

.nursing-card .card-icon {
  background: linear-gradient(135deg, var(--nurse-color), var(--nurse-light));
}

.cleaning-card .card-icon {
  background: linear-gradient(135deg, var(--clean-color), var(--clean-light));
}

.card-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-lg);
}

.card-icon i {
  font-size: 1.75rem;
  color: white;
}

.card-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.card-header p {
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 0.95rem;
}

.card-content {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-count {
  text-align: center;
}

.count-number {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.count-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.card-image {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

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

.card-footer {
  text-align: center;
}

.explore-btn {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
  font-size: 0.9rem;
}

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

.explore-btn i {
  transition: transform 0.3s ease;
}

.explore-btn:hover i {
  transform: translateX(5px);
}

/* Detailed Services Section */
.detailed-services {
  padding: 60px 0;
  background: var(--bg-primary);
}

.service-category {
  margin-bottom: 3rem;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.service-category.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.category-header:hover {
  background: var(--bg-tertiary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.category-header.expanded {
  background: var(--primary-color);
  color: var(--text-white);
}

.category-header.expanded .category-info h3,
.category-header.expanded .category-info p {
  color: var(--text-white);
}

.collapse-icon {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.category-header:hover .collapse-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.collapse-icon i {
  font-size: 1rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.category-header.expanded .collapse-icon i {
  color: var(--text-white);
}

.category-header:hover .collapse-icon i {
  color: var(--primary-color);
}

.category-header.expanded:hover .collapse-icon i {
  color: var(--text-white);
}

.category-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#childcare-services .category-icon {
  background: linear-gradient(135deg, var(--child-color), var(--child-light));
}

#nursing-services .category-icon {
  background: linear-gradient(135deg, var(--nurse-color), var(--nurse-light));
}

#cleaning-services .category-icon {
  background: linear-gradient(135deg, var(--clean-color), var(--clean-light));
}

.category-icon i {
  font-size: 1.75rem;
  color: white;
}

.category-info h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.category-info p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.services-grid {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-item {
  background: var(--bg-secondary);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--bg-tertiary);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.service-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.service-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.service-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  flex-shrink: 0;
}

/* Service item icons match category header colors */
#childcare-services .service-icon {
  background: linear-gradient(135deg, var(--child-color), var(--child-light));
}

#nursing-services .service-icon {
  background: linear-gradient(135deg, var(--nurse-color), var(--nurse-light));
}

#cleaning-services .service-icon {
  background: linear-gradient(135deg, var(--clean-color), var(--clean-light));
}

.service-icon i {
  font-size: 1.25rem;
  color: white;
}

.service-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  margin-left: 0.75rem;
}

.service-item p {
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
  font-size: 0.9rem;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 60px 0;
  background: var(--bg-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--bg-tertiary);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.feature-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

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

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.feature-icon i {
  font-size: 1.75rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
  font-size: 0.95rem;
}

/* Enhanced CTA Section */
.cta-section {
  background: var(--gradient-primary);
  color: var(--text-white);
  padding: 60px 0;
  text-align: center;
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.cta-text h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-align: left;
}

.cta-text p {
  font-size: 1rem;
  margin-bottom: 0;
  opacity: 0.95;
  text-align: left;
  line-height: 1.5;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
}

.cta-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
  justify-content: center;
  font-size: 0.9rem;
}

.cta-buttons .btn i {
  font-size: 1rem;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
  .services-hero-content h1 {
    font-size: 2.25rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .category-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .cta-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-text h2,
  .cta-text p {
    text-align: center;
  }

  .cta-buttons {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .services-hero {
    padding: 160px 0 50px;
  }

  .services-hero-content h1 {
    font-size: 1.75rem;
  }

  .services-hero-content p {
    font-size: 1rem;
  }

  .hero-badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }

  .service-card {
    padding: 1.25rem;
  }

  .card-content {
    flex-direction: column;
    gap: 0.75rem;
  }

  .category-header {
    padding: 1.25rem;
  }

  .category-info h3 {
    font-size: 1.4rem;
  }

  .services-overview,
  .detailed-services,
  .why-choose-us,
  .cta-section {
    padding: 40px 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

/* Password Protection Screen */
.password-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-family: "Inter", sans-serif;
}

.password-container {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.password-logo {
  margin-bottom: 2rem;
}

.password-logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.password-screen h1 {
  color: #1e3c72;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: 600;
}

.password-screen p {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.password-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.password-form input {
  padding: 1rem;
  border: 2px solid #e1e5e9;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.password-form input:focus {
  outline: none;
  border-color: #1e3c72;
}

.password-form .btn {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.password-error {
  color: #e74c3c;
  font-size: 0.9rem;
  min-height: 20px;
  margin-top: 0.5rem;
}

/* Main content is now always visible */

/* Job Application Page Styles */
.apply-hero {
  background-image: url("assets/images/desk.jpg");
  background-size: cover;
  background-position: center;
  color: var(--text-white);
  padding: 250px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.apply-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.apply-hero-content {
  position: relative;
  z-index: 2;
}

.apply-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  line-height: 1.2;
}

.apply-hero p {
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.5;
}

/* Positions Section */
.positions-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.position-categories {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.position-category {
  background: var(--bg-primary);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--bg-tertiary);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--bg-tertiary);
}

.category-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#nursing-category .category-icon {
  background: linear-gradient(135deg, var(--nurse-color), var(--nurse-light));
}

#childcare-category .category-icon {
  background: linear-gradient(135deg, var(--child-color), var(--child-light));
}

#cleaning-category .category-icon {
  background: linear-gradient(135deg, var(--clean-color), var(--clean-light));
}

.category-icon i {
  font-size: 1.75rem;
  color: white;
}

.category-info h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.category-info p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.position-count {
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-left: auto;
}

.positions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
}

.position-card {
  background: var(--bg-secondary);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--bg-tertiary);
  transition: all 0.3s ease;
}

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

.position-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.position-card p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.position-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.position-details .location,
.position-details .rate {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.position-details .rate {
  font-weight: 600;
  color: var(--primary-color);
}

/* Application Section */
.application-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.application-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.application-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.application-info p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.benefits-list {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--bg-tertiary);
}

.benefits-list h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--bg-tertiary);
}

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

.benefit-item i {
  color: var(--success);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.benefit-item span {
  color: var(--text-primary);
  font-weight: 500;
}

/* Application Form */
.application-form-container {
  background: var(--bg-secondary);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--bg-tertiary);
}

.application-form h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2rem;
  text-align: center;
}

.application-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.application-form .form-group {
  margin-bottom: 1.5rem;
}

.application-form label {
  display: block;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.application-form input,
.application-form select,
.application-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--bg-tertiary);
  border-radius: 8px;
  font-size: 1rem;
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.application-form textarea {
  resize: vertical;
  min-height: 100px;
}

.application-form select {
  cursor: pointer;
}

.application-form small {
  display: block;
  color: var(--text-secondary);
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

/* Checkbox Styles */
.checkbox-group {
  margin-bottom: 1.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.terms-link,
.privacy-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.terms-link:hover,
.privacy-link:hover {
  text-decoration: underline;
}

/* File Upload */
.application-form input[type="file"] {
  padding: 8px 12px;
  background: var(--bg-primary);
  border: 2px dashed var(--bg-tertiary);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.application-form input[type="file"]:hover {
  border-color: var(--primary-color);
  background: var(--bg-secondary);
}

/* Submit Button */
.application-form .btn {
  width: 100%;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.application-form .btn i {
  font-size: 1rem;
}

/* Success and Loading Messages */
.success-message,
.loading-message {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  animation: fadeIn 0.3s ease-in-out;
}

.success-content,
.loading-content {
  text-align: center;
  padding: 2rem;
  max-width: 400px;
}

.success-content i {
  font-size: 4rem;
  color: var(--success);
  margin-bottom: 1rem;
}

.success-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.success-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.success-content .btn {
  margin-top: 1rem;
}

.loading-content .spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--bg-tertiary);
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

.loading-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.btn-secondary {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  border: 1px solid var(--bg-tertiary);
}

.btn-secondary:hover {
  background: var(--bg-secondary);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* Responsive Design for Job Application Page */
@media (max-width: 768px) {
  .apply-hero h1 {
    font-size: 2.25rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .application-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .category-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .position-count {
    margin-left: 0;
    margin-top: 1rem;
  }

  .positions-grid {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .application-form .form-row {
    grid-template-columns: 1fr;
  }

  .application-form-container {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .apply-hero {
    padding: 160px 0 50px;
  }

  .apply-hero h1 {
    font-size: 1.75rem;
  }

  .positions-section,
  .application-section {
    padding: 40px 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .category-header {
    padding: 1.5rem;
  }

  .category-info h3 {
    font-size: 1.4rem;
  }

  .positions-grid {
    padding: 1rem;
  }

  .application-form-container {
    padding: 1rem;
  }
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.3s ease;
    z-index: 9999;
    padding: 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    display: none;
  }

  .nav-links.active {
    right: 0 !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateX(0) !important;
  }

  .nav-links .nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    text-align: center;
    display: block;
  }

  .nav-links .nav-link:hover {
    background: var(--primary-color);
    color: var(--text-white);
  }

  .nav-links .btn {
    width: 100%;
    max-width: 300px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    display: block;
  }

  .mobile-menu-open {
    overflow: hidden;
  }

  /* Ensure the mobile menu button is always visible on mobile */
  .nav {
    position: relative;
  }

  .mobile-menu-btn {
    position: relative;
    z-index: 10000;
  }

  /* Force mobile menu visibility */
  .nav-links.active {
    right: 0 !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateX(0) !important;
  }
}

/* Hero Section Mobile Styles */
@media (max-width: 768px) {
  .hero {
    padding-top: 70px;
  }

  .hero-cards {
    flex-direction: column;
    height: auto;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    gap: 0;
  }

  .hero-card {
    min-height: 300px;
    flex: none;
    width: 100%;
  }

  .hero-card:hover {
    flex-grow: 1;
  }

  .hero-card-content {
    padding: 1.5rem 1rem;
  }

  .hero-card-aussie {
    font-size: 1rem;
  }

  .hero-card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .hero-card-subtitle {
    font-size: 0.9rem;
  }

  .hero-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }

  .hero-cta {
    margin-top: 2rem;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 300px;
    margin: 0.5rem 0;
    padding: 14px 24px;
  }
}

/* Plans Section Mobile Styles */
@media (max-width: 768px) {
  .plans {
    padding: 60px 0;
  }

  .plans-header h2 {
    font-size: 2rem;
  }

  .plan-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .plan-card {
    padding: 1.5rem;
  }

  .sports-logos {
    flex-direction: column;
    gap: 1rem;
  }

  .sports-logo {
    padding: 6px 12px;
    font-size: 0.9rem;
  }
}

/* Categories Section Mobile Styles */
@media (max-width: 768px) {
  .categories {
    padding: 60px 0;
  }

  .categories-title {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }

  .category-carousel {
    gap: 1px;
  }

  .category-item {
    flex: 0 0 120px;
    height: 300px;
  }

  .category-item p {
    font-size: 0.8rem;
    padding: 0 0.5rem;
  }

  .category-logo {
    font-size: 0.7rem;
  }
}

/* Services Section Mobile Styles */
@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
    min-height: auto;
  }

  .services-text h2 {
    font-size: 2rem;
  }

  .services-subtitle {
    font-size: 1rem;
  }

  .services-text p {
    font-size: 1rem;
  }

  .watch-carousel {
    gap: 0.5rem;
  }

  .watch-item {
    flex: 0 0 200px;
    width: 200px;
    height: 180px;
  }

  .watch-item img {
    height: 120px;
  }

  .watch-item p {
    font-size: 0.8rem;
  }

  .cleaning-services .services-text,
  .childcare-services .services-text {
    text-align: left;
  }

  .cleaning-services .services-text h2,
  .cleaning-services .services-text p,
  .cleaning-services .services-text button,
  .childcare-services .services-text h2,
  .childcare-services .services-text p,
  .childcare-services .services-text button {
    margin-left: 0;
    margin-right: 0;
  }
}

/* About Section Mobile Styles */
@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
    min-height: auto;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .about-subtitle {
    font-size: 1rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
  }

  .stat-item {
    padding: 1rem;
  }

  .stat-item h3 {
    font-size: 2rem;
  }
}

/* Contact Section Mobile Styles */
@media (max-width: 768px) {
  .contact-top {
    padding: 60px 0 40px;
  }

  .contact-header h2 {
    font-size: 2rem;
  }

  .contact-info-blocks {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-block {
    padding: 1.5rem;
  }

  .contact-bottom {
    padding: 40px 0 60px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .btn-contact {
    width: 100%;
    float: none;
    margin-top: 1.5rem;
  }
}

/* FAQ Section Mobile Styles */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-section h2 {
    font-size: 2rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .faq-item {
    padding: 1.5rem;
  }
}

/* Footer Mobile Styles */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

/* General Mobile Typography */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .btn-large {
    padding: 14px 24px;
    font-size: 1rem;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .hero-card-content {
    padding: 1rem 0.75rem;
  }

  .hero-card-content h3 {
    font-size: 1rem;
  }

  .hero-card-subtitle {
    font-size: 0.8rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .plans-header h2 {
    font-size: 1.75rem;
  }

  .services-text h2,
  .about-text h2,
  .contact-header h2,
  .faq-section h2 {
    font-size: 1.75rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .category-item {
    flex: 0 0 100px;
    height: 250px;
  }

  .watch-item {
    flex: 0 0 150px;
    width: 150px;
    height: 160px;
  }

  .watch-item img {
    height: 100px;
  }

  .contact-hero h1,
  .apply-hero h1,
  .services-hero-content h1 {
    font-size: 2rem;
  }
}

/* Touch-friendly improvements */
@media (max-width: 768px) {
  /* Increase touch targets */
  .btn {
    min-height: 44px;
    min-width: 44px;
  }

  .nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Improve form inputs for mobile */
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 12px 16px;
  }

  /* Better spacing for mobile */
  .container {
    padding: 0 20px;
  }

  /* Improve carousel scrolling on mobile */
  .category-carousel,
  .watch-carousel {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }

  /* Better button spacing */
  .hero-cta .btn {
    margin: 0.75rem 0;
  }

  /* Improve readability */
  .hero-text,
  .services-text p,
  .about-text p {
    line-height: 1.6;
  }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-cards {
    flex-direction: row;
    height: 50vh;
  }

  .hero-card {
    min-height: 200px;
  }

  .hero-card-content {
    padding: 1rem 0.5rem;
  }

  .hero-card-content h3 {
    font-size: 1rem;
  }

  .hero-card-subtitle {
    font-size: 0.8rem;
  }
}

/* Contact Page Mobile Styles */
@media (max-width: 768px) {
  .contact-hero {
    padding: 200px 0 60px;
  }

  .contact-hero h1 {
    font-size: 2.5rem;
  }

  .contact-hero p {
    font-size: 1rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-method {
    padding: 1rem;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .contact-text h3 {
    font-size: 1.1rem;
  }

  .quick-contact-form {
    padding: 1.5rem;
  }

  .staff-request-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .staff-request-form {
    padding: 1.5rem;
  }
}

/* Apply Page Mobile Styles */
@media (max-width: 768px) {
  .apply-hero {
    padding: 200px 0 60px;
  }

  .apply-hero h1 {
    font-size: 2.5rem;
  }

  .apply-hero p {
    font-size: 1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .position-categories {
    gap: 1.5rem;
  }

  .category-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem;
  }

  .position-count {
    margin-left: 0;
    margin-top: 1rem;
  }

  .positions-grid {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .application-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .application-form-container {
    padding: 1.5rem;
  }

  .application-form .form-row {
    grid-template-columns: 1fr;
  }
}

/* Services Page Mobile Styles */
@media (max-width: 768px) {
  .services-hero {
    padding: 200px 0 60px;
  }

  .services-hero-content h1 {
    font-size: 2.5rem;
  }

  .services-hero-content p {
    font-size: 1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .category-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .cta-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-text h2,
  .cta-text p {
    text-align: center;
  }

  .cta-buttons {
    align-items: center;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .password-container {
    padding: 2rem;
    margin: 1rem;
  }

  .password-screen h1 {
    font-size: 1.5rem;
  }

  .password-form {
    gap: 0.8rem;
  }
}

/* Mobile Navigation Override - Force visibility */
@media (max-width: 768px) {
  .nav-links.active {
    right: 0 !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateX(0) !important;
    position: fixed !important;
    top: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    z-index: 9999 !important;
  }
  
  /* Additional override for mobile menu */
  div#nav-links.nav-links.active {
    right: 0 !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateX(0) !important;
    position: fixed !important;
    top: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    z-index: 9999 !important;
  }
}
