/* ========================================
   ST FOX STYLE NAVBAR - EXACT REPLICA
   ======================================== */

:root {
  --color-primary: #4169E1;
  --color-dark: #000000;
  --color-text-primary: #ffffff;
  --color-text-secondary: rgba(255, 255, 255, 0.8);
  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  color: var(--color-text-primary);
  background: #000;
  margin: 0;
}

/* ========================================
   MAIN NAVBAR CONTAINER
   ======================================== */
.main-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1000;
  padding: 0;
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 3rem;
}

/* ========================================
   LOGO/BRAND
   ======================================== */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.navbar-brand img {
  height: 45px;
  width: auto;
  transition: var(--transition);
}

.navbar-brand:hover {
  opacity: 0.9;
}

/* ========================================
   NAVBAR MENU
   ======================================== */
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-menu > li {
  position: relative;
}

.navbar-menu > li > a,
.navbar-menu > li > button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.navbar-menu > li > a:hover,
.navbar-menu > li > button:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

/* Active State - Blue Background */
.navbar-menu > li > a.active {
  background: var(--color-primary);
  color: #ffffff;
  font-weight: 600;
}

/* Dropdown Arrow */
.navbar-menu > li > button .dropdown-arrow {
  font-size: 0.75rem;
  transition: var(--transition);
}

.navbar-menu > li > button:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* ========================================
   DROPDOWN MENU
   ======================================== */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  min-width: 220px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.navbar-menu > li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding-left: 1.5rem;
}

/* ========================================
   CTA BUTTON (Contact/Breach Button)
   ======================================== */
.navbar-cta {
  margin-left: 1rem;
}

.btn-navbar-cta {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all var(--transition);
  letter-spacing: 0.3px;
}

.btn-navbar-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* ========================================
   MOBILE MENU TOGGLE
   ======================================== */
.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.navbar-toggle span {
  display: block;
  width: 25px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .navbar-container {
    padding: 0.8rem 2rem;
  }
}

@media (max-width: 992px) {
  .navbar-toggle {
    display: flex;
  }

  .navbar-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .navbar-menu.active {
    max-height: 600px;
  }

  .navbar-menu > li {
    width: 100%;
  }

  .navbar-menu > li > a,
  .navbar-menu > li > button {
    width: 100%;
    padding: 1rem 2rem;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .navbar-menu > li.dropdown-open .dropdown-menu {
    max-height: 500px;
  }

  .dropdown-menu a {
    padding-left: 3rem;
  }

  .navbar-cta {
    width: 100%;
    margin: 1rem 2rem;
    margin-left: 2rem;
  }

  .btn-navbar-cta {
    width: calc(100% - 4rem);
    text-align: center;
  }
}

@media (max-width: 768px) {
  .navbar-container {
    padding: 0.8rem 1.5rem;
  }

  .navbar-brand {
    font-size: 1.2rem;
  }

  .navbar-brand img {
    height: 40px;
  }
}

@media (max-width: 480px) {
  .navbar-container {
    padding: 0.8rem 1rem;
  }

  .navbar-brand {
    font-size: 1.1rem;
  }

  .navbar-brand img {
    height: 35px;
  }
}

/* ========================================
   UTILITY STYLES
   ======================================== */
::selection {
  background: rgba(65, 105, 225, 0.3);
  color: #fff;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: #5179f1;
}


/* Blue active button */
.stfox-nav-link.active {
  background: #4169E1; /* Change this color */
}

/* Dropdown background */
.stfox-dropdown {
  background: rgba(255, 255, 255, 0.98); /* Change to dark if needed */
}










/* ========================================
   EXACT ST FOX NAVBAR REPLICA
   ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  background: #00050c;
  color: #fff;
}

/* ========================================
   NAVBAR CONTAINER
   ======================================== */
.stfox-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 0px solid rgba(255, 255, 255, 0.05);
  z-index: 9999;
  padding: 0;
}

.stfox-navbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 70px;
}

/* ========================================
   BRAND/LOGO
   ======================================== */
.stfox-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.5px;
  z-index: 10;
}

.stfox-brand img {
  height: 42px;
  width: auto;
}

.stfox-brand:hover {
  opacity: 0.9;
}

/* ========================================
   NAVIGATION MENU
   ======================================== */
.stfox-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.stfox-nav > li {
  position: relative;
}

/* Navigation Links */
.stfox-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 4px;
  white-space: nowrap;
}

