/* --- START: CSS for Pop-up Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}
.modal-content {
    background: #2b2b2b;
    padding: 30px 40px;
    border-radius: 15px;
    text-align: center;
    color: #ffffff;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-top: 5px solid #d16614;
    transform: translateY(-50px);
    transition: transform 0.4s ease;
}
.modal-overlay.show .modal-content {
    transform: translateY(0);
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    color: #aaa;
    cursor: pointer;
    transition: color 0.2s ease;
    line-height: 1;
}
.close-btn:hover {
    color: #fff;
}
#modal-icon .fa-solid {
    font-size: 50px;
    margin-bottom: 20px;
}
.success-icon { color: #28a745; }
.error-icon { color: #dc3545; }
#modal-title {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 10px;
    color: #ff6f00;
    font-weight: 600;
}
#modal-message {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #c4b4b4;
}
/* --- END: CSS for Pop-up Modal --- */
.location-info {
    display: flex;
    align-items: flex-start; 
    margin-top: 15px;
    border-left: none !important; /* This removes the orange bar */
    padding-left: 0 !important;   /* This removes any extra space left by the bar */
}

/* This hides any decorative elements that might be creating the bar */
.location-info::before {
    display: none !important;
}

.location-info .icon {
    margin-right: 12px; 
    flex-shrink: 0; 
}

.location-info p {
    margin: 0; 
    color: #c4b4b4;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* --- General Hover Effect for ALL Footer Icons --- */
/* This new rule applies the hover effect to the location icon AND the social icons */
.footer-left .icon:hover {
    color: #ff6f00; /* The brand's orange color for the hover effect */
    transform: translateY(-2px); /* Adds a subtle "lift" effect on hover */
    transition: all 0.3s ease;
}

