/* ==========================================================================
   Gardensun Footer Component Styles
   ========================================================================== */

   .gardensun-footer {
    position: relative;
    background: #221815;
    color: #F6F5F1;
    overflow: hidden;
  }
  
  /* Background Image */
  .gardensun-footer .footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .gardensun-footer .footer-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
  }
  
  /* Main Content */
  .gardensun-footer .container {
    position: relative;
    z-index: 2;
  }
  
  .gardensun-footer .footer-main {
    padding: 80px 0 0;
    display: flex;
    align-items: flex-start;
  }
  
  /* Company Info Section */
  .gardensun-footer .footer-company {
    margin-bottom: 40px;
  }
  
  .gardensun-footer .footer-logo {
    margin-bottom: 30px;
    text-align: right;
  }
  
  .gardensun-footer .footer-logo-img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
  }
  
  .gardensun-footer .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-left: 20%;
  }
  
  .gardensun-footer .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #F6F5F1;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
  }
  .gardensun-footer a.contact-item:hover {
    color: var(--color-primary);
  }
  
  .gardensun-footer .contact-item i {
    color: #F6F5F1;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
  }
  
  .gardensun-footer .footer-social {
    margin-top: 2rem;
    padding-left: 20%;
  }
  
  .gardensun-footer .footer-title {
    color: #F6F5F1;
    font-family: var(--font-family);
    font-size: 26px;
    font-weight: 500;
    line-height: 1.54;
    margin-bottom: 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .gardensun-footer .mobile-toggle {
    display: none;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .gardensun-footer .mobile-toggle i {
    font-size: 16px;
    color: #F6F5F1;
  }
  
  .gardensun-footer .footer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .gardensun-footer .footer-nav .nav-item {
    margin-bottom: 12px;
  }
  
  .gardensun-footer .footer-nav .nav-link {
    color: #F6F5F1;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0;
  }
  
  .gardensun-footer .footer-nav .nav-link:hover {
    color: var(--color-primary);
  }
  
  /* Social Media */
  .gardensun-footer .social-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }
  
  .gardensun-footer .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #F6F5F1;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .gardensun-footer .social-link:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
  }
  
  .gardensun-footer .social-link i {
    font-size: 24px;
    color: #221815;
  }
  
  .gardensun-footer .social-link:hover i {
    color: #FFFFFF;
  }
  
  /* Partners Section */
  .gardensun-footer .footer-partners {
    padding: 40px 0;
  }
  
  .gardensun-footer .section-title {
    color: #fff;
    font-family: var(--font-family);
    font-size: 26px;
    text-align: left;
    margin-bottom: 32px;
  }
  
  .gardensun-footer .partners-grid {
    display: flex;
    gap: 24px;
    justify-items: flex-start;
    flex-wrap: wrap;
  }
  
  .gardensun-footer .partner-item {
  }
  
  .gardensun-footer .partner-item:hover {
    transform: translateY(-4px);
  }
  
  .gardensun-footer .partner-logo {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
  }
  
  /* Certifications Section */
  .gardensun-footer .footer-certifications {
    padding: 40px 0 0 20%;
    margin-bottom: 40px;
  }
  
  .gardensun-footer .certifications-grid {
    display: flex;
    gap: 24px;
    justify-items: flex-start;
  }
  
  .gardensun-footer .cert-item {
    background: #F6F5F1;
    border-radius: 50%;
    padding: 16px;
    transition: transform 0.3s ease;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .gardensun-footer .cert-item:hover {
    transform: translateY(-4px);
  }
  
  .gardensun-footer .cert-logo {
    max-width: 60px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
  }
  
  /* Copyright Section */
  .gardensun-footer .footer-copyright {
    padding: 30px 0;
  }
  
  .gardensun-footer .footer-divider {
    border: none;
    height: 1px;
    background: rgba(102, 102, 102, 0.5);
    margin-bottom: 20px;
  }
  
  .gardensun-footer .copyright-content {
    text-align: center;
  }
  
  .gardensun-footer .copyright-text {
    color: #F6F5F1;
    font-size: 16px;
    margin: 0;
  }
  
  /* Responsive Design */
  @media (max-width: 991px) {
    .gardensun-footer .footer-main {
      padding: 60px 0 0;
      display: block;
    }
    .gardensun-footer .footer-logo {
      text-align: center;
    }
    
    .gardensun-footer .partners-grid {
      gap: 12px;
    }
    
    .gardensun-footer .certifications-grid {
      gap: 12px;
    }
    .gardensun-footer .footer-contact,
    .gardensun-footer .footer-social,
    .gardensun-footer .footer-certifications {
      padding-left: 0;
    }
  }
  
  @media (max-width: 767px) {
    .gardensun-footer .footer-main {
      padding: 40px 0 0;
    }
    
    /* Mobile Accordion Styles */
    .gardensun-footer .mobile-toggle {
      display: block;
    }
    
    .gardensun-footer .footer-links:not(.footer-company) .footer-nav {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
    
    .gardensun-footer .footer-links.expanded .footer-nav,
    .gardensun-footer .footer-social.expanded .social-links {
      max-height: 500px;
      margin-top: 16px;
    }
    
    .gardensun-footer .footer-links.expanded .mobile-toggle i,
    .gardensun-footer .footer-social.expanded .mobile-toggle i {
      transform: rotate(180deg);
    }
    
    .gardensun-footer .footer-title {
      font-size: 20px;
      margin-bottom: 16px;
      cursor: pointer;
    }
    
    .gardensun-footer .footer-company {
      margin-bottom: 30px;
    }
    
    .gardensun-footer .footer-company .footer-title {
      cursor: default;
    }
    
    .gardensun-footer .contact-item {
      font-size: 16px;
    }
    
    .gardensun-footer .contact-item i {
      font-size: 18px;
    }
    
    .gardensun-footer .footer-nav .nav-link {
      font-size: 14px;
    }
    
    .gardensun-footer .social-links {
      gap: 12px;
    }
    
    .gardensun-footer .social-link {
      width: 40px;
      height: 40px;
    }
    
    .gardensun-footer .social-link i {
      font-size: 20px;
    }
    
    .gardensun-footer .section-title {
      font-size: 20px;
      margin-bottom: 12px;
    }
    
    .gardensun-footer .footer-partners,
    .gardensun-footer .footer-certifications {
      padding: 12px 0;
      margin-bottom: 0;
    }
  
    .gardensun-footer .partner-logo {
      max-width: 100px;
      max-height: 50px;
    }
    
    .gardensun-footer .copyright-text {
      font-size: 14px;
    }
  }
  
  @media (max-width: 575px) {
    .gardensun-footer .footer-main {
      padding: 30px 0 0;
    }
    
    .gardensun-footer .footer-company {
      margin-bottom: 20px;
    }
    
    .gardensun-footer .footer-logo-img {
      max-height: 60px;
    }
    
    .gardensun-footer .contact-item {
      font-size: 14px;
      gap: 8px;
    }
    
    .gardensun-footer .contact-item i {
      font-size: 16px;
    }
    
    .gardensun-footer .footer-title {
      font-size: 18px;
    }
    
    .gardensun-footer .footer-nav .nav-link {
      font-size: 13px;
    }
    
    .gardensun-footer .social-link {
      width: 36px;
      height: 36px;
    }
    
    .gardensun-footer .social-link i {
      font-size: 18px;
    }
    
    .gardensun-footer .section-title {
      font-size: 18px;
      margin-bottom: 20px;
    }
    
    .gardensun-footer .partner-logo {
      max-width: 80px;
      max-height: 40px;
    }
    
    .gardensun-footer .certifications-grid {
      gap: 8px;
    }
  
    .gardensun-footer .cert-logo {
      max-width: 32px;
      max-height: 32px;
    }
    
    .gardensun-footer .copyright-text {
      font-size: 12px;
      line-height: 1.4;
    }
  } 