:root {


  --golden-ratio: 1.618;
            --golden-inverse: 0.618;
 --golden-space-xs: calc(0.382rem * var(--golden-inverse));
            --golden-space-sm: calc(0.618rem * var(--golden-inverse));
            --golden-space-md: calc(1rem * var(--golden-inverse));
            --golden-space-lg: calc(1rem * var(--golden-ratio));
            --golden-space-xl: calc(2rem * var(--golden-ratio));
            --golden-text-xs: calc(0.75rem * var(--golden-inverse));
            --golden-text-sm: calc(0.875rem * var(--golden-inverse));
            --golden-text-base: 1rem;
            --golden-text-lg: calc(1rem * var(--golden-ratio));
            --golden-text-xl: calc(1.25rem * var(--golden-ratio));
            --golden-text-2xl: calc(1.5rem * var(--golden-ratio));
            --golden-text-3xl: calc(2rem * var(--golden-ratio));
            --golden-border-radius: calc(0.5rem * var(--golden-inverse));
            --golden-border-radius-lg: calc(1rem * var(--golden-inverse));
            --golden-border-radius-xl: calc(1rem * var(--golden-ratio));


  /* Forest Green Palette */
  --black-olive: #34403a;
  --black-olive-100: #0b0d0c;
  --black-olive-200: #151a17;
  --black-olive-300: #202723;
  --black-olive-400: #2a342f;
  --black-olive-500: #34403a;
  --black-olive-600: #586c62;
  --black-olive-700: #7d9589;
  --black-olive-800: #a9b8b0;
  --black-olive-900: #d4dcd8;
  
  --forest-green: #138a36;
  --forest-green-100: #041c0b;
  --forest-green-200: #083816;
  --forest-green-300: #0b5321;
  --forest-green-400: #0f6f2c;
  --forest-green-500: #138a36;
  --forest-green-600: #1bc950;
  --forest-green-700: #45e675;
  --forest-green-800: #83eea3;
  --forest-green-900: #c1f7d1;
  
  --spring-green: #18ff6d;
  --spring-green-100: #003815;
  --spring-green-200: #007029;
  --spring-green-300: #00a83e;
  --spring-green-400: #00e052;
  --spring-green-500: #18ff6d;
  --spring-green-600: #47ff8b;
  --spring-green-700: #75ffa8;
  --spring-green-800: #a3ffc5;
  --spring-green-900: #d1ffe2;
  
  --honeydew: #e4f2e9;
  --honeydew-100: #1e3f2a;
  --honeydew-200: #3d7f54;
  --honeydew-300: #65b581;
  --honeydew-400: #a4d3b5;
  --honeydew-500: #e4f2e9;
  --honeydew-600: #e9f4ed;
  --honeydew-700: #eef7f1;
  --honeydew-800: #f4faf6;
  --honeydew-900: #f9fcfa;
  
  --ash-gray: #b4d0bf;
  --ash-gray-100: #1e3025;
  --ash-gray-200: #3c5f4a;
  --ash-gray-300: #5a8f6f;
  --ash-gray-400: #84b296;
  --ash-gray-500: #b4d0bf;
  --ash-gray-600: #c3d9cc;
  --ash-gray-700: #d2e3d9;
  --ash-gray-800: #e1ece5;
  --ash-gray-900: #f0f6f2;
  
  /* Bootstrap-like Semantic Colors */
  --bs-primary: var(--forest-green);
  --bs-secondary: var(--ash-gray);
  --bs-success: var(--spring-green);
  --bs-info: var(--ash-gray-600);
  --bs-warning: #ffc107; /* Yellow for warning */
  --bs-danger: #dc3545; /* Red for danger */
  --bs-light: var(--honeydew);
  --bs-dark: var(--black-olive);
  
  /* Golden Ratio Variables */
  --golden-ratio: 1.618;
  --golden-xs: 0.382rem;    /* 6.11px */
  --golden-sm: 0.618rem;    /* 9.89px */
  --golden-md: 1rem;        /* 16px */
  --golden-lg: 1.618rem;    /* 25.89px */
  --golden-xl: 2.618rem;    /* 41.89px */
  --golden-2xl: 4.236rem;   /* 67.77px */
  --golden-3xl: 6.854rem;   /* 109.66px */
  --golden-4xl: 11.09rem;   /* 177.44px */
  
  /* Typography */
  --font-sans: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-serif: Georgia, Cambria, 'Times New Roman', Times, serif;
  --font-mono: 'SF Mono', Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
  
  /* Shadows with Golden Ratio */
  --shadow-xs: 0 0.382rem 0.618rem rgba(52, 64, 58, 0.05);
  --shadow-sm: 0 0.618rem 1rem rgba(52, 64, 58, 0.08);
  --shadow-md: 0 1rem 1.618rem rgba(52, 64, 58, 0.1);
  --shadow-lg: 0 1.618rem 2.618rem rgba(52, 64, 58, 0.15);
  --shadow-xl: 0 2.618rem 4.236rem rgba(52, 64, 58, 0.2);
  --shadow-2xl: 0 4.236rem 6.854rem rgba(52, 64, 58, 0.25);
  
  /* Border Radius with Golden Ratio */
  --radius-xs: 0.236rem;
  --radius-sm: 0.382rem;
  --radius-md: 0.618rem;
  --radius-lg: 1rem;
  --radius-xl: 1.618rem;
  --radius-2xl: 2.618rem;
  --radius-full: 9999px;
}

/* ================================================
   Reset & Base Styles
   ================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  line-height: var(--golden-ratio);
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: var(--golden-ratio);
  color: var(--black-olive);
  background-color: var(--honeydew-900);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ================================================
   Typography
   ================================================ */
h1, .h1 {
  font-size: var(--golden-3xl);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: var(--golden-lg);
  color: var(--black-olive);
}

h2, .h2 {
  font-size: var(--golden-2xl);
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: var(--golden-md);
  color: var(--black-olive);
}

h3, .h3 {
  font-size: var(--golden-xl);
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: var(--golden-md);
  color: var(--black-olive-600);
}

h4, .h4 {
  font-size: var(--golden-lg);
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: var(--golden-sm);
  color: var(--black-olive-600);
}

h5, .h5 {
  font-size: 1.25rem;
  line-height: var(--golden-ratio);
  font-weight: 500;
  margin-bottom: var(--golden-sm);
  color: var(--black-olive-700);
}

h6, .h6 {
  font-size: 1rem;
  line-height: var(--golden-ratio);
  font-weight: 500;
  margin-bottom: var(--golden-xs);
  color: var(--black-olive-700);
}

p {
  margin-bottom: var(--golden-md);
  color: var(--black-olive-600);
}

a {
  color: var(--forest-green);
  text-decoration: none;
  transition: all 0.382s ease;
}

a:hover {
  color: var(--forest-green-600);
  text-decoration: underline;
}

/* ================================================
   Golden Container System
   ================================================ */
.golden-container {
  width: 100%;
  max-width: calc(100rem / var(--golden-ratio));
  margin: 0 auto;
  padding: 0 var(--golden-lg);
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--golden-md);
}

@media (min-width: 640px) {
  .container { max-width: 640px; }
}

@media (min-width: 768px) {
  .container { max-width: 768px; }
}

@media (min-width: 1024px) {
  .container { max-width: 1024px; }
}

@media (min-width: 1280px) {
  .container { max-width: 1280px; }
}

@media (max-width: 991px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, var(--black-olive) 0%, var(--black-olive-800) 100%);
        padding: 80px 20px 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 0.618rem;
        transition: right 0.382s cubic-bezier(0.382, 0, 0.618, 1);
        z-index: 999;
        overflow-y: auto;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-overlay.active {
        display: block;
        opacity: 1;
        visibility: visible;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        width: 100%;
        justify-content: flex-start;
    }
    
    /* FIX: Keep dropdown hidden on mobile until clicked */
    .nav-dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        margin-top: 0.382rem;
        box-shadow: none;
        background: rgba(255, 255, 255, .7);
        transition: all 0.382s ease;
    }
    
    /* Show dropdown when active */
    .nav-dropdown-menu.active {
        opacity: 1;
        visibility: visible;
        max-height: 300px;
	background: background: rgba(255, 255, 255,1);
    
}
    
    .nav-user-btn {
        width: 100%;
        justify-content: space-between;
    }
}









/* ================================================
   Golden Card Components
   ================================================ */
.golden-card {
  background: linear-gradient(135deg, var(--honeydew-900) 0%, var(--honeydew-800) 100%);
  border-radius: var(--radius-xl);
  padding: var(--golden-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--ash-gray-800);
  transition: all 0.618s cubic-bezier(0.382, 0, 0.618, 1);
  position: relative;
  overflow: hidden;
}

.golden-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--forest-green), var(--spring-green), var(--forest-green));
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}

