﻿.wm-contact-section {
    background: linear-gradient(180deg, #061d32 0%, #08263f 100%);
    border-top: 4px solid #ff6a00;
    border-bottom: 4px solid #ff6a00;
}

.wm-banner-img {
    width: 100%;
    border: 4px solid #ff6a00;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.wm-contact-card {
    background: rgba(255, 255, 255, 0.06);
    border-left: 4px solid #ff6a00;
    padding: 20px;
    border-radius: 10px;
    color: #fff;
}

.wm-contact-section .form-control,
.wm-contact-section .form-select {
    height: 55px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.wm-contact-section textarea.form-control {
    height: auto;
}

.wm-final-cta {
    background: linear-gradient(90deg, #031525 0%, #092d4a 100%);
    border-top: 3px solid #ff6a00;
}

.world-banner {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 520px;
    border-top: 6px solid #ff6a00;
    border-bottom: 6px solid #ff6a00;
    box-shadow: 0 18px 45px rgba(0,0,0,.30);
    margin: 40px 0;
    border-radius: 8px;
}

    .world-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        animation: bannerZoom 12s ease-in-out infinite alternate;
        transition: .5s;
    }

    .world-banner::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to bottom, rgba(0,0,0,.15), rgba(0,0,0,.05), rgba(0,0,0,.20) );
    }

@keyframes bannerZoom {

    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.06);
    }
}
