/*
 * footer - Calculate Theme
 */

/* Footer Styles */
.site-footer {
    background: #000000;
    color: #FFFFFF;
    padding: 4rem 0 2rem;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-widgets h3,
.footer-widgets h4 {
    color: #FFFFFF;
}

.footer-menu ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.site-info {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Footer Calculate Styles */
.footer-calculate {
    position: relative;
    background-color: #000000;
    color: #FFFFFF;
    padding: 80px 0 0 0;
    width: 100%;
}

.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    column-gap: 40px;
    margin-bottom: 60px;
}

/* Company Info Section */
.footer-company-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}


.footer-company-logo img{
    margin-bottom: 20px;
    width: auto;
    max-width: 60%;
    height: auto;
}

.footer-links-section {
    margin-top: 35px;
}

.footer-company-text h3 {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
    color: #EA5A0B;
    margin-bottom: 16px;
}

.footer-company-text p {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.footer-org-info {
    margin-top: 16px;
    line-height: 1.5em;
}

/* Links Sections */
.footer-links-section h3 {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
    color: #EA5A0B;
    margin-bottom: 16px;
}

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

.footer-links-section ul li {
    margin-bottom: 8px;
}

.footer-links-section ul li a {
    font-weight: 500;
    font-size: 16px;
    line-height: 2em;
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-links-section ul li a:hover {
    opacity: 0.8;
}

/* Newsletter Section */
.footer-newsletter h3 {
    font-weight: 500;
    font-size: 16px;
    line-height: 2em;
    color: #EA5A0B;
    margin-bottom: 8px;
}

.footer-newsletter p {
    font-weight: 500;
    font-size: 16px;
    line-height: 2em;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.newsletter-form {
    width: 100%;
}

.newsletter-input-wrapper {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%;
}

.newsletter-email-input {
    flex: 1;
    height: 48px;
    padding: 0 16px;
    background-color: #FFFFFF;
    border: none;
    border-radius: 9px 0 0 9px;
    font-weight: 500;
    font-size: 16px;
    color: #333333;
    outline: none;
}

.newsletter-email-input::placeholder {
    color: #D9D9D9;
}

.newsletter-submit-btn {
    width: 57px;
    height: 48px;
    background-color: #EA5A0B;
    border: none;
    border-radius: 0 9px 9px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.newsletter-submit-btn:hover {
    background-color: #d14f09;
}

.newsletter-submit-btn img {
    width: 29px;
    height: 22px;
}

/* Divider Line */
.footer-divider {
    width: calc(100% - 2 * 322px);
    height: 1px;
    background-color: #7C7C7C;
    margin: 0 auto 64px auto;
}

/* Social Media Icons */
.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 82.27px;
    margin-bottom: 64px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
      background-color: #EA5A0B;
    border-radius: 30px;
    height: 50px;
    width: 50px;
}

.footer-social a:hover {
    opacity: 0.7;
}

.footer-social img {
    width: auto;
    height: auto;
}

/* Copyright */
.footer-copyright {
    text-align: center;
    padding-bottom: 30px;
}

.footer-copyright p {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
    color: #FFFFFF;
}