/* Footer Styles 
    :root {
      --background: #ffffff;
      --foreground: #0f172a;
      --primary: #3b82f6;
      --primary-light: #60a5fa;
      --secondary: #8b5cf6;
      --secondary-light: #a78bfa;
      --primary-foreground: #ffffff;
      --muted: #f1f5f9;
      --muted-foreground: #64748b;
      --border: #e2e8f0;
      --hero-bg: #0f172a;
      --hero-foreground: #f8fafc;
      --destructive: #ef4444;
      --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    }*/
    .footer {
      background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
      color: #f8fafc;
      padding: 64px 0 0;
    }

    .footer-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    @media (min-width: 768px) {
      .footer-content {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .footer-content {
        grid-template-columns: 2fr 1fr 1fr 2fr;
      }
    }

    .footer-brand h3 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 16px;
      color: #f8fafc;
    }

    .footer-brand p {
      color: #94a3b8;
      font-size: 14px;
      line-height: 1.8;
      margin-bottom: 24px;
    }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 16px;
      color: #94a3b8;
      font-size: 14px;
    }

    .footer-contact-item svg {
      width: 20px;
      height: 20px;
      color: var(--primary);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .footer-links h4 {
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #f8fafc;
      margin-bottom: 20px;
    }

    .footer-links ul {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      color: #94a3b8;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--primary);
    }

    .footer-newsletter h4 {
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #f8fafc;
      margin-bottom: 12px;
    }

    .footer-newsletter p {
      color: #94a3b8;
      font-size: 14px;
      margin-bottom: 20px;
    }

    .newsletter-form {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    @media (min-width: 640px) {
      .newsletter-form {
        flex-direction: row;
      }
    }

    .newsletter-input {
      flex: 1;
      padding: 12px 16px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      background-color: rgba(255, 255, 255, 0.05);
      color: #f8fafc;
      font-size: 14px;
      outline: none;
      transition: border-color 0.2s, background-color 0.2s;
    }

    .newsletter-input::placeholder {
      color: #64748b;
    }

    .newsletter-input:focus {
      border-color: var(--primary);
      background-color: rgba(255, 255, 255, 0.08);
    }

    .newsletter-btn {
      padding: 12px 24px;
      background-color: var(--primary);
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.2s;
      white-space: nowrap;
    }

    .newsletter-btn:hover {
      background-color: #2563eb;
    }

    .social-links {
      display: flex;
      gap: 12px;
      margin-top: 24px;
    }

    .social-link {
      width: 40px;
      height: 40px;
      border-radius: 8px;
      background-color: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #94a3b8;
      text-decoration: none;
      transition: background-color 0.2s, color 0.2s, border-color 0.2s;
    }

    .social-link:hover {
      background-color: var(--primary);
      color: white;
      border-color: var(--primary);
    }

    .social-link svg {
      width: 20px;
      height: 20px;
    }

   /* .footer-bottom {
      padding: 24px 0;
      display: flex;
      flex-direction: column;
      gap: 16px;
      align-items: center;
      text-align: center;
    }*/

  .footer-bottom {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center ;
  text-align: center;
}

   /* @media (min-width: 768px) {
      .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
      }
    }*/

    @media (min-width: 768px) {
      .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
  }
}


    .footer-copyright {
      color: #64748b;
      font-size: 14px;
    }

    .footer-legal {
      display: flex;
      gap: 24px;
    }

    .footer-legal a {
      color: #64748b;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.2s;
    }

    .footer-legal a:hover {
      color: var(--primary);
    }


        /* Footer */
    .footer {
      background-color: #0f172a;
      color: #f8fafc;
      padding: 64px 0 24px;
    }

    .footer-grid {
      display: grid;
      gap: 32px;
      margin-bottom: 48px;
    }

    @media (min-width: 768px) {
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .footer-grid {
        grid-template-columns: 2fr repeat(3, 1fr);
      }
    }

    .footer-brand h3 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 12px;
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .footer-brand p {
      color: #94a3b8;
      margin-bottom: 24px;
    }

    .footer-social {
      display: flex;
      gap: 12px;
    }

    .social-link {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid #334155;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #94a3b8;
      transition: all 0.3s ease;
    }

    .social-link:hover {
      background: var(--gradient-primary);
      border-color: transparent;
      color: white;
      transform: translateY(-3px);
    }

    .social-link svg {
      width: 18px;
      height: 18px;
    }

    .footer-column h4 {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 16px;
      color: #f8fafc;
    }

    .footer-column ul {
      list-style: none;
    }

    .footer-column li {
      margin-bottom: 12px;
    }

    .footer-column a {
      color: #94a3b8;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.2s;
    }

    .footer-column a:hover {
      color: var(--primary);
    }

    .footer-bottom {
      border-top: 1px solid #1e293b;
      padding-top: 24px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      align-items: center;
    }

    @media (min-width: 768px) {
      .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
      }
    }

    .footer-bottom p {
      font-size: 14px;
      color: #64748b;
    }

    .footer-links {
      display: flex;
      gap: 20px;
    }

    .footer-links a {
      font-size: 14px;
      color: #64748b;
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--primary);
    }

     /* Footer Animations */
    .social-link {
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .social-link:hover {
      transform: translateY(-5px) scale(1.1);
    }

    .footer-links a {
      position: relative;
      display: inline-block;
    }

    .footer-links a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--primary);
      transition: width 0.3s ease;
    }

    .footer-links a:hover::after {
      width: 100%;
    }