/* ---------------- FOOTER SECTION ---------------- */

.footer {
    width: 100%;
  }
  
  .footer-main {
    background-color: var(--primary-color);
    padding: 60px 0;
    color: white;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 60px;
    align-items: start;
  }
  
  /* Logo Column */
  .footer-logo-column {
    max-width: 100%;
  }
  
  .footer-logo {
    margin-bottom: 10px;
    max-width: 110px;
  }
  
  .logo-box {
    width: 200px;
    height: 200px;
    background-color: #414141;
    border: 4px solid var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    border-radius: 16px;
  }
  
  .logo-text {
    text-align: center;
    width: 100%;
  }
  
  .logo-top {
    font-size: 9px;
    letter-spacing: 1.5px;
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
  }
  
  .logo-main {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
    margin: 5px 0;
  }
  
  .logo-subtitle {
    font-size: 12px;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: 1px;
    margin-top: 5px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
  }
  
  .logo-year {
    font-size: 10px;
    color: #1e293b;
    margin-top: 5px;
    font-family: 'Montserrat', sans-serif;
  }
  
  .footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
  }
  
  /* Links Column */
  .footer-links-column {
    max-width: 100%;
  }
  
  .footer-heading {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 30px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--secondary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
  }
  
  .footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
  }
  
  .footer-link:hover {
    color: #a5b4fc;
    padding-left: 5px;
  }
  
/* Footer Bottom Strip */
.footer-bottom {
    background-color: var(--primary-color);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
  }
  
  .footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .footer-social-icons {
    display: flex;
    gap: 10px;
  }
  
  .footer-social-link {
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .footer-social-link:hover {
    background-color: #8b5cf6;
    transform: translateY(-3px);
  }
  
  .scroll-to-top {
    width: 45px;
    height: 45px;
    background-color: var(--accent-color);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .scroll-to-top:hover {
    background-color: #8b5cf6;
    transform: translateY(-3px);
  }
  
  /* Footer Responsive */
  @media(max-width: 1024px) {
    .footer-content {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  
    .footer-logo {
      display: flex;
      justify-content: center;
    }
  
    .logo-box {
      margin: 0 auto;
    }
  
    .footer-description {
      text-align: center;
      max-width: 600px;
      margin: 0 auto;
    }
  
    .footer-links-column,
    .footer-contact-column {
      text-align: center;
    }
  
    .footer-links-grid {
      justify-content: center;
      max-width: 400px;
      margin: 0 auto;
    }
  
    .contact-info {
      max-width: 500px;
      margin: 0 auto;
    }
  }
  
  @media(max-width: 768px) {
    .footer-main {
      padding: 40px 0;
    }
  
    .footer-bottom-content {
      flex-direction: column;
      gap: 20px;
      text-align: center;
    }
  
    .footer-bottom-right {
      width: 100%;
      justify-content: center;
    }
  
    .footer-links-grid {
      grid-template-columns: 1fr;
      gap: 15px;
    }
  }
  