.stfox-nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

/* Active Link - Blue Button */
.stfox-nav-link.active {
  background: #4169E1;
  color: #fff;
  font-weight: 600;
  padding: 0.65rem 1.3rem;
}

.stfox-nav-link.active:hover {
  background: #5179f1;
}

/* Dropdown Arrow */
.dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
  margin-left: 0.2rem;
}

.stfox-nav > li:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* ========================================
   DROPDOWN MENU
   ======================================== */
.stfox-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 8px;
  min-width: 240px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.stfox-nav > li:hover .stfox-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.stfox-dropdown li {
  list-style: none;
}

.stfox-dropdown a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.stfox-dropdown a:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #000;
  padding-left: 1.75rem;
}

/* ========================================
   CTA BUTTON
   ======================================== */
.stfox-cta-btn {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  margin-left: 0.75rem;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.stfox-cta-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
}

/* ========================================
   MOBILE MENU TOGGLE
   ======================================== */
.stfox-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 10;
}

.stfox-mobile-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.stfox-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.stfox-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.stfox-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
  .stfox-mobile-toggle {
    display: flex;
  }

  .stfox-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    gap: 0;
  }

  .stfox-nav.active {
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .stfox-nav > li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .stfox-nav-link {
    width: 100%;
    padding: 1rem 2rem;
    justify-content: space-between;
    border-radius: 0;
  }

  .stfox-nav-link.active {
    padding: 1rem 2rem;
  }

  /* Mobile Dropdown */
  .stfox-dropdown {
    position: static;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    transform: none;
    transition: max-height 0.3s ease;
  }

  .stfox-nav > li.dropdown-open .stfox-dropdown {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
  }

.stfox-dropdown a {
    padding: 0.85rem 3rem;
    color: rgba(0, 0, 0, 0.85);
  }

  .stfox-dropdown a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #000000;
    padding-left: 3.25rem;
  }

  .stfox-cta-btn {
    margin: 1rem 2rem;
    margin-left: 2rem;
    display: block;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .stfox-navbar-inner {
    padding: 0 1.5rem;
    height: 65px;
  }

  .stfox-brand {
    font-size: 1.2rem;
  }

  .stfox-brand img {
    height: 38px;
  }
}

@media (max-width: 480px) {
  .stfox-navbar-inner {
    padding: 0 1rem;
  }

  .stfox-brand {
    font-size: 1.1rem;
  }

  .stfox-brand img {
    height: 35px;
  }
}

/* ========================================
   SCROLLBAR STYLING
   ======================================== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb {
  background: #4169E1;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #5179f1;
}








  /* ========================================
    FOOTER SECTION
    ======================================== */
  .footer-section {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 5rem 0 2rem;
    background: #00050c;
    backdrop-filter: blur(10px);
  }

  .footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  .footer-brand:hover {
    color: var(--color-secondary);
  }

  .footer-brand i {
    color: var(--color-primary);
    font-size: 1.8rem;
  }

  .footer-tagline {
    font-size: 1rem;
    color: var(--color-secondary);
    font-weight: 500;
    margin-bottom: 1.5rem;
  }

  .footer-contact {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .footer-contact i {
    color: var(--color-primary);
    font-size: 1.1rem;
  }

  .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
  }

  .social-link {
    width: 45px;
    height: 45px;
    background: rgba(0, 102, 255, 0.15);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    font-size: 1.3rem;
    transition: all var(--transition-normal);
    text-decoration: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .social-link:hover {
    background: rgba(0, 102, 255, 0.3);
    border-color: var(--color-primary);
    color: var(--color-text-primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.4);
  }

  .footer-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-links li {
    margin-bottom: 1rem;
  }

  .footer-links a {
    font-size: 1rem;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: all var(--transition-normal);
    display: inline-block;
  }

  .footer-links a:hover {
    color: var(--color-secondary);
    transform: translateX(5px);
  }

  .footer-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 102, 255, 0.3), transparent);
    margin: 3rem 0;
  }

  .footer-copyright {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    text-align: center;
  }

  .footer-copyright i.bi-heart-fill {
    color: #0066ff;
    animation: heartbeat 1.5s ease-in-out infinite;
  }
    @media print {
    .modern-navbar,
    .footer-section,
    .btn,
    .social-links,
    #darkveil-background {
      display: none !important;
    }

    body {
      background: white;
      color: black;
    }

    section {
      page-break-inside: avoid;
    }
  }






  /* ========================================
   COMMON.CSS - Shared Styles Only
   ======================================== */

