/* General Styles */
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #333;
}

a {
  color: #2B2D42;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #D10024;
}

/* Header Styles */
/* Top Header */
#top-header {
  background-color: #1E1F29;
  padding: 10px 0;
  font-size: 13px;
}

.top-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-links {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-links li a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.header-links li a:hover {
  color: #D10024;
}

.header-links li i {
  color: #D10024;
  font-size: 14px;
}

.currency-selector {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  background-color: rgba(255,255,255,0.1);
}

.currency-icon {
  color: #D10024;
  font-weight: bold;
}

/* Main Header */
#header {
  background-color: #15161D;
  padding: 20px 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-main-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-logo-wrapper {
  flex: 0 0 200px;
}

.logo img {
  max-height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

/* Search Bar */
.header-search-wrapper {
  flex: 1;
  max-width: 600px;
  margin: 0 auto;
}

.search-form {
  display: flex;
  gap: 10px;
}

.search-input-wrapper {
  flex: 1;
  position: relative;
  background-color: #fff;
  border-radius: 25px;
}

.search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #8D99AE;
}

.search-input {
  width: 100%;
  height: 45px;
  padding: 0 20px 0 40px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  background: transparent;
}

.search-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px #D10024;
}

.search-btn {
  background: #D10024;
  color: #fff;
  border: none;
  padding: 0 30px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  height: 45px;
}

.search-btn:hover {
  background: #ff1f1f;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(209,0,36,0.2);
}

/* Navigation Styles */
.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.main-nav li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 0;
  color: #2B2D42;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav li a i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.main-nav li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #D10024;
  transition: width 0.3s ease;
}

.main-nav li.active a,
.main-nav li a:hover {
  color: #D10024;
}

.main-nav li.active a::after,
.main-nav li a:hover::after {
  width: 100%;
}

.main-nav li a:hover i {
  transform: translateY(-2px);
}

.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: #2B2D42;
}

/* Mobile Styles */
@media (max-width: 991px) {
  .main-nav {
      display: none;
      position: fixed;
      top: 60px;
      left: 0;
      right: 0;
      background: white;
      flex-direction: column;
      gap: 0;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      z-index: 1000;
  }

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

  .main-nav li a {
      padding: 15px 20px;
  }

  .mobile-menu-toggle {
      display: block;
  }
}

#navigation {
  background: #fff;
  border-bottom: 2px solid #E4E7ED;
  border-top: 3px solid #D10024;
  position: relative;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-nav {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 15px;
  color: #2B2D42;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #D10024;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-nav li a:hover::after,
.main-nav li.active a::after {
  width: 100%;
}

.main-nav li.active a,
.main-nav li a:hover {
  color: #D10024;
}

/* Mobile Styles */
.mobile-contact,
.mobile-menu-toggle {
  display: none;
}

/* Responsive Design */
@media (max-width: 991px) {
  .contact-links {
      display: none;
  }

  .header-main-wrapper {
      gap: 15px;
  }

  .header-logo-wrapper {
      flex: 0 0 150px;
  }

  .search-btn {
      padding: 0 20px;
  }

  .mobile-contact {
      display: block;
  }

  .contact-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 45px;
      height: 45px;
      background: #D10024;
      color: #fff;
      border-radius: 50%;
      transition: all 0.3s ease;
  }

  .contact-btn:hover {
      background: #ff1f1f;
      transform: scale(1.1);
  }
}

@media (max-width: 767px) {
  .currency-selector {
      display: none;
  }

  .header-main-wrapper {
      flex-wrap: wrap;
  }

  .header-search-wrapper {
      order: 3;
      width: 100%;
      margin-top: 15px;
  }

  .mobile-menu-toggle {
      display: block;
      font-size: 24px;
      color: #fff;
      cursor: pointer;
  }

  .main-nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: #fff;
      flex-direction: column;
      padding: 10px 0;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }

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

  .main-nav li a {
      padding: 15px 20px;
  }
}

