 /* This makes the footer background span the full width */
 .site-footer {
     background-color: #2c2c2c;
     color: #b0b0b0;
     font-size: 14px;
     padding: 60px 0;
     width: 100%;
     box-sizing: border-box;
     /* Ensures padding is included in the width */
 }

 /* This container correctly centers the content inside the full-width footer */
 .site-footer .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .footer-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 40px;
 }

 .footer-col {
     /* All columns are now left-aligned by default */
     text-align: left;
 }

 .footer-col h3 {
     color: #fff;
     font-size: 16px;
     text-transform: capitalize;
     margin-bottom: 30px;
     position: relative;
 }

 .footer-col h3::after {
     content: '';
     position: absolute;
     left: 0;
     bottom: -10px;
     width: 50px;
     height: 2px;
     background-color: #c58c43;
 }

 .footer-col ul {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .contact-list li {
     display: flex;
     align-items: flex-start;
     margin-bottom: 15px;
 }

 .contact-list i {
     margin-right: 15px;
     color: #c58c43;
     width: 16px;
     text-align: center;
     padding-top: 3px;
 }

 .footer-links li {
     margin-bottom: 12px;
 }

 .footer-links a {
     color: #b0b0b0;
     transition: color 0.3s;
 }

 .footer-links a:hover {
     color: #fff;
 }

 .footer-col .social-icons {
     display: flex;
     gap: 15px;
     margin-bottom: 20px;
 }

 .footer-col .social-icons a {
     color: #2c2c2c;
     background-color: #fff;
     width: 36px;
     height: 36px;
     display: flex;
     justify-content: center;
     align-items: center;
     border-radius: 50%;
     transition: background-color 0.3s, color 0.3s;
 }

 .footer-col .social-icons a:hover {
     background-color: #c58c43;
     color: #fff;
 }

 .copyright {
     font-size: 13px;
 }

 /* Floating Action Buttons Styles */
 .floating-buttons {
     position: fixed;
     bottom: 20px;
     right: 20px;
     z-index: 1000;
     display: flex;
     flex-direction: column;
     gap: 10px;
 }

 .float-btn {
     width: 50px;
     height: 50px;
     background-color: #25D366;
     color: #fff;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 24px;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
     transition: transform 0.3s;
 }

 .float-btn:hover {
     transform: scale(1.1);
 }

 /* --- Responsive Footer Styles --- */
 @media (max-width: 992px) {
     .footer-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 768px) {
     .footer-grid {
         grid-template-columns: 1fr;
     }

     .footer-col {
         margin-bottom: 20px;
     }
 }