.golden-card:hover {
  transform: translateY(-0.382rem) scale(1.0161);
  box-shadow: var(--shadow-2xl);
  border-color: var(--forest-green-600);
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ================================================
   Buttons with Forest Green Theme
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--golden-sm) var(--golden-lg);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.382s ease;
  text-decoration: none;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--forest-green-600) 100%);
  color: white;
  border-color: var(--forest-green);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--forest-green-600) 0%, var(--forest-green-700) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-success {
  background: linear-gradient(135deg, var(--spring-green-400) 0%, var(--spring-green) 100%);
  color: var(--black-olive);
  border-color: var(--spring-green-400);
}

.btn-success:hover {
  background: linear-gradient(135deg, var(--spring-green) 0%, var(--spring-green-600) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(24, 255, 109, 0.3);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--ash-gray) 0%, var(--ash-gray-600) 100%);
  color: var(--black-olive);
  border-color: var(--ash-gray);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--ash-gray-600) 0%, var(--ash-gray-700) 100%);
  transform: translateY(-2px);
}

.btn-danger {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: white;
  border-color: #dc3545;
}

.btn-warning {
  background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
  color: var(--black-olive);
  border-color: #ffc107;
}

.btn-info {
  background: linear-gradient(135deg, var(--ash-gray-600) 0%, var(--ash-gray-700) 100%);
  color: var(--black-olive);
  border-color: var(--ash-gray-600);
}

.btn-light {
  background: linear-gradient(135deg, var(--honeydew) 0%, var(--honeydew-600) 100%);
  color: var(--black-olive);
  border-color: var(--honeydew);
}

.btn-dark {
  background: linear-gradient(135deg, var(--black-olive) 0%, var(--black-olive-600) 100%);
  color: var(--honeydew);
  border-color: var(--black-olive);
}

/* Golden Ratio Button */
.btn-golden {
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--spring-green) 61.8%, var(--forest-green-600) 100%);
  color: white;
  padding: calc(var(--golden-md) * 0.618) calc(var(--golden-lg) * 1.618);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-golden::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.382);
  transform: translate(-50%, -50%);
  transition: width 0.618s, height 0.618s;
}

.btn-golden:hover::before {
  width: 300px;
  height: 300px;
}

.btn-golden:hover {
  transform: scale(1.0618);
  box-shadow: 0 var(--golden-md) var(--golden-xl) rgba(24, 255, 109, 0.382);
}

/* ================================================
   Forms with Forest Green Theme
   ================================================ */
.form-control, .input-golden {
  width: 100%;
  padding: var(--golden-sm) var(--golden-md);
  font-size: 1rem;
  line-height: var(--golden-ratio);
  color: var(--black-olive);
  background-color: var(--honeydew-900);
  border: 2px solid var(--ash-gray-700);
  border-radius: var(--radius-md);
  transition: all 0.382s ease;
}

.form-control:focus, .input-golden:focus {
  outline: none;
  border-color: var(--forest-green);
  background-color: white;
  box-shadow: 0 0 0 4px rgba(19, 138, 54, 0.1);
  transform: scale(1.0161);
}

.form-control:hover, .input-golden:hover {
  border-color: var(--forest-green-600);
}

/* Placeholder styling */
.form-control::placeholder, .input-golden::placeholder {
  color: var(--ash-gray-400);
  opacity: 0.618;
}

/* ================================================
   Grid System with Golden Ratio
   ================================================ */
.grid {
  display: grid;
  gap: var(--golden-lg);
}

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

/* ================================================
   Flexbox Utilities
   ================================================ */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.gap-1 { gap: var(--golden-xs); }
.gap-2 { gap: var(--golden-sm); }
.gap-3 { gap: var(--golden-md); }
.gap-4 { gap: var(--golden-lg); }
.gap-5 { gap: var(--golden-xl); }

/* ================================================
   Spacing Utilities with Golden Ratio
   ================================================ */
.m-0 { margin: 0; }
.m-1 { margin: var(--golden-xs); }
.m-2 { margin: var(--golden-sm); }
.m-3 { margin: var(--golden-md); }
.m-4 { margin: var(--golden-lg); }
.m-5 { margin: var(--golden-xl); }
.m-6 { margin: var(--golden-2xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--golden-xs); }
.mt-2 { margin-top: var(--golden-sm); }
.mt-3 { margin-top: var(--golden-md); }
.mt-4 { margin-top: var(--golden-lg); }
.mt-5 { margin-top: var(--golden-xl); }
.mt-6 { margin-top: var(--golden-2xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--golden-xs); }
.mb-2 { margin-bottom: var(--golden-sm); }
.mb-3 { margin-bottom: var(--golden-md); }
.mb-4 { margin-bottom: var(--golden-lg); }
.mb-5 { margin-bottom: var(--golden-xl); }
.mb-6 { margin-bottom: var(--golden-2xl); }

.ml-0 { margin-left: 0; }
.ml-1 { margin-left: var(--golden-xs); }
.ml-2 { margin-left: var(--golden-sm); }
.ml-3 { margin-left: var(--golden-md); }
.ml-4 { margin-left: var(--golden-lg); }
.ml-5 { margin-left: var(--golden-xl); }

.mr-0 { margin-right: 0; }
.mr-1 { margin-right: var(--golden-xs); }
.mr-2 { margin-right: var(--golden-sm); }
.mr-3 { margin-right: var(--golden-md); }
.mr-4 { margin-right: var(--golden-lg); }
.mr-5 { margin-right: var(--golden-xl); }

.mx-auto { margin-left: auto; margin-right: auto; }
.my-1 { margin-top: var(--golden-xs); margin-bottom: var(--golden-xs); }
.my-2 { margin-top: var(--golden-sm); margin-bottom: var(--golden-sm); }
.my-3 { margin-top: var(--golden-md); margin-bottom: var(--golden-md); }
.my-4 { margin-top: var(--golden-lg); margin-bottom: var(--golden-lg); }

/* Padding */
.p-0 { padding: 0; }
.p-1 { padding: var(--golden-xs); }
.p-2 { padding: var(--golden-sm); }
.p-3 { padding: var(--golden-md); }
.p-4 { padding: var(--golden-lg); }
.p-5 { padding: var(--golden-xl); }
.p-6 { padding: var(--golden-2xl); }

.pt-0 { padding-top: 0; }
.pt-1 { padding-top: var(--golden-xs); }
.pt-2 { padding-top: var(--golden-sm); }
.pt-3 { padding-top: var(--golden-md); }
.pt-4 { padding-top: var(--golden-lg); }
.pt-5 { padding-top: var(--golden-xl); }
.pt-6 { padding-top: var(--golden-2xl); }

.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: var(--golden-xs); }
.pb-2 { padding-bottom: var(--golden-sm); }
.pb-3 { padding-bottom: var(--golden-md); }
.pb-4 { padding-bottom: var(--golden-lg); }
.pb-5 { padding-bottom: var(--golden-xl); }
.pb-6 { padding-bottom: var(--golden-2xl); }

.pl-0 { padding-left: 0; }
.pl-1 { padding-left: var(--golden-xs); }
.pl-2 { padding-left: var(--golden-sm); }
.pl-3 { padding-left: var(--golden-md); }
.pl-4 { padding-left: var(--golden-lg); }
.pl-5 { padding-left: var(--golden-xl); }

.pr-0 { padding-right: 0; }
.pr-1 { padding-right: var(--golden-xs); }
.pr-2 { padding-right: var(--golden-sm); }
.pr-3 { padding-right: var(--golden-md); }
.pr-4 { padding-right: var(--golden-lg); }
.pr-5 { padding-right: var(--golden-xl); }

.px-1 { padding-left: var(--golden-xs); padding-right: var(--golden-xs); }
.px-2 { padding-left: var(--golden-sm); padding-right: var(--golden-sm); }
.px-3 { padding-left: var(--golden-md); padding-right: var(--golden-md); }
.px-4 { padding-left: var(--golden-lg); padding-right: var(--golden-lg); }
.px-5 { padding-left: var(--golden-xl); padding-right: var(--golden-xl); }

.py-1 { padding-top: var(--golden-xs); padding-bottom: var(--golden-xs); }
.py-2 { padding-top: var(--golden-sm); padding-bottom: var(--golden-sm); }
.py-3 { padding-top: var(--golden-md); padding-bottom: var(--golden-md); }
.py-4 { padding-top: var(--golden-lg); padding-bottom: var(--golden-lg); }
.py-5 { padding-top: var(--golden-xl); padding-bottom: var(--golden-xl); }
.py-6 { padding-top: var(--golden-2xl); padding-bottom: var(--golden-2xl); }

/* ================================================
   Background Colors
   ================================================ */