/* Product Cards */
.product {
  position: relative;
  margin: 15px 0;
  box-shadow: 0 0 0 1px #E4E7ED;
  transition: box-shadow 0.2s;
  background: #FFF;
  border-radius: 8px;
  overflow: hidden;
}

.product:hover {
  box-shadow: 0 0 6px #E4E7ED, 0 0 0 2px #D10024;
}

.product .product-img {
  position: relative;
  padding-top: 75%; /* 4:3 Aspect Ratio */
  overflow: hidden;
}

.product .product-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product .product-body {
  padding: 15px;
  text-align: center;
}

.product-name {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.product-price {
  color: #D10024;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.product .add-to-cart {
  padding: 15px;
  background: #1e1f29;
  text-align: center;
}

.add-to-cart-btn {
  display: inline-block;
  padding: 8px 20px;
  background-color: #D10024;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: all 0.2s;
}

.add-to-cart-btn:hover {
  background-color: #FFF;
  color: #D10024;
  border-color: #D10024;
}

/* Shop Categories Section */
.shop-categories {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.section-title {
  margin-bottom: 40px;
}

.section-title h2 {
  color: #2B2D42;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  color: #8D99AE;
  font-size: 16px;
}

.shop {
  position: relative;
  margin: 15px 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  background: #fff;
  height: 300px;
}

.shop:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.shop-img {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.shop-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.shop-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      180deg, 
      rgba(0,0,0,0.2) 0%,
      rgba(0,0,0,0.7) 100%
  );
  opacity: 0.8;
  transition: all 0.3s ease;
}

.shop:hover .shop-overlay {
  opacity: 0.9;
}

.shop-body {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  padding: 20px;
  color: #fff;
  text-align: center;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.shop:hover .shop-body {
  transform: translateY(0);
}

.shop-icon {
  margin-bottom: 15px;
}

.shop-icon i {
  font-size: 40px;
  color: #D10024;
  background: rgba(255,255,255,0.9);
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.3s ease;
}

.shop:hover .shop-icon i {
  transform: rotateY(180deg);
}

.shop-body h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.shop-body p {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  margin: 0;
}

.shop-action {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: rgba(0,0,0,0.8);
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.shop:hover .shop-action {
  transform: translateY(0);
}

.repair-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  background: #D10024;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.repair-btn:hover {
  background: #fff;
  color: #D10024;
}

.repair-btn i {
  font-size: 16px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .shop {
      height: 250px;
  }
  
  .shop-body {
      bottom: 60px;
  }
  
  .shop-icon i {
      width: 60px;
      height: 60px;
      line-height: 60px;
      font-size: 30px;
  }
}

@media (max-width: 767px) {
  .section-title h2 {
      font-size: 28px;
  }
  
  .shop {
      height: 220px;
  }
  
  .shop-body h3 {
      font-size: 18px;  
  }
  
  .shop-body {
      padding: 15px;
  }
}

/* Product Section Styles */
.products-section {
  padding: 60px 0;
  background: #f8f9fa;
}

/* Section Title */
.products-section-title {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.products-section-heading {
  font-size: 32px;
  color: #2B2D42;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.products-section-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #D10024;
}

/* Filter Styles */
.products-filter-section {
  margin-bottom: 40px;
}

.products-filter-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

/* Main Category Filter */
.products-tab-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.products-tab-nav li a {
  display: inline-block;
  padding: 10px 20px;
  color: #2B2D42;
  font-weight: 500;
  background-color: #fff;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.products-tab-nav li a:hover,
.products-tab-nav li a.active {
  background-color: #D10024;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(209, 0, 36, 0.2);
}

/* Dropdown Filters */
.products-filter-dropdown {
  position: relative;
  min-width: 200px;
}

.products-form-select {
  width: 100%;
  padding: 12px 20px;
  border: 1px solid #E4E7ED;
  border-radius: 25px;
  background-color: #fff;
  color: #2B2D42;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%232B2D42' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) center;
  padding-right: 40px;
}

.products-form-select:hover {
  border-color: #D10024;
  box-shadow: 0 2px 5px rgba(209, 0, 36, 0.1);
}

.products-form-select:focus {
  outline: none;
  border-color: #D10024;
  box-shadow: 0 0 0 3px rgba(209, 0, 36, 0.1);
}

/* Product Card Styles */
.product-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  transform: translateY(0);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.product-card-img-wrapper {
  position: relative;
  padding-top: 75%;
  overflow: hidden;
}

.product-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-img {
  transform: scale(1.1);
}

.product-card-body {
  padding: 20px;
  text-align: center;
}

.product-card-category {
  font-size: 13px;
  color: #8D99AE;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.product-card-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.product-card-title a {
  color: #2B2D42;
  transition: color 0.3s ease;
}

.product-card-title a:hover {
  color: #D10024;
}

.product-card-price {
  color: #D10024;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
}

.product-card-action {
  padding: 15px 20px;
  background: #f8f9fa;
  border-top: 1px solid #E4E7ED;
  text-align: center;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.product-card:hover .product-card-action {
  transform: translateY(0);
}

.product-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 25px;
  background-color: #D10024;
  color: #FFF;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.product-card-btn:hover {
  background-color: #ff1f1f;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(209, 0, 36, 0.2);
}

.product-card-btn i {
  font-size: 16px;
}

/* Animation Classes */
@keyframes productCardFadeIn {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.product-card {
  animation: productCardFadeIn 0.6s ease backwards;
}


/* Responsive Styles */
@media (max-width: 991px) {
  .products-filter-group {
      flex-direction: column;
      align-items: stretch;
  }

  .products-filter-dropdown {
      width: 100%;
  }
}

@media (max-width: 767px) {
  .products-section-heading {
      font-size: 24px;
  }

  .product-card-title {
      font-size: 14px;
  }
}

@media (max-width: 480px) {
  .products-tab-nav {
      justify-content: flex-start;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 10px;
  }
}
/* Hot Deal Section Styles */
#hot-deal {
  padding: 80px 0;
  margin: 40px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

#hot-deal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('path-to-your-pattern.png') repeat;
  opacity: 0.1;
  animation: backgroundMove 20s linear infinite;
}

.hot-deal-wrapper {
  position: relative;
  z-index: 1;
}

.hot-deal-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
}

/* Badge Styles */
.section-badge {
  display: inline-block;
  margin-bottom: 20px;
  animation: bounce 2s infinite;
}

.badge-text {
  background: #D10024;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(209, 0, 36, 0.2);
}

/* Title Styles */
.animated-title {
  font-size: 36px;
  font-weight: 800;
  color: #2B2D42;
  margin-bottom: 25px;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.highlight {
  color: #D10024;
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #D10024;
  transform: scaleX(0);
  transform-origin: right;
  animation: lineWidth 0.8s ease forwards 0.8s;
}

/* Subtitle Styles */
.subtitle {
  font-size: 20px;
  color: #8D99AE;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards 0.4s;
}

.tech-icon {
  color: #D10024;
  font-size: 24px;
  animation: rotate 4s linear infinite;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards 0.6s;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D10024;
  font-size: 20px;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background: #D10024;
  color: white;
  transform: rotateY(180deg);
}

/* CTA Button */
.cta-container {
  margin-top: 40px;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards 0.8s;
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #D10024;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(209, 0, 36, 0.2);
}

.cta-button:hover {
  background: #ff1f1f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(209, 0, 36, 0.3);
}

.button-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-icon {
  animation: shake 2s infinite;
}

/* Animations */
@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes lineWidth {
  from {
      transform: scaleX(0);
  }
  to {
      transform: scaleX(1);
  }
}

@keyframes rotate {
  from {
      transform: rotate(0deg);
  }
  to {
      transform: rotate(360deg);
  }
}

@keyframes bounce {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-10px);
  }
}

@keyframes shake {
  0%, 100% {
      transform: rotate(0deg);
  }
  2%, 98% {
      transform: rotate(2deg);
  }
  4%, 96% {
      transform: rotate(-2deg);
  }
}

@keyframes backgroundMove {
  from {
      background-position: 0 0;
  }
  to {
      background-position: 100% 100%;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .animated-title {
      font-size: 28px;
  }

  .subtitle {
      font-size: 16px;
  }

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

  .feature-item {
      padding: 15px;
  }
}

@media (max-width: 480px) {
  .animated-title {
      font-size: 24px;
  }

  .cta-button {
      padding: 12px 30px;
      font-size: 14px;
  }
}

/* Responsive Design */
@media only screen and (max-width: 991px) {
  .header-logo {
      text-align: center;
      margin-bottom: 15px;
  }
  
  .header-ctn {
      justify-content: center;
  }
  
  .main-nav {
      display: none;
  }
  
  #responsive-nav.active {
      display: block;
  }
  
  .main-nav > li {
      display: block;
  }
  
  .main-nav > li > a {
      padding: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .shop .shop-body h3 {
      font-size: 20px;
  }
  
  .product-name {
      font-size: 13px;
  }
  
  .header-search form {
      margin-top: 15px;
  }
}

@media only screen and (max-width: 480px) {
  .header-search .search-btn {
      width: 80px;
  }
  
  .shop .shop-body {
      left: 15px;
  }
  
  #hot-deal h2 {
      font-size: 20px;
  }
}



/* Responsive Design */
@media (max-width: 768px) {
  .filters-group {
      flex-direction: column;
      align-items: stretch;
  }

  .filter-dropdown {
      width: 100%;
  }

  .section-tab-nav {
      justify-content: center;
  }
}

/* Active Filter Indicators */
.filter-active {
  position: relative;
}

.filter-active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #D10024;
}

/* Footer Styles */
#footer {
  background: #15161D;
  color: #B9BABC;
  padding-top: 40px;
}

