@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
/* ── COMMON STYLES (NAV & FOOTER) ── */

:root {
  --teal: #00a79d;
  --teal-dark: #007a73;
  --teal-light: #e0f5f4;
  --orange: #f4791f;
  --orange-light: #fff0e6;
  --navy: #0d2137;
  --navy-mid: #1a3a52;
  --text: #1e2d3d;
  --muted: #5a7080;
  --border: #dde5eb;
  --bg: #f7fafb;
  --white: #ffffff;
  --font-head: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --blue: #2563eb;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  backdrop-filter: blur(12px);
}

.nav-logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-logo-mark img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
  text-decoration: none;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 6px;
  transition: all .15s;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active,
.nav-links .nav-link-p.active {
  color: var(--teal);
  background: var(--teal-light);
  text-decoration: none;
  border-radius: 6px;
  padding: 6px 12px;
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
}

/* ── DROPDOWN ── */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  min-width: 220px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(13, 33, 55, 0.08);
  padding: 8px;
  z-index: 200;
  backdrop-filter: blur(8px);
  animation: navDrop .2s ease-out;
}

.dropdown.active .dropdown-content {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 6px 14px !important;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  line-height: normal;
  font-weight: 500;
  border-radius: 8px;
  transition: all .15s;
}

.dropdown-item:hover,
.dropdown-item.active {
  background: var(--teal-light);
  color: var(--teal);
}

.nav-link-p {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-link-p::after {
  content: '';
  width: 6px;
  height: 6px;
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.6;
  transition: transform .2s;
}

.dropdown.active .nav-link-p::after {
  transform: translateY(1px) rotate(225deg);
}

.nav-links .dropdown.active .nav-link-p {
  color: var(--teal);
  background: var(--teal-light);
}

@keyframes navDrop {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-ghost-sm {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  border: 1.5px solid var(--teal);
  padding: 8px 18px;
  border-radius: 8px;
  cursor: pointer;
  background: transparent;
  transition: all .15s;
}

.btn-ghost-sm:hover {
  background: var(--teal-light);
}

.btn-sm {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: var(--orange);
  border: none;
  padding: 9px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: background .15s;
}

.btn-sm:hover {
  background: #d9620f;
}

/* Special override for What's New button in Nav Links - MAX visibility */
.nav-links a.btn-sm {
  background: linear-gradient(var(--orange), var(--orange)) padding-box,
    linear-gradient(135deg, #f4791f, #ffffff, #ffcc33, #f4791f) border-box !important;
  border: 3px solid transparent !important;
  color: #fff !important;
  opacity: 1 !important;
  box-shadow: 0 0 15px rgba(244, 121, 31, 0.6) !important;
  animation: pulse-glow-max 2.5s infinite ease-in-out;
  position: relative;
  overflow: hidden;
  font-weight: 800 !important;
  letter-spacing: 0.5px;
}

.nav-links a.btn-sm::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 60px;
  height: 200%;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(25deg);
  animation: shimmer-fast 3s infinite;
}

.nav-links a.btn-sm:hover {
  background: linear-gradient(var(--orange), var(--orange)) padding-box,
    linear-gradient(135deg, #f4791f, #ffffff, #ffcc33, #f4791f) border-box !important;
  color: #fff !important;
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(244, 121, 31, 0.8) !important;
}

@keyframes pulse-glow-max {

  0%,
  100% {
    box-shadow: 0 0 10px rgba(244, 121, 31, 0.4);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 25px rgba(244, 121, 31, 0.8);
    transform: scale(1.02);
  }
}

@keyframes shimmer-fast {
  0% {
    left: -150%;
  }

  100% {
    left: 250%;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 5%;
  z-index: 99;
  flex-direction: column;
  gap: 2px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  border-radius: 6px;
  transition: all .15s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--teal);
  background: var(--teal-light);
}

/* ── FOOTER ── */
footer {
  background: #ffffff;
  padding: 80px 5% 40px;
  color: #1a1a1a !important;
  border-top: 1px solid #f1f5f9;
}

footer p,
footer a,
footer h5,
footer div {
  color: #1a1a1a !important;
  text-decoration: none;
}

.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 60px;
  border-bottom: 1px solid #f1f5f9;
}

.footer-brand-logo {
  margin-bottom: 20px;
  display: block;
  line-height: 0;
}

.footer-brand-logo-img {
  height: 50px !important;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 280px;
  opacity: 0.9;
}

.footer-contact p {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  opacity: 0.6;
  transform: translateX(6px);
}

.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p,
.footer-bottom-links a {
  font-size: 12px;
  opacity: 0.8;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #1a1a1a !important;
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background: var(--teal);
  color: #fff !important;
  transform: translateY(-3px);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  display: block;
}

/* Responsive */
@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand-logo-img {
    margin: 0 auto;
  }

  .footer-tagline {
    margin: 0 auto 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-bottom-links {
    justify-content: center;
    width: 100%;
  }
}



/* ── CHATBOT WIDGET (AI Assistant) ── */
:root {
  --cb-primary: #6366f1;
  --cb-primary-hover: #4f46e5;
  --cb-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  --cb-glass: #ffffff;
  --cb-text: #1f2937;
  --cb-text-muted: #1f2937;
  --cb-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --cb-msg-bot: #f3f4f6;
  --cb-msg-user: linear-gradient(135deg, #e2e2e2, #c9d6ff);
}

#chatbot-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 2000;
  font-family: 'Inter', sans-serif;
}

.lev-chat-bubble {
  position: absolute;
  right: calc(100% + 1px);
  /* ← 1px gap from the ant logo */
  bottom: 50%;
  transform: translateY(50%);
  /* ← vertically centres it against the button */
  background: linear-gradient(90deg, #00a79d, #0693e3);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  padding: 15px 12px;
  border-radius: 12px 12px 2px 12px;
  white-space: nowrap;
  opacity: 0;
  animation: chatBubblePop 3s ease infinite;
  pointer-events: none;
  z-index: 10;
}

.lev-chat-bubble::after {
  content: '';
  position: absolute;
  right: 5px;
  bottom: 6px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #00a79d;
}

@keyframes chatBubblePop {
  0% {
    opacity: 0;
    transform: translateY(50%) translateX(-8px) scale(0.85);
  }

  15% {
    opacity: 1;
    transform: translateY(50%) translateX(0) scale(1);
  }

  60% {
    opacity: 1;
    transform: translateY(50%) translateX(0) scale(1);
  }

  80% {
    opacity: 0;
    transform: translateY(50%) translateX(4px) scale(0.9);
  }

  100% {
    opacity: 0;
    transform: translateY(50%) translateX(-8px) scale(0.85);
  }
}


.chat-icon-img {
  animation: antFloat 2.5s ease-in-out infinite;
}

@keyframes antFloat {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-18px);
  }

  100% {
    transform: translateY(0px);
  }
}

.lev-chat-bubble.bubble-hidden {
  opacity: 0 !important;
  animation: none !important;
  pointer-events: none;
}


#chatbot-toggle {
  width: 80px;
  height: 80px;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#chatbot-toggle:hover {
  transform: scale(1.1);
}

