:root {
    --primary-blue: #1c2b4b;
    /* Deep Navy Blue based on typical corporate colors, adjustable */
    --primary-yellow: #fcb900;
    /* Golden Yellow */
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #6b7280;
    --bg-light: #f3f4f6;
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(252, 185, 0, 0.1), transparent 40%),
        radial-gradient(circle at bottom left, rgba(28, 43, 75, 0.1), transparent 40%);
    z-index: -1;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.content-wrapper {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 4rem 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    text-align: center;
    max-width: 600px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: fadeInUp 0.8s ease-out;
}

.logo-container {
    margin-bottom: 2.5rem;
}

.logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(252, 185, 0, 0.2);
    color: #b45309;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    line-height: 1.2;
}

p {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info p {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.contact-btn {
    display: inline-block;
    background-color: var(--primary-blue);
    color: var(--text-light);
    text-decoration: none;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #2c4270;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(28, 43, 75, 0.2);
}

footer {
    margin-top: 3rem;
    text-align: center;
    color: var(--text-gray);
    font-size: 0.875rem;
    width: 100%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 640px) {
    .content-wrapper {
        padding: 3rem 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    .logo {
        max-width: 220px;
    }
}

/* Appending new styles for contact lists */

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.contact-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #b45309;
    text-decoration: underline;
}

.label {
    font-weight: 600;
    color: var(--text-dark);
    margin-right: 0.25rem;
}

.phone-numbers {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.separator {
    color: var(--text-gray);
    font-size: 0.9rem;
}

@media (max-width: 480px) {
    .phone-numbers {
        flex-direction: column;
        gap: 0.25rem;
    }

    .separator {
        display: none;
    }
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.whatsapp-icon {
    color: #25D366;
    /* WhatsApp Brand Green */
    transition: transform 0.2s ease;
    animation: pulse 2s infinite;
    border-radius: 50%;
}

.whatsapp-link:hover .whatsapp-icon {
    /* transform: scale(1.1); removed to let pulse take over, or coordinate */
    animation: none;
    /* optional: stop pulsing on hover or keep it? user just said animate. Let's keep pulse always or maybe intensify? Let's just add pulse. */
    transform: scale(1.1);
}

.whatsapp-link:hover {
    color: #128C7E;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.phone-icon {
    /* animation: ring 2s infinite ease-in-out; */
    animation: ring 1.5s infinite;
}

.phone-link:hover {
    color: #b45309;
    /* Matches other hover states */
}

@keyframes ring {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(15deg);
    }

    20% {
        transform: rotate(-15deg);
    }

    30% {
        transform: rotate(10deg);
    }

    40% {
        transform: rotate(-10deg);
    }

    50% {
        transform: rotate(5deg);
    }

    60% {
        transform: rotate(-5deg);
    }

    70% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
        transform: scale(1.1);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        transform: scale(1);
    }
}

.action-container {
    margin-bottom: 2rem;
}

.profile-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary-yellow);
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.profile-btn:hover {
    background-color: #2c4270;
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(28, 43, 75, 0.2);
}

/* Download Icon Animation */
.download-icon {
    transition: transform 0.3s ease;
}

.profile-btn:hover .download-icon {
    animation: bounceDown 1s infinite;
}

@keyframes bounceDown {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(3px);
    }

    60% {
        transform: translateY(1.5px);
    }
}

/* Tooltip Styles */
.profile-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: #333;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    margin-bottom: 0.5rem;
}

.profile-btn::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    border: 6px solid transparent;
    border-top-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    margin-bottom: -6px;
    /* Adjust based on gap */
}

.profile-btn:hover::before,
.profile-btn:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.email-icon {
    animation: float 2.5s ease-in-out infinite;
}

.email-link:hover {
    color: #b45309;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }

    100% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(0);
    }
}

/* New Contact Section Structure */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    margin-top: 1.5rem;
}

.contact-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.block-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

/* Ensure phone links stack nicely */
.phone-numbers {
    flex-direction: column;
    /* Stack them for better mobile view as per previous designs */
}

/* Adjust contact link for new layout if needed */
.contact-link {
    justify-content: center;
}