/* 🔁 Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background: #f4f4f4;
  color: #333;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

/* 🔹 Top Bar */
.top-bar {
  background: #c70039;
  color: #fff;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  flex-wrap: wrap;
}
.top-left,
.top-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.top-left a,
.top-right a {
  margin-right: 15px;
  color: #fff;
}
.top-left i,
.top-right i {
  margin-right: 6px;
}
.top-left a:hover,
.top-right a:hover {
  text-decoration: underline;
}

/* 🔸 Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
}
.logo {
  flex: 1;
}
.logo img {
  height: 42px;
}

/* 🧭 Nav Links */
.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: auto;
}
.nav-links li {
  position: relative;
}
.nav-links li a {
  padding: 10px 14px;
  font-weight: 500;
  font-size: 15px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links li a:hover {
  background-color: #c70039;
  color: #fff;
}
.nav-links li a:hover .small-icon {
  color: yellow;
}

/* Yellow arrow on dropdown click (mobile) */
.nav-links li a.clicked .small-icon {
  color: yellow;
}

/* ⏬ Dropdown */
.dropdown .submenu {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  background: #fff;
  min-width: 200px;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
}
.dropdown:hover .submenu {
  display: block;
}
.dropdown .submenu li a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: #333;
}
.dropdown .submenu li a:hover {
  background: #c70039;
  color: #fff;
}
.small-icon {
  font-size: 12px;
  transition: 0.3s ease;
}

/* 📱 Mobile Responsive */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #c70039;
  margin-left: auto;
}
@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    display: none;
    border-top: 1px solid #ddd;
    align-items: center;
    text-align: center;
    z-index: 1001;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    width: 100%;
    padding: 12px;
    justify-content: center;
  }

  .dropdown .submenu {
    position: static;
    display: none;
    box-shadow: none;
    background: #f9f9f9;
    border-radius: 0;
    margin-top: 8px;
  }

  .dropdown .submenu li a {
    padding: 10px 12px;
  }

  .dropdown .submenu.show {
    display: block;
  }

  .top-bar {
    flex-direction: column;
    text-align: center;
  }
  .top-left,
  .top-right {
    justify-content: center;
    margin-bottom: 6px;
  }
}
/* 🔁 Animated Working Hours Line - Desktop Only */
.working-hours {
  display: inline-block;
  color: #fff;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  animation: flickerSlide 4s ease-in-out infinite;
}

/* 🔄 Animation Keyframes */
@keyframes flickerSlide {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  20% {
    opacity: 1;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(0);
  }
  70% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}

.site-footer {
  background: #111;
  color: #eee;
  padding: 40px 20px 10px;
  font-size: 15px;
  line-height: 1.8;
}
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}
.footer-column {
  flex: 1 1 280px;
}
.footer-logo {
  max-width: 160px;
  margin-bottom: 15px;
}
.footer-column h4 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 18px;
}
.footer-column ul {
  list-style: none;
}
.footer-column ul li {
  margin-bottom: 8px;
}
.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s ease;
}
.footer-column ul li a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-column p i {
  color: #c70039;
  margin-right: 8px;
}
.footer-social a {
  display: inline-block;
  color: #ccc;
  margin-right: 10px;
  font-size: 16px;
  transition: 0.3s;
}
.footer-social a:hover {
  color: #c70039;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 14px;
  color: #999;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-column {
    flex: 1 1 100%;
  }
}
