/* Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    background-color: #121612;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background Video Styling */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: url('https://images.unsplash.com/photo-1448375240586-882707db888b?q=80&w=1920') no-repeat center center;
    background-size: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 26, 18, 0.85) 0%, rgba(10, 14, 10, 0.92) 100%);
    backdrop-filter: blur(3px);
}

/* Content Wrapper Layout */
.content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Glassmorphism Card Style */
.card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    max-width: 550px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    text-align: center;
}

/* Logo Area Layout */
.logo-area {
    margin-bottom: 30px;
}

.logo-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #c29b68 0%, #8e683e 100%);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    color: #fff;
    margin-bottom: 15px;
    box-shadow: 0 8px 20px rgba(142, 104, 62, 0.3);
}

.logo-area h1 {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
}

.logo-area h2 {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 4px;
    color: #c29b68;
    margin-top: 5px;
}

/* Status Section Box */
.status-section {
    margin-bottom: 25px;
}

.badge {
    display: inline-flex;
    align-items: center;
    background: rgba(194, 155, 104, 0.15);
    border: 1px solid rgba(194, 155, 104, 0.3);
    color: #c29b68;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background-color: #c29b68;
    border-radius: 50%;
    margin-right: 8px;
    display: inline-block;
    animation: pulse 1.6s infinite;
}

.status-section h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.status-section p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
    font-weight: 300;
}

.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.15), transparent);
    margin: 25px 0;
}

/* Info Section Content Layout */
.info-section {
    text-align: left;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.icon-wrap {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #c29b68;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-text span {
    font-size: 11px;
    color: #888888;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-text p {
    font-size: 14px;
    color: #e0e0e0;
    font-weight: 400;
    line-height: 1.4;
    margin-top: 2px;
}

.phone-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.phone-link:hover {
    color: #c29b68;
}

/* Action Button Module Styles */
.actions {
    margin-top: 10px;
}

.btn-map {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #c29b68 0%, #8e683e 100%);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-map i {
    margin-right: 10px;
    font-size: 18px;
}

.btn-map:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(142, 104, 62, 0.4);
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Customizations */
@media (max-width: 576px) {
    .card {
        padding: 30px 20px;
    }
    .logo-area h1 {
        font-size: 22px;
    }
    .status-section h3 {
        font-size: 19px;
    }
    .info-text p {
        font-size: 13px;
    }
}