/* This file is now cleaned - all navbar styles moved to styles.css */
/* Keep this file for any future shared components across multiple pages */

/* Example: If you have multiple HTML pages, add shared styles here */

/* ========================================
   PRINT STYLES (SHARED)
   ======================================== */
@media print {
  .stfox-navbar,
  .footer-section,
  .btn,
  .social-links {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  section {
    page-break-inside: avoid;
  }
}



/* ========================================
    SECURITY INCIDENT MODAL - CENTERED
    ======================================== */

.security-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  padding: 1rem;
}

.security-modal.active {
  visibility: visible;
  opacity: 1;
}

/* Overlay */
.security-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}

/* Modal Content */
.security-modal-content {
  position: relative;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  background: linear-gradient(180deg, rgba(0, 5, 20, 0.98) 0%, rgba(0, 10, 30, 0.98) 100%);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(0, 102, 255, 0.3);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 102, 255, 0.3);
  overflow-y: auto;
  padding: 2.5rem 2rem;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.security-modal.active .security-modal-content {
  transform: scale(1);
}

/* Scrollbar */
.security-modal-content::-webkit-scrollbar {
  width: 8px;
}

.security-modal-content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.security-modal-content::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 10px;
}

.security-modal-content::-webkit-scrollbar-thumb:hover {
  background: var(--color-secondary);
}

/* Close Button */
.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  background: rgba(0, 102, 255, 0.15);
  border: 1px solid rgba(0, 102, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-primary);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  z-index: 10;
}

.modal-close-btn:hover {
  background: rgba(0, 102, 255, 0.3);
  transform: rotate(90deg);
  box-shadow: 0 0 20px rgba(0, 102, 255, 0.5);
}

/* Header */
.modal-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-right: 2rem;
}