.bg-primary { background-color: var(--forest-green); }
.bg-secondary { background-color: var(--ash-gray); }
.bg-success { background-color: var(--spring-green); }
.bg-danger { background-color: #dc3545; }
.bg-warning { background-color: #ffc107; }
.bg-info { background-color: var(--ash-gray-600); }
.bg-light { background-color: var(--honeydew); }
.bg-dark { background-color: var(--black-olive); }
.bg-white { background-color: #ffffff; }
.bg-transparent { background-color: transparent; }

/* Forest Green Backgrounds */
.bg-black-olive { background-color: var(--black-olive); }
.bg-black-olive-100 { background-color: var(--black-olive-100); }
.bg-black-olive-200 { background-color: var(--black-olive-200); }
.bg-black-olive-300 { background-color: var(--black-olive-300); }
.bg-black-olive-400 { background-color: var(--black-olive-400); }
.bg-black-olive-500 { background-color: var(--black-olive-500); }
.bg-black-olive-600 { background-color: var(--black-olive-600); }
.bg-black-olive-700 { background-color: var(--black-olive-700); }
.bg-black-olive-800 { background-color: var(--black-olive-800); }
.bg-black-olive-900 { background-color: var(--black-olive-900); }

.bg-forest-green { background-color: var(--forest-green); }
.bg-forest-green-100 { background-color: var(--forest-green-100); }
.bg-forest-green-200 { background-color: var(--forest-green-200); }
.bg-forest-green-300 { background-color: var(--forest-green-300); }
.bg-forest-green-400 { background-color: var(--forest-green-400); }
.bg-forest-green-500 { background-color: var(--forest-green-500); }
.bg-forest-green-600 { background-color: var(--forest-green-600); }
.bg-forest-green-700 { background-color: var(--forest-green-700); }
.bg-forest-green-800 { background-color: var(--forest-green-800); }
.bg-forest-green-900 { background-color: var(--forest-green-900); }

.bg-spring-green { background-color: var(--spring-green); }
.bg-honeydew { background-color: var(--honeydew); }
.bg-ash-gray { background-color: var(--ash-gray); }

/* ================================================
   Text Colors
   ================================================ */
.text-primary { color: var(--forest-green); }
.text-secondary { color: var(--ash-gray); }
.text-success { color: var(--spring-green); }
.text-danger { color: #dc3545; }
.text-warning { color: #ffc107; }
.text-info { color: var(--ash-gray-600); }
.text-light { color: var(--honeydew); }
.text-dark { color: var(--black-olive); }
.text-white { color: #ffffff; }

.text-black-olive { color: var(--black-olive); }
.text-forest-green { color: var(--forest-green); }
.text-spring-green { color: var(--spring-green); }
.text-honeydew { color: var(--honeydew); }
.text-ash-gray { color: var(--ash-gray); }

/* ================================================
   Borders
   ================================================ */
.border { border: 1px solid var(--ash-gray-700); }
.border-2 { border: 2px solid var(--ash-gray-700); }
.border-primary { border-color: var(--forest-green); }
.border-secondary { border-color: var(--ash-gray); }
.border-success { border-color: var(--spring-green); }
.border-danger { border-color: #dc3545; }
.border-warning { border-color: #ffc107; }
.border-info { border-color: var(--ash-gray-600); }

/* ================================================
   Shadows
   ================================================ */
.shadow-xs { box-shadow: var(--shadow-xs); }
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-2xl { box-shadow: var(--shadow-2xl); }
.shadow-none { box-shadow: none; }

/* ================================================
   Border Radius
   ================================================ */
.rounded-none { border-radius: 0; }
.rounded-xs { border-radius: var(--radius-xs); }
.rounded-sm { border-radius: var(--radius-sm); }
.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.rounded-full { border-radius: var(--radius-full); }

/* ================================================
   Text Utilities
   ================================================ */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }
.text-8xl { font-size: 6rem; line-height: 1; }

.font-thin { font-weight: 100; }
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.normal-case { text-transform: none; }

.italic { font-style: italic; }
.not-italic { font-style: normal; }

.tracking-tighter { letter-spacing: -0.05em; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-normal { letter-spacing: 0; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 2; }

/* ================================================
   Display Utilities
   ================================================ */
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.hidden { display: none !important; }

/* ================================================
   Position Utilities
   ================================================ */
.static { position: static; }
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.sticky { position: sticky; }

.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }

/* ================================================
   Width & Height
   ================================================ */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-1\/2 { width: 50%; }
.w-1\/3 { width: 33.333333%; }
.w-2\/3 { width: 66.666667%; }
.w-1\/4 { width: 25%; }
.w-3\/4 { width: 75%; }

.h-full { height: 100%; }
.h-auto { height: auto; }
.h-screen { height: 100vh; }
.min-h-screen { min-height: 100vh; }

.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-full { max-width: 100%; }

/* ================================================
   Z-Index
   ================================================ */
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* ================================================
   Opacity
   ================================================ */
.opacity-0 { opacity: 0; }
.opacity-10 { opacity: 0.1; }
.opacity-20 { opacity: 0.2; }
.opacity-30 { opacity: 0.3; }
.opacity-40 { opacity: 0.4; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }
.opacity-95 { opacity: 0.95; }
.opacity-100 { opacity: 1; }

/* ================================================
   Transitions
   ================================================ */
.transition-none { transition: none; }
.transition-all { 
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition {
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors {
  transition-property: background-color, border-color, color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-shadow {
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-75 { transition-duration: 75ms; }
.duration-100 { transition-duration: 100ms; }
.duration-150 { transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-382 { transition-duration: 382ms; }
.duration-500 { transition-duration: 500ms; }
.duration-618 { transition-duration: 618ms; }
.duration-700 { transition-duration: 700ms; }
.duration-1000 { transition-duration: 1000ms; }

.ease-linear { transition-timing-function: linear; }
.ease-in { transition-timing-function: cubic-bezier(0.4, 0, 1, 1); }
.ease-out { transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

/* ================================================
   Transform Utilities
   ================================================ */
.scale-0 { transform: scale(0); }
.scale-50 { transform: scale(0.5); }
.scale-75 { transform: scale(0.75); }
.scale-90 { transform: scale(0.9); }
.scale-95 { transform: scale(0.95); }
.scale-100 { transform: scale(1); }
.scale-105 { transform: scale(1.05); }
.scale-110 { transform: scale(1.1); }
.scale-125 { transform: scale(1.25); }
.scale-150 { transform: scale(1.5); }

.rotate-0 { transform: rotate(0deg); }
.rotate-45 { transform: rotate(45deg); }
.rotate-90 { transform: rotate(90deg); }
.rotate-180 { transform: rotate(180deg); }

.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.translate-x-0 { transform: translateX(0); }
.translate-y-0 { transform: translateY(0); }

/* ================================================
   Hover States
   ================================================ */
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:bg-primary:hover { background-color: var(--forest-green); }
.hover\:bg-secondary:hover { background-color: var(--ash-gray); }
.hover\:text-primary:hover { color: var(--forest-green); }
.hover\:text-secondary:hover { color: var(--ash-gray); }
.hover\:shadow-lg:hover { box-shadow: var(--shadow-lg); }
.hover\:shadow-xl:hover { box-shadow: var(--shadow-xl); }
.hover\:opacity-80:hover { opacity: 0.8; }
.hover\:opacity-90:hover { opacity: 0.9; }

/* ================================================
   Focus States
   ================================================ */
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:ring-2:focus { box-shadow: 0 0 0 3px rgba(19, 138, 54, 0.5); }
.focus\:ring-4:focus { box-shadow: 0 0 0 4px rgba(19, 138, 54, 0.5); }
.focus\:border-primary:focus { border-color: var(--forest-green); }

/* ================================================
   Overflow
   ================================================ */
.overflow-auto { overflow: auto; }
.overflow-hidden { overflow: hidden; }
.overflow-visible { overflow: visible; }
.overflow-scroll { overflow: scroll; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }

/* ================================================
   Cursor
   ================================================ */
.cursor-auto { cursor: auto; }
.cursor-default { cursor: default; }
.cursor-pointer { cursor: pointer; }
.cursor-wait { cursor: wait; }
.cursor-text { cursor: text; }
.cursor-move { cursor: move; }
.cursor-not-allowed { cursor: not-allowed; }

/* ================================================
   User Select
   ================================================ */
.select-none { user-select: none; }
.select-text { user-select: text; }
.select-all { user-select: all; }
.select-auto { user-select: auto; }

/* ================================================
   Responsive Utilities
   ================================================ */
@media (min-width: 640px) {
  .sm\:block { display: block; }
  .sm\:inline-block { display: inline-block; }
  .sm\:flex { display: flex; }
  .sm\:hidden { display: none; }
  .sm\:text-sm { font-size: 0.875rem; }
  .sm\:text-base { font-size: 1rem; }
  .sm\:text-lg { font-size: 1.125rem; }
  .sm\:text-xl { font-size: 1.25rem; }
}

@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:inline-block { display: inline-block; }
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:text-base { font-size: 1rem; }
  .md\:text-lg { font-size: 1.125rem; }
  .md\:text-xl { font-size: 1.25rem; }
  .md\:text-2xl { font-size: 1.5rem; }
  .md\:text-3xl { font-size: 1.875rem; }
  .md\:text-4xl { font-size: 2.25rem; }
  .md\:text-5xl { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .lg\:inline-block { display: inline-block; }
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:text-lg { font-size: 1.125rem; }
  .lg\:text-xl { font-size: 1.25rem; }
  .lg\:text-2xl { font-size: 1.5rem; }
  .lg\:text-3xl { font-size: 1.875rem; }
  .lg\:text-4xl { font-size: 2.25rem; }
  .lg\:text-5xl { font-size: 3rem; }
  .lg\:text-6xl { font-size: 3.75rem; }
  .lg\:text-7xl { font-size: 4.5rem; }
}

/* ================================================
   Special Forest Green Components
   ================================================ */
.masthead {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--forest-green-200) 0%, var(--forest-green) 25%, var(--spring-green-400) 75%, var(--forest-green-600) 100%);
}

.contact-card {
  background: linear-gradient(145deg, var(--honeydew-900), var(--honeydew-800));
  box-shadow: 20px 20px 60px rgba(180, 208, 191, 0.3),
              -20px -20px 60px rgba(255, 255, 255, 0.5);
  transition: all 0.618s cubic-bezier(0.382, 0, 0.618, 1);
}

.contact-card:hover {
  transform: translateY(-5px) scale(1.0161);
  box-shadow: 25px 25px 75px rgba(19, 138, 54, 0.2),
              -25px -25px 75px rgba(255, 255, 255, 0.6);
}

/* Form Overlay */
.form-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(52, 64, 58, 0.618);
  backdrop-filter: blur(8px);
  z-index: 40;
  opacity: 0;
  transition: opacity 0.382s ease;
}

.form-overlay:not(.hidden) {
  opacity: 1;
}

/* Form Modal */
.form-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: linear-gradient(135deg, var(--honeydew-900) 0%, white 100%);
  border-radius: var(--radius-2xl);
  box-shadow: 0 25px 50px -12px rgba(52, 64, 58, 0.25);
  padding: var(--golden-2xl);
  z-index: 50;
  width: 90%;
  max-width: 28rem;
  opacity: 0;
  transition: all 0.382s cubic-bezier(0.382, 0, 0.618, 1);
  border: 2px solid var(--forest-green-600);
}

.form-modal:not(.hidden) {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Heading Golden with Forest Theme */
.heading-golden {
  font-weight: bold;
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--spring-green) 38.2%, var(--forest-green-600) 61.8%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(19, 138, 54, 0.1);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: var(--spring-green);
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-1rem);
  }
}

/* Golden Fade Animation */
@keyframes goldenFadeIn {
  from {
    opacity: 0;
    transform: translateY(var(--golden-lg));
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-golden-fade {
  animation: goldenFadeIn 1.618s ease-out;
}

/* ================================================
   Gradient Backgrounds
   ================================================ */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-l { background-image: linear-gradient(to left, var(--tw-gradient-stops)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-to-bl { background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); }
.bg-gradient-to-tr { background-image: linear-gradient(to top right, var(--tw-gradient-stops)); }
.bg-gradient-to-tl { background-image: linear-gradient(to top left, var(--tw-gradient-stops)); }

.from-forest-green { --tw-gradient-from: var(--forest-green); --tw-gradient-to: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-spring-green { --tw-gradient-from: var(--spring-green); --tw-gradient-to: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-black-olive { --tw-gradient-from: var(--black-olive); --tw-gradient-to: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-honeydew { --tw-gradient-from: var(--honeydew); --tw-gradient-to: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-ash-gray { --tw-gradient-from: var(--ash-gray); --tw-gradient-to: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }

.to-forest-green { --tw-gradient-to: var(--forest-green); }
.to-spring-green { --tw-gradient-to: var(--spring-green); }
.to-black-olive { --tw-gradient-to: var(--black-olive); }
.to-honeydew { --tw-gradient-to: var(--honeydew); }
.to-ash-gray { --tw-gradient-to: var(--ash-gray); }

.via-forest-green { --tw-gradient-stops: var(--tw-gradient-from), var(--forest-green), var(--tw-gradient-to); }
.via-spring-green { --tw-gradient-stops: var(--tw-gradient-from), var(--spring-green), var(--tw-gradient-to); }

/* ================================================
   Print Styles
   ================================================ */
@media print {
  .no-print { display: none !important; }
  .print-only { display: block !important; }
}

/* ================================================
   Accessibility
   ================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}


::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: var(--honeydew-800);
  border-radius: var(--radius-lg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--forest-green), var(--spring-green));
  border-radius: var(--radius-lg);
  border: 2px solid var(--honeydew-800);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--forest-green-600), var(--spring-green-600));
}


/* Base Navbar */
.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: var(--golden-sm) 0;
  background: linear-gradient(135deg, var(--black-olive) 0%, var(--black-olive-600) 100%);
  box-shadow: var(--shadow-md);
  transition: all 0.382s ease;
}

/* Navbar Dark Theme */
.navbar-dark {
  background: linear-gradient(135deg, var(--black-olive-200) 0%, var(--black-olive) 100%);
  color: var(--honeydew);
}

.navbar-dark .navbar-brand {
  color: var(--spring-green);
  transition: all 0.382s ease;
}

.navbar-dark .navbar-brand:hover {
  color: var(--spring-green-600);
  text-decoration: none;
}

.navbar-dark .nav-link {
  color: var(--honeydew);
  transition: all 0.382s ease;
}

.navbar-dark .nav-link:hover {
  color: var(--spring-green);
}

/* Navbar Light Theme (Alternative) */
.navbar-light {
  background: linear-gradient(135deg, var(--honeydew-900) 0%, var(--honeydew-800) 100%);
  color: var(--black-olive);
  border-bottom: 2px solid var(--forest-green);
}

/* Navbar Brand */
.navbar-brand {
  display: inline-block;
  padding: var(--golden-xs) var(--golden-sm);
  margin-right: var(--golden-lg);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: inherit;
  white-space: nowrap;
  color: var(--spring-green);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.382s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
  color: var(--spring-green-600);
}

/* Navbar Nav */
.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

/* Navbar Toggler */
.navbar-toggler {
  padding: var(--golden-xs) var(--golden-sm);
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 2px solid var(--spring-green);
  border-radius: var(--radius-md);
  transition: all 0.382s ease;
  cursor: pointer;
}

.navbar-toggler:hover {
  background-color: rgba(24, 255, 109, 0.1);
  border-color: var(--spring-green-600);
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(24, 255, 109, 0.25);
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2318ff6d' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

/* Navbar Collapse */
.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.collapse {
  display: none;
}

.collapse.show {
  display: block;
}

/* Nav Items and Links */
.nav-item {
  margin-bottom: var(--golden-xs);
  position: relative;
}

.nav-link {
  display: block;
  padding: var(--golden-sm) var(--golden-md);
  color: var(--honeydew);
  text-decoration: none;
  transition: all 0.382s ease;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--forest-green), var(--spring-green));
  transition: width 0.382s ease;
}

.nav-link:hover::before {
  width: 100%;
}

.nav-link:hover {
  color: var(--spring-green);
  transform: translateY(-2px);
}

/* Nav Link with H4 inside */
.nav-link h4 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: inherit;
  transition: all 0.382s ease;
}

.nav-link:hover h4 {
  color: var(--spring-green);
}

/* Container inside navbar */
.navbar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-right: var(--golden-lg);
  padding-left: var(--golden-lg);
  margin-right: auto;
  margin-left: auto;
}

/* Margin utilities for navbar */
.ms-auto {
  margin-left: auto !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-lg-0 {
  margin-bottom: 0 !important;
}

/* Responsive Navbar Expand */
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  
  .navbar-expand-lg .navbar-nav .nav-item {
    margin-bottom: 0;
    margin-right: var(--golden-md);
  }
  
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: var(--golden-md);
    padding-left: var(--golden-md);
  }
  
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
  
  .navbar-expand-lg .container {
    flex-wrap: nowrap;
  }
}

/* Fixed Top Navbar */
.navbar.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

/* Sticky Top Navbar */
.navbar.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

/* Navbar with Forest Green Theme */
.navbar-forest {
  background: linear-gradient(135deg, var(--forest-green-200) 0%, var(--forest-green) 100%);
  box-shadow: 0 4px 6px rgba(19, 138, 54, 0.1);
}

.navbar-forest .navbar-brand {
  color: var(--honeydew);
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.navbar-forest .nav-link {
  color: var(--honeydew-900);
}

.navbar-forest .nav-link:hover {
  color: var(--spring-green);
}

/* Navbar with Black Olive Theme */
.navbar-olive {
  background: linear-gradient(135deg, var(--black-olive) 0%, var(--black-olive-600) 100%);
  border-bottom: 3px solid var(--forest-green);
}

/* Login Button in Navbar */
.navbar .btn-primary {
  margin-left: var(--golden-md);
  padding: var(--golden-xs) var(--golden-lg);
  font-size: 1rem;
}

/* Mobile Menu Styles */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(182, 186, 184, 0.98);
    margin-top: var(--golden-md);
    padding: var(--golden-md);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
  }
  
  .navbar-dark .navbar-collapse {
    background: rgba(21, 26, 23, 0.98);
  }
  
  .nav-item {
    text-align: center;
    border-bottom: 1px solid rgba(228, 242, 233, 0.1);
  }
  
  .nav-item:last-child {
    border-bottom: none;
  }
}

/* Data attributes for Bootstrap compatibility */
[data-bs-toggle="collapse"] {
  cursor: pointer;
}

[aria-expanded="false"] .navbar-toggler-icon {
  transition: transform 0.382s ease;
}

[aria-expanded="true"] .navbar-toggler-icon {
  transform: rotate(90deg);
}

/* Smooth transitions for collapse */
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.382s ease;
}

/* Add Golden Ratio spacing to navbar elements */
#mainNav {
  padding-top: var(--golden-sm);
  padding-bottom: var(--golden-sm);
}

#navbarSupportedContent {
  transition: all 0.382s cubic-bezier(0.382, 0, 0.618, 1);
}

/* Active nav link state */
.nav-link.active {
  color: var(--spring-green) !important;
  font-weight: 600;
}

.nav-link.active::before {
  width: 100%;
  background: var(--spring-green);
}
/* ================================================
   Forest Green Navigation System
   ================================================ */

/* Header Base */
.header-forest {
  background: linear-gradient(135deg, hsla(150, 10%, 23%, 0.98) 0%, hsla(150, 10%, 23%, 0.95) 100%);
  backdrop-filter: blur(10px);
  min-height: 70px;
  padding: var(--golden-sm) 0;
  transition: all 0.382s cubic-bezier(0.382, 0, 0.618, 1);
  z-index: 1000;
  box-shadow: 0 2px 20px hsla(150, 10%, 23%, 0.15);
  border-bottom: 2px solid hsla(138, 76%, 31%, 0.3);
}

/* Sticky Header Effect */
.header-forest.scrolled {
  padding: var(--golden-xs) 0;
  background: linear-gradient(135deg, hsla(150, 10%, 23%, 1) 0%, hsla(150, 10%, 20%, 1) 100%);
  box-shadow: 0 4px 30px hsla(150, 10%, 23%, 0.25);
}

/* Navigation Wrapper */
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo Styles */
.logo-forest {
  display: flex;
  align-items: center;
  gap: var(--golden-md);
  text-decoration: none;
  transition: all 0.382s ease;
}

.logo-img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 4px hsla(150, 10%, 23%, 0.2));
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, hsla(138, 76%, 31%, 1) 0%, hsla(142, 100%, 55%, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-forest:hover {
  transform: scale(1.05);
}

/* Desktop Navigation */
.navmenu-forest {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--golden-md);
}

/* Navigation Links */
.nav-link-forest {
  padding: var(--golden-sm) var(--golden-md);
  color: hsla(141, 35%, 92%, 1);
  border-radius: var(--radius-md);
  transition: all 0.382s cubic-bezier(0.382, 0, 0.618, 1);
  position: relative;
  overflow: hidden;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--golden-xs);
}

.nav-link-forest h4 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: inherit;
}

.nav-link-forest::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, hsla(138, 76%, 31%, 1), hsla(142, 100%, 55%, 1));
  transition: width 0.382s ease;
}

