.footer {
    background-color: #ffffff;
    padding: 60px 0 20px;
    position: relative;
    border-top: 1px solid #eee;
    color: var(--text-dark);
}

.footer-logo-container {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.footer-logo {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border: 1px solid #eee;
}

.footer-logo img {
    width: 100%;
    height: auto;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-form-section {
    flex: 1;
    min-width: 350px;
}

.footer-info-section {
    flex: 1.5;
    min-width: 350px;
    border-left: 1px solid #eee;
    padding-left: 40px;
}

.footer h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.footer h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* Guidance Form Styles */
.guidance-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row input, .form-row select, .guidance-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.form-row input:focus, .form-row select:focus, .guidance-form textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 5px rgba(255, 153, 51, 0.2);
}

.full-width {
    width: 100%;
}

.file-input {
    display: flex;
    align-items: center;
    background: #f1f1f1;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.file-input label {
    background: #e1e1e1;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.file-input input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-input span {
    padding-left: 15px;
    font-size: 13px;
    color: #666;
}

.file-info {
    font-size: 12px;
    color: #888;
    margin-top: -10px;
}

.service-type-radios {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 14px;
    margin: 10px 0;
}

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

.captcha-placeholder {
    margin-bottom: 20px;
}

.dummy-captcha {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    width: fit-content;
    border-radius: 4px;
}

.footer-submit-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 50px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    align-self: flex-end;
    transition: var(--transition);
}

.footer-submit-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Right Section Styles */
.info-group p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.info-group a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.links-column ul {
    list-style: none;
    padding: 0;
}

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

.links-column a {
    color: #444;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

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

.contact-details p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #555;
}

/* Badges section */
.footer-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.badge-google {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 14px;
    font-weight: 700;
    color: #ff9933;
}

.app-links {
    display: flex;
    gap: 10px;
}

.app-links img {
    height: 35px;
}

/* Bottom Section */
.footer-bottom {
    border-top: 1px solid #eee;
    padding-top: 30px;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-icons img {
    width: 28px;
    height: 28px;
    filter: none;
    opacity: 1;
    transition: var(--transition);
}

.social-icons a:hover img {
    transform: scale(1.2) rotate(5deg);
}

.copyright p {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    margin-top: 10px;
}

.mineib-link {
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Outfit', 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.mineib-link:hover {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
    text-decoration: none;
}

/* Responsive */
@media screen and (max-width: 991px) {
    .footer-info-section {
        border-left: none;
        padding-left: 0;
        margin-top: 40px;
    }
    
    .footer-logo-container {
        top: -40px;
    }
    
    .footer-logo {
        width: 80px;
        height: 80px;
    }
}

@media screen and (max-width: 576px) {
    .form-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-submit-btn {
        width: 100%;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer h3 {
        font-size: 20px;
    }
}