.modal-icon {
  width: 75px;
  height: 75px;
  background: rgba(0, 102, 255, 0.2);
  border: 1px solid rgba(0, 102, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
  color: var(--color-primary);
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 30px rgba(0, 102, 255, 0.4);
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% {
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 50px rgba(0, 102, 255, 0.6);
    transform: scale(1.05);
  }
}

.modal-title {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.modal-subtitle {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Form */
.security-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.required {
  color: #ff4444;
  font-weight: 700;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 102, 255, 0.3);
  border-radius: 10px;
  color: var(--color-text-primary);
  font-size: 0.95rem;
  font-family: inherit;
  transition: all var(--transition-normal);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-muted);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

/* Urgency Buttons */
.urgency-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.urgency-option {
  position: relative;
  cursor: pointer;
}

.urgency-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.urgency-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.75rem;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all var(--transition-normal);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

.urgency-label i {
  font-size: 1.5rem;
}

.urgency-option:hover .urgency-label {
  border-color: rgba(0, 102, 255, 0.4);
  background: rgba(0, 102, 255, 0.05);
}

.urgency-option input[type="radio"]:checked + .urgency-label {
  border-color: var(--color-primary);
  background: rgba(0, 102, 255, 0.15);
  color: var(--color-primary);
  box-shadow: 0 0 15px rgba(0, 102, 255, 0.3);
}

/* Urgency Color Variations */
.urgency-critical input[type="radio"]:checked + .urgency-label {
  border-color: #ff4444;
  background: rgba(255, 68, 68, 0.15);
  color: #ff6666;
  box-shadow: 0 0 15px rgba(255, 68, 68, 0.3);
}

.urgency-moderate input[type="radio"]:checked + .urgency-label {
  border-color: #ffaa00;
  background: rgba(255, 170, 0, 0.15);
  color: #ffbb33;
  box-shadow: 0 0 15px rgba(255, 170, 0, 0.3);
}

.urgency-low input[type="radio"]:checked + .urgency-label {
  border-color: #00cc66;
  background: rgba(0, 204, 102, 0.15);
  color: #00dd77;
  box-shadow: 0 0 15px rgba(0, 204, 102, 0.3);
}

/* Submit Button */
.btn-submit {
  width: 100%;
  padding: 1.15rem 2rem;
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.4);
  margin-top: 0.5rem;
}

.btn-submit:hover {
  background: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 102, 255, 0.6);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-submit i {
  font-size: 1.1rem;
}

/* Success Message */
.success-message {
  text-align: center;
  padding: 2rem 1rem;
  animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.success-icon {
  width: 90px;
  height: 90px;
  background: rgba(0, 204, 102, 0.2);
  border: 1px solid rgba(0, 204, 102, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #00dd77;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 40px rgba(0, 204, 102, 0.3);
  animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
  0%, 100% {
    box-shadow: 0 0 40px rgba(0, 204, 102, 0.3);
  }
  50% {
    box-shadow: 0 0 60px rgba(0, 204, 102, 0.6);
  }
}

.success-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.success-text {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.success-text strong {
  color: var(--color-primary);
  font-weight: 700;
}

.success-reference {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
}

.reference-code {
  font-family: 'Courier New', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  background: rgba(0, 102, 255, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  display: inline-block;
  margin-top: 0.5rem;
}

.btn-close-success {
  padding: 1rem 2.5rem;
  background: rgba(0, 102, 255, 0.2);
  color: var(--color-text-primary);
  border: 2px solid rgba(0, 102, 255, 0.5);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.btn-close-success:hover {
  background: rgba(0, 102, 255, 0.3);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 102, 255, 0.4);
}

/* ========================================
    RESPONSIVE DESIGN
    ======================================== */

@media (max-width: 768px) {
  .security-modal {
    padding: 0.5rem;
  }

  .security-modal-content {
    max-width: 100%;
    max-height: 95vh;
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }

  .modal-header {
    padding-right: 2.5rem;
    margin-bottom: 2rem;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .modal-icon {
    width: 65px;
    height: 65px;
    font-size: 2rem;
  }

  .urgency-buttons {
    grid-template-columns: 1fr;
  }

  .urgency-label {
    flex-direction: row;
    justify-content: center;
    padding: 1rem;
  }

  .btn-submit {
    font-size: 0.95rem;
    padding: 1rem 1.5rem;
  }

  .success-icon {
    width: 75px;
    height: 75px;
    font-size: 2.5rem;
  }

  .success-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .security-modal-content {
    padding: 1.75rem 1.25rem;
  }

  .modal-close-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    top: 1rem;
    right: 1rem;
  }

  .modal-title {
    font-size: 1.3rem;
  }

  .modal-subtitle {
    font-size: 0.9rem;
  }

  .form-input,
  .form-textarea {
    padding: 0.9rem 1rem;
    font-size: 0.9rem;
  }

  .urgency-label {
    font-size: 0.8rem;
    padding: 0.9rem;
  }

  .urgency-label i {
    font-size: 1.3rem;
  }

  .success-reference {
    font-size: 0.85rem;
  }

  .reference-code {
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
  }
}

@media (max-height: 700px) {
  .modal-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .modal-header {
    margin-bottom: 1.5rem;
  }

  .security-form {
    gap: 1.25rem;
  }

  .form-textarea {
    min-height: 100px;
  }
}


/* ========================================
   ST FOX STYLE NAVBAR - EXACT REPLICA
   ======================================== */

:root {
  --color-primary: #4169E1;
  --color-dark: #000000;
  --color-text-primary: #ffffff;
  --color-text-secondary: rgba(255, 255, 255, 0.8);
  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  color: var(--color-text-primary);
  background: #000;
  margin: 0;
}

/* --- [Existing Navbar CSS] --- */

/* ========================================
   NAVBAR MENU
   ======================================== */
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-menu > li {
  position: relative;
}

.navbar-menu > li > a,
.navbar-menu > li > button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

/* --- [Existing Dropdown CSS] --- */

/* --- [Existing Responsive CSS] --- */

/* ========================================
   UTILITY STYLES
   ======================================== */
::selection {
  background: rgba(65, 105, 225, 0.3);
  color: #fff;
}

/* --- [Existing Scrollbar CSS] --- */

/* Blue active button */
.stfox-nav-link.active {
  background: #4169E1; /* Change this color */
}

/* Dropdown background */
.stfox-dropdown {
  background: rgba(255, 255, 255, 0.98); /* Change to dark if needed */
}

/* --- [Existing ST FOX NAVBAR REPLICA CSS] --- */
/* --- [Existing Security Modal CSS] --- */

/* ========================================
   GLOBAL LAYOUT (Add if missing)
   ======================================== */
.container {
  max-width: 1300px; /* Adjust this to match your overall site width */
  margin: 0 auto;
  padding: 0 1.5rem; /* Ensures padding on the sides for smaller screens */
}

/* ========================================
   FULL WIDTH FOOTER SECTION STYLING
   ======================================== */
.footer-section {
  width: 100%; 
  background: #00050c; /* Deep professional dark background */
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5rem 0 3rem; /* Generous vertical padding */
  color: var(--color-text-primary);
}


/* ========================================
   FOOTER GRID LAYOUT (Desktop - 3 Columns)
   ======================================== */
.footer-grid-custom {
  display: grid;
  /* 3 Columns for laptop screens (horizontal alignment): 
     - Col 1 (Info/Apps): 2.5fr (Wider for logo/buttons)
     - Col 2 (Why): 1fr
     - Col 3 (Links Group): 2fr (This column holds two link lists side-by-side) 
     Total: 5.5fr */
  grid-template-columns: 2.5fr 1fr 2fr; 
  gap: 3rem; 
}

/* Nested Grid for Explore and Legal links inside Col 3 */
.footer-links-nested {
    display: grid;
    /* This creates the visual 4th column look on desktop */
    grid-template-columns: 1fr 1fr; 
    gap: 1.5rem; /* Small internal gap */
}

.footer-col {
    /* Base style for all columns */
    padding: 0;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0066ff; /* Primary Blue color for headings */
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #0066ff;
    transform: translateX(3px);
}

.footer-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.footer-contact {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0066ff;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #0066ff;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.4);
}

.footer-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 102, 255, 0.3), transparent);
    margin: 4rem 0 2rem;
}

.footer-copyright {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}


/* ========================================
   RESPONSIVENESS (Tablet/iPad - 2 Columns)
   ======================================== */
@media (max-width: 992px) {
    .footer-grid-custom {
        /* Collapse to a 2-column layout on tablets (e.g., iPad portrait) */
        /* Col 1 (Info) takes 1.5fr | Col 2 (Why) takes 1fr */
        grid-template-columns: 1.5fr 1fr; 
        gap: 2.5rem;
    }
    
    /* Place the Links Group (Explore + Legal) below the Info section, spanning both columns */
    .footer-col-links-group {
        grid-column: 1 / -1; /* Spans the entire width of the 2-column grid */
        margin-top: 2rem; 
    }
    
    /* Ensure nested links still show side-by-side in this new row */
    .footer-links-nested {
        grid-template-columns: 1fr 1fr; 
        gap: 3rem; /* Increase gap for better separation on tablet */
    }
}


/* ========================================
   RESPONSIVENESS (Small Tablet/Mobile - 1 Column Stacked)
   ======================================== */
@media (max-width: 640px) {
    .footer-section {
        padding: 3rem 0 2rem;
    }
    .footer-grid-custom {
        /* Stack all columns vertically on mobile */
        grid-template-columns: 1fr;
        gap: 2.5rem; 
    }
    
    /* Reset grid placement for all columns to stack */
    .footer-col {
        grid-column: auto !important; 
        margin-top: 0 !important;
    }
    
    /* The Links Group (Col 3) needs its internal structure to stack now too */
    .footer-links-nested {
        grid-template-columns: 1fr; /* Force Explore and Legal to stack */
        gap: 2.5rem; 
    }
    
    /* Add a visual divider under the Brand/Info section for separation */
    .footer-col-info {
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}





   /* ========================================
       FOOTER - FULLY RESPONSIVE
       ======================================== */
    
    :root {
      --color-primary: #0066ff;
      --color-text-primary: #ffffff;
      --color-text-secondary: rgba(255, 255, 255, 0.8);
      --color-text-muted: rgba(255, 255, 255, 0.5);
      --transition: 0.3s ease;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
      background: #00050c;
      color: #fff;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }
    
    /* Spacer for demo */
    .content-spacer {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      text-align: center;
    }
    
    /* ========================================
       FOOTER SECTION
       ======================================== */
    .footer-section {
      width: 100%;
      background: #00050c;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding: 4rem 0 2rem;
      color: var(--color-text-primary);
    }
    
    .footer-container {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }
    
    /* ========================================
       FOOTER GRID - RESPONSIVE LAYOUT
       ======================================== */
    
    /* Desktop/Laptop: 4 columns in a row */
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }
    
    .footer-col {
      padding: 0;
    }
    
    /* ========================================
       FOOTER CONTENT STYLING
       ======================================== */
    
    /* Brand/Logo */
    .footer-brand {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--color-text-primary);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1rem;
      transition: all var(--transition);
    }
    
    .footer-brand:hover {
      opacity: 0.8;
    }
    
    .footer-brand img {
      height: 40px;
      border-radius: 8px;
    }
    
    /* App Store Buttons */
    .app-links {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      max-width: 150px;
      margin: 1rem 0 1.5rem 0;
    }
    
    .app-links a {
      text-decoration: none;
      display: block;
      transition: transform var(--transition);
    }
    
    .app-links a:hover {
      transform: scale(1.05);
    }
    
    .app-links img {
      width: 100%;
      height: auto;
      display: block;
    }
    
    /* Tagline and Contact */
    .footer-tagline {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 1rem;
      line-height: 1.5;
    }
    
    .footer-contact {
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      line-height: 1.5;
    }
    
    .footer-contact i {
      color: var(--color-primary);
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    
    /* Social Links */
    .social-links {
      display: flex;
      gap: 0.75rem;
      margin-top: 1.5rem;
      flex-wrap: wrap;
    }
    
    .social-link {
      width: 38px;
      height: 38px;
      background: rgba(0, 102, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-primary);
      font-size: 1.1rem;
      transition: all var(--transition);
      text-decoration: none;
    }
    
    .social-link:hover {
      background: var(--color-primary);
      color: #fff;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 102, 255, 0.4);
    }
    
    /* Section Headings */
    .footer-heading {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--color-primary);
      margin-bottom: 1.5rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    /* Footer Links */
    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    
    .footer-links li {
      margin-bottom: 0.75rem;
    }
    
    .footer-links a {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: all var(--transition);
      display: inline-block;
    }
    
    .footer-links a:hover {
      color: var(--color-primary);
      transform: translateX(5px);
    }
    
    /* Footer Bottom */
    .footer-divider {
      border: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(0, 102, 255, 0.3), transparent);
      margin: 3rem 0 2rem;
    }
    
    .footer-bottom {
      text-align: center;
    }
    
    .footer-copyright {
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.6;
    }
    
    /* ========================================
       TABLET/IPAD (768px - 1023px)
       2 Columns x 2 Rows Layout
       ======================================== */
    @media (max-width: 1023px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
      }
      
      .footer-section {
        padding: 3.5rem 0 2rem;
      }
    }
    
    /* ========================================
       MOBILE (max-width: 767px)
       Single Column Stacked Layout
       ======================================== */
    @media (max-width: 767px) {
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
      
      .footer-section {
        padding: 3rem 0 2rem;
      }
      
      .footer-container {
        padding: 0 1.25rem;
      }
      
      /* Add separation between sections */
      .footer-col:not(:last-child) {
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      }
      
      /* Center brand section on mobile */
      .footer-col:first-child {
        text-align: center;
      }
      
      .footer-brand {
        justify-content: center;
      }
      
      .app-links {
        margin-left: auto;
        margin-right: auto;
      }
      
      .social-links {
        justify-content: center;
      }
      
      .footer-contact {
        justify-content: center;
      }
      
      .footer-tagline {
        text-align: center;
      }
    }
    
    /* ========================================
       SAMSUNG Z FOLD & SMALL DEVICES (max-width: 380px)
       ======================================== */
    @media (max-width: 380px) {
      .footer-section {
        padding: 2.5rem 0 1.5rem;
      }
      
      .footer-container {
        padding: 0 1rem;
      }
      
      .footer-grid {
        gap: 2rem;
      }
      
      .footer-brand {
        font-size: 1.3rem;
      }
      
      .footer-brand img {
        height: 35px;
      }
      
      .app-links {
        max-width: 130px;
      }
      
      .footer-heading {
        font-size: 1rem;
        margin-bottom: 1.25rem;
      }
      
      .footer-links a {
        font-size: 0.95rem;
      }
      
      .footer-contact {
        font-size: 0.9rem;
      }
      
      .social-link {
        width: 36px;
        height: 36px;
        font-size: 1rem;
      }
      
      .footer-divider {
        margin: 2rem 0 1.5rem;
      }
      
      .footer-copyright {
        font-size: 0.85rem;
      }
    }
    
    /* ========================================
       PRINT STYLES
       ======================================== */
    @media print {
      .footer-section {
        display: none;
      }
    }