:root {
  --orange: #f2574d;
  --orange-dark: #cb1f15;
  --dark: #000000;
  --dark-lighter: #000000;
  --gray: #6c757d;
  --light-gray: #f8f9fa;
  --white: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  line-height: 1.6;
}

/* Ensure Bootstrap Icons display correctly */
.bi::before {
  font-family: "bootstrap-icons" !important;
  display: inline-block;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: -0.125em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* Top Bar - Red */
.top-bar {
  background: linear-gradient(135deg, #f2574d 0%, #cb1f15 100%);
  color: var(--white);
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-item i {
  color: var(--white);
}

.top-bar-item a:hover {
  opacity: 0.8;
}

.top-bar-badge {
  color: var(--white);
  font-weight: 500;
}

/* Menu Bar - Black */
.menu-bar {
  background: var(--dark);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.menu-bar-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.menu-bar .logo img {
  max-height: 60px;
  width: auto;
}

/* Main Content */
main {
  min-height: 50vh;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark) 0%, #0d0d0d 100%);
  color: var(--white);
  padding-top: 3rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
}

.footer a:hover {
  color: var(--orange);
}

.footer-main {
  padding-bottom: 2rem;
}

.footer-logo img {
  max-height: 70px;
  margin-bottom: 1rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.social-icons {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--orange);
  transform: translateY(-3px);
}

.footer-heading {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  position: relative;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background: var(--orange);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.contact-item i {
  color: var(--orange);
  margin-top: 0.25rem;
}

.security-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.security-badges img {
  height: 35px;
  width: auto;
  transition: opacity 0.3s ease;
}

.security-badges img:hover {
  opacity: 0.8;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  margin-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
  .top-bar-content {
    justify-content: center;
    text-align: center;
  }

  .top-bar-badge {
    display: none;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}

