:root {
    --accent: #007aa8;
    /* 0, 122, 168 */
    --sub-accent: #d66f00;
    /* 214, 111, 0 */
    --color-1: #B89300;
    --color-2: #FBC900;
    --color-3: #0092CB;
    --text-dark: #1a1a1a;
    --text-light: rgba(255, 255, 255, 0.8);
    --surface-light: #f8f9fa;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    box-sizing: border-box;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, var(--accent) 0%, #0070a0 50%, var(--text-dark) 100%);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;

}


.container {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    height: 100%;
    padding: 2rem 1rem;
    background-color: rgba(0, 0, 0, 0.6);
}

.header {
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
}

.logo {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
    margin: 0 auto;
}

.logo img {
    width: 80px;
    height: 80px;
}

h1 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-light);
    margin: 0.5rem 0;
    letter-spacing: 1px;
}

.tagline {
    font-size: 1.2rem;
    color: var(--color-2);
    margin: 0.5rem 0;
    font-weight: 500;
}

.divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--sub-accent), var(--color-2));
    border-radius: 2px;
    margin: 1rem auto;
}

.card {
    background: var(--text-light);
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    width: 100%;
    animation: fadeInDown 0.8s ease-out 0.2s backwards;
}


.contact-section {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--surface-light);
    border-radius: 18px;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 146, 203, 0.15);
}

.icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), #0070a0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-item:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 146, 203, 0.3);
}

.icon-box svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-light);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-text {
    flex: 1;
}

.contact-text p {
    margin: 0.5rem 0;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.85rem;
}

.contact-text a {
    text-decoration: none;
    color: inherit;
}

.contact-text a:hover {
    color: var(--accent);
}

.background-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.shape {
    position: absolute;
    opacity: 0.08;
}

.shape-1 {
    top: -90px;
    right: -150px;
    width: 300px;
    height: 300px;
    animation: pulse 4s ease-in-out infinite;
}

.shape-2 {
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    animation: pulse 5s ease-in-out infinite 1s;
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .logo {
        width: 80px;
        height: 80px;
    }

    .card {
        margin: 0 0.5rem;
    }
}