.nav-link-forest:hover {
  color: hsla(142, 100%, 55%, 1);
  background: hsla(138, 76%, 31%, 0.1);
  transform: translateY(-2px);
}

.nav-link-forest:hover::before {
  width: 100%;
}

/* Forest Primary Button */
.btn-forest-primary {
  background: linear-gradient(135deg, hsla(138, 76%, 31%, 1) 0%, hsla(138, 76%, 35%, 1) 100%);
  color: white;
  padding: var(--golden-sm) var(--golden-lg);
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  font-weight: 600;
  transition: all 0.382s cubic-bezier(0.382, 0, 0.618, 1);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: var(--golden-xs);
  position: relative;
  overflow: hidden;
}

.btn-forest-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: hsla(142, 100%, 55%, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.618s, height 0.618s;
}

.btn-forest-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-forest-primary:hover {
  background: linear-gradient(135deg, hsla(138, 76%, 35%, 1) 0%, hsla(142, 100%, 55%, 1) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px hsla(138, 76%, 31%, 0.3);
}

/* User Button */
.btn-forest-user {
  background: linear-gradient(135deg, hsla(144, 23%, 76%, 1) 0%, hsla(144, 23%, 70%, 1) 100%);
  color: hsla(150, 10%, 23%, 1);
  padding: var(--golden-sm) var(--golden-md);
  border-radius: var(--radius-full);
  border: 2px solid hsla(144, 23%, 76%, 0.3);
  font-weight: 600;
  transition: all 0.382s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--golden-xs);
}

