:root {
  --primary: #0ea5a4;
  --accent: #0ea5a4;
  --dark: #0f172a;
  --gray: #64748b;
  --light: #f1f5f9;
  --white: #ffffff;

  --bg: #f0fafa;
  --surface: #ffffff;
  --border: rgba(14, 165, 164, 0.13);
  --border-hover: rgba(14, 165, 164, 0.35);
  --text-primary: #062a2a;
  --text-secondary: #2d5a5a;
  --text-muted: #5a8888;
  --radius: 20px;
  --radius-sm: 12px;

  --font-display: 'Clash Display', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-mono: 'DM Mono', monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  min-height: 100vh;
  position: relative;
  margin: 0;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 15%, rgba(14, 165, 164, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 80%, rgba(14, 165, 164, 0.07) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

body.modal-open {
  overflow: hidden;
}

body.nav-open {
  overflow: hidden;
}

section {
  padding: 100px 80px;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  animation: navFadeDown 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(14, 165, 164, 0.15);
}

@keyframes navFadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 20px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 56px;
  transform: translateY(2px);
  transition: transform 0.4s ease;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.03));
}

.logo:hover img {
  transform: translateY(2px) scale(1.04);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  text-decoration: none;
  color: #475569;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 10px 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  background: transparent !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary, #0ea5a4);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary, #0ea5a4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  opacity: 0;
  border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 60%;
  opacity: 1;
}

.apply-btn-mobile {
  display: none;
}

