/* ========================================
   Modern Footer Styles
   ======================================== */

.cs_modern_footer {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cs_modern_footer::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cs_modern_footer::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Footer Main Section */
.cs_footer_main {
  padding: 80px 0 50px;
  position: relative;
  z-index: 2;
}

.cs_footer_grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
}

/* Footer Brand Column */
.cs_footer_brand {
  padding-right: 30px;
}

.cs_footer_logo_wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.cs_footer_logo {
  width: 60px;
  height: auto;
  border-radius: 8px;
}

.cs_footer_logo_text {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}

.cs_footer_description {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

/* Social Media Section */
.cs_footer_social_section {
  margin-top: 25px;
}

.cs_social_title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  letter-spacing: 0.3px;
}

.cs_footer_social_btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cs_social_btn {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cs_social_btn:hover {
  background: linear-gradient(135deg, #1e40af 0%, #22c55e 100%);
  border-color: #22c55e;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.4);
}

.cs_social_btn:nth-child(2):hover {
  background: #1d9bf0;
  border-color: #1d9bf0;
  box-shadow: 0 8px 20px rgba(29, 155, 240, 0.4);
}

.cs_social_btn:nth-child(3):hover {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(221, 42, 123, 0.4);
}

.cs_social_btn:nth-child(4):hover {
  background: #0077b5;
  border-color: #0077b5;
  box-shadow: 0 8px 20px rgba(0, 119, 181, 0.4);
}

.cs_social_btn:nth-child(5):hover {
  background: #ff0000;
  border-color: #ff0000;
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

/* Footer Widget Titles */
.cs_footer_widget_title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.cs_footer_widget_title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #1e40af 0%, #22c55e 100%);
  border-radius: 2px;
}

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

.cs_footer_links li {
  margin-bottom: 12px;
}

.cs_footer_links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.cs_footer_links a i {
  font-size: 12px;
  color: #22c55e;
  transition: all 0.3s ease;
}

.cs_footer_links a:hover {
  color: #fff;
  padding-left: 8px;
}

.cs_footer_links a:hover i {
  transform: translateX(3px);
}

/* Footer Products Section */
.cs_footer_products {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.cs_product_category_group {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 18px;
}

.cs_product_category_title {
  font-size: 15px;
  font-weight: 700;
  color: #22c55e;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cs_product_category_title i {
  font-size: 16px;
}

.cs_product_category_group .cs_footer_links li {
  margin-bottom: 10px;
}

.cs_product_category_group .cs_footer_links a {
  font-size: 14px;
}

/* Footer Contact Info */
.cs_footer_contact_info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cs_contact_item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.cs_contact_icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #1e40af 0%, #22c55e 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(30, 64, 175, 0.3);
}

.cs_contact_text {
  flex: 1;
}

.cs_contact_label {
  font-size: 13px;
  font-weight: 700;
  color: #22c55e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 6px;
}

.cs_contact_text p {
  margin: 0 0 5px 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.cs_contact_text a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
}

.cs_contact_text a:hover {
  color: #22c55e;
}

/* Footer Bottom */
.cs_footer_bottom {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 25px 0;
  position: relative;
  z-index: 2;
}

.cs_footer_bottom_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cs_copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cs_copyright strong {
  color: #fff;
  font-weight: 700;
}

.cs_copyright i.fa-heart {
  color: #ef4444;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.cs_footer_bottom_links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cs_footer_bottom_links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.cs_footer_bottom_links a:hover {
  color: #22c55e;
}

.cs_separator {
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1199px) {
  .cs_footer_grid {
    grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
    gap: 40px;
  }
  
  .cs_footer_brand {
    padding-right: 20px;
  }
}

@media (max-width: 991px) {
  .cs_footer_grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  
  .cs_footer_brand {
    padding-right: 0;
  }
  
  .cs_footer_main {
    padding: 60px 0 40px;
  }
}

@media (max-width: 767px) {
  .cs_footer_grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .cs_footer_main {
    padding: 50px 0 30px;
  }
  
  .cs_footer_widget_title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .cs_footer_bottom_content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .cs_copyright {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .cs_footer_bottom_links {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .cs_footer_logo_wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .cs_footer_logo_text {
    font-size: 20px;
  }
  
  .cs_footer_description {
    font-size: 14px;
  }
  
  .cs_footer_main {
    padding: 40px 0 25px;
  }
  
  .cs_social_btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .cs_contact_icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .cs_copyright {
    font-size: 13px;
  }
  
  .cs_footer_bottom_links a {
    font-size: 13px;
  }
}