.btn-forest-user:hover {
  background: linear-gradient(135deg, hsla(138, 76%, 31%, 1) 0%, hsla(138, 76%, 35%, 1) 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px hsla(138, 76%, 31%, 0.2);
}


.dropdown-menu-forest {
  position: absolute;
  top: calc(100% + var(--golden-xs));
  right: 0;
  background: linear-gradient(135deg, hsla(141, 35%, 92%, 1) 0%, white 100%);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px hsla(150, 10%, 23%, 0.2);
  min-width: 200px;
  border: 1px solid hsla(144, 23%, 76%, 0.3);
  overflow: hidden;
  z-index: 1001;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.382s cubic-bezier(0.382, 0, 0.618, 1);
  pointer-events: none;
}

.dropdown-menu-forest:not(.hidden) {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;

}

/* Fix dropdown item text color - MAKE IT DARKER */
.dropdown-item-forest {
    display: flex;
    align-items: center;
    gap: var(--golden-sm);
    padding: var(--golden-sm) var(--golden-md);
    color: #34403a !important; /* Dark olive color for readability */
    transition: all 0.382s ease;
    border: none;
    background: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    text-decoration: none;
    font-weight: 500; /* Make text slightly bolder */
}

.dropdown-item-forest:hover {
    background: linear-gradient(135deg, rgba(228, 242, 233, 0.8) 0%, rgba(228, 242, 233, 0.4) 100%);
    color: #138a36 !important; /* Forest green on hover */
    padding-left: calc(var(--golden-md) + var(--golden-xs));
}

/* Fix dropdown divider */
.dropdown-divider-forest {
    height: 1px;
    background: rgba(52, 64, 58, 0.1); /* Lighter divider */
    margin: var(--golden-xs) 0;
}

/* For the navmenu.php dropdown specifically */
.nav-dropdown-menu {
    background: white !important; /* Force white background */
}

.nav-dropdown-item {
    color: #34403a !important; /* Dark text for readability */
    font-weight: 500;
}

.nav-dropdown-item:hover {
    background: #e4f2e9; /* Light honeydew background on hover */
    color: #138a36 !important; /* Forest green text on hover */
}

/* Icons in dropdown should also be visible */
.dropdown-item-forest i,
.nav-dropdown-item i {
    color: inherit;
    opacity: 0.8;
}

.dropdown-item-forest:hover i,
.nav-dropdown-item:hover i {
    opacity: 1;
    color: #138a36;
}

/* Logout button specific styling */
.nav-dropdown-item:last-child:hover {
    background: #fee5e5; /* Light red background for logout */
    color: #dc3545 !important; /* Red text for logout */
}

/* Profile and Settings specific colors */
.nav-dropdown-item:first-child {
    border-bottom: 1px solid rgba(52, 64, 58, 0.05);
}

/* Alternative high contrast version if needed */
.high-contrast .dropdown-menu-forest,
.high-contrast .nav-dropdown-menu {
    background: #ffffff;
    border: 2px solid #138a36;
}

.high-contrast .dropdown-item-forest,
.high-contrast .nav-dropdown-item {
    color: #000000 !important;
    font-weight: 600;
}

.high-contrast .dropdown-item-forest:hover,
.high-contrast .nav-dropdown-item:hover {
    background: #138a36;
    color: #ffffff !important;
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
}

.hamburger-forest {
  display: block;
  width: 25px;
  height: 3px;
  background: hsla(142, 100%, 55%, 1);
  border-radius: 3px;
  transition: all 0.382s cubic-bezier(0.382, 0, 0.618, 1);
  margin: 3px 0;
}

.mobile-nav-toggle.active .hamburger-forest:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-nav-toggle.active .hamburger-forest:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-nav-toggle.active .hamburger-forest:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Navigation Menu */
.mobile-navmenu-forest {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, hsla(150, 10%, 23%, 0.98) 0%, hsla(150, 10%, 20%, 0.98) 100%);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px hsla(150, 10%, 23%, 0.3);
  z-index: 999;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.618s cubic-bezier(0.382, 0, 0.618, 1);
}

.mobile-navmenu-forest:not(.hidden) {
  max-height: 80vh;
  overflow-y: auto;
}

.mobile-nav-list {
  list-style: none;
  padding: var(--golden-md);
  margin: 0;
}

