/* ==================== FOOTER ==================== */

.footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 80px 40px 0;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,#007bff,#00d4ff,#007bff);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ==================== GRID ==================== */

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ==================== BRAND ==================== */

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo img {
  width: 50px;
  border-radius: 8px;
}

.footer-logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 300px;
}

/* ==================== SOCIAL ==================== */

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.footer-social a svg {
  width: 20px;
  height: 20px;
  color: #94a3b8;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #007bff;
  border-color: #007bff;
  transform: translateY(-3px);
}

.footer-social a:hover svg {
  color: white;
}

/* ==================== TITLES ==================== */

.footer-links h4,
.footer-contact h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #007bff;
  border-radius: 2px;
}

/* ==================== LINKS ==================== */

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links li a::before {
  content: "→";
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #007bff;
}

.footer-links li a:hover {
  color: #007bff;
  padding-left: 20px;
}

.footer-links li a:hover::before {
  left: 0;
  opacity: 1;
}

/* ==================== CONTACT INFO ==================== */

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-contact svg {
  width: 20px;
  height: 20px;
  color: #007bff;
  flex-shrink: 0;
}

.footer-contact a,
.footer-contact span {
  color: #94a3b8;
  text-decoration: none;
  transition: 0.3s;
}

.footer-contact a:hover {
  color: #007bff;
}

/* ==================== BOTTOM BAR ==================== */

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  font-size: 0.9rem;
}

.footer-bottom p {
  color: #64748b;
}

.footer-legal {
  display: flex;
  gap: 30px;
}

.footer-legal a {
  color: #94a3b8;
  text-decoration: none;
  transition: 0.3s;
}

.footer-legal a:hover {
  color: #007bff;
}

/* ==================== RESPONSIVE ==================== */

@media (max-width:1024px){

.footer-main{
grid-template-columns:1fr 1fr;
gap:40px;
}

}

@media (max-width:768px){

.footer{
padding:60px 20px 0;
}

.footer-main{
grid-template-columns:1fr;
gap:40px;
text-align:center;
}

.footer-logo{
justify-content:center;
}

.footer-description{
max-width:100%;
}

.footer-social{
justify-content:center;
}

.footer-links h4::after,
.footer-contact h4::after{
left:50%;
transform:translateX(-50%);
}

.footer-contact li{
justify-content:center;
}

.footer-bottom{
flex-direction:column;
gap:20px;
text-align:center;
}

.footer-legal{
gap:20px;
}

}