/* ============================================
   PREMIUM FOOTER - Desktop (Matches Mobile Layout)
   ============================================ */

@media (min-width: 769px) {
  /* Main Footer Container - Matches Get Listed Page */
  body .footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #151515 50%, #0d0d0d 100%) !important;
    position: relative;
    padding: 60px 40px 30px;
    overflow: hidden;
  }

  /* Elegant top border with glow */
  .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
  }

  /* Subtle ambient glow */
  .footer::after {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(229, 57, 53, 0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  /* Footer Container - Centered like mobile */
  .footer .container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  /* Main Grid Layout - Stacked vertically */
  .footer-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
  }

  /* Brand Section - Clean & Simple */
  .footer-brand {
    text-align: center;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 12px 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .footer-logo img {
    height: 50px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
  }

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

  .footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    max-width: 380px;
    margin: 0 auto;
  }

  /* Accordion Navigation */
  .footer-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .footer-accordion-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }

  .footer-accordion-item:hover {
    border-color: rgba(229, 57, 53, 0.2);
    box-shadow: 0 4px 30px rgba(229, 57, 53, 0.1);
  }

  .footer-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    background: transparent;
    transition: background 0.2s ease;
  }

  .footer-accordion-header:hover {
    background: rgba(255, 255, 255, 0.02);
  }

  .footer-accordion-title {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .footer-accordion-title i {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
  }

  .footer-accordion-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
  }

  .footer-accordion-item.active .footer-accordion-icon {
    transform: rotate(180deg);
    color: var(--primary);
  }

  .footer-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .footer-accordion-item.active .footer-accordion-content {
    max-height: 400px;
    padding: 0 24px 20px;
  }

  /* 2-Column Grid Links */
  .footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.03);
  }

  .footer-link:hover {
    background: var(--primary);
    color: white;
    transform: translateX(4px);
  }

  .footer-link i {
    font-size: 12px;
    color: var(--primary);
    transition: color 0.2s ease;
  }

  .footer-link:hover i {
    color: white;
  }

  /* Premium Contact Card */
  .footer-contact-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
  }

  .footer-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(229, 57, 53, 0.4), transparent);
  }

  .footer-contact-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .footer-contact-title i {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
  }

  .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .footer-contact-item:last-child {
    border-bottom: none;
  }

  .footer-contact-item:hover {
    color: white;
  }

  .footer-contact-item i {
    width: 32px;
    height: 32px;
    background: rgba(229, 57, 53, 0.1);
    border: 1px solid rgba(229, 57, 53, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 13px;
    transition: all 0.3s ease;
    flex-shrink: 0;
  }

  .footer-contact-item:hover i {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 15px rgba(229, 57, 53, 0.3);
  }

  /* Social Section */
  .footer-social-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 40px;
  }

  .footer-social-title {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .footer-social-grid {
    display: flex;
    gap: 12px;
  }

  .social-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .social-icon:hover {
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(229, 57, 53, 0.25);
  }

  .social-icon:hover::before {
    opacity: 1;
  }

  .social-icon i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
  }

  .social-icon:hover i {
    color: white;
  }

  /* Bottom Bar */
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
  }

  .footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
  }

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

  .footer-legal-link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
  }

  .footer-legal-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
  }

  .footer-legal-link:hover {
    color: white;
  }

  .footer-legal-link:hover::after {
    width: 100%;
  }
}

/* Mobile Dark Footer - Matches Get Listed Page */
@media (max-width: 768px) {
  body .footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #151515 50%, #0d0d0d 100%) !important;
    padding: 48px 20px 24px;
  }
  
  body .footer-accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }
  
  body .footer-accordion-header {
    color: rgba(255, 255, 255, 0.9);
  }
  
  body .footer-link {
    color: rgba(255, 255, 255, 0.6);
  }
  
  body .footer-contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }
  
  body .footer-contact-title {
    color: rgba(255, 255, 255, 0.9);
  }
  
  body .footer-contact-item {
    color: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.06);
  }
  
  body .footer-social-section {
    border-color: rgba(255, 255, 255, 0.06);
  }
  
  body .social-icon {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
  }
  
  body .footer-copyright {
    color: rgba(255, 255, 255, 0.4);
  }
}

/* Large Desktop */
@media (min-width: 1200px) {
  .footer .container {
    max-width: 650px;
  }
}
