/* ============================================================ */
/* CASHIFY SPECIFIC HEADER STYLES                               */
/* ============================================================ */

/* ============================================================ */
/* CASHIFY SPECIFIC HEADER STYLES                               */
/* ============================================================ */

.bg-light-soft {
  background-color: #f7f9f8 !important;
}

/* Brand Logo */
.cashify-logo {
  font-size: 1.6rem;
  color: #2e9b7a;
  letter-spacing: -0.5px;
}

/* Wide Search Bar Box */
.cashify-search-container {
  max-width: 650px;
}

.cashify-search-container .input-group {
  border-radius: 8px;
  overflow: hidden;
  background-color: #f7f9f8;
}

.cashify-search-container input::placeholder {
  color: #8c9895;
  font-size: 0.9rem;
}

.cashify-search-container input:focus {
  box-shadow: none;
  background-color: #f7f9f8;
}

/* Location Picker */
.location-picker {
  font-size: 0.9rem;
  color: #1e2a2a;
  cursor: pointer;
}

.extra-small-icon {
  font-size: 0.70rem;
}

/* Login Button */
.btn-cashify-login {
  background-color: #2e9b7a;
  color: #ffffff;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-cashify-login:hover {
  background-color: #238a6a;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(46, 155, 122, 0.25);
}

/* Bottom Nav Links */
.cashify-nav-bar {
  background-color: #ffffff;
}

.cashify-nav .nav-link {
  color: #1e2a2a;
  font-size: 0.88rem;
  padding: 10px 0 !important;
  transition: color 0.2s ease;
}

.cashify-nav .nav-link:hover {
  color: #2e9b7a;
}

/* ============================================================ */
/* MULTI-LEVEL DYNAMIC DROPDOWN SYSTEM (EXACT VIDEO MATCH)      */
/* ============================================================ */

.cashify-nav .custom-dropdown-parent {
  position: relative;
}

/* First Level Dropdown */
.cashify-nav .custom-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #ffffff;
  border: 1px solid #eef2f1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  display: none;
  z-index: 1050;
}

.cashify-nav .custom-dropdown-parent:hover > .custom-dropdown-menu {
  display: block;
}

.cashify-nav .custom-dropdown-menu li {
  position: relative;
}

.cashify-nav .custom-dropdown-menu li a {
  display: block;
  padding: 8px 16px;
  color: #333;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.cashify-nav .custom-dropdown-menu li a:hover {
  background-color: #f4f7f6;
  color: #2e9b7a;
}

/* Menu Section Headers */
.cashify-nav .menu-header {
  padding: 6px 16px 4px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #8c9895;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Nested (Level 2 & Level 3) Sub Dropdowns (Fly-Out) */
.cashify-nav .custom-sub-dropdown {
  position: absolute;
  top: -8px;
  left: 100%;
  min-width: 210px;
  background: #ffffff;
  border: 1px solid #eef2f1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  display: none;
}

.cashify-nav .sub-parent:hover > .custom-sub-dropdown {
  display: block;
}

/* ============================================================ */
/* CASHIFY LIGHT FOOTER STYLES                                  */
/* ============================================================ */

.cashify-footer {
  background-color: #f5f5f5; /* Light Gray background like image */
  color: #333333;
  font-size: 0.82rem;
}

/* Footer Logo */
.cashify-footer-logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2e9b7a;
  letter-spacing: -0.5px;
}

/* Social Section */
.cashify-social-title {
  color: #666666;
  font-weight: 600;
  font-size: 0.85rem;
}

.cashify-social-icons .social-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: #737373; /* Dark gray circular icons */
  color: #ffffff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.cashify-social-icons .social-circle:hover {
  background-color: #2e9b7a;
  transform: translateY(-2px);
}

/* Footer Headings */
.footer-heading {
  font-weight: 700;
  font-size: 0.88rem;
  color: #555555;
  margin-bottom: 16px;
}

/* Links List */
.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #333333;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #2e9b7a;
  text-decoration: underline;
}

/* FLOATING CHAT WIDGET */
.chat-widget-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #38c3a1; /* Cashify Teal color */
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s ease;
}

.chat-widget-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(46, 155, 122, 0.3);
}

.chat-widget-btn .chat-icon {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  padding-right: 10px;
}

.chat-widget-btn .chat-text strong {
  font-size: 0.85rem;
  line-height: 1.2;
}

.chat-widget-btn .chat-text span {
  font-size: 0.72rem;
  opacity: 0.9;
}