footer {
    position: relative;
    width: 100%;
    color: var(--text-dark);
    overflow: hidden;
    margin-top: 4rem;
}
.footer-cta {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
    color: var(--text-light);
    padding: 3rem 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300%;
    background: url('../../../assets/image/landing/world.webp') center/cover;
    opacity: 0.05;
    animation: mapScrollAnimation 40s linear infinite;
}

@keyframes mapScrollAnimation {
    0% { 
        transform: translateY(0%);
    }
    100% { 
        transform: translateY(-66.66%);
    }
}

.footer-cta .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.footer-cta .cta-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-cta .cta-text {
    max-width: 600px;
}

.footer-cta .cta-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--text-light);
}

.footer-cta .cta-text h2 span {
    position: relative;
    display: inline-block;
}


.footer-cta .cta-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: var(--text-light-low);
    max-width: 90%;
}

.footer-cta .cta-buttons {
    display: flex;
    align-items: center;
}

.footer-cta .cta-buttons .btn-primary {
    background-color: var(--text-light);
    color: var(--primary-color-dark);
    border: 2px solid var(--text-light);
    transition: all 0.3s ease;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.footer-cta .cta-buttons .btn-primary:hover {
    background-color: transparent;
    color: var(--text-light);
}

.footer-cta .cta-buttons .btn-primary i {
    transition: transform 0.3s ease;
    margin-left: 10px;
    font-size: 0.9rem;
}

.footer-cta .cta-buttons .btn-primary:hover i {
    transform: translateX(5px);
}

footer .card {
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    background-color: var(--card-bg);
    border-radius: 0;
    box-shadow: none;
    margin-top: 2rem;
    position: relative;
}

footer .card .footer-content {
    display: flex;
    flex-direction: column;
}

footer .card .footer-content:first-child {
    border-right: 1px solid rgba(7, 105, 131, 0.1);
    padding-right: 2rem;
}

footer .card .footer-content .footer-logo {
    position: relative;
    max-width: 260px;
    margin-bottom: 2rem;
}

footer .card .footer-content .footer-logo img {
    width: 100%;
    height: auto;
}

footer .card .footer-content .footer-logo img.logoGlobe {
    position: absolute;
    width: 50px;
    height: 50px;
    top: -8px;
    left: 39%;
}
footer .card .footer-content .footer-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark-low);
    margin-bottom: 2rem;
    max-width: 90%;
}

footer .card .footer-content .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

footer .card .footer-content .footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

footer .card .footer-content .footer-contact .contact-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
}

footer .card .footer-content .footer-contact .contact-item .contact-text {
    display: flex;
    flex-direction: column;
}

footer .card .footer-content .footer-contact .contact-item .contact-text strong {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

footer .card .footer-content .footer-contact .contact-item .contact-text span {
    color: var(--text-dark-low);
}

/* Second footer content section with links and social */
footer .card .footer-content:last-child {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

footer .card .footer-content .footer-links h4,
footer .card .footer-content .footer-social h4,
footer .card .footer-content .footer-certifications h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

footer .card .footer-content .footer-links h4::after,
footer .card .footer-content .footer-social h4::after,
footer .card .footer-content .footer-certifications h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
}

footer .card .footer-content .footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

footer .card .footer-content .footer-links ul li {
    position: relative;
    padding-left: 1rem;
}

footer .card .footer-content .footer-links ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

footer .card .footer-content .footer-links ul li:hover::before {
    width: 8px;
    height: 8px;
    background: var(--primary-color-dark);
}

footer .card .footer-content .footer-links ul li a {
    color: var(--text-dark-low);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

footer .card .footer-content .footer-links ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Social icons styling */
footer .card .footer-content .footer-social ul.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

footer .card .footer-content .footer-social ul.social-icons li {
    margin-bottom: 0.5rem;
}

footer .card .footer-content .footer-social ul.social-icons li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-color);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

footer .card .footer-content .footer-social ul.social-icons li a:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-5px);
}

footer .card .footer-content .footer-social ul.social-icons li a i {
    font-size: 1.1rem;
}

