/* styles.css for Femco Filters */

:root {
  --primary-blue: #006699;
  --light-blue: #e8f0fe;
  --dark-gray: #3c4043;
  --medium-gray: #5f6368;
  --light-gray: #f8f9fa;
}

body {
  background-color: #f4f9fd;
  color: #2c3e50;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
}

/* Header */
header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  flex-wrap: wrap;
}

.logo img {
  height: 60px;
}

.menu-toggle {
  display: none;
  font-size: 30px;
  background: none;
  border: none;
  color: var(--dark-gray);
  cursor: pointer;
}

nav#main-nav {
  display: flex;
}

nav#main-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav#main-nav ul li a {
  text-decoration: none;
  color: var(--dark-gray);
  font-weight: 500;
}

nav#main-nav ul li a:hover,
nav#main-nav ul li.selmenu a {
  color: var(--primary-blue);
  font-weight: 600;
}

/* Mobile Navigation */
@media (max-width: 991px) {
  .menu-toggle {
    display: block;
  }

  nav#main-nav {
    display: none;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  nav#main-nav.active {
    display: flex;
  }

  nav#main-nav ul {
    flex-direction: column;
    gap: 10px;
    padding: 10px 20px;
  }
}

/* Sidebar */
.sidebar {
  background: #e9f3fb;
  border-radius: 12px;
  padding: 20px;
  color: #1a3c7c;
}

.sidebar h3 {
  color: var(--primary-blue);
  font-size: 16px;
  margin-bottom: 15px;
}

.left-nav-ulist2 {
  list-style: none;
  padding: 0;
}

.left-nav-ulist2 li a {
  display: block;
  color: #1a3c7c;
  padding: 10px 15px;
  border-radius: 6px;
  text-decoration: none;
}

.left-nav-ulist2 li a:hover {
  background-color: #e9f2ff;
}

.left-nav-ulist2 li.selmenu a {
  background-color: #d6ecff;
  font-weight: bold;
  color: #004a75 !important;
  border-left: 4px solid #006699;
}

/* Product & Table */
.card-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
  margin-bottom: 30px;
}

.product-image img {
  max-width: 100%;
  border-radius: 8px;
}

.table-product th {
  background: #006699;
  color: #fff;
  padding: 10px;
  text-align: left;
}

.table-product td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.bor-bottom-right {
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.bor-btm {
  border-bottom: 1px solid #ccc;
}

.bluefont {
  color: #006699;
  font-weight: bold;
}

/* Contact and Footer */
.contact-card {
  background: var(--light-blue);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.contact-card .phone {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-gray);
}

footer {
  background-color: var(--dark-gray);
  color: white;
  padding: 40px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.footer-column h3 {
  color: white;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #bdc1c6;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links img {
  height: 24px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.social-links img:hover {
  opacity: 1;
}

.copyright {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #5f6368;
  color: #bdc1c6;
  font-size: 14px;
}

.quick-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
}

.quick-contact img {
  height: 60px;
  transition: transform 0.3s;
}

.quick-contact img:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
  }

  .main-content {
    flex-direction: column;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