#chatbot-toggle.active {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#chatbot-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 410px;
  height: 600px;
  background: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 1;
  transform: translateY(0);
}

#chatbot-window.cb-hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.chatbot-header {
  background: linear-gradient(90deg, #0693e3);
  padding: 1.3rem;
  color: white;
  display: flex;
  align-items: center;
  position: relative;
}

.chatbot-close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.8;
}

.chatbot-close-btn:hover {
  transform: scale(1.1);
  opacity: 1;
}

.bot-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bot-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.bot-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

#chatbot-toggle img.chat-icon-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  display: block;
}

.bot-name span {
  display: block;
  font-weight: 800;
}

.bot-name small {
  font-size: .99rem;
  opacity: 0.8;
}

#chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.message {
  max-width: 80%;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  font-size: 0.95rem;
  line-height: 1.4;
}

.bot-message {
  align-self: flex-start;
  background: var(--cb-msg-bot);
  color: var(--cb-text);
  border-bottom-left-radius: 0;
}

.user-message {
  align-self: flex-end;
  background: var(--cb-msg-user);
  color: black;
  border-bottom-right-radius: 0;
}

.typing {
  font-size: 0.8rem;
  color: var(--cb-text-muted);
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
}

#details-dropdown-section {
  background: white;
  border-bottom: 1px solid #eee;
  position: relative;
}

.details-toggle {
  padding: 0.75rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: black;
  background: #f8faff;
}

.details-toggle:hover {
  background: #f0f4ff;
}

.dropdown-icon {
  transition: transform 0.3s ease;
}

.details-toggle.active .dropdown-icon {
  transform: rotate(180deg);
}

#details-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 1.5rem;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  z-index: 100;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

#details-content.active {
  max-height: 500px;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #eee;
}

.form-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.form-row label {
  flex: 0 0 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cb-text);
}

.form-row input {
  flex: 1;
  padding: 0.6rem 0.75rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-row input:focus {
  border-color: var(--cb-primary);
}

.form-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.primary-btn {
  flex: 2;
  padding: 0.75rem;
  background: linear-gradient(90deg, #00a79d, #0693e3);
  border: none;
  color: white;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
}

.secondary-btn {
  flex: 1;
  padding: 0.75rem;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  color: var(--cb-text);
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
}

.chatbot-input {
  padding: 1rem;
  display: flex;
  gap: 0.5rem;
  background: white;
  border-top: 1px solid #eee;
}

.chatbot-input.disabled {
  opacity: 0.5;
  pointer-events: none;
  background: #f9fafb;
}

.chatbot-input input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.95rem;
}

#send-btn {
  background: none;
  border: none;
  color: var(--cb-primary);
  cursor: pointer;
}

#limit-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
}

.status-indicator {
  width: 100%;
  height: 6px;
  display: block;
}

.status-red {
  background-color: #fee2e2;
}

.status-green {
  background-color: #dcfce7;
}

.cb-hidden {
  display: none !important;
}

@media (max-width: 480px) {
  #chatbot-window {
    width: calc(100vw - 2rem);
    height: 70vh;
    bottom: 70px;
    right: -1rem;
  }
}