/* Employment Policy Page Styles */

:root {
  --policy-primary: #02859F;
  --policy-text: #000000;
  --policy-text-muted: rgba(0, 0, 0, 0.7);
  --policy-bg: #ffffff;
  --policy-border: rgba(0, 0, 0, 0.1);
  --policy-hover: rgba(2, 133, 159, 0.05);
  --policy-accent: rgba(2, 133, 159, 0.1);
}

/* ===== CONTAINER ===== */

.container {
  width: 92%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.policy-hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  max-width: none;
}

/* ===== BREADCRUMB NAVIGATION ===== */

.breadcrumb-nav {
  background: var(--policy-bg);
  padding: 1rem 0;
  border-bottom: 1px solid var(--policy-border);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--policy-text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.breadcrumb-link:hover,
.breadcrumb-link:focus {
  color: var(--policy-primary);
  outline: none;
}

.breadcrumb-link:focus {
  border-radius: 4px;
  box-shadow: 0 0 0 2px rgba(2, 133, 159, 0.3);
}

.breadcrumb-link svg {
  flex-shrink: 0;
}

.breadcrumb-divider {
  color: var(--policy-border);
  font-weight: 300;
  margin: 0 0.25rem;
}

.breadcrumb-current {
  color: var(--policy-text);
  font-weight: 600;
}

/* ===== HERO SECTION ===== */

.policy-hero {
  /* position: relative; */
  padding: 0;
  background: var(--policy-bg);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 25% 25%, rgba(2, 133, 159, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 75% 75%, rgba(2, 133, 159, 0.06) 0%, transparent 50%),
              linear-gradient(135deg, rgba(2, 133, 159, 0.02) 0%, transparent 100%);
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.floating-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--policy-primary);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.dot-1 {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.dot-2 {
  top: 60%;
  right: 20%;
  animation-delay: 2s;
}

.dot-3 {
  bottom: 30%;
  left: 25%;
  animation-delay: 4s;
}

.dot-4 {
  top: 40%;
  right: 15%;
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) scale(1.1);
    opacity: 0.6;
  }
}

.hero-content {
  /* position: relative; */
  z-index: 2;
  text-align: center;
  max-width: 900px;
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-content p{
    color:black
}

.hero-header {
  margin-bottom: 3rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(2, 133, 159, 0.08);
  color: var(--policy-primary);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  border: 2px solid rgba(2, 133, 159, 0.15);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hero-badge:hover {
  background: rgba(2, 133, 159, 0.12);
  border-color: rgba(2, 133, 159, 0.25);
  transform: translateY(-2px);
}

.badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--policy-primary);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.hero-title {
  margin-bottom: 0;
}

.title-main {
  display: block;
  font-size: 4rem;
  font-weight: 800;
  color: var(--policy-text);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.title-accent {
  display: block;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--policy-primary);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.hero-body {
  max-width: 750px;
  margin: 0 auto;
}

.hero-description {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--policy-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--policy-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== CONTENT SECTION ===== */

.policy-content {
  /* padding: 6rem 0; */
  background: var(--policy-bg);
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* ===== POLICY SECTIONS ===== */

.policy-section {
  background: var(--policy-bg);
  border: 1px solid var(--policy-border);
  border-radius: 16px;
  padding: 3rem;
  margin-bottom: 3rem;
  transition: all 0.3s ease;
  position: relative;
}

.policy-section:hover {
  border-color: rgba(2, 133, 159, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.policy-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--policy-primary);
  border-radius: 2px 0 0 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.policy-section:hover:before {
  opacity: 1;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.section-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--policy-primary);
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

.section-title {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--policy-text);
  margin: 0;
  line-height: 1.2;
}

.section-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--policy-accent);
  color: var(--policy-primary);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.policy-section:hover .section-icon {
  background: var(--policy-primary);
  color: white;
  transform: scale(1.1);
}

.section-content {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--policy-text-muted);
}

.section-content p {
  margin-bottom: 1.5rem;
}

.section-content p:last-child {
  margin-bottom: 0;
}

/* ===== EMPLOYEE REQUIREMENTS ===== */

.employee-requirements {
  margin-top: 2.5rem;
}

.employee-requirements h3 {
  font-size: 1.5rem;
  font-weight: 650;
  color: var(--policy-text);
  margin-bottom: 1.5rem;
}

.requirement-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.requirement-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1rem;
  background: rgba(2, 133, 159, 0.03);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.requirement-list li:hover {
  background: rgba(2, 133, 159, 0.06);
  transform: translateX(5px);
}

.requirement-list li:last-child {
  margin-bottom: 0;
}

.requirement-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--policy-primary);
  color: white;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== POLICY NOTE ===== */

.policy-note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(2, 133, 159, 0.05);
  border: 1px solid rgba(2, 133, 159, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.note-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--policy-primary);
  color: white;
  border-radius: 50%;
  flex-shrink: 0;
}

.policy-note p {
  margin: 0;
  color: var(--policy-text);
  font-weight: 500;
}

/* ===== DISCIPLINARY ACTIONS ===== */

