html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background: #f3f4f6;
  color: #333;
  overflow-x:hidden;

}

body{
    min-height: 100vh;
}
.onboard-navbar {
  font-family: 'Inter', sans-serif;
  width: 100%;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,159,220,0.1);
}

/* Enhanced Top Bar with Slide Animation */
.onboard-topbar {
  background: linear-gradient(135deg, #009fdc 0%, #00b6ed 100%);
  font-size: 0.9rem;
  min-height: 32px;
  padding: 0.25rem 0;
  position: relative;
  overflow: hidden;
  animation: slideDownFade 0.6s ease-out;
}

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

.onboard-topbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmerTopbar 3s ease-in-out infinite;
}

@keyframes shimmerTopbar {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

.onboard-topbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.2rem 0.5rem;
  border-radius: 0.3rem;
}

.onboard-topbar a:hover {
  color: #fff;
  text-decoration: none;
  background: rgba(255,255,255,0.15);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.onboard-topbar .onboard-topbar-center a {
  margin-right: 1.5rem;
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.onboard-topbar .onboard-topbar-center a:nth-child(1) { animation-delay: 0.1s; }
.onboard-topbar .onboard-topbar-center a:nth-child(2) { animation-delay: 0.2s; }
.onboard-topbar .onboard-topbar-center a:nth-child(3) { animation-delay: 0.3s; }
.onboard-topbar .onboard-topbar-center a:nth-child(4) { animation-delay: 0.4s; }
.onboard-topbar .onboard-topbar-center a:nth-child(5) { animation-delay: 0.5s; }
.onboard-topbar .onboard-topbar-center a:nth-child(6) { animation-delay: 0.6s; }

.onboard-topbar .onboard-topbar-center a:last-child {
  margin-right: 0;
}

.onboard-topbar .onboard-topbar-right a {
  font-weight: bold;
  animation: fadeInRight 0.6s ease-out 0.3s both;
}

/* Enhanced Main Bar with Floating Animation */
.onboard-mainbar {
  background: #fff;
  border-bottom: none;
  min-height: 68px;
  padding: 0.75rem 0;
  box-shadow: 0 2px 20px rgba(0,159,220,0.08);
  position: relative;
  animation: fadeInScale 0.8s ease-out 0.2s both;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.onboard-logo {
  height: 38px;
  transition: transform 0.3s ease;
  animation: bounceIn 0.8s ease-out 0.4s both;
}

/* Header Logo Full Size Styling */
.navbar-brand .brand-logo .logo-img {
  width: auto;
  height: 48px;
  max-width: 200px;
  max-height: 48px;
  object-fit: contain;
}

.onboard-logo:hover {
  transform: scale(1.05) rotate(2deg);
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(-10deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.05) rotate(2deg);
  }
  70% {
    transform: scale(0.95) rotate(-1deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.onboard-logo-text {
  font-size: 1.05rem;
  color: #444;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 0.2rem;
  animation: slideInLeft 0.6s ease-out 0.6s both;
  transition: color 0.3s ease;
}

.onboard-logo-wrap:hover .onboard-logo-text {
  color: #009fdc;
}

/* Enhanced Search with Floating Effect */
.onboard-search {
  flex: 1 1 0%;
  max-width: 500px;
  margin: 0 2rem;
  display: flex;
  align-items: center;
  position: relative;
  animation: slideInUp 0.6s ease-out 0.5s both;
}

.onboard-search-input {
  border-radius: 0.5rem;
  box-shadow: 0 4px 15px rgba(0,159,220,0.1);
  border: 2px solid #e5e7eb;
  padding: 0.6rem 1.25rem;
  font-size: 1.05rem;
  color: #444;
  flex: 1;
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
}

.onboard-search-input::placeholder {
  color: #aaa;
  transition: color 0.3s ease;
}

.onboard-search-input:focus {
  outline: none;
  border-color: #009fdc;
  box-shadow: 0 8px 25px rgba(0,159,220,0.2), 0 0 0 4px rgba(0,159,220,0.1);
  transform: translateY(-2px);
  background: #fff;
}

.onboard-search-input:focus::placeholder {
  color: #009fdc;
}

.onboard-search-btn {
  background: linear-gradient(135deg, #111 0%, #333 100%);
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 0 0.5rem 0.5rem 0;
  border: 2px solid #111;
  border-left: none;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.onboard-search-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.onboard-search-btn:hover::before {
  left: 100%;
}

.onboard-search-btn:hover {
  background: linear-gradient(135deg, #009fdc 0%, #00b6ed 100%);
  border-color: #009fdc;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0,159,220,0.3);
}

.onboard-search:focus-within .onboard-search-btn {
  border-color: #009fdc;
  transform: translateY(-2px);
}

/* Enhanced Icons with Pulse Animation */
.onboard-mainbar-icons {
  gap: 1.2rem;
  animation: slideInRight 0.6s ease-out 0.7s both;
}

.onboard-icon-link {
  color: #444 !important;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 10%;
  position: relative;
}

.onboard-icon-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(0,159,220,0.1);
  border-radius: 50%;
  transition: all 0.4s ease;
  transform: translate(-50%, -50%);
}

.onboard-icon-link:hover::before {
  width: 100%;
  height: 100%;
}

.onboard-icon-link:hover {
  color: #009fdc !important;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 15px rgba(0,159,220,0.2);
}

/* Enhanced Menu Bar with Mega Menu */
.onboard-menubar {
  background: linear-gradient(135deg, #00b6ed 0%, #1bb6f7 100%);
  gap: 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.7rem 0;
  border: none;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,182,237,0.15);
  animation: slideInUp 0.6s ease-out 0.8s both;
}

.onboard-menubar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  animation: shimmerMenu 4s ease-in-out infinite;
}

@keyframes shimmerMenu {
  0%, 100% { transform: translateX(-100%); opacity: 0; }
  50% { transform: translateX(100%); opacity: 1; }
}

.onboard-menu-link {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
}

.onboard-menu-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

.onboard-menu-link::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.6s;
}

.onboard-menu-link:hover::after {
  left: 100%;
}

.onboard-menu-link i {
  font-size: 0.8em;
  margin-left: 0.3em;
  transition: transform 0.3s ease;
}

.onboard-menu-link:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.onboard-menu-link:hover::before {
  width: 80%;
}

.onboard-menu-link:hover i {
  transform: rotate(180deg);
}

/* Mega Menu Styles */
.onboard-mega-menu {
  position: fixed;
  top: 0%;
  left: 50%;
  width: 90vw;
  max-width: 1200px;
  transform: translateX(-50%) translateY(-20px);
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,159,220,0.1);
  box-shadow: 0 15px 50px rgba(0,159,220,0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 999;
  border-radius: 0 0 1rem 1rem;
  overflow: hidden;
}

.onboard-menu-link:hover + .onboard-mega-menu,
.onboard-mega-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  max-height: 500px;
}

.onboard-mega-content {
  padding: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeInUp 0.6s ease-out;
}

.onboard-mega-column {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
  position: relative;
}

.onboard-mega-column:nth-child(1) { animation-delay: 0.1s; }
.onboard-mega-column:nth-child(2) { animation-delay: 0.2s; }
.onboard-mega-column:nth-child(3) { animation-delay: 0.3s; }
.onboard-mega-column:nth-child(4) { animation-delay: 0.4s; }

.onboard-mega-column::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10px;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #009fdc, #00b6ed, #1bb6f7);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.onboard-mega-column:hover::before {
  opacity: 1;
}

.onboard-mega-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #009fdc;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.7rem;
  transition: color 0.3s ease;
}

.onboard-mega-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #009fdc, #00b6ed);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.onboard-mega-column:hover .onboard-mega-title {
  color: #00b6ed;
}

.onboard-mega-column:hover .onboard-mega-title::after {
  width: 60px;
}

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

.onboard-mega-item {
  margin-bottom: 0.8rem;
  transform: translateX(0);
  transition: transform 0.3s ease;
}

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

.onboard-mega-link {
  color: #444;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  padding: 0.6rem 0.8rem;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
}

.onboard-mega-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(135deg, rgba(0,159,220,0.1), rgba(0,182,237,0.05));
  transition: width 0.3s ease;
  border-radius: 0.5rem;
}

.onboard-mega-link::after {
  content: '';
  position: absolute;
  left: 8px;
  top: 50%;
  width: 0;
  height: 2px;
  background: #009fdc;
  transition: width 0.3s ease;
  transform: translateY(-50%);
  border-radius: 1px;
}

.onboard-mega-link:hover {
  color: #009fdc;
  text-decoration: none;
  background: rgba(0,159,220,0.05);
  transform: translateX(10px);
  box-shadow: 0 2px 10px rgba(0,159,220,0.1);
}

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

.onboard-mega-link:hover::after {
  width: 20px;
}

.onboard-mega-item:hover {
  transform: translateX(5px);
}

/* Featured Item Styling */
.onboard-mega-featured {
  background: linear-gradient(135deg, rgba(0,159,220,0.05), rgba(0,182,237,0.02));
  border: 1px solid rgba(0,159,220,0.1);
  border-radius: 0.8rem;
  padding: 1rem;
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
}

.onboard-mega-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #009fdc, #00b6ed, #1bb6f7);
  border-radius: 0.8rem 0.8rem 0 0;
}

