/* ==========================================================================
   CONTACT — Page-Specific Styles
   ========================================================================== */

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 50px 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(118, 75, 162, 0.08) 0%, transparent 50%);
    z-index: -1;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-emoji {
    font-size: 80px;
    margin-bottom: 30px;
    display: inline-block;
    animation: wave 2.5s ease-in-out infinite;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards 0.5s, wave 2.5s ease-in-out infinite 1.3s;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(20deg); }
    75% { transform: rotate(-15deg); }
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards 0.7s;
}

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

/* Contact Cards */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    transform: translateX(50px);
    animation: fadeLeft 1s ease forwards 0.8s;
}

@keyframes fadeLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    text-decoration: none;
    color: var(--gray-900);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--gradient);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.contact-card:hover::before {
    transform: scaleY(1);
}

.contact-card:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gray-50);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: var(--gradient);
    transform: scale(1.05);
}

.contact-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-info p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.contact-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
}

.contact-arrow {
    margin-left: auto;
    font-size: 20px;
    color: var(--gray-300);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-arrow {
    color: var(--accent);
    transform: translateX(5px);
}

/* Social Section */
.social-section {
    padding: 150px 50px;
    background: var(--gray-50);
}

.social-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.social-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.social-container > p {
    font-size: 18px;
    color: var(--gray-500);
    margin-bottom: 60px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.social-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 40px 30px;
    text-decoration: none;
    color: var(--gray-900);
    transition: all 0.4s ease;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

.social-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.social-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.social-card p {
    font-size: 14px;
    color: var(--gray-500);
}

/* Info Section */
.info-section {
    padding: 150px 50px;
    background: #171717;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(118, 75, 162, 0.15) 0%, transparent 50%);
}

.info-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.info-header {
    text-align: center;
    margin-bottom: 80px;
}

.info-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.info-header p {
    font-size: 18px;
    color: var(--gray-400);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.1);
}

.info-card-icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.info-card-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.info-card-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
}

/* CTA Section */
.cta {
    padding: 150px 50px;
    background: var(--white);
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 25px;
}

.cta p {
    font-size: 18px;
    color: var(--gray-500);
    margin-bottom: 50px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: #171717;
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--gray-900);
    border: 1.5px solid var(--gray-200);
}

.btn-secondary:hover {
    border-color: var(--gray-900);
    transform: translateY(-3px);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-left p {
    font-size: 14px;
    color: var(--gray-500);
}

/* Reveal Animations */




/* Dark Mode Overrides */
[data-theme="dark"] body {
    background: #0a0a0a;
    color: #fafafa;
}

[data-theme="dark"] .contact-card {
    background: #141414;
    border-color: #2e2e2e;
    color: #fafafa;
}

[data-theme="dark"] .contact-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: #3b82f6;
}

[data-theme="dark"] .contact-icon {
    background: #1f1f1f;
}

[data-theme="dark"] .contact-info h3 {
    color: #fafafa;
}

[data-theme="dark"] .contact-info p {
    color: #d4d4d4;
}

[data-theme="dark"] .contact-arrow {
    color: #52525b;
}

[data-theme="dark"] .contact-card:hover .contact-arrow {
    color: #3b82f6;
}

[data-theme="dark"] .social-section {
    background: #0f0f0f;
}

[data-theme="dark"] .social-container h2 {
    color: #fafafa;
}

[data-theme="dark"] .social-container > p {
    color: #d4d4d4;
}

[data-theme="dark"] .social-card {
    background: #141414;
    border-color: #2e2e2e;
    color: #fafafa;
}

[data-theme="dark"] .social-card:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border-color: #3b82f6;
}

[data-theme="dark"] .social-card h3 {
    color: #fafafa;
}

[data-theme="dark"] .social-card p {
    color: #d4d4d4;
}

[data-theme="dark"] .info-section {
    background: #0a0a0a;
}

[data-theme="dark"] .info-card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .info-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .info-card-label {
    color: #d4d4d4;
}

[data-theme="dark"] .info-card-value {
    color: #fafafa;
}

[data-theme="dark"] .cta {
    background: #0a0a0a;
}

[data-theme="dark"] .cta h2 {
    color: #fafafa;
}

[data-theme="dark"] .cta p {
    color: #d4d4d4;
}

[data-theme="dark"] .btn-primary {
    background: #fafafa;
    color: #0a0a0a;
}

[data-theme="dark"] .btn-secondary {
    color: #fafafa;
    border-color: #3f3f46;
}

[data-theme="dark"] .btn-secondary:hover {
    border-color: #fafafa;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .cursor,

    .nav-menu.active {
        right: 0;
    }

    .hero {
        padding: 120px 20px 80px;
    }

    .hero-emoji {
        font-size: 60px;
    }

    .contact-card {
        padding: 25px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .social-section {
        padding: 80px 20px;
    }

    .info-section {
        padding: 80px 20px;
    }

    .info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .cta {
        padding: 80px 20px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}
