.contact-page-wrapper {
    padding-top: 150px;
    background: url('blurred-chicken-bg.jpg') center/cover fixed; /* Matches the menu and cart */
}

/* Map Styling */
.map-container {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

/* Contact Pills */
.contact-method-pill {
    background: rgba(230, 230, 230, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 60px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.contact-method-pill:hover {
    transform: translateX(10px);
    background: #ffffff;
}

.icon-circle {
    background: #000;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Message Card Styling */
.message-card {
    background: rgba(235, 235, 235, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.frosted-input {
    background: rgba(210, 210, 210, 0.5);
    border: none;
    border-radius: 15px;
    padding: 12px 20px;
    transition: background 0.3s;
}

.frosted-input:focus {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: none;
    outline: none;
}

.frosted-input::placeholder {
    color: #888;
    font-size: 0.9rem;
}

/* Breadcrumb Tweak */
.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
}