.mobile-nav-link-forest {
  display: flex;
  align-items: center;
  gap: var(--golden-md);
  padding: var(--golden-md) var(--golden-lg);
  color: hsla(141, 35%, 92%, 1);
  background: hsla(138, 76%, 31%, 0.05);
  border-radius: var(--radius-md);
  margin-bottom: var(--golden-xs);
  transition: all 0.382s ease;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid hsla(138, 76%, 31%, 0.1);
}

.mobile-nav-link-forest:hover {
  background: linear-gradient(135deg, hsla(138, 76%, 31%, 0.2) 0%, hsla(142, 100%, 55%, 0.2) 100%);
  color: hsla(142, 100%, 55%, 1);
  transform: translateX(var(--golden-xs));
  border-color: hsla(142, 100%, 55%, 0.3);
}

/* Auth Modal with Forest Green Theme */
.auth-modal-forest {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsla(150, 10%, 23%, 0.8);
  backdrop-filter: blur(10px);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.382s ease, visibility 0.382s ease;
}

.auth-modal-forest.active {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.auth-card-forest {
  background: linear-gradient(135deg, white 0%, hsla(141, 35%, 92%, 1) 100%);
  border-radius: var(--radius-2xl);
  padding: var(--golden-2xl);
  width: 100%;
  max-width: 400px;
  box-shadow: 0 20px 60px hsla(150, 10%, 23%, 0.3);
  position: relative;
  transform: translateY(-20px);
  opacity: 0;
  transition: transform 0.618s cubic-bezier(0.382, 0, 0.618, 1), opacity 0.618s ease;
  border: 2px solid hsla(138, 76%, 31%, 0.2);
}

.auth-modal-forest.active .auth-card-forest {
  transform: translateY(0);
  opacity: 1;
}

.close-btn-forest {
  position: absolute;
  top: var(--golden-md);
  right: var(--golden-md);
  font-size: 2rem;
  cursor: pointer;
  color: hsla(144, 23%, 76%, 1);
  transition: all 0.382s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.close-btn-forest:hover {
  color: hsla(138, 76%, 31%, 1);
  background: hsla(138, 76%, 31%, 0.1);
  transform: rotate(90deg);
}

.form-group-forest {
  margin-bottom: var(--golden-lg);
}

.form-group-forest label {
  display: block;
  margin-bottom: var(--golden-xs);
  color: hsla(150, 10%, 23%, 1);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-forest-submit {
  width: 100%;
  padding: var(--golden-md);
  background: linear-gradient(135deg, hsla(138, 76%, 31%, 1) 0%, hsla(142, 100%, 55%, 1) 100%);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.382s cubic-bezier(0.382, 0, 0.618, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn-forest-submit::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, hsla(142, 100%, 55%, 0.4), transparent);
  transform: translate(-50%, -50%);
  transition: width 0.618s, height 0.618s;
}

.btn-forest-submit:hover::before {
  width: 400px;
  height: 400px;
}

.btn-forest-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px hsla(138, 76%, 31%, 0.3);
}

.form-footer-forest {
  text-align: center;
  margin-top: var(--golden-lg);
  color: hsla(144, 23%, 76%, 1);
  font-size: 0.875rem;
}

.form-footer-forest a {
  color: hsla(138, 76%, 31%, 1);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.382s ease;
}

.form-footer-forest a:hover {
  color: hsla(142, 100%, 55%, 1);
  text-decoration: underline;
}

.message-forest {
  margin-top: var(--golden-md);
  padding: var(--golden-sm) var(--golden-md);
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 500;
  animation: fadeIn 0.382s ease;
}

.message-forest.error {
  background: linear-gradient(135deg, #fee, #fdd);
  color: #dc3545;
  border-left: 4px solid #dc3545;
}

.message-forest.success {
  background: linear-gradient(135deg, hsla(142, 100%, 55%, 0.1), hsla(141, 35%, 92%, 1));
  color: hsla(138, 76%, 31%, 1);
  border-left: 4px solid hsla(138, 76%, 31%, 1);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .mobile-nav-toggle {
    display: flex;
  }
  
  .navmenu-forest {
    display: none;
  }
  
  .header-forest {
    padding: var(--golden-xs) var(--golden-md);
  }
}

@media (max-width: 768px) {
  .logo-text {
    font-size: 1.25rem;
  }
  
  .logo-img {
    height: 40px;
  }
  
  .auth-card-forest {
    margin: var(--golden-md);
    max-width: calc(100% - var(--golden-2xl));
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Active Navigation State */
.nav-link-forest.active {
  color: hsla(142, 100%, 55%, 1);
  background: hsla(138, 76%, 31%, 0.15);
}

.nav-link-forest.active::before {
  width: 100%;
}

/* Logout Form Styles */
.logout-form {
  margin: 0;
  display: block;
}

.logout-btn-forest {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: var(--golden-sm) var(--golden-md);
  color: hsla(150, 10%, 23%, 1);
  cursor: pointer;
  transition: all 0.382s ease;
}

.logout-btn-forest:hover {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: white;
}


        .settings-container {
            max-width: calc(1200px * var(--golden-ratio));
            margin: 0 auto;
            padding: var(--golden-space-xl) var(--golden-space-lg);
        }
        
        .page-header {
            background: linear-gradient(135deg, var(--forest-green) 0%, var(--spring-green) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: var(--golden-text-3xl);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: var(--golden-space-xl);
            text-align: center;
            position: relative;
            padding-bottom: var(--golden-space-md);
        }
        
        .page-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: calc(100px * var(--golden-ratio));
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--forest-green), transparent);
        }
        
        .nav-tabs {
            border-bottom: 2px solid rgba(34, 139, 34, 0.1);
            margin-bottom: var(--golden-space-xl);
        }
        
        .nav-tabs .nav-link {
            color: var(--black-olive);
            border-radius: var(--golden-border-radius-xl) var(--golden-border-radius-xl) 0 0;
            padding: var(--golden-space-md) var(--golden-space-lg);
            transition: all 0.382s cubic-bezier(0.382, 0, 0.618, 1);
            font-weight: 500;
            border: none;
            margin-right: var(--golden-space-sm);
            position: relative;
            overflow: hidden;
        }
        
        .nav-tabs .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(135deg, var(--forest-green) 0%, var(--spring-green) 100%);
            transform: translateY(100%);
            transition: transform 0.382s cubic-bezier(0.382, 0, 0.618, 1);
        }
        
        .nav-tabs .nav-link.active {
            background: linear-gradient(135deg, var(--forest-green) 0%, var(--spring-green) 100%);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(34, 139, 34, 0.3);
        }
        
        .nav-tabs .nav-link.active::before {
            transform: translateY(0);
        }
        
        .nav-tabs .nav-link:hover:not(.active) {
            transform: translateY(-2px);
            color: var(--forest-green);
        }
        
        .nav-tabs .nav-link:hover:not(.active)::before {
            transform: translateY(0);
        }
        
        .card {
            border-radius: var(--golden-border-radius-lg);
            border: none;
            box-shadow: 0 calc(4px * var(--golden-ratio)) calc(20px * var(--golden-ratio)) rgba(0, 0, 0, 0.08);
            transition: all 0.382s cubic-bezier(0.382, 0, 0.618, 1);
            overflow: hidden;
            background: white;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 calc(10px * var(--golden-ratio)) calc(30px * var(--golden-ratio)) rgba(34, 139, 34, 0.15);
        }
        
        .card-header {
            background: linear-gradient(135deg, var(--forest-green) 0%, var(--spring-green) 100%);
            color: white;
            padding: var(--golden-space-lg);
            font-weight: 600;
            font-size: var(--golden-text-lg);
        }
        
        .btn-forest {
            background: linear-gradient(135deg, var(--forest-green) 0%, var(--spring-green) 100%);
            color: white;
            border: none;
            padding: var(--golden-space-md) var(--golden-space-lg);
            border-radius: var(--golden-border-radius);
            font-weight: 600;
            transition: all 0.382s cubic-bezier(0.382, 0, 0.618, 1);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            position: relative;
            overflow: hidden;
        }
        
        .btn-forest::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.618s, height 0.618s;
        }
        
        .btn-forest:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(34, 139, 34, 0.3);
            color: white;
        }
        
        .btn-forest:hover::before {
            width: 300px;
            height: 300px;
        }
        
        .table {
            border-radius: var(--golden-border-radius);
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .table thead {
            background: linear-gradient(135deg, var(--forest-green) 0%, var(--spring-green) 100%);
            color: white;
        }
        
        .table tbody tr {
            transition: all 0.382s;
        }
        
        .table tbody tr:hover {
            background: rgba(34, 139, 34, 0.05);
            transform: translateX(5px);
        }
        
        .order-card {
            background: white;
            border-radius: var(--golden-border-radius-lg);
            padding: var(--golden-space-lg);
            margin-bottom: var(--golden-space-lg);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            transition: all 0.382s cubic-bezier(0.382, 0, 0.618, 1);
            border-left: 4px solid transparent;
        }
        
        .order-card:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 20px rgba(34, 139, 34, 0.15);
            border-left-color: var(--forest-green);
        }
        
        .stats-card {
            background: white;
            border-radius: var(--golden-border-radius-lg);
            padding: var(--golden-space-lg);
            text-align: center;
            transition: all 0.382s cubic-bezier(0.382, 0, 0.618, 1);
            position: relative;
            overflow: hidden;
        }
        
        .stats-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--forest-green), var(--spring-green));
        }
        
        .stats-card:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .stats-card h3 {
            font-size: var(--golden-text-2xl);
            margin-bottom: var(--golden-space-sm);
            font-weight: 700;
        }
        
        .stats-card p {
            color: var(--ash-gray);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-size: var(--golden-text-sm);
            font-weight: 600;
        }
        
        .status-badge {
            padding: var(--golden-space-xs) var(--golden-space-sm);
            border-radius: var(--golden-border-radius-xl);
            font-size: var(--golden-text-xs);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            display: inline-block;
        }
        
        .status-pending { 
            background: linear-gradient(135deg, #ffd700, #ffed4e);
            color: #000;
            box-shadow: 0 2px 5px rgba(255, 215, 0, 0.3);
        }
        
        .status-processing { 
            background: linear-gradient(135deg, #00bcd4, #4dd0e1);
            color: #fff;
            box-shadow: 0 2px 5px rgba(0, 188, 212, 0.3);
        }
        
        .status-shipped { 
            background: linear-gradient(135deg, #4caf50, #66bb6a);
            color: #fff;
            box-shadow: 0 2px 5px rgba(76, 175, 80, 0.3);
        }
        
        .status-delivered { 
            background: linear-gradient(135deg, #8bc34a, #9ccc65);
            color: #fff;
            box-shadow: 0 2px 5px rgba(139, 195, 74, 0.3);
        }
        
        .status-cancelled { 
            background: linear-gradient(135deg, #f44336, #ef5350);
            color: #fff;
            box-shadow: 0 2px 5px rgba(244, 67, 54, 0.3);
        }
        
        .alert {
            border-radius: var(--golden-border-radius);
            border: none;
            animation: slideIn 0.382s cubic-bezier(0.382, 0, 0.618, 1);
            padding: var(--golden-space-md) var(--golden-space-lg);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        
        @keyframes slideIn {
            from { 
                transform: translateY(-20px);
                opacity: 0;
            }
            to { 
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        .form-control, .form-select {
            border-radius: var(--golden-border-radius);
            border: 2px solid #e0e0e0;
            transition: all 0.382s cubic-bezier(0.382, 0, 0.618, 1);
            padding: var(--golden-space-md);
            font-size: var(--golden-text-base);
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--spring-green);
            box-shadow: 0 0 0 0.2rem rgba(34, 139, 34, 0.25);
            transform: scale(1.02);
        }
        
        .form-label {
            font-weight: 600;
            color: var(--black-olive);
            margin-bottom: var(--golden-space-sm);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-size: var(--golden-text-base);
        }
        
        .modal-content {
            border-radius: var(--golden-border-radius-lg);
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }
        
        .modal-header {
            background: linear-gradient(135deg, var(--forest-green) 0%, var(--spring-green) 100%);
            color: white;
            border: none;
            padding: var(--golden-space-lg);
        }
        
        .badge {
            padding: var(--golden-space-xs) var(--golden-space-sm);
            border-radius: var(--golden-border-radius);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        .golden-spiral {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            opacity: 0.02;
            z-index: -1;
        }
        
        .btn-icon {
            width: calc(40px * var(--golden-inverse));
            height: calc(40px * var(--golden-inverse));
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.382s;
            margin: 0 var(--golden-space-xs);
        }
        
        .btn-icon:hover {
            transform: rotate(360deg) scale(1.1);
        }
        
        @media (max-width: 768px) {
            .settings-container {
                padding: var(--golden-space-lg) var(--golden-space-md);
            }
            
            .nav-tabs .nav-link {
                padding: var(--golden-space-sm) var(--golden-space-md);
                font-size: var(--golden-text-sm);
            }
            
            .page-header {
                font-size: var(--golden-text-2xl);
            }
            
            .stats-card {
                margin-bottom: var(--golden-space-md);
            }
        }
        
        .chart-container {
            position: relative;
            height: calc(300px * var(--golden-inverse));
            margin: var(--golden-space-lg) 0;
        }
        
        .loading-spinner {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(34, 139, 34, 0.3);
            border-radius: 50%;
            border-top-color: var(--forest-green);
            animation: spin 0.618s linear infinite;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        .filter-container {
            background: white;
            border-radius: var(--golden-border-radius);
            padding: var(--golden-space-md);
            margin-bottom: var(--golden-space-lg);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .empty-state {
            text-align: center;
            padding: var(--golden-space-xl);
            color: var(--ash-gray);
        }
        
        .empty-state i {
            font-size: calc(4rem * var(--golden-ratio));
            opacity: 0.3;
            margin-bottom: var(--golden-space-lg);
        }
 .hero-golden-title {
        background: linear-gradient(135deg, white 0%, var(--spring-green) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-align: center;
     
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }
    
    /* Floating Image Container */
    .floating-image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 400px;
        padding: 5%;
    }
    
    .floating-image {
        max-width: 90%;
        max-height: 90%;
        margin: 5%;
        border-radius: calc(1rem * var(--golden-inverse));
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        animation: float 6s ease-in-out infinite;
    }
    
    @keyframes float {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        25% { transform: translateY(-20px) rotate(1deg); }
        50% { transform: translateY(0px) rotate(0deg); }
        75% { transform: translateY(-10px) rotate(-1deg); }
    }



.wishlist-btn {
    position: absolute;
    top: 0.618rem;
    right: 0.618rem;
    width: 2.618rem;
    height: 2.618rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.382s ease;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.wishlist-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.wishlist-btn.active {
    background: linear-gradient(135deg, #fff 0%, #ffe0e6 100%);
    box-shadow: 0 4px 15px rgba(255, 23, 68, 0.3);
}

.wishlist-btn:disabled {
    cursor: wait;
    opacity: 0.618;
}

.wishlist-btn i {
    font-size: 1.2rem;
    transition: all 0.382s ease;
}

/* Toast Notifications */
.wishlist-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    background: white;
    color: #333;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.382s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 350px;
    font-weight: 500;
}

.wishlist-toast.show {
    opacity: 1;
    transform: translateX(0);
}

.wishlist-toast-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wishlist-toast-success {
    background: linear-gradient(135deg, #138a36 0%, #18ff6d 100%);
    color: white;
}

.wishlist-toast-error {
    background: linear-gradient(135deg, #ff1744 0%, #ff6b6b 100%);
    color: white;
}

.wishlist-toast i {
    font-size: 1.2rem;
}

/* Wishlist Counter Badge */
.wishlist-counter {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff1744;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Animations */
@keyframes wishlist-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.618); }
    100% { transform: scale(1); }
}

@keyframes wishlist-fade {
    0% { opacity: 1; }
    50% { opacity: 0.382; }
    100% { opacity: 1; }
}

@keyframes wishlist-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Loading State */
.wishlist-loading {
    position: relative;
    pointer-events: none;
}

.wishlist-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #138a36;
    border-radius: 50%;
    animation: wishlist-spin 0.618s linear infinite;
}

@keyframes wishlist-spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}



/* CV Builder Styles */
.cv-section {
    background: white;
    border-radius: var(--golden-border-radius-lg);
    padding: var(--golden-space-lg);
    margin-bottom: var(--golden-space-lg);
    border-left: 4px solid var(--forest-green);
}

.cv-section .section-title {
    color: var(--forest-green);
    font-size: var(--golden-text-lg);
    font-weight: 600;
    margin-bottom: var(--golden-space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.color-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.382s;
}

.color-option:hover {
    transform: scale(1.1);
}

.color-option.active {
    border-color: var(--black-olive);
    box-shadow: 0 0 0 3px rgba(34, 139, 34, 0.2);
}

.cv-stats .stat-item {
    margin-bottom: var(--golden-space-md);
}

.cv-stats .stat-label {
    font-size: var(--golden-text-sm);
    color: var(--ash-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--golden-space-xs);
    display: block;
}

.cv-preview {
    animation: fadeIn 0.618s ease;
}

.education-item,
.experience-item,
.language-item {
    transition: all 0.382s cubic-bezier(0.382, 0, 0.618, 1);
}

.education-item:hover,
.experience-item:hover {
    transform: translateX(5px);
}

/* CV Builder Specific Styles */
.cv-section {
    background: white;
    border-radius: var(--golden-border-radius-lg);
    padding: calc(var(--golden-space-lg) * 0.8);
    margin-bottom: var(--golden-space-lg);
    border-left: 4px solid var(--forest-green);
}

.cv-section .section-title {
    color: var(--forest-green);
    font-size: 1.25rem; /* Reduced from golden-text-lg */
    font-weight: 600;
    margin-bottom: var(--golden-space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Fix label sizes */


.color-option {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.382s;
}

.color-option:hover {
    transform: scale(1.1);
}

.color-option.active {
    border-color: var(--black-olive);
    box-shadow: 0 0 0 3px rgba(34, 139, 34, 0.2);
}


.modal-fullscreen-lg-down {
    max-width: 95vw;
}

.cv-preview-actions-panel {
    position: sticky;
    top: 100px; /* Increase top spacing to account for navbar */
    z-index: 10 !important; /* Keep it low */
}


.navbar,
.header-forest,
#mainNav {
    z-index: 1030 !important; /* High enough for navigation */
    position: fixed !important; /* Make it fixed instead of relative */
    top: 0;
    left: 0;
    right: 0;
}

.nav-menu,
.navbar-collapse,
.mobile-navmenu-forest {
    z-index: 1031 !important; /* Slightly higher than navbar */
}

/* Fix for the CV Preview Modal specifically */
#cvPreviewModal {
    z-index: 1050 !important;
}

#cvPreviewModal .modal-dialog {
    z-index: 1051 !important;
}

/* Adjust body padding when navbar is fixed */
body {
    padding-top: 70px; /* Adjust based on your navbar height */
}

/* Fix sticky card behavior */
@media (min-width: 992px) {
    .cv-preview-actions-panel {
        position: sticky;
        top: 100px; /* Adjusted for fixed navbar */
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        z-index: 10 !important; /* Keep low so it doesn't overlap */
    }
}

/* Ensure the Documents tab content doesn't overlap */
#documents {
    position: relative;
    z-index: 1; /* Base level */
}

/* Fix the card that contains CV preview actions */
.card.cv-preview-actions-panel {
    position: sticky !important;
    top: 100px !important;
    z-index: 10 !important;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}


.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.1) !important; /* Very transparent */
    pointer-events: none !important; /* Click through backdrop */
}


/* Modern Navigation Styles */
.modern-nav {
    background: linear-gradient(135deg, var(--black-olive-200) 0%, var(--black-olive) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(52, 64, 58, 0.1);
    transition: all 0.382s cubic-bezier(0.382, 0, 0.618, 1);
}

.modern-nav.scrolled {
    padding: var(--golden-xs) 0;
    background: linear-gradient(135deg, var(--black-olive) 0%, var(--black-olive-800) 100%);
    box-shadow: 0 8px 40px rgba(52, 64, 58, 0.2);
}

/* Desktop Navigation Container */
@media (min-width: 992px) {
    .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 var(--golden-lg);
    }
    
    .nav-menu {
        display: flex !important;
        align-items: center;
        gap: var(--golden-md);
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .nav-mobile-toggle {
        display: none !important;
    }
}

/* Mobile Navigation */
@media (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, var(--black-olive) 0%, var(--black-olive-800) 100%);
        padding: 80px 20px 20px;
        transition: right 0.382s cubic-bezier(0.382, 0, 0.618, 1);
        z-index: 999;
        overflow-y: auto;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin-bottom: var(--golden-md);
    }
    
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(52, 64, 58, 0.618);
        backdrop-filter: blur(8px);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.382s ease;
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Modern Nav Links */
.nav-link-modern {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: var(--golden-sm);
    padding: var(--golden-sm) var(--golden-md);
    color: var(--honeydew);
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.382s cubic-bezier(0.382, 0, 0.618, 1);
    overflow: hidden;
}

.nav-link-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(24, 255, 109, 0.2), transparent);
    transition: left 0.618s ease;
}

.nav-link-modern:hover {
    color: var(--spring-green);
    transform: translateX(4px);
}

.nav-link-modern:hover::before {
    left: 100%;
}

.nav-link-modern.active {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--forest-green-600) 100%);
    color: white;
}

/* Modern Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--spring-green);
    border-radius: 3px;
    margin: 3px 0;
    transition: all 0.382s cubic-bezier(0.382, 0, 0.618, 1);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* User Dropdown */
.user-dropdown {
    position: relative;
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + var(--golden-xs));
    right: 0;
    min-width: 200px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(52, 64, 58, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.382s cubic-bezier(0.382, 0, 0.618, 1);
    z-index: 1000;
}

.user-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item-modern {
    display: flex;
    align-items: center;
    gap: var(--golden-sm);
    padding: var(--golden-sm) var(--golden-md);
    color: var(--black-olive);
    text-decoration: none;
    transition: all 0.382s ease;
}

.dropdown-item-modern:hover {
    background: linear-gradient(135deg, var(--honeydew) 0%, var(--honeydew-600) 100%);
    color: var(--forest-green);
    padding-left: calc(var(--golden-md) + var(--golden-xs));
}

.mobile-navmenu-forest {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 70px);
    background: linear-gradient(135deg, #34403a 0%, #2a342f 100%);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    transition: right 0.382s cubic-bezier(0.382, 0, 0.618, 1);
    z-index: 1029;
    overflow-y: auto;
}

.mobile-navmenu-forest.active {
    right: 0;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.382s ease;
    z-index: 1028;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-list {
    list-style: none;
    padding: 1.618rem 1rem;
    margin: 0;
}

.mobile-nav-item {
    margin-bottom: 0.382rem;
}

.mobile-nav-link-forest {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.618rem;
    color: #e4f2e9;
    background: rgba(19, 138, 54, 0.05);
    border-radius: 0.618rem;
    text-decoration: none;
    transition: all 0.382s cubic-bezier(0.382, 0, 0.618, 1);
    border: 1px solid transparent;
    font-weight: 500;
    width: 100%;
    border: none;
    cursor: pointer;
}

.mobile-nav-link-forest:hover {
    background: linear-gradient(135deg, rgba(19, 138, 54, 0.2) 0%, rgba(24, 255, 109, 0.2) 100%);
    color: #18ff6d;
    transform: translateX(0.382rem);
    border-color: rgba(24, 255, 109, 0.3);
    text-decoration: none;
}

.mobile-nav-link-forest.active {
    background: rgba(19, 138, 54, 0.15);
    color: #18ff6d;
    border-color: rgba(24, 255, 109, 0.5);
}

.mobile-nav-link-forest i {
    font-size: 1.125rem;
    width: 24px;
    text-align: center;
}

.mobile-nav-link-forest.logout-btn {
    background: rgba(220, 53, 69, 0.1);
    color: #ff6b6b;
}

.mobile-nav-link-forest.logout-btn:hover {
    background: rgba(220, 53, 69, 0.2);
    color: #ff4444;
}

.mobile-nav-link-forest.login-btn {
    background: linear-gradient(135deg, #138a36 0%, #138a36 100%);
    color: white;
    justify-content: center;
}

.mobile-nav-link-forest.login-btn:hover {
    background: linear-gradient(135deg, #138a36 0%, #18ff6d 100%);
}

.mobile-logout-form {
    margin: 0;
    width: 100%;
}

/* Hamburger Animation */
.mobile-nav-toggle.active .hamburger-forest:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-nav-toggle.active .hamburger-forest:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active .hamburger-forest:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Prevent scroll when mobile menu is open */
body.mobile-nav-active {
    overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .mobile-navmenu-forest {
        width: 100%;
        right: -100%;
    }
}
/* Privileges & Tenant System Styles */
.privilege-card {
    background: white;
    border-radius: calc(0.5rem * 1.618);
    padding: 1.618rem;
    margin-bottom: 1.618rem;
    border-left: 4px solid #138a36;
    box-shadow: 0 2px 10px rgba(52, 64, 58, 0.1);
    transition: all 0.382s ease;
}

.privilege-card:hover {
    transform: translateX(0.382rem);
    box-shadow: 0 4px 20px rgba(52, 64, 58, 0.15);
}

.permission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.permission-item {
    padding: 0.618rem 1rem;
    background: #e4f2e9;
    border-radius: 0.382rem;
    display: flex;
    align-items: center;
    gap: 0.618rem;
}

.permission-checkbox {
    width: 1.25rem;
    height: 1.25rem;
    accent-color: #138a36;
}

.tenant-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 2px solid #b4d0bf;
    position: relative;
    overflow: hidden;
}

.tenant-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.tenant-badge.active {
    background: rgba(24, 255, 109, 0.2);
    color: #138a36;
}

.role-matrix-table {
    background: white;
    border-radius: 0.618rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.role-matrix-table thead {
    background: linear-gradient(135deg, #34403a 0%, #138a36 100%);
    color: white;
}

.matrix-checkbox {
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
}

.user-role-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(19, 138, 54, 0.1) 0%, rgba(24, 255, 109, 0.1) 100%);
    border-radius: 50px;
    font-weight: 600;
}



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

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.featured-card {
    position: relative;
    animation: fadeInUp 0.618s ease forwards;
    opacity: 0;
}

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

.featured-crown-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #34403a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(52, 64, 58, 0.9), transparent);
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.382s ease;
}

.product-card:hover .featured-overlay {
    opacity: 1;
}

.product-sku {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

/* Responsive for featured section */
@media (max-width: 992px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }
}
