/* Footer Styles */
footer {
    background-color: var(--text-dark);
    color: var(--white);
}

/* Footer Top Section */
.footer-top {
    padding: 80px 0;
    background-color: var(--text-dark);
    position: relative;
}

.footer-top:before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 50"><path fill="%23023a51" d="M0,0L80,5C160,10,320,20,480,25C640,30,800,30,960,25C1120,20,1280,10,1360,5L1440,0L1440,50L1360,50C1280,50,1120,50,960,50C800,50,640,50,480,50C320,50,160,50,80,50L0,50Z"></path></svg>');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer-columns {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 50px;
}

.footer-top h3 {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.footer-top h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Contact Info */
.contact-info {
    margin-top: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.info-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}

.info-item p {
    font-size: 14px;
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Contact Form */
.contact-form {
    width: 100%;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 16px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray-400);
}

.contact-form textarea {
    height: 120px;
    resize: none;
}

.contact-form .captcha {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-form .captcha-question {
    display: flex;
    align-items: center;
    color: var(--white);
    font-size: 16px;
}

.contact-form .captcha-question input {
    width: 60px;
    margin-left: 10px;
    text-align: center;
}

.contact-form button {
    width: auto;
    cursor: pointer;
}

/* Footer Bottom Section */
.footer-bottom {
    padding: 50px 0;
    background-color: #022f42;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
    max-width: 180px;
    margin-bottom: 15px;
}

.footer-bottom h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-bottom h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
}

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

.footer-links a {
    color: var(--gray-300);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom .contact-info {
    margin-top: 0;
}

.footer-bottom .info-item {
    margin-bottom: 15px;
}

.footer-bottom .info-item i {
    font-size: 18px;
}

.footer-bottom .info-item h4 {
    font-size: 16px;
}

.footer-bottom .info-item p {
    font-size: 14px;
}

/* Copyright */
.copyright {
    padding: 20px 0;
    background-color: #022f42;
    text-align: center;
}

.copyright p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 0;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-top .footer-columns,
    .footer-bottom .footer-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-top {
        padding: 60px 0;
    }

    .footer-bottom {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .footer-top:before {
        height: 30px;
        top: -30px;
    }

    .footer-top h2 {
        font-size: 30px;
    }
}