body {
    background: black;
}
.contact-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Section */
.contact-page .contact-hero {
    flex: 1;
    display: flex;
    align-items: center;
    padding-top: 150px;
    padding-bottom: 100px;
}

.contact-page .hero-content {
    max-width: 900px;
}

.contact-page .hero-content .label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 30px;
    opacity: 0;
}

.contact-page.animate .hero-content .label {
    animation: slideIn 0.6s ease-out forwards;
    animation-delay: 0.1s;
}

.contact-page .hero-email {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    text-decoration: none;
    margin-bottom: 30px;
}

.contact-page .hero-email .email-text {
    font-family: "Lexend";
    font-size: clamp(32px, 6vw, 72px);
    font-weight: 300;
    color: white;
    line-height: 1.1;
    transition: color 0.3s ease;
}

.contact-page .hero-email .email-arrow {
    font-size: clamp(24px, 4vw, 48px);
    color: #333;
    transition: transform 0.3s ease, color 0.3s ease;
}

.contact-page .hero-email:hover .email-text {
    color: #ccc;
}

.contact-page .hero-email:hover .email-arrow {
    transform: translateX(10px);
    color: white;
}

.contact-page .hero-email {
    opacity: 0;
}

.contact-page.animate .hero-email {
    animation: fadeUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.contact-page .hero-content .tagline {
    font-size: 18px;
    color: #555;
    max-width: 400px;
    line-height: 1.6;
    opacity: 0;
}

.contact-page.animate .hero-content .tagline {
    animation: fadeIn 0.6s ease-out forwards;
    animation-delay: 0.5s;
}

/* Details Section */
.contact-page .contact-details {
    padding-bottom: 100px;
    border-top: 1px solid #1a1a1a;
}

.contact-page .details-grid {
    display: flex;
    gap: 100px;
    padding-top: 60px;
}

.contact-page .detail-item {
    opacity: 0;
}

.contact-page.animate .detail-item:nth-child(1) {
    animation: fadeUp 0.6s ease-out forwards;
    animation-delay: 0.6s;
}

.contact-page.animate .detail-item:nth-child(2) {
    animation: fadeUp 0.6s ease-out forwards;
    animation-delay: 0.75s;
}

.contact-page .detail-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #444;
    margin-bottom: 15px;
}

.contact-page .detail-value {
    font-family: "Lexend";
    font-size: 24px;
    font-weight: 400;
    color: white;
    text-decoration: none;
    display: inline-block;
    position: relative;
    transition: color 0.2s ease;
}

.contact-page .detail-value::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: white;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.contact-page .detail-value:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.contact-page .detail-note {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}

/* Social Links */
.contact-page .social-links {
    display: flex;
    gap: 25px;
}

.contact-page .social-links a {
    font-family: "Lexend";
    font-size: 16px;
    color: #777;
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
}

.contact-page .social-links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: white;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.contact-page .social-links a:hover {
    color: white;
}

.contact-page .social-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-page .details-grid {
        flex-direction: column;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .contact-page .contact-hero {
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .contact-page .hero-content .label {
        margin-bottom: 20px;
    }

    .contact-page .hero-email {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .contact-page .hero-email .email-arrow {
        display: none;
    }

    .contact-page .hero-content .tagline {
        font-size: 16px;
    }

    .contact-page .details-grid {
        padding-top: 40px;
    }

    .contact-page .social-links {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .contact-page .contact-hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .contact-page .contact-details {
        padding-bottom: 60px;
    }

    .contact-page .detail-value {
        font-size: 20px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .contact-page .hero-content .label,
    .contact-page .hero-email,
    .contact-page .hero-content .tagline,
    .contact-page .detail-item {
        opacity: 1;
        animation: none !important;
    }
}
