/* ==========================================
   Footer CSS - style/css/footer.css
   ========================================== */

/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, var(--dark-brown, #513a2a) 0%, #3d291e 100%);
    color: white;
    padding: 60px 0 20px;
    position: relative;
  }
  
  .footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
  }
  
  .footer-section .container {
    position: relative;
    z-index: 2;
  }
  
  /* Footer Logo */
  .footer-logo {
    margin-bottom: 20px;
  }
  
  .footer-logo img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
  }
  
  .footer-logo img:hover {
    transform: scale(1.05);
  }
  
  /* Footer About Text */
  .footer-about {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    text-align: justify;
  }
  
  /* Footer Headings */
  .footer-heading {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-green, #6cb33d);
  }
  
  /* Footer Links */
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li {
    margin-bottom: 12px;
    transition: transform 0.2s ease;
  }
  
  .footer-links li:hover {
    transform: translateX(5px);
  }
  
  .footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .footer-links a::before {
    content: '▶';
    font-size: 0.7rem;
    color: var(--primary-green, #6cb33d);
    transition: transform 0.3s ease;
  }
  
  .footer-links a:hover {
    color: var(--primary-green, #6cb33d);
    text-decoration: none;
  }
  
  .footer-links a:hover::before {
    transform: translateX(3px);
  }
  
  /* Footer Contact */
  .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-contact li:last-child {
    border-bottom: none;
  }
  
  .contact-icon {
    color: var(--primary-green, #6cb33d);
    margin-right: 15px;
    margin-top: 4px;
    font-size: 1.2rem;
    flex-shrink: 0;
    width: 20px;
  }
  
  .footer-contact div {
    flex: 1;
  }
  
  .footer-contact a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .footer-contact a:hover {
    color: var(--primary-green, #6cb33d);
    text-decoration: none;
  }
  
  /* Footer Social Icons */
  .footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
  }
  
  .social-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
  }
  
  .social-icon:hover {
    background-color: var(--primary-green, #6cb33d);
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
    border-color: var(--primary-green, #6cb33d);
    box-shadow: 0 5px 15px rgba(74, 124, 89, 0.3);
  }
  
  /* Newsletter Section */
  .newsletter-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .newsletter-form {
    margin-bottom: 25px;
  }
  
  .newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.9rem;
    padding: 12px 15px;
    border-radius: 25px 0 0 25px;
    transition: all 0.3s ease;
  }
  
  .newsletter-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-green, #6cb33d);
    color: white;
    box-shadow: 0 0 0 0.2rem rgba(74, 124, 89, 0.25);
  }
  
  .newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
  }
  
  .newsletter-form .btn {
    background-color: var(--primary-green, #6cb33d);
    border-color: var(--primary-green, #6cb33d);
    color: white;
    font-size: 0.9rem;
    padding: 12px 20px;
    border-radius: 0 25px 25px 0;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .newsletter-form .btn:hover {
    background-color: #6cb33d;
    border-color: #6cb33d;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
  }
  
  /* Payment Methods */
  .payment-methods {
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 1.8rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }
  
  .payment-methods:hover {
    opacity: 1;
  }
  
  .payment-methods span {
    transition: all 0.3s ease;
  }
  
  .payment-methods span:hover {
    transform: scale(1.1);
    color: var(--primary-green, #6cb33d);
  }
  
  /* Footer Bottom */
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 50px;
    padding-top: 25px;
  }
  
  .copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
  }
  
  .footer-bottom-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
  }
  
  .footer-bottom-links li {
    margin: 0;
  }
  
  .footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-green, #6cb33d);
    transition: width 0.3s ease;
  }
  
  .footer-bottom-links a:hover {
    color: var(--primary-green, #6cb33d);
    text-decoration: none;
  }
  
  .footer-bottom-links a:hover::after {
    width: 100%;
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .footer-section {
        padding: 50px 0 20px;
    }
    
    .footer-heading {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .footer-about {
        text-align: left;
        margin-bottom: 20px;
    }
    
    .footer-contact li {
        margin-bottom: 15px;
        padding: 8px 0;
    }
    
    .footer-social {
        justify-content: flex-start;
        gap: 10px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
  }
  
  @media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 20px;
        text-align: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-about {
        text-align: center;
        font-size: 0.95rem;
    }
    
    .footer-contact {
        text-align: left;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer-social {
        justify-content: center;
        margin: 25px 0;
    }
    
    .newsletter-form .form-control,
    .newsletter-form .btn {
        border-radius: 25px;
        margin-bottom: 10px;
    }
    
    .newsletter-form .btn {
        width: 100%;
    }
    
    .payment-methods {
        justify-content: center;
        font-size: 1.6rem;
    }
    
    .footer-bottom {
        text-align: center;
        margin-top: 40px;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    /* Hide Quick Links on Mobile - More Reliable Method */
    .quick-links-column {
        display: none !important;
    }
    
    /* Also hide the footer-links as backup */
    .footer-links {
        display: none;
    }
  }
  
  @media (max-width: 576px) {
    .footer-section {
        padding: 30px 0 15px;
    }
    
    .footer-logo img {
        height: 50px;
    }
    
    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer-about {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .footer-contact li {
        margin-bottom: 12px;
        padding: 6px 0;
    }
    
    .footer-contact a {
        font-size: 0.9rem;
    }
    
    .contact-icon {
        font-size: 1.1rem;
        margin-right: 12px;
    }
    
    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }
    
    .newsletter-text {
        font-size: 0.9rem;
    }
    
    .newsletter-form .form-control,
    .newsletter-form .btn {
        font-size: 0.85rem;
        padding: 10px 12px;
    }
    
    .payment-methods {
        font-size: 1.4rem;
        gap: 12px;
    }
    
    .footer-bottom-links {
        gap: 15px;
    }
    
    .footer-bottom-links a,
    .copyright {
        font-size: 0.85rem;
    }
  }
  
  @media (max-width: 480px) {
    .footer-section {
        padding: 25px 0 15px;
    }
    
    .footer-heading {
        font-size: 1rem;
    }
    
    .footer-about {
        font-size: 0.85rem;
    }
    
    .footer-contact {
        max-width: 280px;
    }
    
    .footer-contact a {
        font-size: 0.85rem;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .payment-methods {
        font-size: 1.2rem;
        gap: 10px;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
  }
  
  /* Additional Animations */
  @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
  }
  
  .footer-section .col-lg-3 {
    animation: fadeInUp 0.8s ease-out;
  }
  
  .footer-section .col-lg-3:nth-child(1) {
    animation-delay: 0.1s;
  }
  
  .footer-section .col-lg-3:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .footer-section .col-lg-3:nth-child(3) {
    animation-delay: 0.3s;
  }
  
  .footer-section .col-lg-3:nth-child(4) {
    animation-delay: 0.4s;
  }
  
  /* Hover effect for footer sections */
  .footer-section .col-lg-3:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
  }