/* Import Train One font */
@import url('https://fonts.googleapis.com/css2?family=Train+One&display=swap');

/* Footer Styles */
.main-footer {
    background-color: #0a2540;
    padding: 60px 0 30px;
    color: #ffffff;
}

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

.footer-logo {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.footer-address,
.footer-phone {
    font-size: 14px;
    line-height: 1.6;
    color: #b8d4f1;
    margin-bottom: 10px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.footer-column-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.footer-menu {
    list-style: none;
    font-size: 18px;
}

.footer-menu li {
    margin-bottom: 18px;
}

.footer-menu a {
    color: #b8d4f1;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #ffffff;
}

.footer-connect {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.btn-footer-connect {
    background-color: transparent;
    color: transparent;
    border: none;
    padding: 25px 40px;
    border-radius: 40px;
    text-decoration: none;
    font-family: 'Train One', cursive;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-align: center;
    -webkit-text-stroke: 1px #ffffff;
    paint-order: stroke fill;
}

.btn-footer-connect:hover {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.7);
}

.arrow-circle {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.language-selector-form {
    margin: 0;
}

.language-selector {
    background-color: transparent;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid #ffffff;
    border-radius: 25px;
    padding: 12px 20px;
    font-family: inherit;
    transition: all 0.3s ease;
    min-width: 160px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.language-selector:hover {
    background-color: #ffffff;
    color: #0a2540;
    border-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%230a2540' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.language-selector:focus {
    outline: none;
    background-color: #ffffff;
    color: #0a2540;
    border-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%230a2540' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.language-selector option {
    background-color: #0a2540;
    color: #ffffff;
    padding: 10px;
    font-weight: 500;
}

.globe-icon {
    font-size: 16px;
}

.dropdown-icon-small {
    font-size: 10px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-copyright {
    font-size: 13px;
    color: #b8d4f1;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-connect {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
