/* ============================================
   HEADER & FOOTER STYLES - INDUSTRIAL THEME
   ============================================ */

:root {
  --industrial-dark: #1a1a1a;
  --industrial-blue: #5173a7;
  --industrial-accent: #3c8beb;
  --industrial-gray: #f4f4f4;
  --text-color: #333;
  --border-color: #e0e0e0;
}

body {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  color: var(--text-color);
}

/* Top Bar Styles */
.strip {
  width: 100%;
  background-color: var(--industrial-dark);
  color: #ccc;
  font-size: 13px;
  padding: 5px 0;
  border-bottom: 3px solid var(--industrial-accent);
}

.strip a {
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  margin-right: 20px;
}

.strip a:hover {
  color: #fff;
}

.strip i {
  color: var(--industrial-accent);
  margin-right: 5px;
}

/* Header Main Section */
.header-main {
  background-color: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--industrial-blue);
  letter-spacing: 1px;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}

.logo-tagline {
  font-size: 12px;
  color: #666;
  font-weight: 400;
  letter-spacing: 0.5px;
  display: block;
}

/* Login Form Styles */
.login-form-container {
  display: flex;
  align-items: center;
}

.login-form-inline {
  display: flex;
  gap: 10px;
  align-items: center;
}

.login-form-inline .form-control {
  border-radius: 0;
  border: 1px solid #ddd;
  padding: 5px 10px;
  height: 38px;
  font-size: 14px;
  background: #f9f9f9;
}

.login-form-inline .form-control:focus {
  border-color: var(--industrial-blue);
  box-shadow: none;
  background: #fff;
}

.btn-industrial {
  background-color: var(--industrial-blue);
  color: #fff;
  border-radius: 0;
  border: none;
  padding: 8px 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 13px;
  height: 38px;
  transition: all 0.3s ease;
}

.btn-industrial:hover {
  background-color: #3a537a;
  color: #fff;
}

.btn-signup {
  background-color: transparent;
  color: var(--industrial-blue);
  border: 1px solid var(--industrial-blue);
  display: flex;
  align-items: center;
  gap: 5px;
}

.btn-signup:hover {
  background-color: var(--industrial-blue);
  color: #fff;
  text-decoration: none;
}

/* Navigation Menu */
.ftco-navbar-light {
  background: var(--industrial-dark) !important;
  padding: 0;
  margin-top: 0;
}

.ftco-navbar-light .container-fluid {
  display: flex;
  justify-content: center;
}

.ftco-navbar-light .navbar-nav {
  display: flex;
  justify-content: center;
  width: 100%;
}

.ftco-navbar-light .navbar-collapse {
  justify-content: center;
}

.ftco-navbar-light .navbar-nav > .nav-item > .nav-link {
  color: #bbb;
  font-size: 14px;
  padding: 15px 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.ftco-navbar-light .navbar-nav > .nav-item > .nav-link:hover,
.ftco-navbar-light .navbar-nav > .nav-item.active > .nav-link {
  color: #fff;
  background-color: #333;
  border-bottom: 3px solid var(--industrial-accent);
}

/* Notification Bell */
.notification-bell {
  position: relative;
  color: var(--industrial-dark);
  font-size: 20px;
  margin-right: 15px;
  cursor: pointer;
  transition: color 0.3s;
}

.notification-bell:hover {
  color: var(--industrial-accent);
}

.notification-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--industrial-accent);
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 11px;
  font-weight: bold;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .header-main {
    padding: 10px 0;
  }

  .login-form-container {
    width: 100%;
    margin-top: 15px;
    justify-content: center;
  }

  .login-form-inline {
    flex-direction: column;
    width: 100%;
  }

  .login-form-inline .form-control,
  .login-form-inline .btn {
    width: 100%;
  }

  .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1);
    border-radius: 0;
  }

  .ftco-navbar-light .navbar-nav > .nav-item > .nav-link {
    padding: 10px;
    border-bottom: 1px solid #333;
  }
}

@media (max-width: 767px) {
  .strip {
    text-align: center;
  }

  .strip a {
    display: block;
    float: none;
    margin: 5px 0;
  }

  .logo-container {
    /* justify-content: center; - Changed for mobile side sheet layout */
  }

  .tft {
    position: static !important;
    margin: 0 !important;
  }
}

/* User Profile Section */
.user-profile-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-welcome {
  font-size: 14px;
  font-weight: 500;
  color: #555;
}

.user-welcome span {
  color: var(--industrial-blue);
  font-weight: 700;
}

/* ============================================
   MOBILE SIDE SHEET (OFF-CANVAS) STYLES
   ============================================ */
.mobile-side-sheet {
    position: fixed;
    top: 0;
    right: -280px; /* Hidden by default */
    width: 280px;
    height: 100vh;
    background-color: #fff;
    z-index: 2000;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.mobile-side-sheet.open {
    right: 0;
}

.sheet-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

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

.sheet-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f9f9f9;
}

.sheet-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sheet-logo img {
    width: 40px;
    height: auto;
    border-radius: 4px;
}

.close-sheet {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.sheet-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

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

.mobile-nav-list li {
    margin-bottom: 5px;
}

.mobile-nav-list li a {
    display: block;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.2s;
    font-size: 15px;
}

.mobile-nav-list li a:hover,
.mobile-nav-list li.active a {
    background-color: #f0f4f8;
    color: var(--industrial-blue);
    font-weight: 600;
}

.mobile-nav-list li a i {
    width: 25px;
    text-align: center;
    color: var(--industrial-blue);
    margin-right: 5px;
}

/* ============================================
   FOOTER STYLES - INDUSTRIAL THEME
   ============================================ */

.footer-industrial {
  background-color: var(--industrial-dark);
  font-family: "Roboto", sans-serif;
}

.footer-top {
  background-color: #252525;
  border-bottom: 1px solid #333;
}

.footer-heading {
  color: #fff;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  font-size: 16px;
}

.footer-divider {
  width: 50px;
  height: 2px;
  background-color: var(--industrial-accent);
  margin: 10px auto;
}

.footer-text {
  color: #aaa;
  font-size: 14px;
  line-height: 1.6;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s ease, padding-left 0.3s ease;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--industrial-accent);
  padding-left: 5px;
}

.footer-contact li {
  color: #aaa;
  margin-bottom: 12px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-contact li i {
  color: var(--industrial-accent);
  width: 20px;
}

.footer-contact li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact li a:hover {
  color: var(--industrial-accent);
}

.footer-bottom {
  background-color: #111;
  color: #777;
  font-size: 13px;
  border-top: 1px solid #222;
}

.footer-bottom a {
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #fff;
}

.footer-social a {
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.footer-social a:hover {
  color: var(--industrial-accent) !important;
  transform: translateY(-3px);
}

@media (min-width: 768px) {
  .footer-contact li {
    justify-content: flex-start;
  }
  .footer-divider {
    margin: 10px 0;
  }
}
