.navigation-menu .has-children > a {
    padding-right: 12px;
    position: relative;
    font-weight: 600;
}

.navigation-menu .has-children > a::after {
    content: "▾";
    position: absolute;
    right: -4px;
    top: 2px;
    font-size: 13px;
    transition: 0.3s;
}

.navigation-menu .has-children:hover > a::after {
    transform: rotate(180deg);
}

.navigation-menu .sub-menu {
    background: #ffffff;
    border-radius: 10px;
    padding: 12px 0;
    min-width: 200px;
    box-shadow: 0 10px 45px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.25s ease;
    z-index: 999;
}

.navigation-menu .has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navigation-menu .sub-menu li a {
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    transition: 0.2s;
}

.navigation-menu .sub-menu li a:hover {
    background: #eef5ff;
    color: #0066ff;
}

/* New Banner */
.contact-banner-new {
    background: linear-gradient(to bottom, #f8fbfd, #d1e6ff);
    padding: 150px 0 120px;
    text-align: center;
}

.contact-banner-new h1 {
    font-size: 46px;
    font-weight: 700;
    color: black;
}

.contact-banner-new h5 {
    font-size: 18px;
    color: #000;
    margin-top: 12px;
    opacity: 0.9;
}
/* --------------------------------------------------------------------------------------------- */
/* Hamburger button */
#mobileMenuOpen {
cursor: pointer;
z-index: 9999;
position: absolute;
right: 15px;
top: 25px;
width: 30px;
height: 25px;
}
#mobileMenuOpen span {
display: block;
width: 100%;
height: 3px;
margin-bottom: 5px;
background-color: #0079ff !important;
border-radius: 3px;
}

/* Mobile menu panel (slide right) */
.mobile-menu-panel {
position: fixed;
top: 0;
right: -100%;
width: 80%;
max-width: 300px;
height: 100vh;
background: #ffffff;
box-shadow: -5px 0 15px rgba(0,0,0,0.1);
z-index: 100000;
transition: right 0.3s ease-in-out;
padding: 20px;
visibility: hidden;
}
.mobile-menu-panel.open {
right: 0;
visibility: visible;
}

.mobile-menu-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
border-bottom: 1px solid #eee;
padding-bottom: 15px;
}

.close-btn {
font-size: 35px;
background: none;
border: none;
cursor: pointer;
line-height: 0.7;
}

@media (max-width: 768px) {
#mobileMenuOpen { right: 12px !important; top: 22px !important; transform: scale(0.9); }
#mobileMenuOpen span { background-color: #0079ff !important; }

.header { padding: 8px 0 !important; }
.header__logo img { width: 120px !important; height: auto !important; }
}
/* Center footer items on mobile */
@media (max-width: 767px) {

.footer-brand, 
.footer-links, 
.footer-contact, 
.footer-bottom {
    text-align: center !important;
}

.footer-brand .social-links {
    justify-content: center !important;
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

/* THIS PART CENTERS THE LOGO */
.footer-logo {
    margin: 0 auto 15px auto;
    display: block;
}
}

/* Modern error highlight */
.input-error {
    border: 2px solid #ff4d4f !important;
    background: #fff5f5 !important;
}

/* Shake animation */
@keyframes shake {
0% { transform: translateX(0); }
20% { transform: translateX(-5px); }
40% { transform: translateX(5px); }
60% { transform: translateX(-5px); }
80% { transform: translateX(5px); }
100% { transform: translateX(0); }
}

.shake {
    animation: shake 0.3s ease-in-out;
}

/* Error + success messages */
.form-messege {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
}

.form-messege.error {
    color: #4dff88;
}

.form-messege.success {
    color: #28a745;
}
