:root {
    --primary: #059669;
    --primary-light: #10b981;
    --text-heading: #1a1a2e;
    --text-body: #374151;
    --text-muted: #6b7280;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.95);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background: linear-gradient(135deg, #f0fdf4 0%, #eff6ff 50%, #fdf4ff 100%);
    color: var(--text-body);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Ambient floating orbs for background effect */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 0;
    animation: float 10s ease-in-out infinite alternate;
}

.orb-1 {
    width: 350px;
    height: 350px;
    background: rgba(16, 185, 129, 0.2);
    top: 5%;
    left: 5%;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(139, 92, 246, 0.12);
    bottom: 5%;
    right: 5%;
    animation-delay: -5s;
}

.orb-3 {
    width: 280px;
    height: 280px;
    background: rgba(251, 146, 60, 0.12);
    top: 55%;
    left: 5%;
    animation-delay: -3s;
}

.container {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1.5px solid var(--glass-border);
    border-radius: 28px;
    padding: 3.5rem 4.5rem;
    text-align: center;
    max-width: 620px;
    width: 90%;
    box-shadow:
        0 8px 40px rgba(5, 150, 105, 0.1),
        0 2px 12px rgba(0, 0, 0, 0.06);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    padding: 0.45rem 1.4rem;
    border-radius: 9999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
    position: relative;
    overflow: hidden;
}

/* Badge shimmer effect */
.badge::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.45) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    animation: shimmer 3s infinite linear;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-heading);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.main-content {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
}

.divider {
    height: 1.5px;
    background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.25), transparent);
    margin: 2rem 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-body);
}

.icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(5, 150, 105, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border: 1.5px solid rgba(5, 150, 105, 0.2);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

/* Hover animations */
.contact-item:hover .icon-wrapper {
    transform: translateY(-6px);
    background: rgba(5, 150, 105, 0.15);
    box-shadow: 0 12px 24px rgba(5, 150, 105, 0.18);
}

.contact-item h3 {
    font-size: 0.75rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-weight: 700;
}

.contact-item p {
    font-size: 0.97rem;
    line-height: 1.6;
    font-weight: 500;
    color: var(--text-body);
}

svg {
    width: 22px;
    height: 22px;
}

/* Keyframes */
@keyframes float {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(-45px) scale(1.08);
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(30deg);
    }

    100% {
        transform: translateX(100%) rotate(30deg);
    }
}

/* Responsive Design */
@media (max-width: 640px) {
    .container {
        padding: 2.5rem 1.75rem;
    }

    h1 {
        font-size: 2.4rem;
    }
}