/* --- General Body Styling --- */
body {
  font-family: 'Poppins', sans-serif;
}

/* --- Footer Styling --- */

/* Money-Back Guarantee Banner */
.guarantee-banner {
    background-color: #00B4D8; /* Same bright blue as header CTA */
    color: #fff;
    font-weight: 500;
}
.guarantee-banner i {
    font-size: 1.2rem;
    vertical-align: middle;
    margin-right: 8px;
}

/* Main Footer Section */
.footer-main {
    background-color: #121828; /* Same deep blue as header */
}
.footer-main h6 {
    color: #ffffff;
}
.footer-main p {
    color: rgba(255, 255, 255, 0.7);
}

/* Footer Links */
.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Social Media Icons */
.social-icon {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
}
.social-icon:hover {
    background-color: #00B4D8; /* CTA blue on hover */
    color: #fff;
    transform: translateY(-3px);
}

/* Newsletter Form */
.footer-main .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}
.footer-main .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.footer-main .form-control:focus {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #00B4D8;
    box-shadow: none;
    color: #fff;
}

/* Bottom Bar (Copyright) */
.footer-bottom {
    background-color: #000;
}
.footer-bottom .footer-link {
    color: rgba(255, 255, 255, 0.5);
}
.footer-bottom .footer-link:hover {
    color: #ffffff;
}