/* Certification badges section */
footer .card .footer-content .footer-certifications h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

footer .card .footer-content .footer-certifications h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
}

footer .card .footer-content .footer-certifications p {
    color: var(--text-dark-low);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

footer .card .footer-content .footer-certifications .cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

footer .card .footer-content .footer-certifications .cert-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--bg-color);
    border-radius: 8px;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

footer .card .footer-content .footer-certifications .cert-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(7, 105, 131, 0.15);
}

footer .card .footer-content .footer-certifications .cert-badge img {
    width: 100%;
    height: auto;
    max-height: 50px;
    object-fit: contain;
}

footer .card .footer-content .footer-certifications .cert-badge span {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-top: 0.3rem;
}

footer .card .footer-content .footer-certifications .cert-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

footer .card .footer-content .footer-certifications .cert-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

footer .card .footer-content .footer-certifications .cert-link:hover {
    color: var(--primary-color-dark);
}

footer .card .footer-content .footer-certifications .cert-link:hover i {
    transform: translateX(3px);
}

/* Footer bottom styling */
footer .footer-bottom {
    background-color: var(--bg-color);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(7, 105, 131, 0.1);
}

footer .footer-bottom .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .footer-bottom .copyright {
    color: var(--text-dark-low);
    font-size: 0.9rem;
}

footer .footer-bottom .footer-nav ul {
    display: flex;
    gap: 2rem;
}