.onboard-mega-featured-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #009fdc;
  margin-bottom: 0.5rem;
}

.onboard-mega-featured-desc {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.onboard-mega-featured-btn {
  background: linear-gradient(135deg, #009fdc, #00b6ed);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.onboard-mega-featured-btn:hover {
  background: linear-gradient(135deg, #00b6ed, #1bb6f7);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,159,220,0.3);
  color: #fff;
  text-decoration: none;
}

/* Enhanced Submenu Bar */
.onboard-submenubar {
  background: linear-gradient(135deg, #1bb6f7 0%, #009fdc 100%);
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.4rem 0;
  text-align: center;
  position: relative;
  animation: slideInUp 0.6s ease-out 1s both;
}

.onboard-submenubar::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.onboard-submenu-link {
  color: #fff;
  text-decoration: none;
  margin: 0 0.8rem;
  font-weight: 400;
  transition: all 0.3s ease;
  padding: 0.3rem 0.8rem;
  border-radius: 1rem;
  position: relative;
  display: inline-block;
}

.onboard-submenu-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 1rem;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.onboard-submenu-link:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

.onboard-submenu-link:hover::before {
  transform: scale(1);
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
  .onboard-search {
    max-width: 400px;
    margin: 0 1.5rem;
  }
  .onboard-menubar {
    gap: 2rem;
  }
  .onboard-mega-content {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
  }
}

@media (max-width: 900px) {
  .onboard-menubar {
    gap: 1.5rem;
    font-size: 1rem;
  }
  .onboard-menu-link {
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
  }
  .onboard-search {
    max-width: 300px;
    margin: 0 1rem;
  }
  .onboard-mega-menu {
    position: fixed;
    top: auto;
    left: 0;
    right: 0;
    width: 100vw;
    max-width: 100vw;
    transform: translateY(-20px);
    bottom: 0;
    border-radius: 1rem 1rem 0 0;
    max-height: 70vh;
    overflow-y: auto;
  }
  .onboard-menu-link:hover + .onboard-mega-menu,
  .onboard-mega-menu:hover {
    transform: translateY(0);
  }
  .onboard-mega-content {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .onboard-topbar-center {
    display: none !important;
  }
  .onboard-mainbar {
    flex-direction: column;
    align-items: stretch !important;
    padding: 1rem 0;
  }
  .onboard-search {
    margin: 1rem 0 !important;
    max-width: 100%;
  }
  .onboard-mainbar-icons {
    justify-content: flex-end;
    margin-top: 0.5rem;
  }
  .onboard-menubar {
    gap: 0.8rem;
    font-size: 0.95rem;
    flex-wrap: wrap;
    padding: 0.5rem;
  }
  .onboard-logo {
    height: 32px;
  }
  .onboard-logo-text {
    font-size: 0.9rem;
  }
  .onboard-submenubar {
    font-size: 0.85rem;
  }
  .onboard-submenu-link {
    margin: 0 0.5rem;
  }
  .onboard-mega-menu {
    display: none; /* Hide mega menu on mobile */
  }
}

@media (max-width: 576px) {
  .onboard-topbar {
    font-size: 0.8rem;
  }
  .onboard-topbar-right {
    text-align: center;
  }
  .onboard-search-input {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
  }
  .onboard-search-btn {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  .onboard-menubar {
    gap: 0.5rem;
    font-size: 0.9rem;
  }
  .onboard-menu-link {
    font-size: 0.9rem;
    padding: 0.3rem 0.6rem;
  }
}

/* Onboarding Footer Styles */
.onboard-footer-main {
  background: #232323;
  color: #fff;
  margin-top: 0;
  font-family: 'Inter', sans-serif;
  border-top: 1px solid #222;
}
.onboard-footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.onboard-footer-brand {
  min-width: 180px;
  max-width: 220px;
  flex: 0 0 220px;
}
.onboard-footer-cat {
  width: 108px;
  height: auto;
  margin-bottom: 0.5rem;
}
.onboard-footer-slogan {
  font-size: 1.08rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.onboard-footer-slogan .text-primary { color: #00b6ed !important; }

.onboard-footer-links {
  flex: 1 1 0%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}
.onboard-footer-heading {
  font-weight: 700;
  font-size: 1.08rem;
  margin-bottom: 0.7rem;
  color: #fff;
}
.onboard-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.onboard-footer-list li { margin-bottom: 0.5rem; }
.onboard-footer-list li:last-child { margin-bottom: 0; }
.onboard-footer-list a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.15s;
}
.onboard-footer-list a:hover, .onboard-footer-link:hover {
  color: #00b6ed;
  text-decoration: none;
}

.onboard-footer-bottom {
  background: #232323;
  border-top: 1px solid #222;
  padding-top: 1.2rem;
  padding-bottom: 0.7rem;
  position: relative;
}
.onboard-footer-payments {
  margin-bottom: 0.7rem;
}
.onboard-footer-pay {
  height: 26px;
  width: auto;
  margin: 0 0.18rem;
  vertical-align: middle;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  padding: 2px 6px;
}
.onboard-footer-sustain {
  color: #bbb;
  font-size: 0.97rem;
  margin-bottom: 0.2rem;
}
.onboard-footer-link {
  color: #fff;
  text-decoration: none;
  margin: 0 0.2rem;
  transition: color 0.15s;
}
.onboard-footer-link:hover { color: #00b6ed; text-decoration: none; }
.onboard-footer-copyright {
  color: #eee;
  font-size: 0.98rem;
  margin-bottom: 0.2rem;
}
.onboard-footer-topbtn {
  position: absolute;
  right: 1.5rem;
  bottom: 1.1rem;
  background: #181818;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  font-size: 1.3rem;
  transition: background 0.15s, color 0.15s;
  z-index: 10;
}
.onboard-footer-topbtn:hover { background: #00b6ed; color: #fff; }

@media (max-width: 900px) {
  .onboard-footer-links { gap: 1.2rem; }
}
@media (max-width: 768px) {
  .onboard-footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .onboard-footer-brand { margin-bottom: 1.5rem; }
  .onboard-footer-links { flex-direction: column; gap: 1.5rem; }
  .onboard-footer-heading { margin-bottom: 0.5rem; }
  .onboard-footer-topbtn { right: 1rem; bottom: 1rem; }
}
/* ...existing code... */

/* Onboarding Auth/Login/Register Enhanced UI - Blue Theme */
.onboard-auth-bg {
  min-height: 100vh;
  background: linear-gradient(135deg, #009fdc 0%, #00b6ed 25%, #1bb6f7 75%, #0891b3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 0 2.5rem 0;
  position: relative;
  overflow: hidden;
}

/* Animated background elements */
.onboard-auth-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%),
              radial-gradient(circle at 40% 80%, rgba(255,255,255,0.06) 0%, transparent 50%);
  animation: gentleFloat 20s ease-in-out infinite;
  pointer-events: none;
}

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(180deg); }
}

.onboard-auth-wrap {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.onboard-auth-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 2rem;
  box-shadow: 0 25px 50px rgba(0, 159, 220, 0.15),
              0 15px 35px rgba(0, 182, 237, 0.1),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  padding: 3rem 2.5rem;
  min-width: 400px;
  max-width: 500px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(80px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.onboard-auth-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #009fdc, #00b6ed, #1bb6f7, #009fdc);
  border-radius: 2rem 2rem 0 0;
  animation: shimmerBlue 3s ease-in-out infinite;
}

@keyframes shimmerBlue {
  0%, 100% {
    background: linear-gradient(90deg, #009fdc, #00b6ed, #1bb6f7, #009fdc);
    opacity: 0.8;
  }
  50% {
    background: linear-gradient(90deg, #1bb6f7, #009fdc, #00b6ed, #1bb6f7);
    opacity: 1;
  }
}

.onboard-auth-card-animate:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 70px rgba(0, 159, 220, 0.25),
              0 20px 50px rgba(0, 182, 237, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.onboard-auth-card h2 {
  font-weight: 700;
  font-size: 2.6rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #009fdc, #00b6ed, #1bb6f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  position: relative;
  animation: titleGlowBlue 3s ease-in-out infinite alternate;
}

@keyframes titleGlowBlue {
  from {
    filter: drop-shadow(0 0 10px rgba(0, 159, 220, 0.3));
  }
  to {
    filter: drop-shadow(0 0 20px rgba(27, 182, 247, 0.5));
  }
}

.onboard-auth-card hr {
  border: none;
  height: 3px;
  background: linear-gradient(90deg, transparent, #009fdc, #00b6ed, #1bb6f7, transparent);
  margin: 1rem 0 2.5rem 0;
  border-radius: 10px;
  animation: lineExpand 1.2s ease-out 0.5s both;
}

@keyframes lineExpand {
  from {
    width: 0;
    margin-left: 50%;
    opacity: 0;
  }
  to {
    width: 100%;
    margin-left: 0;
    opacity: 1;
  }
}

/* Enhanced Input Styles with Blue Theme */
.onboard-auth-input {
  border: 2px solid #e8f4f8;
  border-radius: 1.2rem;
  padding: 1.1rem 1.5rem;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.95);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  font-weight: 500;
}

.onboard-auth-input:focus {
  border-color: #009fdc;
  box-shadow: 0 0 0 4px rgba(0, 159, 220, 0.15),
              0 10px 30px rgba(0, 182, 237, 0.1);
  transform: translateY(-3px);
  background: #fff;
  outline: none;
}

.onboard-auth-input:hover:not(:focus) {
  border-color: #00b6ed;
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(0, 182, 237, 0.1);
}

.onboard-auth-input::placeholder {
  color: #a0b4b8;
  transition: color 0.3s ease;
}

.onboard-auth-input:focus::placeholder {
  color: #009fdc;
}

/* Enhanced Label Animation with Blue Theme */
.form-label {
  font-weight: 600;
  font-size: 1.08rem;
  color: #2c5aa0;
  margin-bottom: 0.8rem;
  display: block;
  transition: all 0.3s ease;
  position: relative;
}

.form-label::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #009fdc, #00b6ed);
  border-radius: 5px;
  transition: width 0.4s ease;
}

.form-group:focus-within .form-label {
  color: #009fdc;
}

.form-group:focus-within .form-label::after {
  width: 100%;
}

/* Enhanced Button Styles with Blue Theme */
.onboard-auth-btn {
  background: linear-gradient(135deg, #009fdc 0%, #00b6ed 50%, #1bb6f7 100%);
  border: none;
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 1.2rem;
  font-weight: 700;
  font-size: 1.15rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(0, 159, 220, 0.3);
}

.onboard-auth-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.onboard-auth-btn:hover::before {
  left: 100%;
}

.onboard-auth-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 159, 220, 0.4);
  background: linear-gradient(135deg, #1bb6f7 0%, #009fdc 50%, #00b6ed 100%);
}

.onboard-auth-btn:active {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 159, 220, 0.3);
}

/* Google Button with Blue Theme Integration */
.onboard-auth-google {
  background: linear-gradient(135deg, #fff 0%, #f8fbfc 100%);
  border: 2px solid #e8f4f8;
  color: #2c5aa0;
  font-weight: 600;
  border-radius: 1.2rem;
  padding: 1.1rem 0;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 159, 220, 0.1);
}

.onboard-auth-google::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 159, 220, 0.05), transparent);
  transition: left 0.6s;
}

.onboard-auth-google:hover::before {
  left: 100%;
}

.onboard-auth-google i {
  color: #ea4335;
  font-size: 1.5em;
  margin-right: 1rem;
  transition: transform 0.3s ease;
}

.onboard-auth-google:hover {
  background: linear-gradient(135deg, #f8fbfc 0%, #fff 100%);
  border-color: #009fdc;
  color: #009fdc;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 159, 220, 0.2);
}

.onboard-auth-google:hover i {
  transform: scale(1.15) rotate(8deg);
}

/* Divider with Blue Theme */
.onboard-auth-divider, .onboard-auth-or-divider {
  width: 100%;
  text-align: center;
  border: none;
  position: relative;
  margin: 2rem 0;
  height: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.onboard-auth-divider span, .onboard-auth-or-divider span {
  background: rgba(255, 255, 255, 0.98);
  color: #009fdc;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.8rem 2rem;
  border-radius: 2rem;
  border: 2px solid #e8f4f8;
  z-index: 2;
  backdrop-filter: blur(10px);
  animation: fadeInScale 0.8s ease-out 1s both;
  box-shadow: 0 4px 15px rgba(0, 159, 220, 0.1);
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.onboard-auth-divider:before, .onboard-auth-divider:after,
.onboard-auth-or-divider:before, .onboard-auth-or-divider:after {
  content: '';
  flex: 1 1 0%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #009fdc, #00b6ed, transparent);
  margin: 0 1rem;
  z-index: 1;
  border-radius: 5px;
  animation: lineGrow 1s ease-out 1.2s both;
}

@keyframes lineGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.onboard-auth-or-divider { display: none; }

/* Password Eye Button with Blue Theme */
.onboard-auth-eye {
  background: linear-gradient(135deg, #f8fbfc, #e8f4f8);
  border: 2px solid #e8f4f8;
  color: #009fdc;
  font-size: 1.4rem;
  padding: 0 1.2rem;
  border-radius: 0 1.2rem 1.2rem 0;
  border-left: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.onboard-auth-eye::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(0, 159, 220, 0.15);
  border-radius: 50%;
  transition: all 0.4s ease;
  transform: translate(-50%, -50%);
}

.onboard-auth-eye:hover::before {
  width: 120%;
  height: 120%;
}

.onboard-auth-eye:hover {
  color: #00b6ed;
  border-color: #009fdc;
  transform: scale(1.1);
  background: linear-gradient(135deg, #e8f4f8, #f8fbfc);
}

/* Enhanced Link Styles with Blue Theme */
.onboard-auth-link {
  color: #009fdc;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}

.onboard-auth-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #009fdc, #00b6ed);
  border-radius: 5px;
  transition: width 0.4s ease;
}

.onboard-auth-link:hover {
  color: #00b6ed;
  text-decoration: none;
  transform: translateY(-1px);
}

.onboard-auth-link:hover::after {
  width: 100%;
}

/* Form Check Enhanced with Blue Theme */
.form-check-input {
  border-radius: 0.5rem;
  border: 2px solid #e8f4f8;
  transition: all 0.3s ease;
}

.form-check-input:checked {
  background: linear-gradient(135deg, #009fdc, #00b6ed);
  border-color: #009fdc;
  box-shadow: 0 4px 10px rgba(0, 159, 220, 0.3);
}

.form-check-input:focus {
  box-shadow: 0 0 0 4px rgba(0, 159, 220, 0.15);
  border-color: #009fdc;
}

.form-check-label {
  color: #2c5aa0;
  font-weight: 500;
  transition: color 0.3s ease;
}

.form-check:hover .form-check-label {
  color: #009fdc;
}

/* Loading Animation with Blue Theme */
.onboard-auth-loading {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 3px solid rgba(255,255,255,.4);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spinBlue 1s ease-in-out infinite;
  margin-right: 0.7rem;
}

@keyframes spinBlue {
  to { transform: rotate(360deg); }
}

/* Password Strength Indicator with Blue Theme */
.password-strength {
  margin-top: 0.8rem;
}

.strength-bar {
  height: 5px;
  background-color: #e8f4f8;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0, 159, 220, 0.1);
}

.strength-fill {
  height: 100%;
  width: 0%;
  transition: width 0.4s ease, background-color 0.4s ease;
  border-radius: 10px;
  background: linear-gradient(90deg, #009fdc, #00b6ed);
}

.strength-text {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.4s ease;
  color: #2c5aa0;
}

/* Enhanced Responsive Design */
@media (max-width: 900px) {
  .onboard-auth-wrap { gap: 2.5rem; }
  .onboard-auth-card {
    padding: 2.5rem 2rem;
    min-width: 350px;
  }
  .onboard-auth-card h2 {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  .onboard-auth-bg {
    padding: 2rem 1rem;
  }
  .onboard-auth-wrap {
    flex-direction: column;
    align-items: stretch;
    gap: 3rem;
    width: 100%;
    max-width: 480px;
  }
  .onboard-auth-card {
    min-width: 100%;
    max-width: 100%;
    padding: 2.5rem 2rem;
    margin: 0;
  }
  .onboard-auth-card h2 {
    font-size: 2.1rem;
  }
  .onboard-auth-divider { display: none; }
  .onboard-auth-or-divider {
    display: flex;
    margin: 2.5rem 0;
  }
}

@media (max-width: 480px) {
  .onboard-auth-bg {
    padding: 1.5rem 0.75rem;
  }
  .onboard-auth-card {
    padding: 2rem 1.5rem;
    border-radius: 1.5rem;
  }
  .onboard-auth-card h2 {
    font-size: 1.9rem;
  }
  .onboard-auth-input {
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }
  .onboard-auth-btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
  }
  .onboard-auth-google {
    padding: 1rem 0;
    font-size: 1.05rem;
  }
}

/* Animation delays for staggered entrance */
.onboard-auth-card:nth-child(1) {
  animation-delay: 0s;
}

.onboard-auth-card:nth-child(3) {
  animation-delay: 0.3s;
}

/* Focus states for accessibility */
.onboard-auth-btn:focus,
.onboard-auth-google:focus,
.onboard-auth-input:focus {
  outline: 3px solid rgba(0, 159, 220, 0.5);
  outline-offset: 3px;
}

/* Error states with Blue Theme */
.onboard-auth-input.is-invalid {
  border-color: #dc3545;
  animation: shakeBlue 0.6s ease-in-out;
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.15);
}

@keyframes shakeBlue {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-8px); }
  75% { transform: translateX(8px); }
}

.invalid-feedback {
  color: #dc3545;
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 0.7rem;
}

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

/* Success states */
.onboard-auth-input.is-valid {
  border-color: #28a745;
  box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.15);
}

.valid-feedback {
  color: #28a745;
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 0.7rem;
  animation: fadeInUp 0.4s ease-in;
}
/* Client Dashboard Layout */
.client-dashboard-body {
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    padding-top: 250px; /* Account for navbar height */
}

.client-dashboard-layout {
    display: flex;
    min-height: calc(100vh - 250px);
    position: relative;
}

/* Sidebar Styles */
.client-sidebar {
    width: 280px;
    background: #fff;
    border-right: 1px solid #e5e7eb;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.05);
    top: 250px;
    bottom: 0;
    left: 0;
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: slideInLeft 0.6s ease-out;
    overflow-y: auto;
    overflow-x: hidden;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}



/* Sidebar Header */
.client-sidebar-header {
    padding: 2rem 1.5rem 1.5rem;
    border-bottom: 1px solid #f3f4f6;
    position: relative;
    background: linear-gradient(135deg, rgba(0,159,220,0.02), rgba(0,182,237,0.01));
}

.client-sidebar-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.client-user-avatar-large {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #009fdc, #00b6ed);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.4rem;
    box-shadow: 0 4px 20px rgba(0, 159, 220, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
    overflow: hidden;
}

.client-user-avatar-large:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 159, 220, 0.4);
}

.client-user-avatar-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.client-user-avatar-link:hover {
    text-decoration: none;
    color: inherit;
}

.client-user-avatar-link:hover .client-user-avatar-large {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 159, 220, 0.4);
}

.client-user-avatar-link:hover .client-user-avatar-large::after {
    content: 'Click to edit';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    animation: fadeInUp 0.3s ease forwards;
}

.client-user-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.client-user-avatar-initials {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-weight: 700;
    font-size: 1.4rem;
}

.client-user-info {
    flex: 1;
    min-width: 0;
    transition: all 0.4s ease;
}

.client-user-name {
    margin: 0 0 0.3rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.client-user-email {
    margin: 0 0 0.5rem 0;
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.client-user-status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #22c55e;
    font-weight: 500;
}

.client-user-status i {
    font-size: 0.6rem;
    animation: pulse 2s infinite;
}

/* User Actions */
.client-user-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.client-user-dropdown {
    position: relative;
}

.client-user-dropdown-btn {
    background: none;
    border: none;
    color: #6b7280;
    font-size: 1.2rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.client-user-dropdown-btn:hover {
    color: #009fdc;
    background: rgba(0, 159, 220, 0.1);
    transform: scale(1.1);
}

.client-user-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    width: 200px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    overflow: hidden;
}

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

.client-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1rem;
    color: #374151;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.client-dropdown-item:hover {
    background: #f9fafb;
    color: #009fdc;
    text-decoration: none;
}

.client-dropdown-item.client-dropdown-danger:hover {
    background: #fef2f2;
    color: #dc2626;
}

.client-dropdown-divider {
    height: 1px;
    background: #f3f4f6;
    margin: 0.5rem 0;
}





/* Navigation Styles */
.client-sidebar-nav {
    padding: 1rem 0;
    flex: 1;
}

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

.client-nav-item {
    margin-bottom: 0.3rem;
    animation: fadeInUp 0.6s ease-out both;
}

.client-nav-item:nth-child(1) { animation-delay: 0.1s; }
.client-nav-item:nth-child(2) { animation-delay: 0.2s; }
.client-nav-item:nth-child(3) { animation-delay: 0.3s; }
.client-nav-item:nth-child(4) { animation-delay: 0.4s; }
.client-nav-item:nth-child(5) { animation-delay: 0.5s; }
.client-nav-item:nth-child(6) { animation-delay: 0.6s; }
.client-nav-item:nth-child(7) { animation-delay: 0.7s; }
.client-nav-item:nth-child(8) { animation-delay: 0.8s; }

.client-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.5rem;
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border-radius: 0 2rem 2rem 0;
    margin-right: 1rem;
    overflow: hidden;
}

.client-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(135deg, rgba(0,159,220,0.1), rgba(0,182,237,0.05));
    transition: width 0.3s ease;
    z-index: 1;
}

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

.client-nav-link:hover {
    color: #009fdc;
    text-decoration: none;
    background: rgba(0, 159, 220, 0.05);
    transform: translateX(5px);
}

.client-nav-link.active {
    color: #009fdc;
    background: rgba(0, 159, 220, 0.08);
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 159, 220, 0.15);
}

.client-nav-icon {
    width: 1.3rem;
    height: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.client-nav-link:hover .client-nav-icon,
.client-nav-link.active .client-nav-icon {
    transform: scale(1.1);
}

.client-nav-text {
    flex: 1;
    transition: all 0.4s ease;
    z-index: 2;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.client-nav-badge {
    background: #009fdc;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 50px;
    min-width: 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.client-nav-badge.client-nav-badge-danger {
    background: #ef4444;
    animation: pulse 2s infinite;
}

.client-nav-indicator {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(135deg, #009fdc, #00b6ed);
    border-radius: 2px 0 0 2px;
    transition: height 0.3s ease;
}

.client-nav-link.active .client-nav-indicator {
    height: 60%;
}

/* Sidebar Footer */
.client-sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid #f3f4f6;
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out 1s both;
}

.client-support-card {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.client-support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #009fdc, #00b6ed, #1bb6f7);
    border-radius: 1rem 1rem 0 0;
}

.client-support-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 159, 220, 0.15);
}

.client-support-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #009fdc, #00b6ed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    margin: 0 auto 0.8rem;
    transition: transform 0.3s ease;
}

.client-support-card:hover .client-support-icon {
    transform: scale(1.1);
}

.client-support-content h6 {
    margin: 0 0 0.3rem 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
}

.client-support-content p {
    margin: 0 0 0.5rem 0;
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.3;
}

.client-support-phone {
    color: #009fdc;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.client-support-phone:hover {
    color: #00b6ed;
    text-decoration: none;
}

/* Main Content Area */
.client-main-content {
    flex: 1;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-height: calc(100vh - 250px);
    animation: fadeIn 0.6s ease-out 0.3s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Quick Actions Bar */
.client-quick-actions-bar {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 1.5rem 2rem;
    position: sticky;
    z-index: 50;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    animation: slideDown 0.6s ease-out 0.4s both;
}

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

.client-quick-actions-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: none;
}

.client-quick-actions-left h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    background: linear-gradient(135deg, #009fdc, #00b6ed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.client-quick-actions-left .client-page-subtitle {
    color: #6b7280;
    font-size: 0.95rem;
    font-weight: 400;
}

.client-quick-actions-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-quick-action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.25rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.client-quick-action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.client-quick-action-btn:hover::before {
    left: 100%;
}

.client-quick-primary {
    background: linear-gradient(135deg, #009fdc, #00b6ed);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 159, 220, 0.3);
}

.client-quick-primary:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 159, 220, 0.4);
}

.client-quick-secondary {
    background: #f8fafc;
    color: #374151;
    border: 1px solid #e5e7eb;
}

.client-quick-secondary:hover {
    color: #009fdc;
    text-decoration: none;
    background: #fff;
    border-color: #009fdc;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 159, 220, 0.15);
}

.client-notification-toggle {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    color: #6b7280;
    font-size: 1.2rem;
    padding: 0.7rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.client-notification-toggle:hover {
    color: #009fdc;
    border-color: #009fdc;
    background: rgba(0, 159, 220, 0.05);
    transform: scale(1.05);
}

.client-notification-badge {
    position: absolute;
    top: 0.3rem;
    right: 0.3rem;
    background: #ef4444;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.4rem;
    border-radius: 50px;
    min-width: 1.1rem;
    text-align: center;
    animation: pulse 2s infinite;
}

/* Brand Profile Indicator in Quick Actions */
.client-brand-profile-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.client-brand-profile-indicator:hover {
    background: rgba(245, 158, 11, 0.15);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.client-profile-progress {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.client-progress-circle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-progress-ring__progress {
    transition: stroke-dashoffset 0.6s ease-in-out;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

.client-progress-text {
    position: absolute;
    font-weight: 700;
    font-size: 0.75rem;
    color: #f59e0b;
}

.client-profile-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.client-profile-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #92400e;
}

.client-profile-status {
    font-size: 0.7rem;
    color: #f59e0b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.client-quick-brand {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.client-quick-brand:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #f97316, #ea580c);
}

/* Notification Dropdown */
.client-notification-dropdown {
    position: fixed;
    top: 320px;
    right: 2rem;
    width: 380px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    max-height: 500px;
    overflow: hidden;
}

.client-notification-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.client-notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f3f4f6;
    background: linear-gradient(135deg, rgba(0,159,220,0.02), rgba(0,182,237,0.01));
}

.client-notification-header h6 {
    margin: 0;
    font-weight: 600;
    color: #111827;
    font-size: 1.1rem;
}

.client-notification-count {
    background: #009fdc;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.7rem;
    border-radius: 50px;
}

.client-notification-list {
    max-height: 320px;
    overflow-y: auto;
}

.client-notification-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f9fafb;
    transition: all 0.2s ease;
    cursor: pointer;
}

.client-notification-item:hover {
    background: #f9fafb;
    transform: translateX(5px);
}

.client-notification-item:last-child {
    border-bottom: none;
}

.client-notification-icon {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.client-notification-success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.client-notification-info {
    background: rgba(0, 159, 220, 0.1);
    color: #009fdc;
}

.client-notification-warning {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

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

.client-notification-content p {
    margin: 0 0 0.4rem 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: #111827;
    line-height: 1.4;
}

.client-notification-content span {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 400;
}

.client-notification-footer {
    padding: 1rem 1.5rem;
    text-align: center;
    border-top: 1px solid #f3f4f6;
    background: #fafbfc;
}

.client-notification-view-all {
    color: #009fdc;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.client-notification-view-all:hover {
    color: #00b6ed;
    text-decoration: none;
}

/* Page Content */
.client-page-content {
    padding: 2rem;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .client-sidebar {
        width: 260px;
    }
}

@media (max-width: 992px) {
    .client-quick-actions-container {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .client-quick-actions-right {
        justify-content: space-between;
    }

    .client-notification-dropdown {
        width: 340px;
        right: 1rem;
    }
}

@media (max-width: 768px) {
    .client-dashboard-body {
        padding-top: 230px;
    }

    .client-sidebar {
        width: 100%;
        top: 230px;
        transform: translateX(-100%);
        z-index: 200;
    }

    .client-sidebar.show {
        transform: translateX(0);
    }

    .client-main-content {
        margin-left: 0;
    }

    .client-quick-actions-bar {
        top: 230px;
        padding: 1rem 1.5rem;
    }

    .client-quick-actions-container {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .client-quick-actions-right {
        flex-direction: column;
        gap: 0.75rem;
    }

    .client-brand-profile-indicator {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        padding: 1rem;
    }

    .client-profile-progress {
        justify-content: center;
    }

    .client-page-content {
        padding: 1.5rem;
    }

    .client-notification-dropdown {
        width: calc(100vw - 2rem);
        left: 1rem;
        right: 1rem;
        top: 280px;
    }

    .client-sidebar-header {
        padding: 1.5rem 1rem 1rem;
    }

    .client-sidebar-user {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .client-user-actions {
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .client-quick-actions-right {
        flex-direction: column;
        gap: 0.75rem;
    }

    .client-quick-action-btn {
        justify-content: center;
        width: 100%;
    }

    .client-brand-profile-indicator {
        padding: 0.75rem;
    }

    .client-profile-progress {
        gap: 0.5rem;
    }

    .client-profile-info {
        gap: 0.1rem;
    }

    .client-profile-label {
        font-size: 0.75rem;
    }

    .client-profile-status {
        font-size: 0.65rem;
    }

    .client-page-content {
        padding: 1rem;
    }

    .client-quick-actions-bar {
        padding: 1rem;
    }
}

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

/* Scrollbar Styling */
.client-sidebar::-webkit-scrollbar,
.client-notification-list::-webkit-scrollbar {
    width: 4px;
}

.client-sidebar::-webkit-scrollbar-track,
.client-notification-list::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.client-sidebar::-webkit-scrollbar-thumb,
.client-notification-list::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 2px;
}

.client-sidebar::-webkit-scrollbar-thumb:hover,
.client-notification-list::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Enhanced focus states for accessibility */
.client-nav-link:focus,
.client-quick-action-btn:focus,
.client-notification-toggle:focus {
    outline: 2px solid rgba(0, 159, 220, 0.5);
    outline-offset: 2px;
}

/* Loading animation */
.client-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 159, 220, 0.3);
    border-radius: 50%;
    border-top-color: #009fdc;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== CLIENT BILLING & INVOICES STYLES ===== */

/* Billing Overview */
.client-billing-overview {
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.client-billing-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Billing Controls */
.client-billing-controls {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.client-billing-search {
    flex: 1;
    max-width: 400px;
}

.client-billing-filters {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-filter-date {
    padding: 0.8rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 0.9rem;
    background: #fff;
    color: #374151;
    transition: all 0.3s ease;
}

.client-filter-date:focus {
    outline: none;
    border-color: #009fdc;
    box-shadow: 0 0 0 4px rgba(0, 159, 220, 0.1);
}

/* Invoices List */
.client-invoices-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.client-invoice-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.client-invoice-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.client-invoice-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.3s ease;
}

.client-invoice-item:hover .client-invoice-header {
    background: #f9fafb;
}

.client-invoice-info {
    flex: 1;
    min-width: 0;
}

.client-invoice-title {
    margin: 0 0 0.3rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #111827;
    line-height: 1.3;
}

.client-invoice-order {
    margin: 0 0 0.2rem 0;
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
}

.client-invoice-date {
    font-size: 0.8rem;
    color: #9ca3af;
}

.client-invoice-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 150px;
}

.client-invoice-amount {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.3rem;
    min-width: 120px;
}

.client-amount {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}

.client-due-date {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
}

.client-invoice-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* Invoice Status Badges */
.client-status-draft {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
}

.client-status-sent {
    background: rgba(0, 159, 220, 0.1);
    color: #009fdc;
}

.client-status-paid {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.client-status-overdue {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    animation: pulse 2s infinite;
}

.client-status-cancelled {
    background: rgba(55, 65, 81, 0.1);
    color: #374151;
}

.client-overdue-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.6rem;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-radius: 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

/* Invoice Details */
.client-invoice-details {
    padding: 1.5rem;
    background: #fafbfc;
}

.client-invoice-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

/* Invoice Details Page */
.client-invoice-details-container {
    animation: fadeInUp 0.6s ease-out;
}

.client-invoice-details-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.client-invoice-details-info {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.client-invoice-details-main {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.client-invoice-details-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.client-invoice-details-order {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
}

.client-invoice-details-date {
    font-size: 0.875rem;
    color: #64748b;
}

.client-invoice-details-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.client-invoice-details-actions {
    display: flex;
    gap: 0.75rem;
}

.client-overdue-alert {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.client-invoice-details-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.client-invoice-details-section {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.client-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 1.5rem 0;
}

.client-section-title i {
    color: #009fdc;
    font-size: 1.25rem;
}

/* Invoice Items Detailed */
.client-invoice-items-detailed {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.client-invoice-item-detailed {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
}

.client-invoice-item-details-detailed {
    flex: 1;
    min-width: 0;
}

.client-product-name-detailed {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
}

.client-product-description {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.client-product-notes {
    font-size: 0.875rem;
    color: #64748b;
    background: #f1f5f9;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border-left: 3px solid #009fdc;
}

.client-invoice-item-pricing-detailed {
    flex-shrink: 0;
    min-width: 200px;
}

.client-pricing-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.client-price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.client-price-item span:first-child {
    color: #64748b;
    font-weight: 500;
}

.client-price-item span:last-child {
    color: #1e293b;
    font-weight: 600;
}

.client-price-total {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    padding-top: 0.5rem;
    border-top: 1px solid #e2e8f0;
    margin-top: 0.5rem;
}

/* Payment Information */
.client-payment-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.client-payment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.client-payment-item:last-child {
    border-bottom: none;
}

.client-payment-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.client-payment-value {
    font-size: 0.875rem;
    color: #1e293b;
    font-weight: 600;
}

.client-payment-reminder {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

/* Invoice Notes and Terms */
.client-invoice-notes,
.client-invoice-terms {
    margin-bottom: 1.5rem;
}

.client-invoice-notes h4,
.client-invoice-terms h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
}

.client-invoice-notes p,
.client-invoice-terms p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
}

.client-empty-items {
    text-align: center;
    padding: 2rem;
    color: #64748b;
    font-style: italic;
}

/* ===== CLIENT ORDERS STYLES ===== */

/* Orders Container */
.client-orders-container {
    animation: fadeInUp 0.6s ease-out;
}

/* Orders Header with Stats */
.client-orders-header {
    margin-bottom: 2rem;
}

.client-orders-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.client-stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.client-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
}

.client-stat-pending {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
}

.client-stat-processing {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.client-stat-completed {
    background: linear-gradient(135deg, #01aade 0%, #0284c7 100%);
}

.client-stat-total {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.client-stat-content h4 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1;
}

.client-stat-content span {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

/* Orders List */
.client-orders-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.client-order-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.client-order-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Order Header */
.client-order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.client-order-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.client-order-number {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.client-order-date {
    font-size: 0.875rem;
    color: #64748b;
}

/* Status Badges */
.client-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.client-status-pending {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
}

.client-status-processing {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.client-status-completed {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.client-status-cancelled {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.client-status-large {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Order Items */
.client-order-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.client-order-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.client-order-item-image {
    flex-shrink: 0;
}

.client-product-thumb {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #e2e8f0;
}

.client-order-item-details {
    flex: 1;
    min-width: 0;
}

.client-product-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

.client-product-variants {
    margin: 0.25rem 0;
}

.client-variant-tag {
    display: inline-block;
    background: #e0e7ff;
    color: #3730a3;
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-right: 0.25rem;
    margin-bottom: 0.25rem;
}

.client-product-qty {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
}

.client-order-item-price {
    flex-shrink: 0;
}

.client-price {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
}

.client-order-more-items {
    text-align: center;
    padding: 0.75rem;
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
    background: #f1f5f9;
    border-radius: 8px;
    border: 1px dashed #cbd5e1;
}

/* Order Footer */
.client-order-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.client-order-totals {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 200px;
}

.client-total-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.client-total-item span:first-child {
    color: #64748b;
    font-weight: 500;
}

.client-total-item span:last-child {
    color: #1e293b;
    font-weight: 600;
}

.client-total-grand {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    padding-top: 0.5rem;
    border-top: 1px solid #e2e8f0;
    margin-top: 0.5rem;
}

.client-order-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* Buttons */
.client-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.client-btn-primary {
    background: linear-gradient(135deg, #009fdc 0%, #00b6ed 100%);
    color: #fff;
}

.client-btn-primary:hover {
    background: linear-gradient(135deg, #0088c4 0%, #0099d6 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 159, 220, 0.3);
}

.client-btn-secondary {
    background: #f8fafc;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.client-btn-secondary:hover {
    background: #f1f5f9;
    color: #1e293b;
    transform: translateY(-1px);
}

.client-btn-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
}

.client-btn-danger:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

/* Empty State */
.client-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.client-empty-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #6366f1;
}

.client-empty-state h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
}

.client-empty-state p {
    color: #64748b;
    margin: 0 0 2rem 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Pagination */
.client-pagination {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.client-pagination .pagination {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.client-pagination .page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.client-pagination .page-item .page-link:hover {
    background: #f8fafc;
    color: #1e293b;
    transform: translateY(-1px);
}

.client-pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #009fdc 0%, #00b6ed 100%);
    color: #fff;
    border-color: #009fdc;
}

/* ===== ORDER DETAILS STYLES ===== */

.client-order-details-container {
    animation: fadeInUp 0.6s ease-out;
}

.client-order-details-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.client-order-details-info {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.client-order-details-main {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.client-order-details-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.client-order-details-date {
    font-size: 0.875rem;
    color: #64748b;
}

.client-order-details-actions {
    display: flex;
    gap: 0.75rem;
}

.client-order-details-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.client-order-details-section {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.client-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 1.5rem 0;
}

.client-section-title i {
    color: #009fdc;
    font-size: 1.25rem;
}

/* Detailed Order Items */
.client-order-items-detailed {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.client-order-item-detailed {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.client-order-item-image-detailed {
    flex-shrink: 0;
}

.client-product-image-detailed {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #e2e8f0;
}

.client-order-item-details-detailed {
    flex: 1;
    min-width: 0;
}

.client-product-name-detailed {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
}

.client-product-description {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.client-product-variants-detailed h6 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
}

.client-variants-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.client-variant-tag-detailed {
    background: #e0e7ff;
    color: #3730a3;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
}

.client-product-meta {
    margin-top: 1rem;
}

.client-product-category {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
}

.client-order-item-pricing-detailed {
    flex-shrink: 0;
    min-width: 150px;
}

.client-pricing-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.client-price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.client-price-item span:first-child {
    color: #64748b;
    font-weight: 500;
}

.client-price-item span:last-child {
    color: #1e293b;
    font-weight: 600;
}

.client-price-total {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    padding-top: 0.5rem;
    border-top: 1px solid #e2e8f0;
    margin-top: 0.5rem;
}

/* Order Details Grid */
.client-order-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* Address Cards */
.client-address-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

.client-address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.client-address-header h6 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.client-address-type {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.client-address-content p {
    font-size: 0.875rem;
    color: #475569;
    margin: 0 0 0.25rem 0;
    line-height: 1.4;
}

.client-address-content p:last-child {
    margin-bottom: 0;
}

/* Order Summary */
.client-order-summary {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.client-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.client-summary-item span:first-child {
    color: #64748b;
    font-weight: 500;
}

.client-summary-item span:last-child {
    color: #1e293b;
    font-weight: 600;
}

.client-summary-total {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    padding-top: 0.75rem;
    border-top: 1px solid #e2e8f0;
    margin-top: 0.75rem;
}

/* Brand Preferences */
.client-brand-preferences {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.client-brand-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.client-brand-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    flex-shrink: 0;
    min-width: 120px;
}

.client-brand-value {
    font-size: 0.875rem;
    color: #1e293b;
    font-weight: 500;
    text-align: right;
}

.client-brand-colors {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.client-color-swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.client-brand-values {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.client-value-tag {
    background: #e0e7ff;
    color: #3730a3;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .client-orders-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .client-order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .client-order-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .client-order-actions {
        justify-content: stretch;
    }

    .client-btn {
        flex: 1;
        justify-content: center;
    }

    .client-order-details-header {
        flex-direction: column;
        gap: 1rem;
    }

    .client-order-details-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .client-order-details-actions {
        width: 100%;
        justify-content: stretch;
    }

    .client-order-item-detailed {
        flex-direction: column;
        gap: 1rem;
    }

    .client-order-item-pricing-detailed {
        min-width: auto;
    }

    .client-order-details-grid {
        grid-template-columns: 1fr;
    }

    .client-brand-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .client-brand-value {
        text-align: left;
    }
}

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

    .client-stat-card {
        padding: 1rem;
    }

    .client-order-card {
        padding: 1rem;
    }

    .client-order-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .client-order-item-price {
        align-self: flex-end;
    }

    .client-order-details-section {
        padding: 1rem;
    }

    .client-order-item-detailed {
        padding: 1rem;
    }
}

/* Client Orders Page Styles */
.client-orders-overview {
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.client-order-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.client-stat-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.client-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 1rem 1rem 0 0;
    transition: all 0.3s ease;
}

.client-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.client-stat-primary::before {
    background: linear-gradient(90deg, #009fdc, #00b6ed);
}

.client-stat-success::before {
    background: linear-gradient(90deg, #22c55e, #16a34a);
}

.client-stat-warning::before {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.client-stat-info::before {
    background: linear-gradient(90deg, #3b82f6, #2563eb);
}

.client-stat-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.client-stat-primary .client-stat-icon {
    background: linear-gradient(135deg, #009fdc, #00b6ed);
}

.client-stat-success .client-stat-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.client-stat-warning .client-stat-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.client-stat-info .client-stat-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.client-stat-card:hover .client-stat-icon {
    transform: scale(1.1);
}

.client-stat-content {
    flex: 1;
}

.client-stat-number {
    margin: 0 0 0.3rem 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}

.client-stat-label {
    margin: 0;
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

/* Orders Controls */
.client-orders-controls {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.client-orders-search {
    flex: 1;
    max-width: 400px;
}

.client-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.client-search-wrapper i {
    position: absolute;
    left: 1rem;
    color: #9ca3af;
    font-size: 1.1rem;
}

.client-search-input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.client-search-input:focus {
    outline: none;
    border-color: #009fdc;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 159, 220, 0.1);
}

.client-orders-filters {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-filter-select {
    padding: 0.8rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 0.9rem;
    background: #fff;
    color: #374151;
    transition: all 0.3s ease;
    min-width: 150px;
}

.client-filter-select:focus {
    outline: none;
    border-color: #009fdc;
    box-shadow: 0 0 0 4px rgba(0, 159, 220, 0.1);
}

.client-filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.25rem;
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    color: #374151;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.client-filter-btn:hover {
    background: #fff;
    border-color: #009fdc;
    color: #009fdc;
    transform: translateY(-1px);
}

/* Orders List */
.client-orders-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.client-order-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.client-order-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.client-order-item.expanded {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.client-order-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.3s ease;
}

.client-order-item:hover .client-order-header {
    background: #f9fafb;
}

.client-order-info {
    flex: 1;
    min-width: 0;
}

.client-order-title {
    margin: 0 0 0.3rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #111827;
    line-height: 1.3;
}

.client-order-id {
    margin: 0 0 0.2rem 0;
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
}

.client-order-date {
    font-size: 0.8rem;
    color: #9ca3af;
}

.client-order-status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    min-width: 200px;
}

.client-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.client-status-progress {
    background: rgba(0, 159, 220, 0.1);
    color: #009fdc;
}

.client-status-pending {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.client-status-completed {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.client-order-progress {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.3rem;
}

.client-progress-bar {
    width: 120px;
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
}

.client-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #009fdc, #00b6ed);
    border-radius: 3px;
    transition: width 0.6s ease;
}

.client-progress-text {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
}

.client-order-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.client-action-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 0.6rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.client-action-primary {
    background: linear-gradient(135deg, #009fdc, #00b6ed);
    color: #fff;
}

.client-action-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 159, 220, 0.3);
}

.client-action-secondary {
    background: #f8fafc;
    color: #374151;
    border: 1px solid #e5e7eb;
}

.client-action-secondary:hover {
    background: #fff;
    border-color: #009fdc;
    color: #009fdc;
    transform: translateY(-1px);
}

.client-action-urgent {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    border: 2px solid #16a34a;
}

.client-action-urgent:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
    border-color: #15803d;
}

/* Order Details */
.client-order-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: #fafbfc;
}

.client-order-item.expanded .client-order-details {
    max-height: 1000px;
}

.client-order-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.client-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.client-meta-label {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.client-meta-value {
    font-size: 0.95rem;
    color: #111827;
    font-weight: 600;
}

/* Timeline */
.client-order-timeline {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.client-timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
}

.client-timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 1.1rem;
    top: 2.5rem;
    bottom: -1.5rem;
    width: 2px;
    background: #e5e7eb;
    z-index: 1;
}

.client-timeline-completed:not(:last-child)::after {
    background: linear-gradient(180deg, #22c55e, #e5e7eb);
}

.client-timeline-active:not(:last-child)::after {
    background: linear-gradient(180deg, #009fdc, #e5e7eb);
}

.client-timeline-icon {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    z-index: 2;
    position: relative;
}

.client-timeline-completed .client-timeline-icon {
    background: #22c55e;
    color: #fff;
}

.client-timeline-active .client-timeline-icon {
    background: linear-gradient(135deg, #009fdc, #00b6ed);
    color: #fff;
    animation: pulse 2s infinite;
}

.client-timeline-pending .client-timeline-icon {
    background: #e5e7eb;
    color: #9ca3af;
}

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

.client-timeline-content h6 {
    margin: 0 0 0.3rem 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
}

.client-timeline-content p {
    margin: 0 0 0.3rem 0;
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.4;
}

.client-timeline-date {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 500;
}

/* Alerts */
.client-order-alert {
    padding: 1.5rem;
}

.client-alert {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    background: #fff;
    border: 1px solid #e5e7eb;
}

.client-alert-warning {
    background: rgba(245, 158, 11, 0.05);
    border-color: rgba(245, 158, 11, 0.2);
}

.client-alert i {
    font-size: 1.5rem;
    color: #f59e0b;
    flex-shrink: 0;
}

.client-alert-content {
    flex: 1;
}

.client-alert-content h6 {
    margin: 0 0 0.3rem 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
}

.client-alert-content p {
    margin: 0;
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.4;
}

.client-alert-action {
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    border: none;
    border-radius: 0.6rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.client-alert-action:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

/* Files */
.client-order-files {
    padding: 1.5rem;
}

.client-order-files h6 {
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
}

.client-file-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.client-file-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.6rem;
    transition: all 0.3s ease;
}

.client-file-item:hover {
    border-color: #009fdc;
    box-shadow: 0 2px 8px rgba(0, 159, 220, 0.1);
}

.client-file-item i {
    font-size: 1.2rem;
    color: #009fdc;
    flex-shrink: 0;
}

.client-file-item span {
    flex: 1;
    font-size: 0.9rem;
    color: #374151;
    font-weight: 500;
}

.client-file-download {
    padding: 0.4rem 0.8rem;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    color: #374151;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.client-file-download:hover {
    background: #009fdc;
    color: #fff;
    border-color: #009fdc;
}

/* Load More */
.client-load-more {
    text-align: center;
    margin-top: 2rem;
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

.client-load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    color: #374151;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.client-load-more-btn:hover {
    background: #fff;
    border-color: #009fdc;
    color: #009fdc;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 159, 220, 0.15);
}

/* Responsive Design for Billing & Invoices */
@media (max-width: 1200px) {
    .client-billing-stats {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .client-billing-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .client-billing-search {
        max-width: none;
    }

    .client-billing-filters {
        justify-content: space-between;
    }

    .client-invoice-details-header {
        flex-direction: column;
        gap: 1rem;
    }

    .client-invoice-details-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .client-invoice-details-actions {
        width: 100%;
        justify-content: stretch;
    }

    .client-invoice-item-detailed {
        flex-direction: column;
        gap: 1rem;
    }

    .client-invoice-item-pricing-detailed {
        min-width: auto;
    }
}

/* Responsive Design for Orders */
@media (max-width: 1200px) {
    .client-order-stats {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .client-orders-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .client-orders-search {
        max-width: none;
    }

    .client-orders-filters {
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .client-billing-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .client-billing-filters {
        flex-direction: column;
        gap: 0.75rem;
    }

    .client-filter-date {
        min-width: auto;
    }

    .client-invoice-header {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .client-invoice-status {
        align-items: flex-start;
    }

    .client-invoice-actions {
        justify-content: space-between;
    }

    .client-invoice-meta {
        grid-template-columns: 1fr;
    }

    .client-invoice-details-section {
        padding: 1rem;
    }

    .client-order-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .client-order-header {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .client-order-status {
        align-items: flex-start;
    }

    .client-order-actions {
        justify-content: space-between;
    }

    .client-order-meta {
        grid-template-columns: 1fr;
    }

    .client-orders-filters {
        flex-direction: column;
        gap: 0.75rem;
    }

    .client-filter-select {
        min-width: auto;
    }
}

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

    .client-stat-card {
        padding: 1.25rem;
    }

    .client-invoice-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .client-action-btn {
        justify-content: center;
        width: 100%;
    }

    .client-invoice-details-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .client-btn {
        justify-content: center;
        width: 100%;
    }

    .client-order-stats {
        grid-template-columns: 1fr;
    }

    .client-order-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Modern PDF Brand Kit Generator Styles */
.pdf-generator-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Redesigned PDF Hero Section */
.pdf-hero-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 24px;
    padding: 4rem 3rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.hero-background-pattern {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(1, 170, 222, 0.02) 0%, transparent 70%);
    animation: gentleFloat 25s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(180deg); }
}

.hero-content-centered {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-icon-container {
    margin-bottom: 2rem;
    position: relative;
}

.hero-icon-wrapper {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #01aade, #0284c7);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: white;
    box-shadow: 0 15px 40px rgba(1, 170, 222, 0.3);
    transition: all 0.3s ease;
    position: relative;
    margin: 0 auto;
}

.hero-icon-wrapper:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(1, 170, 222, 0.4);
}

.icon-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #01aade, #0284c7, #01aade);
    border-radius: 32px;
    z-index: -1;
    opacity: 0.6;
    filter: blur(8px);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.hero-text-section {
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    margin: 0 0 3rem 0;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: white;
    padding: 2rem 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    margin: 0 auto;
    max-width: 500px;
}

.stat-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #01aade;
    line-height: 1;
}

.stat-desc {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #e2e8f0, transparent);
}

/* Responsive design for new hero */
@media (max-width: 768px) {
    .pdf-hero-section {
        padding: 3rem 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-icon-wrapper {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }
    
    .hero-stats-inline {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 2rem;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(to right, transparent, #e2e8f0, transparent);
    }
}

/* Modern PDF Preview Section */
.pdf-preview-modern {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

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

.preview-header-modern h4 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 1rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.preview-header-modern p {
    font-size: 1.1rem;
    color: #64748b;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.pdf-sections-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.section-flow-item {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.section-flow-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Theme-specific hover border colors */
.section-flow-item.theme-1:hover {
    border-color: #6366f1;
}

.section-flow-item.theme-2:hover {
    border-color: #7c3aed;
}

.section-flow-item.theme-3:hover {
    border-color: #ec4899;
}

.section-flow-item.theme-4:hover {
    border-color: #ef4444;
}

.section-flow-item.theme-5:hover {
    border-color: #f59e0b;
}

.section-flow-item.theme-6:hover {
    border-color: #eab308;
}

.section-flow-item.theme-7:hover {
    border-color: #10b981;
}

.section-flow-item.theme-8:hover {
    border-color: #01aade;
}

.section-flow-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: all 0.3s ease;
}

.section-flow-item.theme-1::before {
    background: #6366f1; /* Indigo - Core Identity */
}

.section-flow-item.theme-2::before {
    background: #7c3aed; /* Violet - Brand Story */
}

.section-flow-item.theme-3::before {
    background: #ec4899; /* Pink - Voice & Messaging */
}

.section-flow-item.theme-4::before {
    background: #ef4444; /* Red - Visual Identity */
}

.section-flow-item.theme-5::before {
    background: #f59e0b; /* Orange - Assets Library */
}

.section-flow-item.theme-6::before {
    background: #eab308; /* Yellow - Digital Presence */
}

.section-flow-item.theme-7::before {
    background: #10b981; /* Green - Operational Notes */
}

.section-flow-item.theme-8::before {
    background: #01aade; /* ZOOGABOOG Blue - PDF Brand Kit */
}

.section-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

/* Theme-specific icon colors */
.section-flow-item.theme-1 .section-icon {
    background: #6366f1; /* Indigo */
}

.section-flow-item.theme-2 .section-icon {
    background: #7c3aed; /* Violet */
}

.section-flow-item.theme-3 .section-icon {
    background: #ec4899; /* Pink */
}

.section-flow-item.theme-4 .section-icon {
    background: #ef4444; /* Red */
}

.section-flow-item.theme-5 .section-icon {
    background: #f59e0b; /* Orange */
}

.section-flow-item.theme-6 .section-icon {
    background: #eab308; /* Yellow */
}

.section-flow-item.theme-7 .section-icon {
    background: #10b981; /* Green */
}

.section-flow-item.theme-8 .section-icon {
    background: #01aade; /* ZOOGABOOG Blue */
}

.section-flow-item:hover .section-icon {
    transform: scale(1.1);
}

.section-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.section-content p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

.section-status {
    margin-top: auto;
}

.status-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.status-badge.ready {
    background: linear-gradient(135deg, #10b981, #059669);
}

.status-badge.unfinished {
    background: linear-gradient(135deg, #6b7280, #4b5563);
}

/* Responsive design for modern PDF preview */
@media (max-width: 1200px) {
    .pdf-sections-flow {
        grid-template-columns: repeat(3, 1fr);
        max-width: 800px;
    }
}

@media (max-width: 900px) {
    .pdf-sections-flow {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
}

@media (max-width: 600px) {
    .pdf-sections-flow {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 1rem;
    }
    
    .section-flow-item {
        min-height: 200px;
        padding: 1.5rem 1rem;
    }
    
    .hero-content-wrapper {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text-content h2 {
        font-size: 2.5rem;
    }
}

/* Modern PDF Options Section */
.pdf-options-modern {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

/* Modern Generate Section */
.generate-section-modern {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.generate-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #01aade, #0284c7);
}

.generate-content-modern {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.generate-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #01aade, #0284c7);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 12px 35px rgba(1, 170, 222, 0.4);
    flex-shrink: 0;
}

.generate-text-modern h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.generate-text-modern p {
    font-size: 1.1rem;
    color: #64748b;
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
    max-width: 600px;
}

.generate-features-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.feature-item-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #64748b;
    font-size: 0.95rem;
}

.feature-item-modern i {
    color: #10b981;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.generate-actions-modern {
    text-align: center;
    position: relative;
    z-index: 2;
}

.generate-pdf-btn-modern {
    background: linear-gradient(135deg, #01aade, #0284c7);
    border: none;
    color: white;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(1, 170, 222, 0.3);
    margin-bottom: 1rem;
}

.generate-pdf-btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(1, 170, 222, 0.4);
    background: linear-gradient(135deg, #0284c7, #0369a1);
}

.generate-note-modern {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

/* Responsive design for modern generate section */
@media (max-width: 768px) {
    .generate-content-modern {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .generate-features-modern {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .generate-pdf-btn-modern {
        width: 100%;
        max-width: 400px;
    }
}

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

.options-header-modern h4 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 1rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.options-header-modern p {
    font-size: 1.1rem;
    color: #64748b;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.options-tabs {
    max-width: 900px;
    margin: 0 auto;
}

.tab-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 140px;
    justify-content: center;
}

.tab-btn:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(135deg, #01aade, #0284c7);
    border-color: #01aade;
    color: white;
    box-shadow: 0 8px 25px rgba(1, 170, 222, 0.3);
}

.tab-btn i {
    font-size: 1.1rem;
}

.tab-content {
    display: none;
    animation: fadeInUp 0.4s ease-out;
}

.tab-content.active {
    display: block;
}

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

.options-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.option-item:hover {
    background: #f1f5f9;
    border-color: #01aade;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(1, 170, 222, 0.1);
}

.option-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-item input[type="checkbox"]:checked {
    background: #01aade;
    border-color: #01aade;
}

.option-item label {
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    margin: 0;
    flex: 1;
}

/* Responsive design for modern options */
@media (max-width: 768px) {
    .tab-nav {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .options-grid-modern {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0.5rem;
    }
    
    .option-item {
        padding: 1rem;
    }
}

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

.options-header h4 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 1rem 0;
}

.options-header p {
    font-size: 1.1rem;
    color: #64748b;
    margin: 0;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.option-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #009fdc;
}

.option-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.option-header i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #009fdc, #00b6ed);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.option-header h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.option-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.form-check:hover {
    border-color: #009fdc;
    box-shadow: 0 2px 8px rgba(0, 159, 220, 0.1);
}

.form-check-input {
    width: 18px;
    height: 18px;
    accent-color: #009fdc;
}

.form-check-label {
    font-size: 0.95rem;
    color: #374151;
    font-weight: 500;
    cursor: pointer;
    margin: 0;
}

/* Generate Section */
.generate-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #0ea5e9;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(14, 165, 233, 0.15);
}

.generate-content {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.generate-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: white;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.generate-text h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0c4a6e;
    margin: 0 0 1.5rem 0;
}

.generate-text p {
    font-size: 1.2rem;
    color: #0369a1;
    margin: 0 0 2rem 0;
    line-height: 1.6;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    border: 1px solid #bae6fd;
}

.feature-item i {
    color: #0ea5e9;
    font-size: 1.2rem;
}

.feature-item span {
    font-size: 0.95rem;
    color: #0c4a6e;
    font-weight: 500;
}

.generate-actions {
    text-align: center;
}

.generate-pdf-btn {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    border: none;
    color: white;
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
    margin-bottom: 1rem;
}

.generate-pdf-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.4);
}

.generate-note {
    font-size: 0.9rem;
    color: #0369a1;
    margin: 0;
    font-style: italic;
}

/* Brand Profile Step Navigation Colors - Individual step colors when completed */
.step-item.completed[data-step="1"] .step-number {
    background: #6366f1 !important; /* Indigo */
    color: white !important;
}

.step-item.completed[data-step="1"] .step-label {
    color: #6366f1 !important;
}

.step-item.completed[data-step="2"] .step-number {
    background: #7c3aed !important; /* Violet */
    color: white !important;
}

.step-item.completed[data-step="2"] .step-label {
    color: #7c3aed !important;
}

.step-item.completed[data-step="3"] .step-number {
    background: #ec4899 !important; /* Pink */
    color: white !important;
}

.step-item.completed[data-step="3"] .step-label {
    color: #ec4899 !important;
}

.step-item.completed[data-step="4"] .step-number {
    background: #ef4444 !important; /* Red */
    color: white !important;
}

.step-item.completed[data-step="4"] .step-label {
    color: #ef4444 !important;
}

.step-item.completed[data-step="5"] .step-number {
    background: #f59e0b !important; /* Orange */
    color: white !important;
}

.step-item.completed[data-step="5"] .step-label {
    color: #f59e0b !important;
}

.step-item.completed[data-step="6"] .step-number {
    background: #eab308 !important; /* Yellow */
    color: white !important;
}

.step-item.completed[data-step="6"] .step-label {
    color: #eab308 !important;
}

.step-item.completed[data-step="7"] .step-number {
    background: #10b981 !important; /* Green */
    color: white !important;
}

.step-item.completed[data-step="7"] .step-label {
    color: #10b981 !important;
}

.step-item.completed[data-step="8"] .step-number {
    background: #01aade !important; /* ZOOGABOOG Blue */
    color: white !important;
}

.step-item.completed[data-step="8"] .step-label {
    color: #01aade !important;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .generator-hero {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .pdf-pages-preview {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .generator-hero,
    .pdf-preview-section,
    .pdf-options-section,
    .generate-section {
        padding: 2rem;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .pdf-pages-preview {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .generate-features {
        grid-template-columns: 1fr;
    }
    
    .generate-text h3 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .generator-hero,
    .pdf-preview-section,
    .pdf-options-section,
    .generate-section {
        padding: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-card {
        min-width: 200px;
    }
}

/* ===== OPERATIONAL NOTES STYLES ===== */
.operational-notes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.notes-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.notes-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--card-accent-color), var(--card-accent-color-light));
}

.notes-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.notes-card-primary {
    --card-accent-color: #3b82f6;
    --card-accent-color-light: #60a5fa;
}

.notes-card-success {
    --card-accent-color: #10b981;
    --card-accent-color-light: #34d399;
}

.notes-card-info {
    --card-accent-color: #06b6d4;
    --card-accent-color-light: #22d3ee;
}

.notes-card-warning {
    --card-accent-color: #f59e0b;
    --card-accent-color-light: #fbbf24;
}

.notes-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}

.notes-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--card-accent-color), var(--card-accent-color-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.notes-card-header h5 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.01em;
}

.notes-card-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.notes-card .form-group {
    margin-bottom: 0;
}

.notes-card .form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    display: block;
}

.notes-card .form-control {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: #fafafa;
    color: #374151;
}

.notes-card .form-control:focus {
    border-color: var(--card-accent-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

.notes-card .form-control::placeholder {
    color: #9ca3af;
    font-style: italic;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.notes-card .form-check {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0;
}

.notes-card .form-check-input {
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    appearance: none;
    background: white;
}

.notes-card .form-check-input:checked {
    background: var(--card-accent-color);
    border-color: var(--card-accent-color);
}

.notes-card .form-check-input:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.notes-card .form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

.notes-card .form-check-label {
    font-size: 0.9rem;
    color: #4b5563;
    cursor: pointer;
    font-weight: 500;
    line-height: 1.4;
}

.notes-card .form-check-label:hover {
    color: var(--card-accent-color);
}

/* Enhanced form controls for better UX */
.notes-card textarea.form-control {
    resize: vertical;
    min-height: 80px;
    line-height: 1.5;
}

.notes-card textarea.form-control:focus {
    min-height: 100px;
}

/* Responsive design for operational notes */
@media (max-width: 1200px) {
    .operational-notes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .operational-notes-grid {
        gap: 1rem;
    }
    
    .notes-card {
        padding: 1.5rem;
    }
    
    .notes-card-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .notes-card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .notes-card {
        padding: 1.25rem;
    }
    
    .notes-card-header h5 {
        font-size: 1.1rem;
    }
    
    .notes-card .form-control {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
}

/* Calendar-style Seasonal Campaign Planning */
.calendar-card .calendar-grid {
    display: grid;
    grid-template-rows: auto auto;
    gap: 1rem;
    margin: 1rem 0;
}

.calendar-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.calendar-month {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.calendar-month:hover {
    border-color: #10b981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
    transform: translateY(-2px);
}

.calendar-month input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.calendar-month label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.calendar-month .month-abbr {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calendar-month .month-full {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

.calendar-month .month-pair {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    margin-top: 0.25rem;
}

/* Checked state styling */
.calendar-month input[type="checkbox"]:checked + label {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 12px;
    margin: -1rem;
    padding: 1rem;
}

.calendar-month input[type="checkbox"]:checked + label .month-abbr,
.calendar-month input[type="checkbox"]:checked + label .month-full,
.calendar-month input[type="checkbox"]:checked + label .month-pair {
    color: white;
}

.calendar-month input[type="checkbox"]:checked + label .month-pair {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Responsive calendar design */
@media (max-width: 768px) {
    .calendar-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .calendar-month {
        padding: 0.75rem;
    }
    
    .calendar-month .month-abbr {
        font-size: 1rem;
    }
    
    .calendar-month .month-full {
        font-size: 0.75rem;
    }
    
    .calendar-month .month-pair {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
    }
}

@media (max-width: 480px) {
    .calendar-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .calendar-month {
        padding: 1rem;
    }
}




