* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #e6f7f9, #f4fbff);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f2933;
}

.page-wrapper {
    text-align: center;
    padding: 40px;
    width: 100%;
}

.card {
    background: #ffffff;
    max-width: 520px;
    margin: auto;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    animation: fadeIn 0.8s ease;
}

.logo {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3bb6c4, #4fd1c5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 38px;
    box-shadow: 0 10px 30px rgba(59, 182, 196, 0.4);
}

h1 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 15px;
}

h1 span {
    color: #3bb6c4;
}

.subtitle {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-box {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 12px;
    text-decoration: none;
    background: #f1f9fa;
    color: #1f2933;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-item i {
    font-size: 18px;
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    background: #3bb6c4;
    color: #fff;
}

.contact-item.whatsapp:hover {
    background: #25d366;
}

.locations {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4b5563;
    font-size: 14px;
    transition: color 0.3s ease;
}

.location i {
    color: #3bb6c4;
}

.location:hover {
    color: #111827;
}

footer {
    margin-top: 30px;
    font-size: 13px;
    color: #9ca3af;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