footer .footer-bottom .footer-nav ul li a {
    color: var(--text-dark-low);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

footer .footer-bottom .footer-nav ul li a:hover {
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .footer-cta .cta-text h2 {
        font-size: 2.5rem;
    }
    
    footer .card {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 992px) {
    .footer-cta .cta-text h2 {
        font-size: 2.2rem;
    }
    
    .footer-cta .cta-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .footer-cta .cta-text {
        max-width: 100%;
    }
    
    .footer-cta .cta-text p {
        max-width: 100%;
    }
    
    footer .card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    footer .card .footer-content:first-child {
        border-right: none;
        border-bottom: 1px solid rgba(7, 105, 131, 0.1);
        padding-right: 0;
        padding-bottom: 2rem;
    }
    
    footer .card .footer-content:last-child {
        grid-template-columns: repeat(3, 1fr);
        padding-top: 1rem;
    }
    
    footer .card .footer-content .footer-logo {
        max-width: 220px;
    }

    footer .card .footer-content .footer-logo img.logoGlobe {
        left: 37%;
    }
}

@media (max-width: 768px) {
    .footer-cta {
        padding: 2.5rem 0;
    }
    
    .footer-cta .cta-text h2 {
        font-size: 2rem;
    }
    
    .footer-cta .cta-text p {
        font-size: 0.95rem;
    }
    
    footer .card {
        padding: 2.5rem 1rem;
        margin-top: 1rem;
    }
    
    footer .card .footer-content:last-child {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1rem;
    }
    
    footer .card .footer-content .footer-certifications {
        grid-column: span 2;
        margin-top: 1rem;
    }
    
    footer .card .footer-content .footer-desc {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    footer .card .footer-content .footer-contact .contact-item .contact-text span {
        font-size: 0.9rem;
    }
    
    footer .footer-bottom .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    footer .footer-bottom .footer-nav ul {
        justify-content: center;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .footer-cta {
        padding: 2rem 0;
    }
    
    .footer-cta .cta-text h2 {
        font-size: 1.8rem;
    }
    
    .footer-cta .cta-text p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .footer-cta .cta-buttons .btn-primary {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    footer {
        margin-top: 2rem;
    }
    
    footer .card {
        padding: 2rem 1rem;
        padding-bottom: 4rem;
    }
    
    footer .card .footer-content:first-child {
        padding-bottom: 1.5rem;
    }
    
    footer .card .footer-content:last-child {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    footer .card .footer-content .footer-links h4,
    footer .card .footer-content .footer-social h4,
    footer .card .footer-content .footer-certifications h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        padding-bottom: 0.6rem;
    }
    
    footer .card .footer-content .footer-certifications {
        margin-top: 0;
    }
    
    footer .card .footer-content .footer-certifications .cert-badges {
        justify-content: flex-start;
    }
    
    footer .footer-bottom {
        padding: 1.2rem 0;
    }
    
    footer .footer-bottom .container {
        padding: 0 15px;
    }
    
    footer .footer-bottom .copyright {
        font-size: 0.8rem;
    }
    
    footer .footer-bottom .footer-nav ul {
        flex-wrap: wrap;
        gap: 1rem 1.5rem;
    }
    
    footer .footer-bottom .footer-nav ul li a {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .footer-cta .cta-text h2 {
        font-size: 1.6rem;
    }
    
    .footer-cta .cta-text p {
        font-size: 0.85rem;
    }
    
    footer .card .footer-content .footer-logo {
        max-width: 200px;
        margin-bottom: 1.5rem;
    }
    
    footer .card .footer-content .footer-logo img.logoGlobe {
        width: 45px;
        height: 45px;
    }
    
    footer .card .footer-content .footer-contact .contact-item {
        gap: 0.8rem;
    }
    
    footer .card .footer-content .footer-contact .contact-item i {
        font-size: 1rem;
    }
    
    footer .card .footer-content .footer-contact .contact-item .contact-text strong {
        font-size: 0.9rem;
    }
    
    footer .card .footer-content .footer-contact .contact-item .contact-text span {
        font-size: 0.85rem;
    }
    
    footer .card .footer-content .footer-links ul li a {
        font-size: 0.85rem;
    }
    
    footer .card .footer-content .footer-certifications p {
        font-size: 0.85rem;
    }
    
    footer .card .footer-content .footer-certifications .cert-badges {
        gap: 0.8rem;
    }
    
    footer .card .footer-content .footer-certifications .cert-badge {
        width: 65px;
        height: 65px;
    }
    
    footer .card .footer-content .footer-certifications .cert-link {
        font-size: 0.85rem;
    }
}

@media (max-width: 380px) {
    .footer-cta .cta-text h2 {
        font-size: 1.5rem;
    }
    
    .footer-cta .cta-buttons .btn-primary {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
    
    footer .card .footer-content .footer-certifications .cert-badges {
        justify-content: space-between;
    }
    
    footer .card .footer-content .footer-certifications .cert-badge {
        width: 60px;
        height: 60px;
    }
    
    footer .footer-bottom .footer-nav ul {
        gap: 0.8rem;
    }
}

@media (max-width: 992px) {
    footer .card {
        grid-template-columns: 1fr;
    }
    
    footer .card .footer-content:first-child {
        border-right: none;
        border-bottom: 1px solid rgba(7, 105, 131, 0.1);
        padding-right: 0;
        padding-bottom: 2rem;
    }
    
    footer .card .footer-content:last-child {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    footer .card .footer-content:last-child {
        grid-template-columns: 1fr;
    }
    
    footer .footer-bottom .container {
        flex-direction: column;
        gap: 1rem;
        width: unset;
    }
    
    footer .footer-bottom .footer-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}


footer .developer-box {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 0.8rem;
    color: #fff;
}

footer .developer-box a {
    background: var(--card-bg);
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 5px;
    display: flex;
    text-decoration: none;
    font-weight: 600;
    margin-left: 10px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

footer .developer-box a:hover {
    transform: translateY(-1px) scale(1.02);
}

footer .developer-box a i {
    font-size: 0.8rem;
    margin-right: 5px;
    position: relative;
    top: 4px;
}


@media (max-width: 576px) {
    footer .developer-box {
        font-size: 0.7rem;
    }
    
    footer .developer-box a {
        font-size: 0.8rem;
    }
    
    footer .developer-box a i {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    footer .developer-box {
        font-size: 0.6rem;
    }
    
    footer .developer-box a {
        font-size: 0.7rem;
    }
    
    footer .developer-box a i {
        font-size: 0.7rem;
    }
}

@media (max-width: 380px) {
    footer .developer-box {
        font-size: 0.6rem;
    }
    
    footer .developer-box a {
        font-size: 0.6rem;
    }
    
    footer .developer-box a i {
        font-size: 0.6rem;
    }
}

