/* =====================================
   MAIN FOOTER
===================================== */

.main-footer {
    background: #2f2f2f;
    color: #ffffff;
    width: 100%;
}

/* =====================================
   FOOTER CONTAINER
===================================== */

.footer-container {
    width: 92%;
    max-width: 1400px;

    margin: 0 auto;

    padding: 45px 0 30px;

    display: grid;

    grid-template-columns:
        1.4fr
        1fr
        1.25fr
        1.6fr
        1.5fr;

    gap: 28px;
}

/* =====================================
   FOOTER COLUMN
===================================== */

.footer-column {
    position: relative;
}

/* Vertical separator */

.footer-column:not(:last-child)::after {
    content: "";

    position: absolute;

    right: -14px;
    top: 25px;

    width: 3px;
    height: 130px;

    background: rgba(255, 255, 255, 0.12);
}

/* =====================================
   FOOTER LOGO
===================================== */

.footer-logo {
    width: 130px;
    height: auto;

    margin-bottom: 15px;

    filter: brightness(0) invert(1);
}

/* =====================================
   BRAND TEXT
===================================== */

.footer-brand p {
    max-width: 210px;

    margin: 0;

    color: #a8a8a8;

    font-size: 15px;
    line-height: 1.7;
}

/* =====================================
   FOOTER HEADINGS
===================================== */

.footer-column h4 {
    margin: 0 0 18px;

    color: #ffffff;

    font-size: 20px;
    font-weight: 700;

    text-transform: uppercase;
}

/* =====================================
   FOOTER LINKS
===================================== */

.footer-column ul {
    list-style: none;

    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #b5b5b5;

    font-size: 17px;

    text-decoration: none;

    transition: 0.3s ease;
}

.footer-column ul li a:hover {
    color: #e50062;
    padding-left: 4px;
}

/* =====================================
   SOCIAL ICONS
===================================== */

.footer-social {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 18px;
}

.footer-social a {
    width: 40px;
    height: 40px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    color: #ffffff;

    font-size: 20px;

    background: #e50062;

    transition: 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
    background: #ffffff;
    color: #e50062;
}

/* =====================================
   CONTACT
===================================== */

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 11px;
}

/* Font Awesome Icon - i + SVG both */
.footer-contact-item i,
.footer-contact-item svg {
    color: #e50062 !important;
    fill: #e50062 !important;

    font-size: 12px;
    width: 13px;
    height: 13px;

    margin-top: 2px;
    flex-shrink: 0;
}

/* SVG FontAwesome path */
.footer-contact-item svg path {
    fill: currentColor !important;
}

/* Text */
.footer-contact-item span,
.footer-contact-item a {
    color: #b5b5b5;

    font-size: 15px;
    line-height: 1.6;

    text-decoration: none;
}

/* Hover */
.footer-contact-item a:hover {
    color: #e50062;
}

/* =====================================
   ENQUIRY FORM
===================================== */

.footer-enquiry form {
    display: flex;
    flex-direction: column;

    gap: 9px;
}

.footer-enquiry input,
.footer-enquiry select {
    width: 100%;
    height: 34px;

    padding: 0 12px;

    border: 1px solid #555;
    border-radius: 3px;

    outline: none;

    background: transparent;

    color: #ffffff;

    font-size: 14px;
}

/* Placeholder */

.footer-enquiry input::placeholder {
    color: #aaa;
}

/* Select */

.footer-enquiry select {
    color: #aaa;
}

.footer-enquiry select option {
    background: #222;
    color: #ffffff;
}

/* Submit Button */

.footer-enquiry button {
    height: 36px;

    border: none;
    border-radius: 3px;

    background: #e50062;

    color: #ffffff;

    font-size: 10px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.3s ease;
}

.footer-enquiry button:hover {
    background: #c90054;
}

/* =====================================
   FOOTER BOTTOM
===================================== */

.footer-bottom {
    background: linear-gradient(90deg, #850035, #e50062);

    padding: 10px 0;
}

.footer-bottom-container {
    width: 92%;
    max-width: 1400px;

    margin: 0 auto;

    display: flex;

    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    margin: 0;

    color: #ffffff;

    font-size: 18px;
}

.footer-policy {
    display: flex;

    align-items: center;

    gap: 12px;
}

.footer-policy a {
    color: #ffffff;

    text-decoration: none;

    font-size: 18px;
}

.footer-policy a:hover {
    text-decoration: underline;
}

.footer-policy span {
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 991px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);

        gap: 40px;

        padding: 45px 0;
    }

    .footer-column:not(:last-child)::after {
        display: none;
    }

    .footer-brand p {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .footer-container {
        width: 90%;

        grid-template-columns: 1fr;

        gap: 30px;

        padding: 40px 0 35px;
    }

    .footer-column {
        padding-bottom: 25px;

        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-column:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .footer-column:not(:last-child)::after {
        display: none;
    }

    .footer-logo {
        width: 140px;
    }

    .footer-brand p {
        max-width: 100%;

        font-size: 12px;
    }

    .footer-column h4 {
        font-size: 13px;
    }

    .footer-column ul li a {
        font-size: 12px;
    }

    .footer-contact-item span,
    .footer-contact-item a {
        font-size: 11px;
    }

    /* Bottom */

    .footer-bottom {
        padding: 18px 0;
    }

    .footer-bottom-container {
        width: 90%;

        flex-direction: column;

        gap: 12px;

        text-align: center;
    }

    .footer-policy {
        flex-wrap: wrap;

        justify-content: center;

        gap: 8px;
    }
}
