.navbar-custom, footer {
    background-color: #348383 !important;
}
header.masthead {
    background-image: url('./../assets/img/bg.jpg');
    background-position: center center;
    background-size: cover;
}
.btn-primary {
    background-color: #348383;
    border-color: #348383;
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus, .btn-primary:focus-within {
    background-color: #2c7777 !important;
    border-color: #2c7777 !important;
}
.form-group.phonenumber {
	text-align: center;
	padding: 10px;
}

/* ===== Mega Menu ===== */
.mega-parent {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 700px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
    border-radius: 6px;
    padding: 20px;
    display: none;
    z-index: 9999;
}

.mega-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 20px;
    max-height: 420px;
    overflow-y: auto;
}

.mega-item {
    font-size: 14px;
    color: #222;
    text-decoration: none;
    padding: 6px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.mega-item:hover {
    background: #f3f3f3;
    color: #dc8160;
}

/* Show on hover (desktop) */
@media (min-width: 1200px) {
    .mega-parent:hover .mega-menu {
        display: block;
    }
}

/* Mobile behavior */
@media (max-width: 1199px) {
    .mega-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 10px 0;
    }

    .mega-inner {
        grid-template-columns: 1fr;
        max-height: 300px;
    }
}