/* Top Footer */
.footer {
  margin-bottom: 30px;
}

.footer-title {
  color: #FFF;
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #D10024;
}

.footer p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Footer Links */
.footer-links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li:last-child {
  margin-bottom: 0;
}

.footer-links li a {
  color: #B9BABC;
  font-size: 14px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.footer-links li a:hover {
  color: #D10024;
  padding-left: 5px;
}

.footer-links li a i {
  color: #D10024;
  margin-right: 10px;
  font-size: 14px;
  width: 20px;
  text-align: center;
}

/* Contact Info */
.footer .contact-info {
  margin-top: 20px;
}

.footer .contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.footer .contact-info i {
  margin-top: 4px;
}

/* Bottom Footer */
#bottom-footer {
  background: #1E1F29;
  padding: 20px 0;
  margin-top: 40px;
}

.copyright {
  color: #B9BABC;
  font-size: 13px;
}

.copyright a {
  color: #D10024;
  font-weight: 500;
}

.copyright a:hover {
  text-decoration: underline;
}

/* Social Media Icons (if needed) */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  color: #FFF;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: #D10024;
  transform: translateY(-3px);
}

/* Responsive Design */
@media only screen and (max-width: 991px) {
  .footer {
      margin-bottom: 40px;
  }
  
  .footer:last-child {
      margin-bottom: 0;
  }
}

@media only screen and (max-width: 767px) {
  #footer {
      padding-top: 30px;
  }
  
  .footer-title {
      font-size: 16px;
      margin-bottom: 15px;
  }
  
  .footer p {
      font-size: 13px;
  }
  
  .footer-links li a {
      font-size: 13px;
  }
}

@media only screen and (max-width: 480px) {
  .col-xs-6 {
      width: 100%;
  }
  
  .footer {
      margin-bottom: 30px;
  }
  
  #bottom-footer {
      padding: 15px 0;
  }
  
  .copyright {
      font-size: 12px;
      text-align: center;
  }
}

/* Optional: Animation for Links */
@keyframes linkHover {
  0% {
      transform: translateX(0);
  }
  50% {
      transform: translateX(5px);
  }
  100% {
      transform: translateX(0);
  }
}

.footer-links li a:hover {
  animation: linkHover 0.3s ease;
}