/* Mobile Footer Styles - to match provided design */
/* Tablet Footer Styles */
@media (min-width: 768px) and (max-width: 1199px) {
  .site-footer {
    padding: 3rem 2rem !important;
  }
  
  .site-footer .container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  .site-footer .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  .site-footer .col-lg-6 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media (max-width: 767px) {
  .site-footer {
    padding:0 !important;
    text-align: left;
  }
  
  /* Logo and tag line */
  .site-footer .row.pt-4 .col-lg-6:first-child {
    text-align: left;
    margin-bottom: 10px;
  }
  
  .site-footer .svg-logo {
    max-width: 180px;
    margin: 0 auto;
  }

  /* Subscribe section */
  .site-footer .subscribe-section {
    text-align: left;
    margin-bottom: 2rem;
  }
  
  .site-footer .subscribe-section .subscribe-heading {
    font-size: 18px !important;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: none;
    letter-spacing: normal;
  }
  /* Remove all styles from the form and rebuild */
  .site-footer form.d-flex {
    display: flex !important;
    flex-direction: row !important;    
    margin: 0 auto;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.8); */
    background: transparent;
    padding: 0;
    border-radius: 0;
    gap: 0 !important;
  }
  
  /* Override all Bootstrap styling for the input */
  .site-footer form input.form-control {
    /* border: none !important;
    background: transparent !important;
    height: 36px !important;
    line-height: 36px !important;
    padding: 0 !important;
    color: white !important;
    font-size: 14px !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    flex: 1;
    text-align: left !important;
    margin: 0 !important; */
  }
  
  .site-footer form input.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
    opacity: 1 !important;
  }
  
  /* Make button minimal with just an arrow */
  .site-footer .btn-subscribe {
    /* background: transparent !important;
    width: 24px !important;
    min-width: 24px !important;
    height: 36px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    display: flex !important;
    align-items: left !important;
    justify-content: left !important; */
  }
  
  .site-footer .btn-subscribe svg {
    width: 18px;
    height: 18px;
  }
  
  /* Remove focus styles */
  .site-footer form input.form-control:focus {
    outline: none !important;
    box-shadow: none !important;
  }
  
  /* Site description */
  .site-footer .row.mb-5 .col-lg-6:first-child p {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    line-height: 1.5;
    max-width: 100%;
  }
  
  /* Links sections */
  .site-footer .row.mb-5 .col-lg-6:last-child {
    margin-top: 1.5rem;
  }
  
  /* Fix: Make footer links display horizontally in mobile */
  .site-footer .row.mb-5 .col-lg-6:last-child .row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: left;
    gap: 0;
  }
  
  /* Keep columns at 50% width */
  .site-footer .row.mb-5 .col-lg-6:last-child .col-6 {
    width: 50%;
    text-align: left;
    padding: 0 10px;
  }
  
  /* Adjust link font size and spacing */
  .site-footer .list-unstyled li {
    margin-bottom: 1rem;
  }
  
  .site-footer .list-unstyled a {
    font-size: 14px;
  }
  
  /* Make social icons lefted */
  .site-footer .row.mb-5 .col-lg-6:first-child h6 {
    text-align: left;
    margin-top: 3rem;
  }
  
  .site-footer .social-icons {
    justify-content: left;
    gap: 1.5rem;
  }
  
  /* Bottom legal and copyright */
  .site-footer .d-flex.flex-column.flex-md-row {
    text-align: left;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .site-footer .d-flex.flex-column.flex-md-row p,
  .site-footer .d-flex.flex-column.flex-md-row div {
    text-align: left;
  }
  
  .site-footer .d-flex.flex-column.flex-md-row div a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #fff;
  }
  
  .site-footer .d-flex.flex-column.flex-md-row p {
    font-size: 12px;
    margin-top: 1rem;
    color: #fff;
  }
  
  /* Add divider above social icons */
  .site-footer .row.mb-5 {
    position: relative;
  }
  
  .site-footer .row.mb-5 .col-lg-6:first-child h6 {
    position: relative;
  }
  
  .site-footer .row.mb-5 .col-lg-6:first-child h6:before {
    content: '';
    position: absolute;
    top: -1.5rem;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
  }
}

