/* =========================
   Outlet Page - Premium UI
========================= */

.outlet-hero {
    background: url('../images/outlet.jpg') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
}

/* Dark overlay */
.outlet-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* Glassmorphism Card */
.outlet-card {
    position: relative;
    z-index: 2;
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 50px;
    max-width: 800px;
    width: 100%;
    color: #fff;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.2);
    animation: fadeIn 1.2s ease-in-out;
}

.outlet-card h1 {
    font-size: 34px;
    margin-bottom: 20px;
}

.outlet-card h3 {
    margin-top: 25px;
    font-size: 22px;
    color: #25D366;
}

.outlet-card p {
    font-size: 17px;
    line-height: 1.6;
}

/* WhatsApp Button */
.contact-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: #25D366;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.contact-btn:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Google Map Section */
.map-section {
    padding: 60px 20px;
    background: #f8f9fa;
    text-align: center;
}

.map-section h2 {
    margin-bottom: 30px;
    font-size: 28px;
}

.map-container {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .outlet-card {
        padding: 30px;
    }

    .outlet-card h1 {
        font-size: 24px;
    }
}