.disciplinary-actions {
  margin-top: 2rem;
}

.action-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1rem;
  background: rgba(2, 133, 159, 0.02);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.action-item:hover {
  background: rgba(2, 133, 159, 0.05);
  transform: translateX(5px);
}

.action-item:last-child {
  margin-bottom: 0;
}

.action-letter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--policy-primary);
  color: white;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== FINAL SECTION ===== */

.final-section {
  border-color: var(--policy-primary);
  border-width: 2px;
  background: rgba(2, 133, 159, 0.02);
}

.final-section:hover {
  background: rgba(2, 133, 159, 0.05);
  box-shadow: 0 12px 40px rgba(2, 133, 159, 0.15);
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 992px) {
  .policy-hero {
    min-height: 90vh;
  }
  
  .policy-hero .container {
    min-height: 90vh;
  }
  
  .title-main {
    font-size: 3.5rem;
  }
  
  .title-accent {
    font-size: 2.25rem;
  }
  
  .hero-description {
    font-size: 1.3rem;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .content-wrapper {
    max-width: 95%;
  }
}

@media (max-width: 768px) {
  .breadcrumb-nav {
    padding: 0.75rem 0;
  }
  
  .breadcrumb-list {
    font-size: 0.85rem;
  }
  
  .breadcrumb-link svg {
    width: 14px;
    height: 14px;
  }
  
  .policy-hero {
    min-height: 80vh;
  }
  
  .policy-hero .container {
    min-height: 80vh;
  }
  
  .hero-header {
    margin-bottom: 2.5rem;
  }
  
  .hero-badge {
    padding: 0.875rem 1.75rem;
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }
  
  .badge-icon {
    width: 28px;
    height: 28px;
  }
  
  .title-main {
    font-size: 2.75rem;
  }
  
  .title-accent {
    font-size: 1.875rem;
  }
  
  .hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
  }
  
  .hero-stats {
    gap: 1.5rem;
    flex-direction: column;
    align-items: center;
  }
  
  .stat-item {
    min-width: 120px;
  }
  
  .stat-number {
    font-size: 2.25rem;
  }
  
  .policy-content {
    padding: 4rem 0;
  }
  
  .policy-section {
    padding: 2rem;
    margin-bottom: 2rem;
  }
  
  .section-header {
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .section-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .section-title h2 {
    font-size: 1.75rem;
  }
  
  .section-icon {
    width: 40px;
    height: 40px;
  }
  
  .requirement-list li {
    padding: 0.75rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: 95%;
    padding: 0 0.75rem;
  }
  
  .breadcrumb-nav {
    padding: 0.5rem 0;
  }
  
  .breadcrumb-list {
    font-size: 0.8rem;
    flex-wrap: wrap;
    gap: 0.25rem;
  }
  
  .breadcrumb-link {
    gap: 0.25rem;
  }
  
  .policy-hero {
    min-height: 70vh;
  }
  
  .policy-hero .container {
    min-height: 70vh;
  }
  
  .hero-header {
    margin-bottom: 2rem;
  }
  
  .hero-badge {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    margin-bottom: 1.75rem;
    gap: 0.5rem;
  }
  
  .badge-icon {
    width: 24px;
    height: 24px;
  }
  
  .title-main {
    font-size: 2.25rem;
    line-height: 1.1;
  }
  
  .title-accent {
    font-size: 1.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .hero-stats {
    gap: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
  
  .floating-dot {
    width: 6px;
    height: 6px;
  }
  
  .policy-content {
    padding: 8.5rem 0;
  }
  
  .policy-section {
    padding: 1.5rem;
    border-radius: 12px;
  }
  
  .section-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .section-number {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .section-title {
    flex-direction: column;
    gap: 1rem;
  }
  
  .section-title h2 {
    font-size: 1.5rem;
    text-align: center;
  }
  
  .section-icon {
    width: 36px;
    height: 36px;
  }
  
  .employee-requirements h3 {
    font-size: 1.25rem;
  }
  
  .requirement-list li {
    padding: 0.75rem;
    font-size: 0.95rem;
  }
  
  .requirement-icon {
    width: 20px;
    height: 20px;
  }
  
  .policy-note {
    padding: 1.25rem;
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .note-icon {
    width: 32px;
    height: 32px;
    align-self: center;
  }
  
  .action-item {
    padding: 0.75rem;
    font-size: 0.95rem;
  }
  
  .action-letter {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */

/* Focus styles for better keyboard navigation */
.policy-section:focus-within {
  border-color: var(--policy-primary);
  box-shadow: 0 0 0 3px rgba(2, 133, 159, 0.1);
}

/* Improved contrast for better readability */
@media (prefers-contrast: high) {
  :root {
    --policy-text-muted: rgba(0, 0, 0, 0.85);
    --policy-border: rgba(0, 0, 0, 0.2);
  }
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .policy-section,
  .requirement-list li,
  .action-item,
  .breadcrumb-link,
  .floating-dot {
    transition: none;
  }
  
  .floating-dot {
    animation: none;
  }
}