.apply-btn {
  background: rgba(14, 165, 164, 0.08);
  color: #0b9090;
  border: 1px solid rgba(14, 165, 164, 0.2);
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.apply-btn:hover {
  background: var(--primary, #0ea5a4);
  color: #ffffff;
  border-color: var(--primary, #0ea5a4);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(14, 165, 164, 0.25);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 3100;
  position: relative;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #334155;
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: absolute;
}

.hamburger span:nth-child(1) {
  transform: translateY(-7px);
}

.hamburger span:nth-child(2) {
  transform: translateY(0);
}

.hamburger span:nth-child(3) {
  transform: translateY(7px);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
  background: var(--primary, #0ea5a4);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scale(0.2);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
  background: var(--primary, #0ea5a4);
}

.nav-backdrop {
  display: none;
}

/* ══════════════════════════════════════════
   LAYOUT: SIDEBAR + CONTENT
══════════════════════════════════════════ */
.container {
  margin-top: 90px;
  display: flex;
  padding: 30px 40px;
  gap: 30px;
  align-items: flex-start;
}

.sidebar {
  width: 260px;
  flex-shrink: 0;
  position: sticky;
  top: 90px;
  align-self: flex-start;
}

.sidebar::-webkit-scrollbar {
  display: none;
}

.sidebar h4 {
  font-size: 13px;
  letter-spacing: 1px;
  color: #7fa5a5;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border-radius: 10px;
  margin-bottom: 8px;
  background: white;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  transition: background 0.2s, border-left 0.2s, color 0.2s, box-shadow 0.2s;
  border-left: 4px solid transparent;
}

.nav-list li svg {
  color: #2c8c8c;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  transition: color 0.2s;
}

.nav-list li.active {
  background: #e8f1f2;
  border-left: 4px solid #2c8c8c;
  color: #147d84;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(44, 140, 140, 0.10);
}

.nav-list li.active svg {
  color: #147d84;
}

.nav-list li:hover:not(.active) {
  background: #dfe9ea;
  border-left: 4px solid rgba(44, 140, 140, 0.3);
}

.sidebar a {
  text-decoration: none;
  color: inherit;
}

.copy-box {
  background: #e8f1f2;
  padding: 24px;
  border-radius: 14px;
  margin-top: 40px;
}

.copy-box h5 {
  margin: 0 0 8px;
  font-size: 15px;
  color: #2c8c8c;
}

.copy-box p {
  margin: 0;
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

.download {
  margin-top: 14px;
  background: #2c8c8c;
  color: white;
  border: none;
  padding: 9px 16px;
  border-radius: 8px;
  width: 100%;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.download:hover {
  background: #247070;
}

.download svg {
  width: 15px;
  height: 15px;
}

.content {
  flex: 1;
  min-width: 0;
}

/* ── HERO CARD ── */
.hero {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 10px;
}

.hero img {
  width: 100%;
  height: 440px;
  border-radius: 20px;
  object-fit: cover;
  display: block;
}

.hero-text {
  position: absolute;
  bottom: 30px;
  left: 20%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
  width: 90%;
}

.hero-text h1 {
  font-size: 36px;
  font-weight: 400;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-text p {
  font-size: 16px;
  margin-top: 8px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* ══════════════════════════════════════════
   POLICY SECTIONS
══════════════════════════════════════════ */
.policy-wrapper {
  padding: 10px 40px;
  background: #f3f4f6;
}

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

.policy-header h1 {
  font-size: 28px;
  font-weight: 700;
  color: #147d84;
  margin-bottom: 8px;
}

.updated {
  color: #0f766e;
  font-size: 13px;
}

.header-divider {
  height: 1px;
  background: #2c2d2e;
  margin: 24px 0 32px;
}

.commitment-box {
  max-width: 1200px;
  margin: 10px auto 40px;
  padding: 26px 28px;
  background: #eef2f3;
  border-radius: 14px;
}

.commitment-box h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}

.commitment-box p {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
}

.policy-section {
  margin-bottom: 28px;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.icon-box {
  width: 42px;
  height: 42px;
  background: #e6f4f1;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f766e;
  flex-shrink: 0;
}

.icon-box svg {
  width: 18px;
  height: 18px;
}

.section-header h3 {
  font-size: 19px;
  font-weight: 500;
}

.section-desc {
  font-size: 14px;
  margin-bottom: 18px;
  color: #6b7280;
  line-height: 1.6;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.policy-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}

.check {
  color: #0f766e;
  flex-shrink: 0;
}

.check svg {
  width: 18px;
  height: 18px;
}

.policy-block {
  max-width: 1200px;
  margin: 10px auto 30px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: white;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
}

.number-badge {
  min-width: 38px;
  height: 38px;
  background: #147d84;
  color: white;
  font-size: 17px;
  font-weight: 600;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.block-content {
  flex: 1;
  min-width: 0;
}

.block-content h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
}

.inner-box {
  background: #f3f4f6;
  padding: 20px;
  border-radius: 12px;
}

.inner-box p {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
}

.intro-text {
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 15px;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  line-height: 1.6;
  color: #374151;
  font-size: 14px;
}

.circle {
  min-width: 26px;
  height: 26px;
  background: #cce8e7;
  color: #0f766e;
  font-size: 13px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.big-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 26px;
  border: 1px solid #e5e7eb;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 20px;
}

.two-col h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.two-col p {
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
}

.divider {
  height: 1px;
  background: #e5e7eb;
  margin: 20px 0;
}

.info-box {
  background: #edf6f4;
  padding: 14px 16px;
  border-radius: 10px;
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: #0f766e;
  align-items: flex-start;
}

.info-icon svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.list-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 12px;
}

.list-left {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.list-left h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.list-left p {
  font-size: 13px;
  color: #6b7280;
}

.file-icon,
.shield-icon {
  color: #6b7280;
  flex-shrink: 0;
}

.gear,
.lock {
  color: #0f766e;
  flex-shrink: 0;
}

.timeline {
  position: relative;
  padding-left: 28px;
  margin-bottom: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: #d1d5db;
}

.timeline-item {
  position: relative;
  margin-bottom: 28px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.dot svg {
  color: #0f766e;
  position: absolute;
  left: -28px;
  top: -3px;
  background: #f4f7f8;
  border-radius: 50%;
}

.timeline-item h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

.cta-card {
  background: linear-gradient(135deg, #26a5a1, #138484);
  border-radius: 18px;
  padding: 36px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.cta-text h3 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 8px;
}

.cta-text p {
  font-size: 14px;
  color: #cbd5e1;
  max-width: 420px;
  line-height: 1.6;
}

.cta-btn {
  background: #04786e;
  color: white;
  border: none;
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(15, 118, 110, 0.25);
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-btn:hover {
  background: #07413c;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(15, 118, 110, 0.35);
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.athenura-footer {
  background: #0ea5a4;
  color: #fff;
  font-family: 'Inter', Arial, sans-serif;
  padding-top: 60px;
  margin-top: 0;
}

.footer-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 60px 80px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr 1.2fr 1.6fr;
  gap: 50px;
  align-items: start;
}

.footer-col {
  min-width: 0;
}

.footer-col h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: 0.2px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 18px;
  display: block;
}

.branding p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 24px;
  max-width: 230px;
}

.follow-us-text {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  display: block;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.25s, box-shadow 0.25s;
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.social-links a:nth-child(1) {
  color: #0A66C2;
}

.social-links a:nth-child(2) {
  color: #E1306C;
}

.social-links a:nth-child(3) {
  color: #1DA1F2;
}

.social-links a:nth-child(4) {
  color: black;
}

.social-icon:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 16px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  display: inline-block;
  transition: all 0.25s;
}

.footer-col ul li a:hover {
  color: #d6f1f3;
  transform: translateX(4px);
  text-decoration: underline;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.white-circle {
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s;
}

.white-circle svg {
  width: 15px;
  height: 20px;
  display: block;
}

.email-icon {
  color: #e11d48;
}

.phone-icon {
  color: #22c55e;
}

.info-text {
  line-height: 1.4;
}

.info-text span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.8px;
  margin-bottom: 3px;
}

.info-text a {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.info-row:hover a {
  text-decoration: underline;
  cursor: pointer;
}

.info-row:hover .white-circle {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.footer-col iframe {
  width: 100%;
  height: 160px;
  border: none;
  border-radius: 10px;
  display: block;
  margin-top: 4px;
}

.address {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.5;
}

.address::before {
  content: "📍";
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-bottom-bar {
  padding: 0;
}

.bottom-content {
  max-width: 1400px;
  margin: auto;
  padding: 30px 60px 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.bottom-content p a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.25s;
}

.bottom-content p a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.legal-links {
  display: flex;
  gap: 30px;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
}

/* ══════════════════════════════════════════
   RESPONSIVE 1200px
══════════════════════════════════════════ */
@media (max-width: 1200px) {
  .bottom-content {
    padding: 18px 40px 44px;
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE 1024px
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .navbar {
    padding: 12px 24px;
  }

  .nav-links a {
    font-size: 13px;
    padding: 7px 10px;
  }

  .container {
    padding: 24px;
    gap: 24px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
  }

  .footer-col.branding {
    grid-column: 1 / -1;
  }

  .policy-wrapper {
    padding: 10px 24px;
  }
}

/* ══════════════════════════════════════════
   FIX: Sidebar 769px - 1024px range
══════════════════════════════════════════ */
@media (min-width: 769px) and (max-width: 1024px) {
  .sidebar {
    position: sticky;
    top: 90px;
    width: 220px;
    align-self: flex-start;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
  }

  /* Hero text fix */
  .hero img {
    height: 320px;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 20px;
  }

  .hero-text {
    bottom: 20px;
    left: 45%;
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE 768px
══════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 20px;
    height: 64px;
  }

  .logo img {
    height: 48px;
  }

  /* ── Styled Solid Drawer ── */
  .nav-links {
    display: flex !important;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    border-left: 4px solid #0ea5a4;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 100px 40px 40px;
    z-index: 3000;
    gap: 30px;
    transition: right 0.6s cubic-bezier(0.85, 0, 0.15, 1);
    overflow: hidden;
    pointer-events: all;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
  }

  .nav-links.open {
    right: 0;
  }

  /* ── Refined Navigation Links ── */
  .nav-links a {
    font-size: 2.2rem;
    font-weight: 800;
    padding: 10px 0;
    width: 100%;
    text-align: left;
    color: #0f172a;
    background: transparent !important;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    border-bottom: none !important;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: #0ea5a4;
  }

  .nav-links a.active::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #0ea5a4;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(14, 165, 164, 0.5);
  }

  .nav-links a::after {
    display: none !important;
  }

  /* ── Styled Apply Button ── */
  .apply-btn-mobile {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0ea5a4 0%, #2dd4bf 100%) !important;
    border: none;
    padding: 18px 40px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    margin-top: 20px;
    width: 100%;
    max-width: 280px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(14, 165, 164, 0.3);
    transition: all 0.3s ease !important;
  }

  .apply-btn-mobile:active {
    transform: scale(0.97);
  }

  /* Instant appearance for links (animations removed as per user preference) */
  .nav-links.open a,
  .nav-links.open .apply-btn-mobile {
    opacity: 1;
    transform: none;
  }

  .nav-links.open a:nth-child(1) {
    animation-delay: 0.15s;
  }

  .nav-links.open a:nth-child(2) {
    animation-delay: 0.22s;
  }

  .nav-links.open a:nth-child(3) {
    animation-delay: 0.29s;
  }

  .nav-links.open a:nth-child(4) {
    animation-delay: 0.36s;
  }

  .nav-links.open a:nth-child(5) {
    animation-delay: 0.43s;
  }

  .nav-links.open .apply-btn-mobile {
    animation-delay: 0.55s;
  }

  @keyframes drawerItemReveal {
    to {
      opacity: 1;
      transform: translate(0, 0);
    }
  }

  /* ── Hamburger Icon Refinement ── */
  .hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 3100;
    position: relative;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1e293b;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: absolute;
  }

  .hamburger span:nth-child(1) {
    transform: translateY(-7px);
  }

  .hamburger span:nth-child(2) {
    transform: translateY(0);
  }

  .hamburger span:nth-child(3) {
    transform: translateY(7px);
  }

  .hamburger.open span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
    background: #0ea5a4;
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scale(0.2);
  }

  .hamburger.open span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
    background: #0ea5a4;
  }

  /* ── UI Backdrop ── */
  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    z-index: 2500;
  }

  .nav-backdrop.visible {
    display: block;
  }

  .apply-btn {
    display: none !important;
  }

  .hero {
    display: none !important;
  }

  .container {
    flex-direction: column;
    padding: 10px 16px;
    gap: 0;
  }

  .sidebar {
    width: 100%;
    position: sticky;
    top: 64px;
    z-index: 1000;
    background: var(--bg);
    margin: 0;
    padding: 12px 0;
    border-bottom: 1px solid rgba(14, 165, 164, 0.1);
  }

  .sidebar h4 {
    display: none;
  }

  .nav-list {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 10px;
    padding: 2px 16px 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav-list::-webkit-scrollbar {
    display: none;
  }

  .nav-list li {
    flex-shrink: 0;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    white-space: nowrap;
    border: 1.5px solid #e5e7eb;
    background: white;
    color: #374151;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }

  .nav-list li.active {
    background: #2c8c8c;
    border-color: #2c8c8c;
    color: #fff;
    box-shadow: 0 4px 12px rgba(44, 140, 140, 0.25);
  }

  .copy-box {
    display: none;
  }

  .policy-wrapper {
    padding: 20px 16px;
  }

  .policy-block {
    margin: 10px 0 24px;
    padding: 20px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 0 20px 40px;
  }

  .footer-col.branding {
    grid-column: 1 / -1;
  }

  .bottom-content {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    padding: 20px 24px 40px;
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE 480px
══════════════════════════════════════════ */
@media (max-width: 480px) {
  .nav-container {
    padding: 0 16px;
  }

  .logo img {
    height: 48px;
  }

  .hero img {
    height: 180px;
  }

  .hero-text h1 {
    font-size: 20px;
  }

  .hero-text p {
    font-size: 13px;
  }

  .policy-header h1 {
    font-size: 20px;
  }

  .commitment-box {
    margin: 10px 0 24px;
  }

  .policy-block {
    margin: 10px 0 20px;
    padding: 16px;
  }

  .number-badge {
    min-width: 32px;
    height: 32px;
    font-size: 15px;
    border-radius: 10px;
  }

  .block-content h3 {
    font-size: 15px;
  }

  .section-header h3 {
    font-size: 17px;
  }

  .list-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 16px 36px;
  }

  .footer-col h3 {
    font-size: 15px;
  }

  .footer-col iframe {
    height: 120px;
  }

  .athenura-footer {
    padding-top: 36px;
  }

  .cta-card {
    padding: 22px 16px;
    border-radius: 14px;
  }

  .cta-text h3 {
    font-size: 18px;
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE 400px
══════════════════════════════════════════ */
@media (max-width: 400px) {
  .footer-container {
    padding: 22px 14px 0 !important;
  }

  .footer-col h3 {
    font-size: 13px !important;
    margin-bottom: 10px !important;
  }

  .footer-col ul li a {
    font-size: 12px !important;
  }

  .footer-col:nth-child(5) iframe {
    height: 120px !important;
  }

  @media (max-width: 480px) {
    .legal-links {
      gap: 16px;
    }

    .legal-links a {
      font-size: 13px;
    }

    .bottom-content {
      padding: 14px 20px 36px !important;
    }
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE 360px
══════════════════════════════════════════ */
@media (max-width: 360px) {
  .hero img {
    height: 150px;
  }

  .hero-text h1 {
    font-size: 18px;
  }

  .policy-block {
    flex-direction: column;
  }

  .number-badge {
    align-self: flex-start;
  }
}

/* ══════════════════════════════════════════
   MID RANGE 480px to 1024px footer fix
══════════════════════════════════════════ */
@media (min-width: 480px) and (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .branding {
    grid-column: span 2;
  }

  .branding p {
    max-width: 100%;
  }
}

#code\ of\ conduct.policy-wrapper,
#attendance.policy-wrapper,
#confidentiality.policy-wrapper,
#evaluation.policy-wrapper {
  border-top: 14px solid #f3f4f6;
}